.sdm-app,
.sdm-demo {
  --sdm-bg: #f7f6fa;
  --sdm-card: #ffffff;
  --sdm-ink: #151515;
  --sdm-muted: #817f8c;
  --sdm-line: rgba(21, 21, 21, .09);
  --sdm-accent: #645dfb;
  --sdm-accent-soft: #eceaff;
  --sdm-mint: #59d9b1;
  --sdm-mint-soft: #e5faf3;
  --sdm-orange: #ff9a62;
  --sdm-danger: #ef6464;
  --sdm-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  --sdm-ease: cubic-bezier(.22, 1, .36, 1);
}

.sdm-app,
.sdm-app *,
.sdm-app *::before,
.sdm-app *::after,
.sdm-demo,
.sdm-demo *,
.sdm-demo *::before,
.sdm-demo *::after {
  box-sizing: border-box;
}

.sdm-app {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  color: var(--sdm-ink);
  background: var(--sdm-bg);
  font-family: var(--sdm-font);
  font-size: 14px;
  line-height: 1.35;
  container: sdm-app / size;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.sdm-app [hidden] {
  display: none !important;
}

.sdm-app :is(button, input, textarea) {
  margin: 0;
  color: inherit;
  font: inherit;
  -webkit-user-select: none;
  user-select: none;
}

.sdm-app button {
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.sdm-app :is(button, input, textarea):focus-visible {
  outline: 3px solid rgba(100, 93, 251, .42);
  outline-offset: 2px;
}

.sdm-app :is(h1, h2, h3, p, dl, dd, ol, fieldset) {
  margin: 0;
}

.sdm-app fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

.sdm-app svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  pointer-events: none;
}

.sdm-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sdm-rolebar {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
  height: 70px;
  padding: 8px 16px 10px;
  background: rgba(247, 246, 250, .94);
  border-bottom: 1px solid rgba(21, 21, 21, .055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sdm-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  text-align: left;
}

.sdm-brand > span {
  display: grid;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--sdm-ink);
  border-radius: 11px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.05em;
  place-items: center;
}

.sdm-brand > b {
  display: none;
  font-size: 9px;
  letter-spacing: -.02em;
  line-height: .88;
}

.sdm-role-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  min-width: 0;
  padding: 3px;
  background: #ecebf1;
  border-radius: 15px;
}

.sdm-role-switch button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 44px;
  padding: 0 9px;
  color: #8d8a96;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.sdm-role-switch button > span {
  display: none;
}

.sdm-role-switch button.sdm-is-active {
  color: var(--sdm-ink);
  background: #fff;
  box-shadow: 0 4px 12px rgba(27, 24, 45, .08);
}

.sdm-avatar {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  overflow: visible;
  color: #fff;
  background: var(--sdm-accent);
  border: 3px solid #fff !important;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(63, 54, 172, .22);
  font-size: 13px;
  font-weight: 800;
  place-items: center;
}

.sdm-avatar i {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 10px;
  height: 10px;
  background: var(--sdm-mint);
  border: 2px solid #fff;
  border-radius: 50%;
}

.sdm-view {
  position: absolute;
  z-index: 1;
  inset: 70px 0 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, 0, 0);
  transition: opacity .2s ease, transform .38s var(--sdm-ease), visibility 0s .38s;
}

.sdm-view.sdm-is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.sdm-scroll {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 18px 16px 28px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sdm-scroll::-webkit-scrollbar {
  display: none;
}

.sdm-page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 68px;
  margin-bottom: 16px;
}

.sdm-page-intro p,
.sdm-page-intro > div > p {
  margin-bottom: 4px;
  color: var(--sdm-muted);
  font-size: 12px;
  font-weight: 600;
}

.sdm-page-intro h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}

.sdm-page-intro--executor {
  align-items: center;
}

.sdm-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  color: #167759;
  background: var(--sdm-mint-soft);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
}

.sdm-online i,
.sdm-demo__note i {
  width: 7px;
  height: 7px;
  background: var(--sdm-mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(89, 217, 177, .16);
}

.sdm-hero-card {
  position: relative;
  min-height: 286px;
  padding: 17px 18px 16px;
  overflow: hidden;
  color: #fff;
  background: var(--sdm-accent);
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(76, 68, 203, .22);
}

.sdm-hero-card::before,
.sdm-hero-card::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}

.sdm-hero-card::before {
  top: -122px;
  right: -76px;
  width: 260px;
  height: 260px;
}

.sdm-hero-card::after {
  top: -84px;
  right: -36px;
  width: 178px;
  height: 178px;
}

.sdm-hero-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, .74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sdm-hero-card__top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.sdm-hero-card__top i {
  width: 7px;
  height: 7px;
  background: var(--sdm-mint);
  border-radius: 50%;
}

.sdm-hero-card__top b {
  color: #fff;
  font-size: 11px;
}

.sdm-hero-card__art {
  position: absolute;
  top: 45px;
  right: 11px;
  width: 142px;
  height: 119px;
}

.sdm-pot {
  position: absolute;
  right: 32px;
  bottom: 5px;
  width: 72px;
  height: 47px;
  background: #f5b888;
  border-radius: 9px 9px 28px 28px;
  box-shadow: inset 0 9px rgba(126, 75, 116, .2), 0 12px 24px rgba(36, 30, 83, .22);
}

.sdm-plant {
  position: absolute;
  z-index: 2;
  bottom: 47px;
  width: 47px;
  height: 57px;
}

.sdm-plant::before,
.sdm-plant::after {
  position: absolute;
  width: 26px;
  height: 42px;
  content: "";
  background: var(--sdm-mint);
  border-radius: 100% 0 100% 0;
  transform: rotate(-24deg);
  transform-origin: 100% 100%;
}

.sdm-plant::after {
  right: 0;
  background: #bff7d6;
  transform: scaleX(-1) rotate(-28deg);
}

.sdm-plant--one {
  right: 64px;
}

.sdm-plant--two {
  right: 26px;
  bottom: 41px;
  transform: scale(.72) rotate(15deg);
}

.sdm-hero-card > p {
  position: relative;
  z-index: 3;
  width: max-content;
  margin-top: 68px;
  padding: 6px 9px;
  color: #174f43;
  background: var(--sdm-mint);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
}

.sdm-hero-card > h2 {
  position: relative;
  z-index: 3;
  max-width: 235px;
  margin-top: 9px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.sdm-hero-card__meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 11px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
}

.sdm-hero-card__meta strong {
  color: #fff;
  font-size: 14px;
}

.sdm-hero-card > button {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 15px;
  color: var(--sdm-ink);
  background: #fff;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
}

.sdm-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  margin-top: 18px;
}

.sdm-section-head h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.sdm-section-head > span {
  color: var(--sdm-muted);
  font-size: 10px;
  font-weight: 700;
}

.sdm-order-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 96px;
  padding: 13px;
  text-align: left;
  background: #fff !important;
  border: 1px solid var(--sdm-line) !important;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(27, 24, 45, .045);
}

.sdm-category-icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: #1b8966;
  background: var(--sdm-mint-soft);
  border-radius: 15px;
  font-size: 22px;
  place-items: center;
}

.sdm-category-icon svg {
  width: 23px;
  height: 23px;
}

.sdm-order-row > span:nth-child(2) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.sdm-order-row small {
  color: #198363;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.sdm-order-row strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sdm-order-row em {
  overflow: hidden;
  color: var(--sdm-muted);
  font-size: 10px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sdm-order-row > b {
  color: var(--sdm-muted);
  font-size: 23px;
  font-weight: 400;
}

.sdm-create-button {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  width: 100%;
  min-height: 76px;
  margin-top: 10px !important;
  padding: 11px 13px !important;
  text-align: left;
  border: 1px dashed rgba(100, 93, 251, .34) !important;
  border-radius: 18px;
}

.sdm-create-button > span {
  grid-row: 1 / 3;
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--sdm-accent);
  background: var(--sdm-accent-soft);
  border-radius: 14px;
  font-size: 20px;
  place-items: center;
}

.sdm-create-button b {
  align-self: end;
  font-size: 12px;
}

.sdm-create-button small {
  align-self: start;
  color: var(--sdm-muted);
  font-size: 9px;
}

.sdm-balance-card {
  position: relative;
  padding: 17px;
  color: #fff;
  background: var(--sdm-ink);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(21, 21, 21, .18);
}

.sdm-balance-card > div:first-child {
  display: grid;
  gap: 2px;
}

.sdm-balance-card > div:first-child small,
.sdm-balance-card > div:first-child span {
  color: rgba(255, 255, 255, .54);
  font-size: 9px;
}

.sdm-balance-card > div:first-child strong {
  margin: 5px 0 2px;
  font-size: 28px;
  letter-spacing: -.045em;
}

.sdm-score {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 63px;
  height: 63px;
  color: #332d9f;
  background: var(--sdm-mint);
  border-radius: 20px;
  text-align: center;
  transform: rotate(4deg);
  place-content: center;
}

.sdm-score span {
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.sdm-score small {
  margin-top: 3px;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.sdm-balance-card footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.sdm-balance-card footer span {
  display: grid;
  color: rgba(255, 255, 255, .54);
  font-size: 8px;
}

.sdm-balance-card footer span b {
  color: #fff;
  font-size: 12px;
}

.sdm-balance-card footer button {
  min-height: 44px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-radius: 13px;
  font-size: 10px;
  font-weight: 800;
}

.sdm-view-toggle {
  display: flex;
  gap: 3px;
  padding: 3px;
  background: #ecebf1;
  border-radius: 12px;
}

.sdm-view-toggle button {
  min-height: 44px;
  padding: 0 10px;
  color: var(--sdm-muted);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 800;
}

.sdm-view-toggle button.sdm-is-active {
  color: var(--sdm-ink);
  background: #fff;
  box-shadow: 0 3px 10px rgba(27, 24, 45, .08);
}

.sdm-job-feed {
  display: grid;
  gap: 10px;
}

.sdm-job-card {
  position: relative;
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 158px;
  padding: 15px !important;
  overflow: hidden;
  text-align: left;
  background: #fff !important;
  border: 1px solid var(--sdm-line) !important;
  border-radius: 20px;
}

.sdm-job-card--featured {
  border-color: rgba(100, 93, 251, .22) !important;
  box-shadow: 0 12px 30px rgba(83, 75, 191, .09);
}

.sdm-job-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  min-height: 25px;
  padding: 0 8px;
  color: #176c54;
  background: var(--sdm-mint-soft);
  border-radius: 99px;
  font-size: 8px;
  font-weight: 800;
}

.sdm-job-card__badge i {
  width: 5px;
  height: 5px;
  background: var(--sdm-mint);
  border-radius: 50%;
}

.sdm-job-card__badge--orange {
  color: #9a542e;
  background: #fff0e8;
}

.sdm-job-card__badge--orange i {
  background: var(--sdm-orange);
}

.sdm-job-card__price {
  position: absolute;
  top: 17px;
  right: 15px;
  font-size: 15px;
  font-weight: 900;
}

.sdm-job-card > strong {
  margin-top: 5px;
  font-size: 16px;
  letter-spacing: -.025em;
}

.sdm-job-card > small,
.sdm-job-card > em {
  color: var(--sdm-muted);
  font-size: 9px;
  font-style: normal;
}

.sdm-job-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 9px;
  color: var(--sdm-accent);
  border-top: 1px solid var(--sdm-line);
  font-size: 9px;
}

.sdm-job-card__footer i {
  font-size: 17px;
  font-style: normal;
}

.sdm-mini-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #e7e5e1;
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(27, 24, 45, .08);
}

.sdm-mini-map::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(27deg, transparent 0 36px, rgba(100, 93, 251, .065) 37px 38px);
}

.sdm-map-road {
  position: absolute;
  height: 25px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(122, 118, 111, .12);
  transform-origin: center;
}

.sdm-map-road--one { top: 70px; left: -20px; width: 420px; transform: rotate(-13deg); }
.sdm-map-road--two { top: 205px; left: -35px; width: 430px; transform: rotate(21deg); }
.sdm-map-road--three { top: -10px; left: 120px; width: 28px; height: 410px; transform: rotate(8deg); }

.sdm-mini-map button {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 90px;
  min-height: 62px;
  padding: 9px 12px;
  color: var(--sdm-ink);
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 9px 24px rgba(27, 24, 45, .17);
  place-content: center;
}

.sdm-mini-map button:first-of-type { top: 82px; left: 105px; }
.sdm-mini-map button:last-of-type { right: 30px; bottom: 62px; }

.sdm-mini-map button i {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 22px;
  height: 22px;
  background: var(--sdm-accent);
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
}

.sdm-mini-map button b { font-size: 12px; }
.sdm-mini-map button small { color: var(--sdm-muted); font-size: 8px; }

.sdm-inner-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  margin-bottom: 16px;
}

.sdm-inner-head > button,
.sdm-inner-head > b {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--sdm-ink);
  background: #fff;
  border: 1px solid var(--sdm-line);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(27, 24, 45, .05);
  font-size: 17px;
  font-weight: 700;
  place-items: center;
}

.sdm-inner-head > b {
  color: var(--sdm-muted);
  background: transparent;
  box-shadow: none;
  font-size: 9px;
}

.sdm-inner-head > div {
  min-width: 0;
}

.sdm-inner-head > div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--sdm-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sdm-inner-head h2 {
  overflow: hidden;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sdm-inner-head--compact {
  grid-template-columns: 44px minmax(0, 1fr) 44px;
}

.sdm-create-form,
.sdm-report-form {
  display: grid;
  gap: 11px;
  padding-bottom: 10px;
}

.sdm-form-card,
.sdm-detail-card,
.sdm-specialist-card,
.sdm-timeline,
.sdm-report-review {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--sdm-line);
  border-radius: 20px;
  box-shadow: 0 8px 26px rgba(27, 24, 45, .035);
}

.sdm-form-card legend {
  width: 100%;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.sdm-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 12px;
}

.sdm-category-grid button {
  display: grid;
  min-height: 70px;
  padding: 8px 4px;
  color: var(--sdm-muted);
  background: var(--sdm-bg);
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 9px;
  place-content: center;
}

.sdm-category-grid button span {
  margin-bottom: 5px;
  color: var(--sdm-accent);
  font-size: 21px;
}

.sdm-category-grid button.sdm-is-selected,
.sdm-date-options button.sdm-is-selected,
.sdm-budget-options button.sdm-is-selected {
  color: var(--sdm-accent);
  background: var(--sdm-accent-soft);
  border-color: rgba(100, 93, 251, .34);
}

.sdm-field {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 9px 12px;
  background: var(--sdm-bg);
  border: 1px solid transparent;
  border-radius: 14px;
}

.sdm-field:focus-within {
  border-color: rgba(100, 93, 251, .42);
  background: #fff;
}

.sdm-field > span {
  color: var(--sdm-muted);
  font-size: 8px;
  font-weight: 700;
}

.sdm-field input,
.sdm-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--sdm-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 11px;
  font-weight: 700;
  resize: none;
}

.sdm-field--icon {
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
}

.sdm-field--icon > i {
  grid-row: 1 / 3;
  align-self: center;
  display: grid;
  width: 27px;
  height: 27px;
  color: var(--sdm-accent);
  background: var(--sdm-accent-soft);
  border-radius: 9px;
  font-size: 14px;
  font-style: normal;
  place-items: center;
}

.sdm-date-options,
.sdm-budget-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 9px;
}

.sdm-date-options button {
  display: grid;
  min-height: 64px;
  padding: 7px;
  color: var(--sdm-muted);
  background: var(--sdm-bg);
  border: 1px solid transparent;
  border-radius: 13px;
  place-content: center;
}

.sdm-date-options small { font-size: 8px; }
.sdm-date-options b { margin: 2px 0; font-size: 10px; }
.sdm-date-options span { font-size: 9px; }

.sdm-budget-options button {
  min-height: 44px;
  color: var(--sdm-muted);
  background: var(--sdm-bg);
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
}

.sdm-form-card > p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--sdm-muted);
  font-size: 9px;
}

.sdm-form-card > p span {
  color: var(--sdm-mint);
  font-size: 13px;
}

.sdm-primary,
.sdm-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 16px !important;
  border-radius: 14px;
  font-size: 12px !important;
  font-weight: 850 !important;
}

.sdm-primary {
  color: #fff !important;
  background: var(--sdm-ink) !important;
  box-shadow: 0 12px 24px rgba(21, 21, 21, .16);
}

.sdm-primary b {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--sdm-ink);
  background: var(--sdm-mint);
  border-radius: 9px;
  font-size: 15px;
  place-items: center;
}

.sdm-secondary {
  justify-content: center;
  color: var(--sdm-ink) !important;
  background: #fff !important;
  border: 1px solid var(--sdm-line) !important;
}

.sdm-form-error {
  color: var(--sdm-danger);
  font-size: 10px;
  font-weight: 700;
}

.sdm-status-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 92px;
  padding: 14px;
  color: #244d43;
  background: var(--sdm-mint-soft);
  border: 1px solid rgba(89, 217, 177, .34);
  border-radius: 20px;
}

.sdm-status-card__icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  color: #176f55;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 16px rgba(37, 135, 105, .1);
  place-items: center;
}

.sdm-status-card__icon i {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(89, 217, 177, .38);
  border-radius: 19px;
  animation: sdm-pulse 2.4s ease-out infinite;
}

.sdm-status-card small {
  display: block;
  margin-bottom: 3px;
  color: #579180;
  font-size: 8px;
  font-weight: 700;
}

.sdm-status-card strong {
  display: block;
  font-size: 14px;
  font-weight: 850;
}

.sdm-status-card p {
  margin-top: 3px;
  color: #679486;
  font-size: 9px;
}

.sdm-detail-card,
.sdm-specialist-card,
.sdm-timeline,
.sdm-report-review {
  margin-top: 10px;
}

.sdm-detail-card__head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.sdm-detail-card__head .sdm-category-icon {
  width: 42px;
  height: 42px;
}

.sdm-detail-card__head small,
.sdm-specialist-card small {
  display: block;
  color: var(--sdm-muted);
  font-size: 8px;
}

.sdm-detail-card__head h3 {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 850;
}

.sdm-detail-card__head > strong {
  font-size: 13px;
}

.sdm-detail-card dl {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--sdm-line);
}

.sdm-detail-card dl > div {
  display: grid;
  grid-template-columns: 67px 1fr;
  gap: 10px;
  font-size: 9px;
}

.sdm-detail-card dt { color: var(--sdm-muted); }
.sdm-detail-card dd { font-weight: 700; }

.sdm-specialist-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
}

.sdm-specialist-card__avatar {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--sdm-accent);
  border-radius: 16px;
  font-weight: 850;
  place-items: center;
}

.sdm-specialist-card__avatar i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 11px;
  height: 11px;
  background: var(--sdm-mint);
  border: 2px solid #fff;
  border-radius: 50%;
}

.sdm-specialist-card strong,
.sdm-specialist-card span {
  display: block;
}

.sdm-specialist-card strong { margin: 2px 0; font-size: 12px; }
.sdm-specialist-card span { color: var(--sdm-muted); font-size: 8px; }
.sdm-specialist-card span b { color: #ffc24b; }

.sdm-specialist-card > button {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--sdm-accent);
  background: var(--sdm-accent-soft);
  border-radius: 14px;
  font-size: 17px;
  place-items: center;
}

.sdm-timeline h3,
.sdm-report-review h3 {
  font-size: 13px;
  font-weight: 850;
}

.sdm-timeline ol {
  padding: 0;
  margin-top: 13px;
  list-style: none;
}

.sdm-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 9px;
  min-height: 49px;
  color: #aaa7b1;
}

.sdm-timeline li:not(:last-child)::after {
  position: absolute;
  top: 19px;
  bottom: -1px;
  left: 6px;
  width: 1px;
  content: "";
  background: #e5e3e9;
}

.sdm-timeline li > i {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  margin-top: 2px;
  background: #eceaf0;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #dcd9e2;
}

.sdm-timeline li strong,
.sdm-timeline li span {
  display: block;
}

.sdm-timeline li strong { font-size: 10px; }
.sdm-timeline li span { margin-top: 2px; font-size: 8px; }
.sdm-timeline li time { font-size: 8px; }

.sdm-timeline li.sdm-is-done,
.sdm-timeline li.sdm-is-current {
  color: var(--sdm-ink);
}

.sdm-timeline li.sdm-is-done > i,
.sdm-timeline li.sdm-is-current > i {
  background: var(--sdm-mint);
  box-shadow: 0 0 0 1px var(--sdm-mint);
}

.sdm-timeline li.sdm-is-current > i {
  background: var(--sdm-accent);
  box-shadow: 0 0 0 1px var(--sdm-accent), 0 0 0 5px rgba(100, 93, 251, .1);
}

.sdm-report-review {
  background: #f0efff;
  border-color: rgba(100, 93, 251, .18);
}

.sdm-report-review header,
.sdm-form-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sdm-report-review header small,
.sdm-form-card > header small {
  color: var(--sdm-muted);
  font-size: 8px;
}

.sdm-report-review header > span,
.sdm-form-card > header > span {
  padding: 5px 8px;
  color: var(--sdm-accent);
  background: #fff;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 800;
}

.sdm-report-review__photos,
.sdm-report-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 12px;
}

.sdm-report-review__photos > span,
.sdm-report-photos button {
  position: relative;
  display: grid;
  min-height: 92px;
  overflow: hidden;
  background: #d9d5c9;
  border-radius: 13px;
  place-content: center;
}

.sdm-report-review__photos > span:last-child,
.sdm-report-photos button:nth-child(2) {
  background: #d8ebd9;
}

.sdm-report-review__photos i,
.sdm-report-photos button > span {
  color: #3a6e54;
  font-size: 30px;
  font-style: normal;
  text-align: center;
}

.sdm-report-review__photos b,
.sdm-report-photos button > b,
.sdm-report-photos button > i {
  position: absolute;
  bottom: 7px;
  left: 7px;
  padding: 4px 6px;
  color: #fff;
  background: rgba(21, 21, 21, .66);
  border-radius: 6px;
  font-size: 7px;
  font-style: normal;
}

.sdm-report-review > p {
  margin-top: 10px;
  color: #625e7a;
  font-size: 9px;
  line-height: 1.5;
}

.sdm-actions {
  margin-top: 10px;
  padding-bottom: 4px;
}

.sdm-actions > div > p {
  margin: 0 4px 10px;
  color: var(--sdm-muted);
  font-size: 9px;
  text-align: center;
}

.sdm-actions .sdm-secondary + .sdm-secondary,
.sdm-actions .sdm-primary + .sdm-secondary {
  margin-top: 8px;
}

.sdm-waiting {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px;
  background: var(--sdm-mint-soft);
  border-radius: 18px;
}

.sdm-waiting > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--sdm-mint);
  border-radius: 14px;
  font-weight: 800;
  place-items: center;
}

.sdm-waiting strong,
.sdm-waiting small {
  display: block;
}

.sdm-waiting strong { font-size: 12px; }
.sdm-waiting small { margin-top: 3px; color: #4e8977; font-size: 8px; }

.sdm-rating {
  padding: 14px;
  text-align: center;
  background: #fff6df;
  border: 1px solid rgba(255, 194, 75, .25);
  border-radius: 18px;
}

.sdm-rating > span {
  color: #7d672f;
  font-size: 10px;
  font-weight: 700;
}

.sdm-rating > div {
  display: flex;
  justify-content: center;
  margin-top: 7px;
}

.sdm-rating button {
  width: 44px;
  height: 44px;
  color: #d7d3c9;
  font-size: 25px;
}

.sdm-rating button.sdm-is-rated {
  color: #ffc24b;
}

.sdm-checklist {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.sdm-checklist button {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 7px 10px;
  text-align: left;
  background: var(--sdm-bg);
  border-radius: 13px;
  font-size: 10px;
  font-weight: 700;
}

.sdm-checklist button i {
  display: grid;
  width: 30px;
  height: 30px;
  color: transparent;
  background: #fff;
  border: 1px solid #d9d6df;
  border-radius: 10px;
  font-style: normal;
  place-items: center;
}

.sdm-checklist button.sdm-is-checked i {
  color: #fff;
  background: var(--sdm-mint);
  border-color: var(--sdm-mint);
}

.sdm-report-photos {
  grid-template-columns: 1fr 1fr .78fr;
}

.sdm-report-photos button {
  min-height: 86px;
}

.sdm-report-photos button:nth-child(3) {
  background: var(--sdm-bg);
  border: 1px dashed rgba(100, 93, 251, .34);
}

.sdm-report-photos button:nth-child(3) > span {
  color: var(--sdm-accent);
  font-size: 21px;
}

.sdm-report-photos button:nth-child(3) > b {
  position: static;
  margin-top: 3px;
  padding: 0;
  color: var(--sdm-muted);
  background: none;
}

.sdm-report-photos button > i {
  right: 6px;
  left: auto;
}

.sdm-field--textarea {
  min-height: 92px;
  margin-top: 10px;
}

.sdm-toast {
  position: absolute;
  z-index: 80;
  right: 14px;
  bottom: 16px;
  left: 14px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(21, 21, 21, .94);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(21, 21, 21, .26);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity .2s ease, transform .35s var(--sdm-ease);
  backdrop-filter: blur(16px);
}

.sdm-toast.sdm-is-visible {
  opacity: 1;
  transform: none;
}

.sdm-toast > span {
  display: grid;
  width: 36px;
  height: 36px;
  color: #163e32;
  background: var(--sdm-mint);
  border-radius: 12px;
  font-weight: 900;
  place-items: center;
}

.sdm-toast strong,
.sdm-toast small {
  display: block;
}

.sdm-toast strong { font-size: 11px; }
.sdm-toast small { margin-top: 2px; color: rgba(255, 255, 255, .62); font-size: 8px; }

.sdm-demo {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(430px, 1.14fr);
  min-height: 920px;
  overflow: hidden;
  color: #f7f6fa;
  background: #1a1821;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 44px;
  font-family: var(--sdm-font);
  box-shadow: 0 34px 90px rgba(26, 24, 33, .24);
}

.sdm-demo::before {
  position: absolute;
  z-index: -2;
  top: -240px;
  right: -160px;
  width: 700px;
  height: 700px;
  content: "";
  background: rgba(100, 93, 251, .34);
  border-radius: 50%;
  filter: blur(8px);
}

.sdm-demo::after {
  position: absolute;
  z-index: -2;
  bottom: -270px;
  left: -180px;
  width: 590px;
  height: 590px;
  content: "";
  background: rgba(89, 217, 177, .12);
  border-radius: 50%;
}

.sdm-demo__copy {
  align-self: center;
  padding: clamp(46px, 6vw, 92px) clamp(34px, 6vw, 82px);
}

.sdm-demo__kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.sdm-demo__kicker::before {
  width: 27px;
  height: 1px;
  content: "";
  background: var(--sdm-mint);
}

.sdm-demo__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
}

.sdm-demo__brand > span {
  display: grid;
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--sdm-accent);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 14px 30px rgba(100, 93, 251, .26);
  font-size: 24px;
  font-weight: 850;
  place-items: center;
}

.sdm-demo__brand strong {
  font-size: 18px;
  letter-spacing: -.04em;
  line-height: .82;
}

.sdm-demo__copy h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 780;
  letter-spacing: -.065em;
  line-height: .92;
}

.sdm-demo__lead {
  max-width: 490px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.55;
}

.sdm-demo__steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 38px;
}

.sdm-demo__steps > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 11px 0 6px;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 99px;
  font-size: 10px;
  white-space: nowrap;
}

.sdm-demo__steps > span b {
  display: grid;
  width: 24px;
  height: 24px;
  color: #28243f;
  background: var(--sdm-mint);
  border-radius: 50%;
  font-size: 8px;
  place-items: center;
}

.sdm-demo__steps > i {
  color: rgba(255, 255, 255, .25);
  font-style: normal;
}

.sdm-demo__note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .47);
  font-size: 10px;
}

.sdm-demo__stage {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 40px 42px 34px;
  place-items: center;
}

.sdm-demo__grid {
  position: absolute;
  inset: 8% 3%;
  opacity: .2;
  background-image: linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 78%);
}

.sdm-phone {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  aspect-ratio: 375 / 812;
  padding: 10px;
  background: #070708;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 54px;
  box-shadow: 0 42px 90px rgba(0, 0, 0, .46), 0 0 0 5px #30303a, inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.sdm-phone::before,
.sdm-phone::after {
  position: absolute;
  left: -7px;
  width: 4px;
  content: "";
  background: #4a4a55;
  border-radius: 4px 0 0 4px;
}

.sdm-phone::before { top: 132px; height: 58px; }
.sdm-phone::after { top: 203px; height: 86px; }

.sdm-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--sdm-bg);
  border-radius: 45px;
}

.sdm-phone,
.sdm-phone *,
.sdm-phone *::before,
.sdm-phone *::after {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.sdm-phone :is(img, svg) {
  pointer-events: none;
  -webkit-user-drag: none;
}

.sdm-phone__status {
  position: absolute;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 20px;
  color: var(--sdm-ink);
  font-size: 10px;
  font-weight: 800;
  pointer-events: none;
}

.sdm-phone__island {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 104px;
  height: 28px;
  background: #070708;
  border-radius: 99px;
  transform: translateX(-50%);
}

.sdm-phone__viewport {
  position: absolute;
  inset: 38px 0 20px;
  min-width: 0;
  min-height: 0;
}

.sdm-phone__home {
  position: absolute;
  z-index: 95;
  bottom: 8px;
  left: 50%;
  width: 116px;
  height: 4px;
  background: #16161b;
  border-radius: 99px;
  transform: translateX(-50%);
}

.sdm-demo__chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 15px;
  color: #fff;
  background: rgba(35, 32, 45, .86);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.sdm-demo__chip i {
  width: 8px;
  height: 8px;
  background: var(--sdm-mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(89, 217, 177, .12);
}

.sdm-demo__chip--top { top: 19%; right: 4%; }
.sdm-demo__chip--bottom { bottom: 18%; left: 2%; }

.sdm-demo__status {
  position: absolute;
  right: 30px;
  bottom: 18px;
  left: 30px;
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  text-align: center;
}

@keyframes sdm-pulse {
  0% { opacity: .6; transform: scale(.88); }
  70%, 100% { opacity: 0; transform: scale(1.15); }
}

@media (hover: hover) {
  .sdm-app button:not(:disabled):hover { transform: translateY(-1px); }
  .sdm-role-switch button:hover,
  .sdm-view-toggle button:hover { transform: none; }
  .sdm-job-card:hover,
  .sdm-order-row:hover { border-color: rgba(100, 93, 251, .28) !important; }
  .sdm-primary:hover { background: #29272d !important; }
}

@media (max-width: 980px) {
  .sdm-demo {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sdm-demo__copy {
    padding-bottom: 34px;
  }

  .sdm-demo__copy h2,
  .sdm-demo__lead {
    max-width: 690px;
  }

  .sdm-demo__stage {
    min-height: 900px;
    padding-top: 22px;
  }

  .sdm-demo__chip--top { right: 12%; }
  .sdm-demo__chip--bottom { left: 12%; }
}

@media (max-width: 560px) {
  .sdm-demo {
    border-radius: 28px;
  }

  .sdm-demo__copy {
    padding: 42px 24px 22px;
  }

  .sdm-demo__copy h2 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .sdm-demo__steps {
    flex-wrap: wrap;
  }

  .sdm-demo__steps > i {
    display: none;
  }

  .sdm-demo__stage {
    min-height: 800px;
    padding: 22px 17px 40px;
  }

  .sdm-phone {
    width: min(354px, 95%);
    border-radius: 48px;
  }

  .sdm-phone__screen {
    border-radius: 40px;
  }

  .sdm-demo__chip {
    display: none;
  }
}

@media (max-width: 350px) {
  .sdm-rolebar { gap: 4px; padding-right: 4px; padding-left: 4px; }
  .sdm-role-switch button { padding-right: 4px; padding-left: 4px; }
  .sdm-role-switch button b { font-size: 9px; letter-spacing: -.025em; }
  .sdm-scroll { padding-right: 12px; padding-left: 12px; }
  .sdm-page-intro h1 { font-size: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .sdm-app *,
  .sdm-app *::before,
  .sdm-app *::after,
  .sdm-demo *,
  .sdm-demo *::before,
  .sdm-demo *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .sdm-rolebar,
  .sdm-toast,
  .sdm-demo__chip {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app,
html.brawus-v2-html body#body.brawus-v2 .sdm-app :is(button, input, textarea) {
  font-family: var(--sdm-font);
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app :is(h1, h2, h3, p, dl, dd, ol, fieldset) {
  margin: 0;
  color: inherit;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app button {
  line-height: 1.2;
  text-decoration: none;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app :is(input, textarea) {
  min-height: 0;
  box-shadow: none;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-role-switch button {
  color: #8d8a96 !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-role-switch button.sdm-is-active {
  color: var(--sdm-ink) !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app :is(.sdm-role-switch, .sdm-category-grid, .sdm-date-options, .sdm-budget-options, .sdm-view-toggle) button :is(b, small, span) {
  color: inherit !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app :is(.sdm-page-intro h1, .sdm-section-head h2, .sdm-inner-head h2, .sdm-form-card legend, .sdm-form-card h3, .sdm-detail-card h3, .sdm-timeline h3, .sdm-report-review h3) {
  color: var(--sdm-ink) !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app :is(.sdm-page-intro p, .sdm-page-intro > div > p, .sdm-section-head > span, .sdm-order-row em, .sdm-create-button small, .sdm-field > span, .sdm-job-card > small, .sdm-job-card > em, .sdm-detail-card dt, .sdm-specialist-card small, .sdm-specialist-card span, .sdm-timeline li span, .sdm-timeline li time) {
  color: var(--sdm-muted) !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app :is(.sdm-order-row strong, .sdm-create-button b, .sdm-job-card > strong, .sdm-detail-card strong, .sdm-detail-card dd, .sdm-specialist-card strong, .sdm-timeline li strong, .sdm-checklist button span) {
  color: var(--sdm-ink) !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-order-row > b {
  color: var(--sdm-muted) !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-hero-card > h2,
html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-hero-card__top b,
html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-hero-card__meta strong,
html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-balance-card strong,
html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-primary > span {
  color: #fff !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-primary > b {
  color: var(--sdm-ink) !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-status-card strong {
  color: #244d43 !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-app .sdm-status-card p {
  color: #679486 !important;
}

/* Canonical semantic checkmark supplied by the client. */
html body .sdm-app .sdm-status-card__icon span > svg { width: 15px !important; height: 15px !important; color: #176f55; }
html body .sdm-app .sdm-primary > b > svg { width: 12px !important; height: 12px !important; color: currentColor; }
html body .sdm-app .sdm-waiting > span > svg { width: 15px !important; height: 15px !important; }
html body .sdm-app .sdm-checklist button i > svg { width: 12px !important; height: 12px !important; }
html body .sdm-app .sdm-toast > span > svg { width: 13px !important; height: 13px !important; color: #163e32; }

/* ServiceDesk ctl2 — calm, two-sided service marketplace system. */
.sdm-app,
.sdm-demo {
  --sdm-bg: #f2f1ec;
  --sdm-card: #fffefa;
  --sdm-ink: #18231f;
  --sdm-muted: #5d6762;
  --sdm-line: #d7d9d3;
  --sdm-line-strong: #bfc5bf;
  --sdm-primary: #245b4d;
  --sdm-primary-dark: #173f35;
  --sdm-primary-soft: #dfeae4;
  --sdm-accent: var(--sdm-primary);
  --sdm-accent-soft: var(--sdm-primary-soft);
  --sdm-sand: #e7d5ad;
  --sdm-sand-soft: #f5eedf;
  --sdm-danger: #a64038;
  --sdm-focus: #175c4c;
  --sdm-on-dark: #fffefa;
  --sdm-font: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --sdm-ease: cubic-bezier(.22, 1, .36, 1);
}

.sdm-app {
  display: grid;
  grid-template-rows: 72px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  overflow: clip;
  color: var(--sdm-ink);
  background: var(--sdm-bg);
  font-family: var(--sdm-font);
  font-size: 14px;
  line-height: 1.42;
  container: sdm-app / size;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  touch-action: manipulation;
}

.sdm-app :is(input, textarea) {
  user-select: text;
  touch-action: auto;
}

.sdm-app :is(button, input, textarea) {
  min-height: 44px;
  color: inherit;
  border-radius: 0;
  font-family: inherit;
}

.sdm-app button {
  min-width: 44px;
}

.sdm-app :is(button, input, textarea):focus-visible {
  outline: 3px solid var(--sdm-focus);
  outline-offset: 2px;
}

.sdm-app :is(.sdm-primary, .sdm-hero-card button, .sdm-balance-card button, .sdm-mini-map button):focus-visible {
  outline-color: #fffefa;
  outline-offset: -4px;
}

.sdm-rolebar {
  position: relative;
  z-index: 30;
  top: auto;
  right: auto;
  left: auto;
  display: grid;
  grid-row: 1;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 72px;
  padding: 10px 14px;
  background: rgba(242, 241, 236, .96);
  border-bottom: 1px solid var(--sdm-line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sdm-brand {
  display: grid;
  width: 44px;
  height: 44px;
  min-height: 44px;
  place-items: center;
}

.sdm-brand > span {
  display: grid;
  width: 38px;
  height: 38px;
  color: #fffefa;
  background: var(--sdm-primary-dark);
  border-radius: 11px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.05em;
  place-items: center;
}

.sdm-brand > b {
  display: none;
}

.sdm-role-switch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4px;
  min-width: 0;
  padding: 4px;
  background: #e3e5df;
  border: 1px solid #daddd7;
  border-radius: 14px;
}

.sdm-role-switch button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  min-height: 44px;
  padding: 0 8px;
  color: #56615c;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.sdm-role-switch button > span {
  display: none;
}

.sdm-role-switch button.sdm-is-active {
  color: var(--sdm-primary-dark);
  background: var(--sdm-card);
  box-shadow: 0 3px 10px rgba(24, 35, 31, .08);
}

.sdm-avatar {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  min-height: 44px;
  color: #fffefa;
  background: var(--sdm-primary);
  border: 2px solid #fffefa !important;
  border-radius: 13px;
  box-shadow: 0 5px 14px rgba(23, 63, 53, .18);
  font-size: 13px;
  font-weight: 800;
  place-items: center;
}

.sdm-avatar i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  background: #66aa76;
  border: 2px solid var(--sdm-card);
  border-radius: 50%;
}

.sdm-view {
  position: absolute;
  z-index: 1;
  inset: 72px 0 0;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: opacity .18s ease, visibility 0s .18s;
}

.sdm-view.sdm-is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.sdm-scroll {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 18px 14px 30px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sdm-page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 62px;
  margin: 0 0 16px;
}

.sdm-page-intro p,
.sdm-page-intro > div > p {
  margin: 0 0 4px;
  color: var(--sdm-muted);
  font-size: 12px;
  font-weight: 650;
}

.sdm-page-intro h1 {
  color: var(--sdm-ink);
  font-size: clamp(25px, 8cqi, 30px);
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.sdm-online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 12px;
  color: #235843;
  background: #dfebe4;
  border: 1px solid #cbdcd1;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 760;
}

.sdm-online i,
.sdm-demo__note i {
  width: 8px;
  height: 8px;
  background: #4d9a65;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(77, 154, 101, .16);
}

.sdm-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, .78fr);
  grid-template-rows: auto minmax(96px, 1fr) auto auto;
  gap: 0 12px;
  min-height: 274px;
  padding: 16px;
  overflow: hidden;
  color: #fffefa;
  background: var(--sdm-primary-dark);
  border: 1px solid #12372e;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(23, 63, 53, .18);
}

.sdm-hero-card::before,
.sdm-hero-card::after {
  display: none;
}

.sdm-hero-card__top {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #dce9e3;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sdm-hero-card__top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.sdm-hero-card__top i {
  width: 7px;
  height: 7px;
  background: #88c896;
  border-radius: 50%;
}

.sdm-hero-card__art {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 2 / 5;
  width: 100%;
  min-height: 166px;
  margin-top: 12px;
  overflow: hidden;
  background: #ccd6cd url("/case/interactive/servicedesk-mobile/assets/plant-care-problem-wide-v2.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 14px;
}

.sdm-hero-card__art > * {
  display: none;
}

.sdm-hero-card > p {
  align-self: end;
  margin: 22px 0 6px;
  color: #bad2c8;
  font-size: 11px;
  font-weight: 700;
}

.sdm-hero-card > h2 {
  align-self: start;
  max-width: 100%;
  color: #fffefa;
  font-size: clamp(21px, 6.4cqi, 26px);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.sdm-hero-card__meta {
  display: grid;
  align-self: end;
  gap: 3px;
  margin-top: 18px;
  color: #c7d7d0;
  font-size: 10px;
}

.sdm-hero-card__meta strong {
  color: #fffefa;
  font-size: 16px;
  font-weight: 780;
}

.sdm-hero-card > button {
  position: static;
  z-index: auto;
  inset: auto;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 14px;
  color: var(--sdm-primary-dark);
  background: #fffefa;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 760;
}

.sdm-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 10px;
}

.sdm-section-head h2 {
  color: var(--sdm-ink);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -.025em;
}

.sdm-section-head > span {
  color: var(--sdm-muted);
  font-size: 11px;
  font-weight: 650;
}

.sdm-order-row,
.sdm-create-button {
  display: grid;
  width: 100%;
  min-height: 76px;
  padding: 12px;
  color: var(--sdm-ink);
  text-align: left;
  background: var(--sdm-card);
  border: 1px solid var(--sdm-line) !important;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(24, 35, 31, .055);
}

.sdm-order-row {
  grid-template-columns: 48px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
}

.sdm-order-row > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.sdm-order-row small {
  color: #326a59;
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
}

.sdm-order-row strong {
  min-width: 0;
  color: var(--sdm-ink);
  font-size: 14px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.sdm-order-row em {
  min-width: 0;
  color: var(--sdm-muted);
  font-size: 10px;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sdm-order-row > b {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--sdm-primary);
  background: var(--sdm-primary-soft);
  border-radius: 11px;
  font-size: 22px;
  place-items: center;
}

.sdm-category-icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--sdm-primary);
  background: var(--sdm-primary-soft);
  border-radius: 12px;
  font-size: 18px;
  place-items: center;
}

.sdm-category-icon svg {
  width: 23px;
  height: 23px;
}

.sdm-create-button {
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 1px 10px;
  align-items: center;
  margin-top: 10px;
  border-style: dashed !important;
  border-color: #aebbb4 !important;
  box-shadow: none;
}

.sdm-create-button > span {
  grid-row: 1 / 3;
  display: grid;
  width: 44px;
  height: 44px;
  color: #fffefa;
  background: var(--sdm-primary);
  border-radius: 11px;
  font-size: 24px;
  font-weight: 450;
  place-items: center;
}

.sdm-create-button b {
  align-self: end;
  color: var(--sdm-ink);
  font-size: 13px;
  font-weight: 760;
}

.sdm-create-button small {
  align-self: start;
  color: var(--sdm-muted);
  font-size: 10px;
}

.sdm-balance-card {
  padding: 17px;
  overflow: hidden;
  color: #fffefa;
  background: #202b27;
  border: 1px solid #15211d;
  border-radius: 17px;
  box-shadow: 0 16px 30px rgba(24, 35, 31, .16);
}

.sdm-balance-card > div:first-child {
  display: grid;
  gap: 2px;
}

.sdm-balance-card > div:first-child small,
.sdm-balance-card > div:first-child span {
  color: #bac8c1;
  font-size: 10px;
}

.sdm-balance-card > div:first-child strong {
  color: #fffefa;
  font-size: 26px;
  font-weight: 760;
}

.sdm-score {
  position: static;
  top: auto;
  right: auto;
  float: right;
  display: grid;
  width: 66px;
  height: 66px;
  margin-top: -54px;
  color: #fffefa;
  text-align: center;
  background: #2e443b;
  border: 1px solid #4c675b;
  border-radius: 14px;
  transform: none;
  place-content: center;
}

.sdm-score span {
  font-size: 20px;
  font-weight: 800;
}

.sdm-score small {
  color: #bac8c1;
  font-size: 9px;
}

.sdm-balance-card footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 10px;
  clear: both;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.sdm-balance-card footer > span {
  display: grid;
  color: #bac8c1;
  font-size: 9px;
}

.sdm-balance-card footer > span b {
  color: #fffefa;
  font-size: 14px;
}

.sdm-balance-card footer button {
  min-height: 44px;
  padding: 0 12px;
  color: #fffefa;
  background: #31594b;
  border: 1px solid #527365;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 720;
}

.sdm-view-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 3px;
  background: #e3e5df;
  border-radius: 11px;
}

.sdm-view-toggle button {
  min-height: 44px;
  padding: 0 10px;
  color: #56615c;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 720;
}

.sdm-view-toggle button.sdm-is-active {
  color: var(--sdm-primary-dark);
  background: var(--sdm-card);
  box-shadow: 0 2px 8px rgba(24, 35, 31, .08);
}

.sdm-job-feed {
  display: grid;
  gap: 10px;
}

.sdm-job-card {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 150px;
  padding: 15px;
  text-align: left;
  background: var(--sdm-card);
  border: 1px solid var(--sdm-line);
  border-radius: 15px;
  box-shadow: 0 9px 24px rgba(24, 35, 31, .05);
}

.sdm-job-card--featured {
  border-left: 4px solid var(--sdm-primary);
}

.sdm-job-card__badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  color: #2e644f;
  font-size: 9px;
  font-weight: 760;
}

.sdm-job-card__badge i {
  width: 7px;
  height: 7px;
  background: #5a9a6c;
  border-radius: 50%;
}

.sdm-job-card__badge--orange {
  color: #7c5a2e;
}

.sdm-job-card__badge--orange i {
  background: #b78b4b;
}

.sdm-job-card__price {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--sdm-primary-dark);
  font-size: 16px;
  font-weight: 780;
}

.sdm-job-card > strong {
  margin-top: 11px;
  color: var(--sdm-ink);
  font-size: 16px;
  font-weight: 760;
}

.sdm-job-card > small,
.sdm-job-card > em {
  color: var(--sdm-muted);
  font-size: 10px;
  font-style: normal;
}

.sdm-job-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  color: #345f51;
  border-top: 1px solid var(--sdm-line);
  font-size: 10px;
}

.sdm-job-card__footer i {
  font-size: 18px;
  font-style: normal;
}

.sdm-mini-map {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #dfe5df;
  border: 1px solid #c6cec7;
  border-radius: 16px;
}

.sdm-map-road {
  position: absolute;
  width: 160%;
  height: 48px;
  background: #faf9f4;
  border: 1px solid #cfd4ce;
  transform: rotate(-24deg);
}

.sdm-map-road--one { top: 55px; left: -70px; }
.sdm-map-road--two { top: 190px; left: -80px; transform: rotate(19deg); }
.sdm-map-road--three { top: 125px; left: -15px; transform: rotate(83deg); }

.sdm-mini-map button {
  position: absolute;
  display: grid;
  min-width: 92px;
  min-height: 62px;
  padding: 8px 10px;
  color: #fffefa;
  background: var(--sdm-primary-dark);
  border: 2px solid #fffefa;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(24, 35, 31, .18);
}

.sdm-mini-map button:first-of-type { top: 72px; left: 38px; }
.sdm-mini-map button:last-of-type { right: 34px; bottom: 58px; }
.sdm-mini-map button small { color: #c7d5cf; font-size: 9px; }

.sdm-inner-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  margin: 0 0 14px;
}

.sdm-inner-head > button {
  display: grid;
  width: 44px;
  height: 44px;
  min-height: 44px;
  color: var(--sdm-primary-dark);
  background: var(--sdm-card);
  border: 1px solid var(--sdm-line);
  border-radius: 11px;
  font-size: 19px;
  place-items: center;
}

.sdm-inner-head > div {
  min-width: 0;
}

.sdm-inner-head > div > span {
  display: block;
  margin-bottom: 2px;
  color: var(--sdm-muted);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sdm-inner-head h2 {
  min-width: 0;
  color: var(--sdm-ink);
  font-size: clamp(19px, 6cqi, 23px);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.sdm-inner-head > b {
  justify-self: end;
  color: var(--sdm-muted);
  font-size: 10px;
}

.sdm-create-form,
.sdm-report-form {
  display: grid;
  gap: 12px;
}

.sdm-form-card {
  min-width: 0;
  padding: 15px !important;
  background: var(--sdm-card) !important;
  border: 1px solid var(--sdm-line) !important;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(24, 35, 31, .045);
}

.sdm-form-card legend {
  width: 100%;
  margin-bottom: 12px;
  color: var(--sdm-ink);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -.02em;
}

.sdm-form-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.sdm-form-card > header small,
.sdm-form-card > header > span {
  color: var(--sdm-muted);
  font-size: 9px;
  font-weight: 700;
}

.sdm-form-card > header h3 {
  color: var(--sdm-ink);
  font-size: 16px;
  font-weight: 760;
}

.sdm-field-help {
  margin: -5px 0 12px;
  color: var(--sdm-muted);
  font-size: 11px;
  line-height: 1.45;
}

.sdm-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 13px;
}

.sdm-category-grid button {
  display: grid;
  justify-items: start;
  min-width: 0;
  min-height: 72px;
  padding: 10px;
  color: #4f5b55;
  text-align: left;
  background: #f1f2ee;
  border: 1px solid #dde0db;
  border-radius: 11px;
}

.sdm-category-grid button > span {
  color: #37695a;
  font-size: 18px;
}

.sdm-category-grid button > b {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.sdm-category-grid button.sdm-is-selected {
  color: var(--sdm-primary-dark);
  background: var(--sdm-primary-soft);
  border-color: #9ebdaf;
  box-shadow: inset 0 0 0 1px #9ebdaf;
}

.sdm-field {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  margin-top: 11px;
}

.sdm-field > span {
  color: #4f5b55;
  font-size: 10px;
  font-weight: 720;
}

.sdm-field input,
.sdm-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--sdm-ink);
  background: #f6f6f2;
  border: 1px solid #d7dad4;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.42;
  appearance: none;
  resize: vertical;
}

.sdm-field textarea {
  min-height: 92px;
}

.sdm-field--icon > i {
  display: none;
}

.sdm-date-options,
.sdm-budget-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.sdm-date-options button {
  display: grid;
  min-width: 0;
  min-height: 68px;
  padding: 8px;
  color: #53605a;
  background: #f1f2ee;
  border: 1px solid #dde0db;
  border-radius: 10px;
}

.sdm-date-options button small {
  font-size: 9px;
}

.sdm-date-options button b {
  color: var(--sdm-ink);
  font-size: 12px;
}

.sdm-date-options button span {
  font-size: 9px;
}

.sdm-budget-options button {
  min-width: 0;
  min-height: 48px;
  color: #4e5a55;
  background: #f1f2ee;
  border: 1px solid #dde0db;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 720;
}

.sdm-date-options button.sdm-is-selected,
.sdm-budget-options button.sdm-is-selected {
  color: var(--sdm-primary-dark);
  background: var(--sdm-primary-soft);
  border-color: #9ebdaf;
  box-shadow: inset 0 0 0 1px #9ebdaf;
}

.sdm-form-card > p:not(.sdm-field-help) {
  margin-top: 12px;
  color: #50605a;
  font-size: 10px;
}

.sdm-photo-grid,
.sdm-report-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.sdm-photo-card,
.sdm-report-photos .sdm-photo-card,
.sdm-photo-add {
  position: relative;
  display: grid;
  align-content: end;
  min-width: 0;
  min-height: 128px;
  padding: 9px;
  overflow: hidden;
  text-align: left;
  background: #e6e9e3;
  border: 1px solid var(--sdm-line);
  border-radius: 12px;
  isolation: isolate;
}

.sdm-photo-card img,
.sdm-detail-photo img,
.sdm-review-photo img {
  position: absolute;
  z-index: -1;
  top: calc(50% + var(--sdm-photo-y, 0%));
  left: calc(50% + var(--sdm-photo-x, 0%));
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) scale(var(--sdm-photo-zoom, 1));
  transform-origin: center;
  transition: transform .2s ease, object-position .2s ease;
}

.sdm-photo-card::after,
.sdm-review-photo::after {
  position: absolute;
  z-index: -1;
  inset: 52% 0 0;
  content: "";
  background: rgba(16, 29, 24, .68);
}

.sdm-photo-card > span,
.sdm-photo-card > b {
  color: #fffefa;
  font-size: 11px;
  font-weight: 760;
}

.sdm-photo-card > small,
.sdm-photo-card > i {
  color: #dce7e1;
  font-size: 9px;
  font-style: normal;
}

.sdm-photo-add {
  align-content: center;
  justify-items: center;
  color: var(--sdm-primary);
  text-align: center;
  background: #edf1ed;
  border: 1px dashed #9eb0a7;
}

.sdm-photo-add > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  color: #fffefa;
  background: var(--sdm-primary);
  border-radius: 10px;
  font-size: 22px;
  place-items: center;
}

.sdm-photo-add b {
  color: var(--sdm-primary-dark);
  font-size: 11px;
}

.sdm-photo-add small {
  color: var(--sdm-muted);
  font-size: 9px;
}

.sdm-primary,
.sdm-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 15px !important;
  border-radius: 11px;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.sdm-primary {
  color: #fffefa;
  background: var(--sdm-primary) !important;
  border: 1px solid var(--sdm-primary-dark);
  box-shadow: 0 9px 20px rgba(36, 91, 77, .17);
}

.sdm-primary > span {
  color: #fffefa !important;
}

.sdm-primary > b {
  display: grid;
  width: 30px;
  height: 30px;
  color: #fffefa !important;
  background: rgba(255, 255, 255, .12);
  border-radius: 8px;
  place-items: center;
}

.sdm-secondary {
  justify-content: center;
  color: var(--sdm-primary-dark);
  background: var(--sdm-card) !important;
  border: 1px solid var(--sdm-line-strong) !important;
  box-shadow: none;
}

.sdm-primary:disabled {
  cursor: wait;
  opacity: .68;
}

.sdm-form-error {
  padding: 10px 12px;
  color: #7d302c;
  background: #f7e8e5;
  border: 1px solid #e4bcb6;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 650;
}

.sdm-status-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #e3eee8;
  border: 1px solid #c5d9ce;
  border-radius: 14px;
}

.sdm-status-card__icon {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  color: #fffefa;
  background: var(--sdm-primary);
  border-radius: 13px;
  place-items: center;
}

.sdm-status-card__icon span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
}

.sdm-status-card__icon i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  background: #65aa74;
  border: 2px solid #e3eee8;
  border-radius: 50%;
}

.sdm-status-card small {
  color: #496259;
  font-size: 9px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.sdm-status-card strong {
  display: block;
  margin: 2px 0;
  color: #214e40 !important;
  font-size: 14px;
  font-weight: 780;
}

.sdm-status-card p {
  color: #4d645b !important;
  font-size: 10px;
  line-height: 1.35;
}

.sdm-detail-card,
.sdm-specialist-card,
.sdm-timeline,
.sdm-report-review {
  margin-top: 11px;
  padding: 15px;
  background: var(--sdm-card);
  border: 1px solid var(--sdm-line);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(24, 35, 31, .045);
}

.sdm-detail-card__head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.sdm-detail-card__head .sdm-category-icon {
  width: 44px;
  height: 44px;
}

.sdm-detail-card__head > div {
  min-width: 0;
}

.sdm-detail-card__head small {
  color: var(--sdm-muted);
  font-size: 9px;
}

.sdm-detail-card__head h3 {
  min-width: 0;
  color: var(--sdm-ink);
  font-size: 15px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.sdm-detail-card__head > strong {
  color: var(--sdm-primary-dark);
  font-size: 15px;
  white-space: nowrap;
}

.sdm-detail-card__description {
  margin-top: 13px;
  color: #46534d;
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.sdm-detail-photo-grid,
.sdm-report-review__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.sdm-detail-photo,
.sdm-review-photo {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 104px;
  padding: 0;
  overflow: hidden;
  background: #e6e9e3;
  border: 1px solid var(--sdm-line);
  border-radius: 11px;
  isolation: isolate;
}

.sdm-review-photo {
  align-content: end;
  padding: 9px;
  text-align: left;
}

.sdm-review-photo b {
  color: #fffefa;
  font-size: 10px;
}

.sdm-detail-card dl {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--sdm-line);
}

.sdm-detail-card dl > div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
}

.sdm-detail-card dt {
  color: var(--sdm-muted);
  font-size: 10px;
}

.sdm-detail-card dd {
  color: var(--sdm-ink);
  font-size: 11px;
  font-weight: 670;
  overflow-wrap: anywhere;
}

.sdm-specialist-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
}

.sdm-specialist-card__avatar {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  color: #fffefa;
  background: #3a6557;
  border-radius: 12px;
  font-weight: 780;
  place-items: center;
}

.sdm-specialist-card__avatar i {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 10px;
  height: 10px;
  background: #67a976;
  border: 2px solid var(--sdm-card);
  border-radius: 50%;
}

.sdm-specialist-card > div:nth-child(2) {
  display: grid;
  min-width: 0;
}

.sdm-specialist-card small,
.sdm-specialist-card span {
  color: var(--sdm-muted);
  font-size: 9px;
}

.sdm-specialist-card strong {
  color: var(--sdm-ink);
  font-size: 13px;
}

.sdm-specialist-card > button {
  display: grid;
  width: 44px;
  height: 44px;
  color: #fffefa;
  background: var(--sdm-primary);
  border-radius: 11px;
  place-items: center;
}

.sdm-timeline h3,
.sdm-report-review h3 {
  color: var(--sdm-ink);
  font-size: 15px;
  font-weight: 760;
}

.sdm-timeline ol {
  display: grid;
  gap: 0;
  margin-top: 10px;
  padding: 0;
  list-style: none;
}

.sdm-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 9px;
  min-height: 58px;
  padding: 8px 0;
}

.sdm-timeline li:not(:last-child)::after {
  position: absolute;
  top: 29px;
  bottom: -8px;
  left: 6px;
  width: 1px;
  content: "";
  background: #d5d9d3;
}

.sdm-timeline li > i {
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-top: 3px;
  background: var(--sdm-card);
  border: 2px solid #a8b0aa;
  border-radius: 50%;
}

.sdm-timeline li.sdm-is-current > i,
.sdm-timeline li.sdm-is-done > i {
  background: var(--sdm-primary);
  border-color: var(--sdm-primary);
}

.sdm-timeline li > div {
  display: grid;
}

.sdm-timeline li strong {
  color: var(--sdm-ink);
  font-size: 11px;
  font-weight: 720;
}

.sdm-timeline li span,
.sdm-timeline li time {
  color: var(--sdm-muted);
  font-size: 9px;
}

.sdm-timeline li time {
  padding-top: 2px;
}

.sdm-report-review header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.sdm-report-review header small,
.sdm-report-review header > span {
  color: var(--sdm-muted);
  font-size: 9px;
}

.sdm-report-review > p {
  margin-top: 12px;
  color: #46534d;
  font-size: 11px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.sdm-actions {
  margin-top: 12px;
  padding-bottom: 5px;
}

.sdm-actions > div {
  display: grid;
  gap: 8px;
}

.sdm-actions p {
  color: var(--sdm-muted);
  font-size: 10px;
  line-height: 1.4;
}

.sdm-waiting {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 13px;
  background: var(--sdm-primary-soft);
  border: 1px solid #c2d6cb;
  border-radius: 12px;
}

.sdm-waiting > span {
  display: grid;
  width: 44px;
  height: 44px;
  color: #fffefa;
  background: var(--sdm-primary);
  border-radius: 11px;
  place-items: center;
}

.sdm-waiting p {
  display: grid;
  color: var(--sdm-primary-dark);
}

.sdm-waiting small {
  color: #50675e;
  font-size: 9px;
}

.sdm-rating {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: var(--sdm-sand-soft);
  border: 1px solid #dfceaa;
  border-radius: 13px;
}

.sdm-rating > span {
  color: #574725;
  font-size: 11px;
  font-weight: 700;
}

.sdm-rating > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(44px, 1fr));
  gap: 3px;
  overflow-x: auto;
}

.sdm-rating button {
  min-width: 44px;
  min-height: 44px;
  color: #776b53;
  background: #fffaf0;
  border: 1px solid #d9c79f;
  border-radius: 9px;
  font-size: 20px;
}

.sdm-rating button.sdm-is-rated {
  color: #7b5510;
  background: #f1d98d;
  border-color: #c8a94f;
}

.sdm-checklist {
  display: grid;
  gap: 7px;
}

.sdm-checklist button {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 8px 10px;
  color: var(--sdm-ink);
  text-align: left;
  background: #f2f3ef;
  border: 1px solid #dce0da;
  border-radius: 10px;
}

.sdm-checklist button i {
  display: grid;
  width: 30px;
  height: 30px;
  color: transparent;
  background: var(--sdm-card);
  border: 1px solid #aab4ad;
  border-radius: 8px;
  place-items: center;
}

.sdm-checklist button.sdm-is-checked i {
  color: #fffefa;
  background: var(--sdm-primary);
  border-color: var(--sdm-primary);
}

.sdm-checklist button span {
  color: var(--sdm-ink);
  font-size: 11px;
  font-weight: 650;
}

.sdm-view--chat {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #edf0eb;
}

.sdm-chat-head {
  margin: 0;
  padding: 10px 14px;
  background: var(--sdm-card);
  border-bottom: 1px solid var(--sdm-line);
}

.sdm-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  padding: 16px 14px 24px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.sdm-chat-day {
  align-self: center;
  margin: 0;
  padding: 5px 9px;
  color: var(--sdm-muted);
  background: #e2e6e0;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
}

.sdm-message {
  display: flex;
  align-items: end;
  gap: 7px;
  max-width: 86%;
}

.sdm-message--outgoing {
  align-self: flex-end;
}

.sdm-message--incoming {
  align-self: flex-start;
}

.sdm-message > span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: #fffefa;
  background: var(--sdm-primary);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 760;
  place-items: center;
}

.sdm-message p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px 12px;
  color: var(--sdm-ink);
  background: var(--sdm-card);
  border: 1px solid var(--sdm-line);
  border-radius: 13px 13px 13px 4px;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.sdm-message--outgoing p {
  color: #fffefa;
  background: var(--sdm-primary);
  border-color: var(--sdm-primary-dark);
  border-radius: 13px 13px 4px 13px;
}

.sdm-message time {
  justify-self: end;
  color: var(--sdm-muted);
  font-size: 8px;
}

.sdm-message--outgoing time {
  color: #d6e4dd;
}

.sdm-chat-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
  padding: 10px 14px 14px;
  background: var(--sdm-card);
  border-top: 1px solid var(--sdm-line);
}

.sdm-chat-compose label {
  min-width: 0;
}

.sdm-chat-compose input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 13px;
  color: var(--sdm-ink);
  background: #f1f3ef;
  border: 1px solid #d4d9d3;
  border-radius: 11px;
  font-size: 12px;
}

.sdm-chat-compose input::placeholder {
  color: #68736d;
  opacity: 1;
}

.sdm-chat-compose button {
  display: grid;
  width: 48px;
  height: 48px;
  min-height: 48px;
  color: #fffefa;
  background: var(--sdm-primary);
  border-radius: 11px;
  font-size: 20px;
  place-items: center;
}

.sdm-file-input {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sdm-overlay {
  position: absolute;
  z-index: 100;
  inset: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: rgba(14, 24, 20, .42);
  opacity: 0;
  transition: opacity .18s ease;
}

.sdm-overlay.sdm-is-open {
  opacity: 1;
}

.sdm-overlay__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 44px;
  background: transparent;
}

.sdm-crop-sheet,
.sdm-info-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: calc(100% - 18px);
  padding: 15px;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--sdm-ink);
  background: var(--sdm-card);
  border: 1px solid var(--sdm-line);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -20px 46px rgba(16, 29, 24, .18);
  transform: translateY(18px);
  transition: transform .24s var(--sdm-ease);
}

.sdm-overlay.sdm-is-open :is(.sdm-crop-sheet, .sdm-info-sheet) {
  transform: none;
}

.sdm-crop-sheet > header,
.sdm-info-sheet > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.sdm-crop-sheet > header small,
.sdm-info-sheet > header > span {
  color: var(--sdm-muted);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sdm-crop-sheet h2,
.sdm-info-sheet h2 {
  color: var(--sdm-ink);
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -.035em;
}

.sdm-crop-sheet > header > button,
.sdm-info-sheet > header > button {
  display: grid;
  width: 44px;
  height: 44px;
  min-height: 44px;
  color: var(--sdm-primary-dark);
  background: #eef1ed;
  border: 1px solid #d5dad4;
  border-radius: 11px;
  font-size: 19px;
  place-items: center;
}

.sdm-crop-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  background: #d9ded8;
  border: 1px solid #aeb8b1;
  border-radius: 13px;
  isolation: isolate;
}

.sdm-crop-stage.sdm-is-dragging {
  cursor: grabbing;
}

.sdm-crop-stage img {
  position: absolute;
  top: calc(50% + var(--sdm-photo-y, 0%));
  left: calc(50% + var(--sdm-photo-x, 0%));
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) scale(var(--sdm-photo-zoom, 1));
  transform-origin: center;
  pointer-events: none;
  user-select: none;
}

.sdm-crop-stage > span {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, .88);
  box-shadow: 0 0 0 999px rgba(9, 17, 14, .28);
  pointer-events: none;
}

.sdm-crop-stage > span::before,
.sdm-crop-stage > span::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, .65);
}

.sdm-crop-stage > span::before {
  top: 33.33%;
  left: 0;
  width: 100%;
  height: 1px;
  box-shadow: 0 calc(100% + 33.33%) 0 rgba(255, 255, 255, .65);
}

.sdm-crop-stage > span::after {
  top: 0;
  left: 33.33%;
  width: 1px;
  height: 100%;
  box-shadow: calc(100% + 33.33%) 0 0 rgba(255, 255, 255, .65);
}

.sdm-crop-zoom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: #4f5b55;
  font-size: 10px;
  font-weight: 700;
}

.sdm-crop-zoom input {
  width: 100%;
  min-width: 0;
  accent-color: var(--sdm-primary);
}

.sdm-crop-zoom output {
  text-align: right;
  color: var(--sdm-primary-dark);
  font-weight: 760;
}

.sdm-crop-actions {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 8px;
  margin-top: 12px;
}

.sdm-overlay[data-sdm-readonly] .sdm-crop-stage {
  cursor: default;
  touch-action: pan-y;
}

.sdm-overlay[data-sdm-readonly] .sdm-crop-stage > span,
.sdm-overlay[data-sdm-readonly] :is(.sdm-crop-zoom, .sdm-crop-actions) {
  display: none;
}

.sdm-info-sheet > p {
  margin: 8px 0 15px;
  color: #4f5b55;
  font-size: 12px;
  line-height: 1.55;
}

.sdm-info-sheet dl {
  display: grid;
  gap: 0;
  margin-bottom: 14px;
  border-top: 1px solid var(--sdm-line);
}

.sdm-info-sheet dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--sdm-line);
}

.sdm-info-sheet dt {
  color: var(--sdm-muted);
  font-size: 10px;
}

.sdm-info-sheet dd {
  color: var(--sdm-ink);
  font-size: 11px;
  font-weight: 760;
  text-align: right;
  overflow-wrap: anywhere;
}

.sdm-toast {
  position: absolute;
  z-index: 140;
  top: 82px;
  right: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 10px 12px;
  color: #fffefa;
  background: #1d3029;
  border: 1px solid #395048;
  border-radius: 13px;
  box-shadow: 0 14px 32px rgba(16, 29, 24, .24);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .24s var(--sdm-ease);
}

.sdm-toast.sdm-is-visible {
  opacity: 1;
  transform: none;
}

.sdm-toast > span {
  display: grid;
  width: 40px;
  height: 40px;
  color: #fffefa;
  background: #396858;
  border-radius: 10px;
  place-items: center;
}

.sdm-toast p {
  display: grid;
}

.sdm-toast strong {
  color: #fffefa;
  font-size: 11px;
}

.sdm-toast small {
  color: #c7d5cf;
  font-size: 9px;
}

.sdm-demo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 460px) minmax(360px, 620px);
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 7vw, 112px);
  width: min(100%, 1500px);
  min-height: 860px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 108px);
  overflow: hidden;
  color: var(--sdm-ink);
  background: #ece9e1;
  font-family: var(--sdm-font);
  isolation: isolate;
}

.sdm-demo::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  content: "";
  background: linear-gradient(rgba(24, 35, 31, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 35, 31, .035) 1px, transparent 1px);
  background-size: 36px 36px;
  border-radius: 0;
  filter: none;
}

.sdm-demo::after {
  display: none;
}

.sdm-demo__copy {
  position: relative;
  z-index: 2;
  max-width: 440px;
}

.sdm-demo__kicker {
  margin: 0 0 22px;
  color: #456257;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sdm-demo__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.sdm-demo__brand > span {
  display: grid;
  width: 48px;
  height: 48px;
  color: #fffefa;
  background: var(--sdm-primary-dark);
  border-radius: 13px;
  box-shadow: none;
  font-size: 23px;
  font-weight: 800;
  place-items: center;
}

.sdm-demo__brand strong {
  font-size: 14px;
  line-height: .9;
}

.sdm-demo__copy h2 {
  max-width: 430px;
  margin: 0;
  color: var(--sdm-ink);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 730;
  letter-spacing: -.06em;
  line-height: .95;
}

.sdm-demo__lead {
  max-width: 430px;
  margin: 25px 0 0;
  color: #53605a;
  font-size: 17px;
  line-height: 1.55;
}

.sdm-demo__steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.sdm-demo__steps span {
  display: grid;
  gap: 2px;
  color: #44534d;
  font-size: 11px;
  font-weight: 700;
}

.sdm-demo__steps span b {
  color: #2b5c4d;
  font-size: 10px;
  letter-spacing: .08em;
}

.sdm-demo__steps > i {
  color: #748079;
  font-style: normal;
}

.sdm-demo__note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 28px 0 0;
  color: #4d5b55;
  font-size: 11px;
}

.sdm-demo__stage {
  position: relative;
  display: grid;
  justify-items: center;
}

.sdm-demo__grid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 660px;
  border: 1px solid rgba(24, 35, 31, .1);
  transform: translate(-50%, -50%);
}

.sdm-demo__grid::before,
.sdm-demo__grid::after {
  position: absolute;
  content: "";
  background: rgba(24, 35, 31, .1);
}

.sdm-demo__grid::before { top: 0; bottom: 0; left: 50%; width: 1px; }
.sdm-demo__grid::after { top: 50%; right: 0; left: 0; height: 1px; }

.sdm-phone {
  position: relative;
  z-index: 3;
  width: 390px;
  height: 844px;
  padding: 10px;
  background: #1d2421;
  border: 1px solid #49514d;
  border-radius: 55px;
  box-shadow: 0 42px 80px rgba(24, 35, 31, .25), inset 0 0 0 2px #747d78;
}

.sdm-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--sdm-bg);
  border-radius: 45px;
}

.sdm-phone__island {
  position: absolute;
  z-index: 60;
  top: 12px;
  left: 50%;
  width: 118px;
  height: 34px;
  background: #080b0a;
  border-radius: 18px;
  transform: translateX(-50%);
}

.sdm-phone__status {
  position: absolute;
  z-index: 55;
  top: 10px;
  right: 22px;
  left: 22px;
  color: #17211e;
}

.sdm-phone__viewport {
  position: absolute;
  inset: 54px 0 19px;
  overflow: hidden;
  background: var(--sdm-bg);
}

.sdm-phone__home {
  position: absolute;
  z-index: 70;
  bottom: 7px;
  left: 50%;
  width: 128px;
  height: 5px;
  background: #101613;
  border-radius: 3px;
  transform: translateX(-50%);
}

.sdm-demo__chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 11px;
  color: #334c43;
  background: #fffefa;
  border: 1px solid #cdd2cc;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(24, 35, 31, .1);
  font-size: 10px;
  font-weight: 720;
}

.sdm-demo__chip i {
  width: 7px;
  height: 7px;
  background: #5b996b;
  border-radius: 50%;
}

.sdm-demo__chip--top { top: 120px; right: -24px; }
.sdm-demo__chip--bottom { bottom: 130px; left: -38px; }

.sdm-demo__status {
  position: absolute;
  bottom: -34px;
  left: 50%;
  width: max-content;
  max-width: 390px;
  margin: 0;
  color: #53605a;
  font-size: 10px;
  text-align: center;
  transform: translateX(-50%);
}

@container sdm-app (max-width: 340px) {
  .sdm-rolebar {
    padding-inline: 10px;
  }

  .sdm-role-switch button {
    padding-inline: 5px;
    font-size: 10px;
  }

  .sdm-scroll {
    padding-inline: 11px;
  }

  .sdm-hero-card {
    grid-template-columns: minmax(0, 1fr) 108px;
    padding: 13px;
  }

  .sdm-category-grid {
    gap: 5px;
  }

  .sdm-category-grid button {
    min-height: 76px;
    padding: 8px 6px;
  }

  .sdm-crop-actions {
    grid-template-columns: 1fr;
  }

  .sdm-detail-card__head {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .sdm-detail-card__head > strong {
    grid-column: 2;
  }
}

@media (max-width: 980px) {
  .sdm-demo {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 0;
    padding: 64px 24px 86px;
  }

  .sdm-demo__copy {
    max-width: 620px;
    text-align: center;
  }

  .sdm-demo__brand,
  .sdm-demo__steps,
  .sdm-demo__note {
    justify-content: center;
  }

  .sdm-demo__copy h2,
  .sdm-demo__lead {
    margin-inline: auto;
  }
}

@media (max-width: 470px) {
  .sdm-demo {
    display: block;
    padding: 30px 0 56px;
  }

  .sdm-demo__copy,
  .sdm-demo__chip,
  .sdm-demo__grid,
  .sdm-demo__status {
    display: none;
  }

  .sdm-phone {
    width: min(100vw, 390px);
    height: min(844px, calc(100svh - 12px));
    min-height: 650px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .sdm-phone__screen {
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sdm-app *,
  .sdm-app *::before,
  .sdm-app *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Final host authorities: resist the portfolio normalizer without leaking out. */
html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] {
  --sdm-muted: #5d6762;
  color: var(--sdm-ink) !important;
  background: var(--sdm-bg) !important;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] :is(button, input, textarea) {
  color: inherit;
  font-family: inherit !important;
  text-transform: none;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-role-switch button {
  color: #56615c !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-role-switch button.sdm-is-active {
  color: var(--sdm-primary-dark) !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] :is(
  .sdm-page-intro p,
  .sdm-page-intro > div > p,
  .sdm-section-head > span,
  .sdm-order-row em,
  .sdm-create-button small,
  .sdm-field > span,
  .sdm-job-card > small,
  .sdm-job-card > em,
  .sdm-detail-card dt,
  .sdm-specialist-card small,
  .sdm-specialist-card span,
  .sdm-timeline li span,
  .sdm-timeline li time
) {
  color: var(--sdm-muted) !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] :is(
  .sdm-page-intro h1,
  .sdm-section-head h2,
  .sdm-inner-head h2,
  .sdm-form-card legend,
  .sdm-form-card h3,
  .sdm-detail-card h3,
  .sdm-timeline h3,
  .sdm-report-review h3,
  .sdm-order-row strong,
  .sdm-create-button b,
  .sdm-job-card > strong,
  .sdm-detail-card strong,
  .sdm-detail-card dd,
  .sdm-specialist-card strong,
  .sdm-timeline li strong,
  .sdm-checklist button span
) {
  color: var(--sdm-ink) !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-primary {
  color: #fffefa !important;
  background: var(--sdm-primary) !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-primary :is(span, b) {
  color: #fffefa !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-status-card strong {
  color: #214e40 !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-status-card p {
  color: #4d645b !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-hero-card > button {
  color: var(--sdm-primary-dark) !important;
  background: #fffefa !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-online {
  color: #235843 !important;
  background: #dfebe4 !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-demo :is(.sdm-demo__kicker, .sdm-demo__lead, .sdm-demo__note) {
  color: #46564f !important;
}

html.brawus-v2-html body#body.brawus-v2 .sdm-demo .sdm-demo__kicker {
  color: #2e5e4f !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-job-card--featured {
  border: 1px solid var(--sdm-line) !important;
  border-left: 4px solid var(--sdm-primary) !important;
  box-shadow: 0 9px 24px rgba(24, 35, 31, .05) !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-field {
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-field:focus-within {
  background: transparent !important;
  border-color: transparent !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-crop-zoom input[type="range"] {
  display: block;
  width: 100% !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-timeline li.sdm-is-current > i {
  box-shadow: 0 0 0 4px rgba(36, 91, 77, .14) !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-mini-map::before {
  background: repeating-linear-gradient(27deg, transparent 0 36px, rgba(36, 91, 77, .055) 37px 38px) !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-report-photos > button.sdm-photo-card {
  align-content: end !important;
  justify-content: stretch !important;
  background: #e6e9e3 !important;
  border: 1px solid var(--sdm-line) !important;
  text-align: left !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-report-photos > button.sdm-photo-card > span {
  color: #fffefa !important;
  font-size: 11px !important;
  text-align: left !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-report-photos > button.sdm-photo-add {
  background: #edf1ed !important;
  border: 1px dashed #9eb0a7 !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-report-photos > button.sdm-photo-add > span {
  color: #fffefa !important;
  background: var(--sdm-primary) !important;
  font-size: 22px !important;
}

html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-report-photos > button.sdm-photo-add > b {
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--sdm-primary-dark) !important;
  background: transparent !important;
  font-size: 11px !important;
}

@media (hover: hover) {
  html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] :is(.sdm-job-card, .sdm-order-row):hover {
    border-color: rgba(36, 91, 77, .34) !important;
  }

  html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-job-card--featured:hover {
    border-left-color: var(--sdm-primary) !important;
  }

  html.brawus-v2-html body#body.brawus-v2 [data-servicedesk-app] .sdm-primary:hover {
    background: var(--sdm-primary-dark) !important;
  }
}

html body [data-servicedesk-app] .sdm-status-card__icon span > svg,
html body [data-servicedesk-app] .sdm-primary > b > svg,
html body [data-servicedesk-app] .sdm-waiting > span > svg,
html body [data-servicedesk-app] .sdm-checklist button i > svg,
html body [data-servicedesk-app] .sdm-toast > span > svg {
  width: 17px !important;
  height: 17px !important;
  color: currentColor !important;
}

.sdm-demo__brand-icon {
  display: block;
  width: 52px !important;
  max-width: none !important;
  height: 52px !important;
  flex: 0 0 52px;
  border: 1px solid rgba(18,18,22,.12);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(18,18,22,.16);
  object-fit: cover !important;
}

.sdm-brand__icon {
  display: block;
  width: 34px !important;
  max-width: none !important;
  height: 34px !important;
  flex: 0 0 34px;
  border-radius: 11px;
  object-fit: cover !important;
}
