:root {
  --app-bg: #f4f6fb;
  --app-surface: #ffffff;
  --app-soft: #f0f3f8;
  --app-line: #e2e8f2;
  --app-ink: #111225;
  --app-muted: #7b8192;
  --app-orange: #ff7717;
  --app-orange-2: #ff9b45;
  --app-green: #18c781;
  --app-red: #ef4444;
  --app-shadow: 0 18px 48px rgba(17, 18, 37, .12);
  --app-radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 119, 23, .24), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(74, 112, 255, .18), transparent 26%),
    #090b16;
}

body.number-shell {
  position: relative;
  min-height: 100svh;
  width: min(100%, 430px);
  margin: 0 auto;
  overflow-x: hidden;
  color: var(--app-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 248, 252, .98) 42%, #fff),
    var(--app-bg);
  font-family: "Euclid Circular A", Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 32px 90px rgba(0, 0, 0, .36);
}

body.number-shell:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 119, 23, .18), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(255, 180, 95, .16), transparent 30%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:active,
a:active {
  transform: scale(.98);
}

.wide-container {
  width: 100%;
  max-width: 100%;
  padding-inline: 20px;
}

body.number-shell header.wide-container,
body.number-shell main.wide-container {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: 20px;
  box-sizing: border-box;
}

body.number-shell main.wide-container {
  padding-bottom: calc(112px + env(safe-area-inset-bottom));
}

.sms-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: max(10px, env(safe-area-inset-top));
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(226, 232, 242, .7);
  backdrop-filter: blur(22px) saturate(160%);
}

.sms-brand,
.sms-brand.mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--app-ink);
  font-size: 20px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.02em;
}

.sms-brand-image {
  flex: 1 1 auto;
  max-width: min(190px, calc(100% - 58px));
  gap: 0;
}

.sms-brand-logo {
  display: block;
  width: min(190px, 52vw);
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 20px rgba(17, 18, 37, .08));
}

.is-authenticated .sms-brand-image {
  max-width: 132px;
}

.is-authenticated .sms-brand-logo {
  width: min(132px, 32vw);
}

.is-guest .sms-header .sms-btn-plain {
  display: none;
}

.sms-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--app-orange), var(--app-orange-2));
  box-shadow: 0 12px 30px rgba(255, 119, 23, .28);
  font-size: 13px;
  font-weight: 900;
}

.sms-top-nav,
.sms-header .sms-btn-primary,
.sms-header .sms-btn-soft {
  display: none !important;
}

.sms-lang {
  position: relative;
  display: none !important;
}

.sms-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-right: 50px;
  position: relative;
  z-index: 2;
}

.sms-header-actions form {
  display: none;
}

.sms-balance,
.sms-btn-plain,
.sms-icon-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--app-line);
  border-radius: 14px;
  padding: 0 12px;
  background: rgba(255, 255, 255, .82);
  color: var(--app-ink);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(17, 18, 37, .06);
}

.sms-header .sms-btn-primary,
.sms-header .sms-btn-primary:visited,
.sms-header .sms-btn-primary:hover,
.sms-header .sms-btn-primary:focus {
  color: #fff !important;
}

.app-primary-action:disabled,
.app-primary-action[aria-busy="true"] {
  cursor: wait;
  opacity: 0.82;
}

.sms-lang-current {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--app-line);
  border-radius: 16px;
  padding: 0 12px;
  color: var(--app-ink);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(17, 18, 37, .07);
  font-size: 12px;
  font-weight: 950;
}

.sms-lang-current svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sms-lang-flag {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
  overflow: hidden;
}

.sms-lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 140;
  min-width: 138px;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(226, 232, 242, .92);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 48px rgba(17, 18, 37, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(.98);
  transition: opacity .16s ease, transform .16s ease;
}

.sms-lang.open .sms-lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sms-lang-menu button {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 0 10px;
  color: var(--app-ink);
  background: transparent;
  font-size: 12px;
  font-weight: 950;
  text-align: left;
}

.sms-lang-menu button.active,
.sms-lang-menu button:hover {
  border-color: rgba(255, 119, 23, .22);
  background: #fff7f0;
}

.sms-lang-menu span {
  font-size: 16px;
  line-height: 1;
}

.sms-icon-btn {
  width: 38px;
  padding: 0;
}

.sms-balance {
  min-width: 78px;
  min-height: 42px;
  border-radius: 16px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 30px rgba(17, 18, 37, .08);
}

.sms-icon-btn svg,
.sms-menu-toggle svg,
.number-bottom-nav svg,
.sms-card-head svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sms-menu-toggle {
  position: fixed;
  top: max(18px, calc(env(safe-area-inset-top) + 18px));
  right: max(20px, calc((100vw - 430px) / 2 + 20px));
  z-index: 95;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(17, 18, 37, .08);
  border-radius: 16px;
  color: #fff;
  background: var(--app-ink);
  padding: 0;
  box-shadow: 0 14px 30px rgba(17, 18, 37, .16);
}

@media (max-width: 430px) {
  .sms-menu-toggle {
    right: 20px;
  }

  .sms-transaction-list article {
    gap: 9px;
    padding: 12px;
  }

  .sms-transaction-list article b {
    max-width: 78px;
    font-size: 13px;
  }
}

.sms-menu-toggle svg {
  display: block !important;
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.sms-main {
  padding-bottom: calc(112px + env(safe-area-inset-bottom));
}

.number-alert {
  margin: 14px 0;
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
}

.number-alert.success {
  color: #067647;
  background: #dcfae6;
}

.number-alert.error {
  color: #b42318;
  background: #fef3f2;
}

.number-toast-stack {
  position: fixed;
  top: max(88px, calc(env(safe-area-inset-top) + 88px));
  left: 50%;
  z-index: 13000;
  width: min(390px, calc(100vw - 32px));
  display: grid;
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: none;
}

.number-toast {
  min-height: 62px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(226, 232, 242, .9);
  border-radius: 22px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 22px 54px rgba(17, 18, 37, .18);
  animation: appToastIn .28s ease both;
  backdrop-filter: blur(18px) saturate(160%);
  pointer-events: auto;
}

.number-toast.closing {
  animation: appToastOut .22s ease both;
}

.number-toast-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--app-orange);
  font-size: 16px;
  font-weight: 950;
}

.number-toast.success .number-toast-icon {
  background: var(--app-green);
}

.number-toast p {
  min-width: 0;
  margin: 0;
  color: var(--app-ink);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 850;
}

.number-toast button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--app-muted);
  background: var(--app-soft);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.app-home {
  padding: 12px 0 24px;
}

.app-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 314px;
  border-radius: 34px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 213, 170, .42), transparent 28%),
    linear-gradient(145deg, #15162a 0%, #1f2036 48%, #ff7717 140%);
  box-shadow: 0 26px 58px rgba(17, 18, 37, .22);
}

.app-hero-card:before,
.app-hero-card:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.app-hero-card:before {
  width: 210px;
  height: 210px;
  right: -72px;
  top: 50px;
  background: rgba(255, 119, 23, .26);
  filter: blur(6px);
  animation: appFloat 5s ease-in-out infinite;
}

.app-hero-card:after {
  width: 110px;
  height: 110px;
  left: -32px;
  bottom: -36px;
  background: rgba(255, 255, 255, .1);
  animation: appFloat 6s ease-in-out infinite reverse;
}

.app-hero-top,
.app-action-row,
.app-code-preview {
  position: relative;
  z-index: 1;
}

.app-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-live-dot,
.app-balance-pill,
.app-signal-dots {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.app-signal-dots {
  gap: 6px;
  margin-left: auto;
  padding-inline: 10px;
}

.app-signal-dots i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  animation: appDotFlow 1.35s ease-in-out infinite;
}

.app-signal-dots i:nth-child(2) {
  animation-delay: .16s;
}

.app-signal-dots i:nth-child(3) {
  animation-delay: .32s;
}

.app-live-dot b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--app-green);
  box-shadow: 0 0 0 6px rgba(24, 199, 129, .16);
  animation: appPulse 1.5s ease-in-out infinite;
}

.app-hero-card h1 {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 28px 0 10px;
  font-size: 34px;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -.045em;
}

.app-hero-card p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 650;
}

.app-code-preview {
  overflow: hidden;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
}

.app-code-scan {
  position: absolute;
  inset: -12px auto -12px -45%;
  width: 40%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  animation: appScan 3.2s ease-in-out infinite;
}

.app-code-preview small,
.app-code-preview strong {
  display: block;
}

.app-code-preview small {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 800;
}

.app-code-preview strong {
  display: inline-flex;
  gap: 7px;
  margin-top: 2px;
  font-size: 29px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .04em;
}

.app-code-preview strong em {
  font-style: normal;
  text-shadow: 0 8px 24px rgba(255, 255, 255, .22);
  animation: appCodePop 2.6s ease-in-out infinite;
}

.app-code-preview strong em:nth-child(2) {
  animation-delay: .24s;
}

.app-code-preview > b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
}

.app-code-preview > b i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--app-green);
  box-shadow: 0 0 0 6px rgba(24, 199, 129, .12);
}

.app-orbit {
  position: absolute;
  right: 80px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--app-orange);
  box-shadow: 0 0 18px rgba(255, 119, 23, .9);
}

.app-orbit.one {
  top: 13px;
  animation: appSpark 2.8s ease-in-out infinite;
}

.app-orbit.two {
  bottom: 13px;
  right: 112px;
  background: #fff;
  animation: appSpark 3.2s ease-in-out infinite reverse;
}

.app-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.app-primary-action,
.app-secondary-action,
.sms-btn,
.number-primary-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  min-width: 0;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.app-primary-action,
.sms-btn-primary,
.number-primary-btn {
  color: #fff;
  background: linear-gradient(145deg, var(--app-orange), #ff8c2f);
  box-shadow: 0 16px 34px rgba(255, 119, 23, .3);
}

.app-primary-action.wide {
  width: 100%;
}

.sms-btn-block,
.number-primary-btn {
  width: 100%;
}

.app-secondary-action,
.sms-btn-outline,
.sms-btn-soft {
  color: var(--app-ink) !important;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .3);
}

.app-secondary-action {
  color: #17182b !important;
  background: rgba(255, 255, 255, .92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65), 0 14px 30px rgba(0, 0, 0, .10);
}

.app-stat-strip {
  width: 100%;
  display: flex;
  gap: 9px;
  margin: 18px 0 22px;
  overflow: hidden;
}

.app-stat-strip span {
  flex: 0 0 calc((100% - 18px) / 3);
  min-width: 0;
  min-height: 72px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  border: 1px solid var(--app-line);
  border-radius: 20px;
  padding: 11px 7px 10px;
  background: rgba(255, 255, 255, .76);
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 14px 34px rgba(17, 18, 37, .06);
}

.app-stat-strip strong {
  max-width: 100%;
  overflow: hidden;
  color: var(--app-ink);
  font-size: 20px;
  line-height: 1;
}

.app-section-title,
.app-flow-head,
.sms-history-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.app-section-title h2,
.app-flow-head h2,
.sms-mobile-device h2,
.sms-payment-left h2,
.sms-payment-summary h2,
.sms-profile-page h1,
.sms-profile-card h2,
.sms-payment-history h2 {
  margin: 0;
  color: var(--app-ink);
  font-weight: 950;
  letter-spacing: -.035em;
}

.app-section-title h2,
.sms-mobile-device h2,
.sms-payment-left h2,
.sms-payment-summary h2,
.sms-payment-history h2 {
  font-size: 22px;
}

.app-section-title a,
.sms-history-head a {
  color: var(--app-orange);
  font-size: 13px;
  font-weight: 900;
}

.app-service-rail {
  width: 100%;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 12px 0 0;
  padding: 0 0 8px;
  scroll-snap-type: x mandatory;
}

.app-service-rail::-webkit-scrollbar,
.app-panel-list::-webkit-scrollbar,
.sms-profile-menu::-webkit-scrollbar {
  display: none;
}

.app-service-rail a {
  flex: 0 0 calc((100% - 30px) / 4);
  min-width: 0;
  width: 100%;
  scroll-snap-align: start;
  min-height: 124px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  border: 1px solid var(--app-line);
  border-radius: 20px;
  padding: 12px 7px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px rgba(17, 18, 37, .06);
}

.app-service-rail img,
.app-service-rail b {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: #15162a;
  font-size: 12px;
  font-weight: 900;
  object-fit: cover;
}

.app-service-rail span {
  max-width: 100%;
  overflow: hidden;
  color: var(--app-ink);
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-service-rail small {
  color: var(--app-orange);
  font-size: 12px;
  font-weight: 900;
}

.app-flow {
  padding: 8px 0 14px;
}

.app-flow-head {
  margin-bottom: 14px;
}

.app-flow-head small {
  display: block;
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
}

.app-flow-head h2 {
  margin-top: 2px;
  font-size: 30px;
  line-height: 1.05;
}

.app-stepper {
  display: inline-flex;
  gap: 5px;
  border: 1px solid var(--app-line);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 255, 255, .8);
}

.app-stepper span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--app-muted);
  background: var(--app-soft);
  font-size: 12px;
  font-weight: 950;
}

.app-stepper span.active {
  color: #fff;
  background: var(--app-ink);
}

.app-panel,
.sms-payment-summary,
.sms-profile-card,
.sms-active-number,
.sms-empty-state,
.sms-method-list button,
.sms-amount-grid button,
.sms-payment-history article,
.sms-transaction-list article {
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 38px rgba(17, 18, 37, .07);
}

.app-panel {
  overflow: hidden;
  padding: 14px;
}

.app-search {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  padding: 0 14px;
  background: var(--app-soft);
}

.app-search span {
  color: var(--app-muted);
  font-weight: 900;
}

.app-search input,
.number-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--app-ink);
  font-size: 14px;
  font-weight: 800;
}

.app-search input::placeholder,
.number-input::placeholder {
  color: #9aa1af;
}

.app-panel-list {
  max-height: min(58svh, 560px);
  overflow-y: auto;
  padding: 10px 2px 2px;
}

.number-section-label {
  padding: 14px 4px 8px;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.number-design-row {
  min-height: 70px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 10px 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 18, 37, .04);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.number-design-row[hidden] {
  display: none !important;
}

.number-design-row:hover,
.number-design-row.active,
.number-design-row.is-pinned-row {
  border-color: rgba(255, 119, 23, .22);
  background: #fff5ed;
}

.number-row-main {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.number-row-main > img,
.sms-summary-pick img,
.app-selected-card img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 16px;
  object-fit: cover;
}

.number-flag-fallback,
.number-service-icon,
.app-order-icon b,
.sms-active-row span,
.sms-transaction-list span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--app-ink);
  font-size: 13px;
  font-weight: 950;
}

.number-flag-fallback {
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--app-line);
  font-size: 21px;
}

.number-row-main > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.number-row-main > span:last-child > span:first-child {
  overflow: hidden;
  color: var(--app-ink);
  font-size: 14px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.number-row-main > span:last-child > span:last-child {
  overflow: hidden;
  color: #a0a6b4;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.number-row-side {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.number-pin-wrap {
  position: relative;
}

.number-pin-btn {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #c6ccd8;
}

.number-pin-btn.is-pinned,
.number-pin-btn:hover {
  color: var(--app-orange);
  background: rgba(255, 119, 23, .08);
}

.number-pin-glyph {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}

.number-pin-glyph:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 7px 7px 3px 3px;
  transform: rotate(-18deg);
}

.number-pin-glyph:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 2px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-18deg);
  transform-origin: top center;
}

.number-pin-tooltip {
  display: none;
}

.number-row-stock {
  min-width: 58px;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 900;
  text-align: right;
}

.number-price {
  min-width: 54px;
  border-radius: 14px;
  padding: 8px 9px;
  color: #fff;
  background: var(--app-orange);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.number-chevron {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #a4abb8;
}

.number-chevron:before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.app-selected-card {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
  border-radius: 22px;
  padding: 12px;
  background: linear-gradient(145deg, #fff5ed, #fff);
}

.app-selected-card small,
.sms-summary-pick small {
  display: block;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 900;
}

.app-selected-card strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 950;
}

.app-back-btn {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--app-ink);
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 18, 37, .08);
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.app-order-panel {
  position: relative;
  padding: 22px;
}

.app-back-btn.floating {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.app-order-glow {
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: -16px;
}

.app-order-glow span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 119, 23, .14);
  animation: appRing 2.8s ease-in-out infinite;
}

.app-order-glow span:nth-child(1) {
  width: 76px;
  height: 76px;
}

.app-order-glow span:nth-child(2) {
  width: 116px;
  height: 116px;
  animation-delay: .25s;
}

.app-order-glow span:nth-child(3) {
  width: 156px;
  height: 156px;
  animation-delay: .5s;
}

.app-order-summary {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.app-order-icon,
.app-order-icon img {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 25px;
  object-fit: cover;
}

.app-order-icon {
  background: #fff;
  box-shadow: 0 20px 42px rgba(17, 18, 37, .12);
}

.app-order-icon b {
  width: 76px;
  height: 76px;
  border-radius: 25px;
  font-size: 20px;
}

.app-order-summary h3 {
  margin: 14px 0 4px;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -.035em;
}

.app-order-summary p {
  margin: 0;
  color: var(--app-muted);
  font-size: 13px;
  font-weight: 850;
}

.app-price-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 16px;
  border-radius: 22px;
  padding: 16px;
  background: var(--app-soft);
}

.app-price-card span,
.sms-summary-line span {
  color: var(--app-muted);
  font-size: 13px;
  font-weight: 900;
}

.app-price-card strong,
.sms-summary-line strong {
  color: var(--app-ink);
  font-size: 20px;
  font-weight: 950;
}

.app-info-list {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.app-info-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--app-muted);
  font-size: 13px;
  font-weight: 850;
}

.app-info-list span:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--app-green);
  box-shadow: 0 0 0 6px rgba(24, 199, 129, .1);
}

.sms-mobile-board,
.sms-funds-page,
.sms-profile-page {
  padding: 14px 0 18px;
}

.sms-mobile-device {
  width: 100%;
}

.sms-mobile-top {
  display: none;
}

.sms-bell {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--app-line);
}

.sms-balance-card {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  border-radius: 32px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 224, 196, .52), transparent 28%),
    linear-gradient(145deg, var(--app-orange), #ff8e2d);
  box-shadow: 0 24px 48px rgba(255, 119, 23, .24);
}

.sms-balance-card small,
.sms-balance-card strong {
  display: block;
}

.sms-balance-card small {
  font-size: 13px;
  font-weight: 900;
}

.sms-balance-card strong {
  margin-top: 9px;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.045em;
}

.sms-balance-card a {
  position: absolute;
  right: 18px;
  top: 22px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border-radius: 16px;
  padding: 0 18px;
  color: var(--app-orange);
  background: #fff;
  font-size: 14px;
  font-weight: 950;
}

.sms-mobile-device h2 {
  margin: 26px 0 12px;
}

.sms-active-number {
  padding: 16px;
}

.sms-active-row,
.sms-transaction-list article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sms-active-row img,
.sms-transaction-list img,
.sms-favorite-row img {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  object-fit: cover;
}

.sms-active-row strong,
.sms-active-row small,
.sms-transaction-list strong,
.sms-transaction-list small {
  display: block;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sms-active-row > div,
.sms-transaction-list article > div {
  min-width: 0;
  flex: 1 1 auto;
}

.sms-active-row strong,
.sms-transaction-list strong {
  font-size: 15px;
  font-weight: 950;
}

.sms-active-row small,
.sms-transaction-list small {
  margin-top: 2px;
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 850;
}

.sms-code-line {
  display: flex;
  justify-content: space-between;
  margin: 16px 0 10px;
}

.sms-code-line b {
  font-size: 25px;
  font-weight: 950;
  letter-spacing: .03em;
}

.sms-code-line small {
  color: var(--app-orange);
  font-weight: 900;
}

.number-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7edf6;
}

.number-progress b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--app-orange), #35c7ff);
}

.number-sms-preview {
  margin: 12px 0 0;
  border-radius: 18px;
  padding: 13px;
  background: var(--app-soft);
  color: var(--app-ink);
  font-size: 12px;
  font-weight: 800;
}

.number-sms-preview.empty {
  color: var(--app-muted);
}

.number-button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.number-ghost-btn,
.number-danger-btn {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--app-line);
  border-radius: 16px;
  background: #fff;
  color: var(--app-ink);
  font-size: 13px;
  font-weight: 950;
}

.number-danger-btn {
  color: var(--app-red);
}

.number-danger-btn:disabled {
  cursor: not-allowed;
  border-color: #e8edf6;
  background: #f8fafc;
  color: #8a93a6;
}

.number-cancel-locked {
  min-height: 46px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffe0c8;
  border-radius: 16px;
  background: #fff5ed;
  color: var(--app-orange);
  font-size: 13px;
  font-weight: 950;
}

.number-danger-btn.wide {
  margin-top: 14px;
}

.sms-empty-state {
  min-height: 218px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.sms-empty-state strong,
.sms-empty-state span {
  display: block;
}

.sms-empty-state strong {
  font-size: 22px;
  font-weight: 950;
}

.sms-empty-state span {
  color: var(--app-muted);
  font-weight: 850;
}

.sms-empty-state .sms-btn-primary {
  color: #fff !important;
}

.sms-favorite-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sms-favorite-row span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 900;
}

.sms-history-head {
  margin-top: 28px;
}

.sms-transaction-list {
  display: grid;
  gap: 10px;
}

.sms-transaction-list article {
  min-height: 76px;
  padding: 14px;
}

.sms-transaction-list article b {
  flex: 0 0 auto;
  margin-left: auto;
  max-width: 96px;
  text-align: right;
  font-size: 15px;
  font-weight: 950;
}

.sms-back-link {
  display: inline-flex;
  align-items: center;
  margin: 6px 0 26px;
  color: var(--app-ink);
  font-size: 17px;
  font-weight: 950;
}

.sms-payment-layout,
.sms-profile-layout {
  display: grid;
  gap: 18px;
}

.sms-amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 28px;
}

.sms-amount-grid button {
  min-height: 86px;
  color: var(--app-ink);
  font-size: 22px;
  font-weight: 950;
}

.sms-amount-grid button.active {
  color: var(--app-orange);
  border-color: var(--app-orange);
  background: #fff5ed;
}

.sms-method-list {
  display: grid;
  gap: 12px;
}

.sms-method-list button {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--app-ink);
  text-align: left;
}

.sms-method-list button.active {
  border-color: var(--app-orange);
  background: #fff8f2;
}

.sms-method-list button > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--app-soft);
  font-weight: 950;
}

.sms-method-list strong,
.sms-method-list small {
  display: block;
}

.sms-method-list strong {
  font-size: 15px;
  font-weight: 950;
}

.sms-method-list small {
  margin-top: 3px;
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 850;
}

.sms-payment-summary {
  padding: 18px;
}

.sms-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--app-line);
  padding: 15px 0;
}

.sms-summary-line.total {
  border-bottom: 0;
}

.sms-summary-line.total strong {
  color: var(--app-orange);
}

.sms-payment-summary p {
  margin: 12px 0 0;
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 800;
}

.sms-payment-history {
  margin-top: 24px;
}

.sms-payment-history article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  margin-top: 10px;
  padding: 14px;
}

.sms-payment-history span {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 800;
}

.sms-profile-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 142px;
  border-radius: 32px;
  padding: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 181, 101, .46), transparent 32%),
    linear-gradient(145deg, #141529, #23243b 58%, #ff7717 145%);
  box-shadow: 0 24px 52px rgba(17, 18, 37, .2);
}

.sms-profile-hero:after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 119, 23, .24);
}

.sms-profile-avatar {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--app-orange), var(--app-orange-2));
  box-shadow: 0 18px 34px rgba(255, 119, 23, .28);
  font-size: 20px;
  font-weight: 950;
}

.sms-profile-hero > div:last-child {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.sms-profile-hero small,
.sms-profile-hero p {
  color: rgba(255, 255, 255, .68);
  font-weight: 850;
}

.sms-profile-hero small {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}

.sms-profile-hero h1 {
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sms-profile-hero p {
  overflow: hidden;
  margin: 7px 0 0;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sms-profile-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 18px;
}

.sms-profile-kpis a {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--app-line);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 36px rgba(17, 18, 37, .07);
}

.sms-profile-kpis span {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
}

.sms-profile-kpis strong {
  color: var(--app-ink);
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.sms-profile-menu {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 10px;
  overflow-x: auto;
  margin: 0 -20px;
  padding: 0 20px 6px;
}

.sms-profile-menu a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border-radius: 18px;
  padding: 0 16px;
  color: var(--app-muted);
  background: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.sms-profile-menu a.active {
  color: var(--app-orange);
  background: #fff1e7;
}

.sms-profile-content {
  display: grid;
  gap: 14px;
}

.sms-profile-card {
  padding: 20px;
}

.sms-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sms-card-head span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--app-orange);
  background: #fff1e7;
}

.sms-card-head svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.sms-profile-card h2 {
  margin: 0;
  font-size: 23px;
}

.sms-profile-card dl {
  margin: 0;
}

.sms-profile-card dl div {
  border-bottom: 1px solid var(--app-line);
  padding: 14px 0;
}

.sms-profile-card dt {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
}

.sms-profile-card dd {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 950;
}

.number-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 90;
  width: min(386px, calc(100% - 28px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border: 1px solid rgba(226, 232, 242, .8);
  border-radius: 30px;
  padding: 9px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 -18px 48px rgba(17, 18, 37, .15);
  backdrop-filter: blur(24px) saturate(170%);
  transform: translateX(-50%);
}

.number-bottom-nav a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--app-muted);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: -.01em;
}

.number-bottom-nav span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--app-soft);
  color: #8d95a6;
  transition: transform .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}

.number-bottom-nav em {
  font-style: normal;
}

.number-bottom-nav svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.15;
}

.number-bottom-nav a.active {
  color: var(--app-ink);
}

.number-bottom-nav a.active span {
  color: #fff;
  background: linear-gradient(145deg, #15162a, #252744);
  box-shadow: 0 12px 26px rgba(17, 18, 37, .25);
  transform: translateY(-2px);
}

.number-bottom-nav a.active:after {
  content: "";
  position: absolute;
  top: -4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--app-orange);
}

.number-drawer,
.number-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.number-drawer.open,
.number-auth-modal.open {
  pointer-events: auto;
}

.number-drawer-backdrop,
.number-auth-backdrop {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(7, 9, 18, .36);
  opacity: 0;
  transition: opacity .18s ease;
  backdrop-filter: blur(5px);
}

.number-drawer.open .number-drawer-backdrop,
.number-auth-modal.open .number-auth-backdrop {
  opacity: 1;
}

.number-drawer-panel,
.number-auth-sheet {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: min(410px, calc(100% - 20px));
  max-height: calc(100svh - 22px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 32px;
  padding: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -24px 68px rgba(17, 18, 37, .26);
  transform: translate(-50%, 110%);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
}

.number-drawer.open .number-drawer-panel,
.number-auth-modal.open .number-auth-sheet {
  transform: translate(-50%, 0);
}

.number-drawer-close,
.number-auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--app-soft);
  color: var(--app-ink);
  font-size: 22px;
  font-weight: 900;
}

.number-drawer-lang {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff5ed;
  color: var(--app-orange);
  font-size: 12px;
  font-weight: 950;
}

.number-drawer-panel h2,
.number-auth-panel h2 {
  margin: 16px 0 14px;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.035em;
}

.number-drawer-panel > a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--app-line);
  color: var(--app-ink);
  font-weight: 900;
}

.number-drawer-panel > a.active {
  color: var(--app-orange);
}

.number-drawer-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.number-drawer-links a {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 850;
}

.number-auth-panel {
  display: none;
}

.number-auth-panel.active {
  display: block;
}

.number-auth-panel p,
.number-auth-switch {
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 750;
}

.number-auth-panel label {
  display: block;
  margin: 14px 0 7px;
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
}

.number-field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.number-human-check {
  height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  padding: 0 14px;
  background: var(--app-soft);
}

.number-human-check span {
  min-width: 74px;
  display: inline-flex;
  justify-content: center;
  border-radius: 13px;
  padding: 8px 10px;
  color: #fff;
  background: linear-gradient(145deg, var(--app-ink), #252840);
  font-size: 13px;
  font-weight: 950;
}

.number-human-check .number-input {
  height: 44px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.number-input {
  height: 54px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  padding: 0 14px;
  background: var(--app-soft);
}

.number-auth-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--app-orange);
  font-size: 13px;
  font-weight: 900;
}

.number-auth-switch a {
  color: var(--app-orange);
  font-weight: 950;
}

.number-drawer-panel {
  padding: 16px;
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 119, 23, .18), transparent 34%),
    rgba(255, 255, 255, .98);
}

.number-drawer-profile {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--app-line);
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 32px rgba(17, 18, 37, .08);
}

.number-drawer-profile img {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  object-fit: cover;
  background: #111225;
}

.number-drawer-profile small,
.number-drawer-profile strong {
  display: block;
}

.number-drawer-profile small {
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 900;
}

.number-drawer-profile strong {
  overflow: hidden;
  color: var(--app-ink);
  font-size: 15px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.number-drawer-profile > b,
.drawer-pill {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--app-orange);
  background: #fff1e7;
  font-size: 12px;
  font-weight: 950;
}

.number-drawer-nav {
  display: grid;
  gap: 8px;
}

.number-drawer-nav > a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 9px 10px;
  background: rgba(246, 248, 252, .82);
  color: var(--app-ink);
  font-weight: 950;
}

.number-drawer-nav > a.active {
  border-color: rgba(255, 119, 23, .2);
  background: #fff5ed;
}

.number-drawer-nav > a > span:not(.drawer-icon) {
  min-width: 0;
}

.number-drawer-nav strong,
.number-drawer-nav small {
  display: block;
}

.number-drawer-nav small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drawer-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #8d95a6;
  background: #eef2f8;
}

.number-drawer-nav a.active .drawer-icon {
  color: #fff;
  background: linear-gradient(145deg, var(--app-orange), #ff9142);
  box-shadow: 0 12px 26px rgba(255, 119, 23, .24);
}

.drawer-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.number-drawer-links {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
  border-top: 1px solid var(--app-line);
  padding-top: 12px;
}

.number-drawer-links a {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(246, 248, 252, .8);
  text-align: center;
}

.drawer-danger {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border: 1px solid #ffd1d1;
  border-radius: 18px;
  color: var(--app-red);
  background: #fff7f7;
  font-size: 13px;
  font-weight: 950;
}

.sms-page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 135, 52, .42), transparent 36%),
    linear-gradient(145deg, #141529, #22243b 62%, #70331f);
  box-shadow: 0 22px 50px rgba(17, 18, 37, .18);
}

.sms-page-hero.compact {
  min-height: 164px;
  display: grid;
  align-content: end;
  margin-bottom: 16px;
}

.sms-page-hero span {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 900;
}

.sms-page-hero h1 {
  margin: 16px 0 8px;
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.045em;
}

.sms-page-hero p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
}

.sms-card-head.tight {
  margin-bottom: 12px;
}

.sms-card-head p {
  margin: 4px 0 0;
  color: var(--app-muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.sms-wallet-card {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  border-radius: 24px;
  padding: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 119, 23, .42), transparent 34%),
    linear-gradient(145deg, #15162a, #24263f);
  box-shadow: 0 20px 42px rgba(17, 18, 37, .16);
}

.sms-wallet-card span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 900;
}

.sms-wallet-card strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.sms-wallet-card code {
  overflow-wrap: anywhere;
  border-radius: 16px;
  padding: 12px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
}

.sms-wallet-card button {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--app-orange), #ff9142);
  font-size: 13px;
  font-weight: 950;
}

.sms-payment-left,
.sms-payment-summary,
.sms-payment-history,
.sms-profile-card,
.sms-active-number,
.sms-transaction-list article,
.sms-payment-history article {
  border-radius: 24px;
}

.sms-payment-left,
.sms-profile-card {
  border: 1px solid var(--app-line);
  padding: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(17, 18, 37, .06);
}

.sms-amount-grid {
  gap: 9px;
  margin: 10px 0 0;
}

.sms-amount-grid button {
  min-height: 58px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  background: #fff;
  color: var(--app-ink);
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(17, 18, 37, .04);
}

.sms-payment-summary {
  background: #fff;
}

.sms-history-head.compact {
  align-items: center;
  margin: 0 0 12px;
}

.sms-history-head.compact span {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--app-muted);
  background: var(--app-soft);
  font-size: 12px;
  font-weight: 900;
}

.sms-payment-history article,
.sms-transaction-list article {
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--app-line);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(17, 18, 37, .05);
}

.sms-payment-history article {
  display: grid;
  gap: 4px 12px;
}

.sms-payment-history article b,
.sms-transaction-list article b {
  color: var(--app-ink);
}

.sms-payment-history article em {
  grid-column: 2 / -1;
  justify-self: start;
}

.sms-payment-history article strong,
.sms-payment-history article small {
  display: block;
}

.sms-payment-history article small {
  margin-top: 3px;
}

.sms-payment-icon,
.status-pill {
  display: inline-grid;
  place-items: center;
}

.sms-payment-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #fff;
  background: var(--app-ink);
  font-size: 12px;
  font-weight: 950;
}

.status-pill {
  min-height: 26px;
  border-radius: 999px;
  padding: 0 9px;
  color: #9a5b0d;
  background: #fff5d6;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.status-pill.approved,
.status-pill.code_received {
  color: #067647;
  background: #dcfae6;
}

.status-pill.rejected,
.status-pill.cancelled,
.status-pill.expired {
  color: #b42318;
  background: #fef3f2;
}

.sms-empty-state.small {
  min-height: 140px;
}

.sms-profile-kpis.three {
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.sms-profile-kpis.three a {
  min-height: 78px;
  border-radius: 20px;
  padding: 13px 10px;
}

.sms-profile-kpis.three strong {
  font-size: 18px;
}

.sms-settings-form {
  display: grid;
  gap: 10px;
}

.sms-settings-form label {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
}

.sms-settings-form .number-primary-btn,
.sms-settings-form .sms-btn {
  margin-top: 4px;
}

.sms-settings-form .sms-btn-outline {
  min-height: 56px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  color: var(--app-ink) !important;
  background: #fff;
  box-shadow: 0 12px 26px rgba(17, 18, 37, .05);
}

.sms-settings-form .sms-btn-outline:active {
  transform: translateY(1px);
}

.sms-session-list {
  display: grid;
  gap: 8px;
}

.sms-session-list div {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--app-line);
  border-radius: 17px;
  padding: 0 13px;
  background: var(--app-soft);
}

.sms-session-list span {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
}

.sms-session-list strong {
  color: var(--app-ink);
  font-size: 13px;
  font-weight: 950;
}

.sms-order-page {
  padding: 12px 0 16px;
}

.sms-order-hero {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 32px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 184, 112, .44), transparent 34%),
    linear-gradient(145deg, #15162a, #252743 58%, #ff7717 150%);
  box-shadow: 0 24px 54px rgba(17, 18, 37, .16);
}

.sms-order-hero:before {
  content: "";
  position: absolute;
  inset: auto -58px -84px auto;
  width: 188px;
  height: 188px;
  border-radius: 50%;
  background: rgba(255, 119, 23, .25);
  filter: blur(4px);
  animation: appFloat 5.6s ease-in-out infinite;
}

.sms-order-eyebrow {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 950;
  backdrop-filter: blur(14px);
}

.sms-order-hero h1 {
  position: relative;
  z-index: 1;
  margin: 14px 0 7px;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.sms-order-hero p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 250px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 750;
}

.sms-order-orb {
  position: relative;
  z-index: 1;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
}

.sms-order-orb i {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  animation: appOrderOrbit 3.4s ease-in-out infinite;
}

.sms-order-orb i:nth-child(1) {
  width: 42px;
  height: 42px;
}

.sms-order-orb i:nth-child(2) {
  width: 64px;
  height: 64px;
  animation-delay: .18s;
}

.sms-order-orb i:nth-child(3) {
  width: 84px;
  height: 84px;
  animation-delay: .36s;
}

.sms-order-orb b {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--app-ink);
  background: #fff;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
}

.sms-order-flow {
  padding-top: 6px;
}

.sms-order-flow .app-flow-head {
  align-items: center;
}

.sms-order-catalog-card {
  background:
    radial-gradient(circle at 94% 10%, rgba(255, 119, 23, .08), transparent 30%),
    rgba(255, 255, 255, .92);
}

.sms-order-confirm-card {
  overflow: hidden;
  min-height: 590px;
}

.app-primary-action,
.app-primary-action:visited,
.sms-order-confirm-card .app-primary-action {
  color: #fff !important;
}

.app-order-panel {
  overflow: hidden;
}

.app-order-glow {
  position: absolute;
  top: 54px;
  left: 50%;
  z-index: 0;
  width: 188px;
  height: 188px;
  margin: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.app-order-glow span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.92);
  background: rgba(255, 119, 23, .12);
  animation: appOrderRing 2.8s ease-in-out infinite;
}

.app-order-summary {
  z-index: 2;
  padding-top: 108px;
}

.app-order-icon {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, .96);
}

.app-back-btn.floating {
  z-index: 5;
}

.sms-balance-card:before,
.sms-balance-card:after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.sms-balance-card:before {
  inset: -40% auto -40% -45%;
  width: 52%;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  animation: appBalanceSweep 4.6s ease-in-out infinite;
}

.sms-balance-card:after {
  right: 24px;
  bottom: 20px;
  width: 74px;
  height: 38px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,.9) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.58) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 50%, rgba(255,255,255,.36) 0 3px, transparent 4px),
    rgba(255, 255, 255, .12);
  animation: appBalanceFloat 3.8s ease-in-out infinite;
}

.sms-balance-card > * {
  position: relative;
  z-index: 1;
}

[data-detail-open] {
  cursor: pointer;
}

.number-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 12500;
  pointer-events: none;
}

.number-detail-modal.open {
  pointer-events: auto;
}

.number-detail-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 9, 18, .38);
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity .18s ease;
}

.number-detail-modal.open .number-detail-backdrop {
  opacity: 1;
}

.number-detail-sheet {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: min(410px, calc(100% - 20px));
  max-height: calc(100svh - 28px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 32px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 119, 23, .15), transparent 32%),
    rgba(255, 255, 255, .98);
  box-shadow: 0 -24px 68px rgba(17, 18, 37, .26);
  transform: translate(-50%, 110%);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
}

.number-detail-modal.open .number-detail-sheet {
  transform: translate(-50%, 0);
}

.number-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--app-ink);
  background: var(--app-soft);
  font-size: 22px;
  font-weight: 900;
}

.number-detail-kicker {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--app-orange);
  background: #fff1e7;
  font-size: 12px;
  font-weight: 950;
}

.number-detail-sheet h2 {
  margin: 14px 44px 6px 0;
  color: var(--app-ink);
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.035em;
}

.number-detail-sheet p {
  margin: 0 0 16px;
  color: var(--app-muted);
  font-size: 13px;
  font-weight: 850;
}

.number-detail-sheet dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.number-detail-sheet dl div {
  min-height: 50px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--app-line);
  border-radius: 17px;
  padding: 10px 12px;
  background: var(--app-soft);
}

.number-detail-sheet dt,
.number-detail-sheet dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.number-detail-sheet dt {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
}

.number-detail-sheet dd {
  color: var(--app-ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 950;
}

.sms-info-page {
  display: grid;
  gap: 18px;
  padding: 14px 0 20px;
}

.sms-info-hero {
  position: relative;
  overflow: hidden;
  min-height: 278px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 32px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 179, 102, .48), transparent 34%),
    linear-gradient(145deg, #15162a, #242640 58%, #8b4128);
  box-shadow: 0 24px 54px rgba(17, 18, 37, .16);
}

.sms-info-hero:before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -94px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 119, 23, .28);
  filter: blur(3px);
  animation: appFloat 5.6s ease-in-out infinite;
}

.sms-info-hero > * {
  position: relative;
  z-index: 1;
}

.sms-info-hero span {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  font-size: 12px;
  font-weight: 950;
}

.sms-info-hero h1 {
  max-width: 660px;
  margin: 16px 0 10px;
  font-size: 36px;
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.045em;
}

.sms-info-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.52;
  font-weight: 800;
}

.sms-info-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}

.sms-doc-grid,
.sms-help-grid {
  display: grid;
  gap: 12px;
}

.sms-doc-card,
.sms-api-console,
.sms-faq-list {
  border: 1px solid var(--app-line);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(17, 18, 37, .07);
}

.sms-doc-card.metric {
  min-height: 132px;
  display: grid;
  align-content: center;
}

.sms-doc-card.metric span {
  color: var(--app-ink);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.035em;
}

.sms-doc-card h2,
.sms-api-console h2,
.sms-faq-list h2 {
  margin: 0;
  color: var(--app-ink);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.025em;
}

.sms-doc-card strong {
  margin-top: 7px;
  color: var(--app-orange);
  font-size: 13px;
  font-weight: 950;
}

.sms-doc-card p,
.sms-faq-list p {
  margin: 10px 0 0;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.52;
  font-weight: 800;
}

.sms-endpoint-list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.sms-endpoint-group {
  padding: 12px 4px 4px;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.sms-endpoint-list article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 6px 10px;
  align-items: center;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  padding: 13px;
  background: var(--app-soft);
}

.sms-endpoint-list b {
  width: 52px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--app-ink);
  font-size: 11px;
  font-weight: 950;
}

.sms-endpoint-list code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--app-ink);
  font-size: 13px;
  font-weight: 950;
}

.sms-endpoint-list span {
  grid-column: 2;
  color: var(--app-muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.sms-help-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--app-orange), #ff9142);
  box-shadow: 0 14px 30px rgba(255, 119, 23, .2);
}

.sms-help-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sms-faq-list {
  display: grid;
  gap: 10px;
}

.sms-faq-list details {
  border: 1px solid var(--app-line);
  border-radius: 18px;
  padding: 14px;
  background: var(--app-soft);
}

.sms-faq-list summary {
  cursor: pointer;
  color: var(--app-ink);
  font-size: 14px;
  font-weight: 950;
}

.sms-summary-benefits,
.sms-api-band,
.sms-faq,
.sms-section,
.sms-hero,
.sms-order-shell,
.sms-breadcrumb,
.sms-list-footer,
.number-mobile-back,
.sms-wait-card,
.sms-empty-wide {
  display: none;
}

@keyframes appPulse {
  0%, 100% { transform: scale(.92); opacity: .72; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes appFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-8px, 12px, 0) scale(1.04); }
}

@keyframes appSpark {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .45; }
  50% { transform: translate3d(16px, -10px, 0); opacity: 1; }
}

@keyframes appDotFlow {
  0%, 100% { transform: translateY(0); opacity: .42; }
  50% { transform: translateY(-3px); opacity: 1; }
}

@keyframes appScan {
  0% { left: -48%; opacity: 0; }
  18% { opacity: .85; }
  62%, 100% { left: 112%; opacity: 0; }
}

@keyframes appCodePop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

@keyframes appToastIn {
  from { transform: translateY(-12px) scale(.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes appToastOut {
  to { transform: translateY(-10px) scale(.98); opacity: 0; }
}

@keyframes appOrderOrbit {
  0%, 100% { transform: scale(.94); opacity: .46; }
  50% { transform: scale(1.06); opacity: .82; }
}

@keyframes appOrderRing {
  0%, 100% { transform: translate(-50%, -50%) scale(.9); opacity: .36; }
  50% { transform: translate(-50%, -50%) scale(1.07); opacity: .68; }
}

@keyframes appBalanceSweep {
  0%, 44% { left: -54%; opacity: 0; }
  58% { opacity: .88; }
  100% { left: 115%; opacity: 0; }
}

@keyframes appBalanceFloat {
  0%, 100% { transform: translateY(0); opacity: .74; }
  50% { transform: translateY(-5px); opacity: 1; }
}

@keyframes appRing {
  0%, 100% { transform: scale(.92); opacity: .42; }
  50% { transform: scale(1.08); opacity: .74; }
}

@media (max-width: 374px) {
  .wide-container {
    padding-inline: 16px;
  }

  .sms-brand-image {
    max-width: 146px;
  }

  .sms-brand-logo {
    width: min(146px, 44vw);
    max-height: 48px;
  }

  .is-authenticated .sms-brand-image {
    max-width: 112px;
  }

  .is-authenticated .sms-brand-logo {
    width: min(112px, 30vw);
  }

  .app-hero-card h1 {
    font-size: 30px;
  }

  .number-bottom-nav {
    width: calc(100% - 20px);
  }
}

.sms-funds-page .sms-page-hero.compact {
  min-height: 112px;
  align-content: center;
  margin-bottom: 12px;
  padding: 18px;
  border-radius: 24px;
}

.sms-funds-page .sms-page-hero span {
  padding: 7px 10px;
  font-size: 11px;
}

.sms-funds-page .sms-page-hero h1 {
  margin: 10px 0 5px;
  font-size: 27px;
  line-height: 1.02;
}

.sms-funds-page .sms-page-hero p {
  max-width: 330px;
  font-size: 12px;
  line-height: 1.4;
}

.sms-funds-page .sms-wallet-card {
  margin-top: 12px;
  gap: 7px;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 16px 34px rgba(17, 18, 37, .13);
}

.sms-funds-page .sms-wallet-card span {
  font-size: 11px;
}

.sms-funds-page .sms-wallet-card strong {
  font-size: 20px;
}

.sms-funds-page .sms-wallet-card code {
  padding: 10px;
  border-radius: 14px;
  font-size: 11px;
}

.sms-funds-page .sms-wallet-card button {
  min-height: 42px;
  border-radius: 14px;
}

.number-policy-modal {
  position: fixed;
  inset: 0;
  z-index: 12600;
  pointer-events: none;
}

.number-policy-modal.open {
  pointer-events: auto;
}

.number-policy-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  opacity: 0;
  background: rgba(7, 9, 18, .42);
  backdrop-filter: blur(7px);
  transition: opacity .18s ease;
}

.number-policy-modal.open .number-policy-backdrop {
  opacity: 1;
}

.number-policy-sheet {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: min(430px, calc(100% - 20px));
  max-height: calc(100svh - 28px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 32px;
  padding: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 119, 23, .16), transparent 34%),
    rgba(255, 255, 255, .985);
  box-shadow: 0 -24px 68px rgba(17, 18, 37, .28);
  transform: translate(-50%, 110%);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
}

.number-policy-modal.open .number-policy-sheet {
  transform: translate(-50%, 0);
}

.number-policy-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--app-ink);
  background: var(--app-soft);
  font-size: 22px;
  font-weight: 900;
}

.number-policy-sheet h2 {
  margin: 14px 44px 12px 0;
  color: var(--app-ink);
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
}

.number-policy-copy {
  display: grid;
  gap: 10px;
}

.number-policy-copy p {
  margin: 0;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  padding: 13px 14px;
  color: var(--app-muted);
  background: var(--app-soft);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 850;
}

@media (min-width: 768px) {
  body.number-shell {
    width: min(100%, 1120px);
  }

  body.number-shell header.wide-container,
  body.number-shell main.wide-container {
    padding-inline: clamp(28px, 4vw, 42px);
  }

  .sms-header {
    height: 88px;
    gap: 16px;
  }

  .sms-brand-image,
  .is-authenticated .sms-brand-image {
    flex: 0 1 auto;
    max-width: 230px;
  }

  .sms-brand-logo,
  .is-authenticated .sms-brand-logo {
    width: min(230px, 28vw);
    max-height: 62px;
  }

  .sms-header-actions {
    gap: 10px;
    margin-left: auto;
    padding-right: 0;
  }

  .sms-balance {
    min-width: 104px;
    min-height: 48px;
    border-radius: 18px;
    font-size: 15px;
  }

  .sms-menu-toggle {
    position: static;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    color: var(--app-ink);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 30px rgba(17, 18, 37, .08);
  }

  .sms-menu-toggle svg {
    width: 21px;
    height: 21px;
  }

  .app-home,
  .sms-order-page,
  .app-flow,
  .sms-mobile-board,
  .sms-funds-page,
  .sms-profile-page {
    padding-inline: 0;
  }

  .app-hero-card {
    min-height: 360px;
    padding: 34px 38px;
  }

  .app-hero-card h1 {
    max-width: 720px;
    margin-top: 34px;
    font-size: 52px;
  }

  .app-hero-card p {
    max-width: 650px;
    font-size: 16px;
  }

  .app-code-preview {
    min-height: 88px;
    margin: 28px 0;
    padding: 18px 20px;
  }

  .app-code-preview strong {
    font-size: 34px;
  }

  .app-stat-strip span {
    min-height: 92px;
  }

  .app-stat-strip strong {
    font-size: 28px;
  }

  .app-service-rail a {
    flex-basis: calc((100% - 30px) / 4);
    min-height: 142px;
  }

  .app-flow-head h2 {
    font-size: 38px;
  }

  .app-panel {
    padding: 18px;
  }

  .app-panel-list {
    max-height: min(66svh, 690px);
  }

  .number-design-row {
    min-height: 78px;
    padding: 12px 14px;
  }

  .number-row-main > img,
  .sms-summary-pick img,
  .app-selected-card img,
  .number-flag-fallback,
  .number-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
  }

  .number-row-main > span:last-child > span:first-child {
    font-size: 15px;
  }

  .number-row-stock {
    min-width: 76px;
  }

  .number-price {
    min-width: 68px;
    padding: 9px 11px;
  }

  .sms-order-hero {
    min-height: 210px;
    grid-template-columns: minmax(0, 1fr) 130px;
    padding: 28px;
  }

  .sms-order-hero h1 {
    font-size: 46px;
  }

  .sms-order-hero p {
    max-width: 560px;
    font-size: 15px;
  }

  .sms-order-orb {
    width: 116px;
    height: 116px;
  }

  .sms-order-confirm-card {
    min-height: 620px;
  }

  .sms-payment-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
  }

  .sms-profile-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
  }

  .sms-profile-menu {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    margin: 0;
    padding: 0;
  }

  .sms-mobile-board {
    max-width: 760px;
    margin-inline: auto;
  }

  .number-bottom-nav {
    width: min(720px, calc(100% - 40px));
  }

  .number-drawer-panel,
  .number-auth-sheet,
  .number-detail-sheet,
  .number-policy-sheet {
    width: min(520px, calc(100% - 32px));
  }
}

@media (min-width: 1024px) {
  html {
    background:
      radial-gradient(circle at 9% 4%, rgba(255, 119, 23, .22), transparent 26%),
      radial-gradient(circle at 86% 8%, rgba(255, 155, 69, .18), transparent 26%),
      linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  }

  body.number-shell {
    width: 100%;
    min-height: 100vh;
    background:
      linear-gradient(rgba(221, 228, 239, .36) 1px, transparent 1px),
      linear-gradient(90deg, rgba(221, 228, 239, .36) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 248, 252, .98) 54%, #fff);
    background-size: 36px 36px, 36px 36px, 100% 100%;
    box-shadow: none;
  }

  body.number-shell header.wide-container,
  body.number-shell main.wide-container {
    width: min(100%, 1500px);
    margin-inline: auto;
    padding-inline: clamp(34px, 4.6vw, 64px);
  }

  body.number-shell main.wide-container {
    padding-bottom: 54px;
  }

  .sms-header {
    height: 92px;
    margin: 0;
    border-bottom-color: rgba(226, 232, 242, .82);
    background: rgba(255, 255, 255, .82);
  }

  .sms-brand-image,
  .is-authenticated .sms-brand-image {
    max-width: 250px;
  }

  .sms-brand-logo,
  .is-authenticated .sms-brand-logo {
    width: min(250px, 18vw);
    max-height: 66px;
  }

  .sms-top-nav {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 48px;
    margin-inline: auto;
    border: 1px solid rgba(226, 232, 242, .9);
    border-radius: 18px;
    padding: 5px;
    background: rgba(246, 248, 252, .76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  }

  .sms-top-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border-radius: 13px;
    padding: 0 14px;
    color: var(--app-muted);
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
  }

  .sms-top-nav a:hover,
  .sms-top-nav a.active,
  body.route-client-order .sms-top-nav a[href*="numara-al"] {
    color: var(--app-ink);
    background: #fff;
    box-shadow: 0 9px 22px rgba(17, 18, 37, .08);
  }

  .sms-lang,
  .sms-header .sms-btn-primary,
  .sms-header .sms-btn-soft {
    display: inline-flex !important;
  }

  .sms-header-actions form {
    display: block;
  }

  .sms-header-actions {
    gap: 10px;
  }

  .sms-balance,
  .sms-icon-btn,
  .sms-menu-toggle {
    min-height: 50px;
    border-radius: 18px;
  }

  .sms-balance {
    min-width: 112px;
    padding: 0 18px;
    font-size: 16px;
  }

  .sms-icon-btn,
  .sms-menu-toggle {
    width: 50px;
  }

  .sms-menu-toggle {
    color: #fff;
    background: linear-gradient(145deg, #15162a, #252744);
    box-shadow: 0 16px 34px rgba(17, 18, 37, .16);
  }

  .number-bottom-nav {
    display: none;
  }

  .app-home {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 22px;
    align-items: stretch;
    padding-top: 24px;
  }

  .app-hero-card {
    min-height: 500px;
    display: grid;
    align-content: center;
    border-radius: 34px;
    padding: 42px 52px;
  }

  .app-hero-card h1 {
    max-width: 820px;
    margin-top: 48px;
    font-size: clamp(54px, 5vw, 74px);
    line-height: .96;
  }

  .app-hero-card p {
    max-width: 690px;
    font-size: 18px;
    line-height: 1.55;
  }

  .app-code-preview {
    max-width: 800px;
    min-height: 104px;
    margin: 34px 0 30px;
    border-radius: 28px;
    padding: 20px 24px;
  }

  .app-code-preview strong {
    gap: 14px;
    font-size: 42px;
  }

  .app-action-row {
    max-width: 760px;
  }

  .app-action-row a {
    min-height: 64px;
    border-radius: 22px;
    font-size: 16px;
  }

  .app-stat-strip {
    display: grid;
    gap: 14px;
    align-content: stretch;
    margin: 0;
  }

  .app-stat-strip span {
    min-height: 0;
    align-content: center;
    border-radius: 28px;
    padding: 24px;
  }

  .app-stat-strip strong {
    font-size: 42px;
  }

  .app-section-title {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .app-section-title h2 {
    font-size: 34px;
  }

  .app-service-rail {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    padding: 0;
  }

  .app-service-rail a {
    min-height: 172px;
    border-radius: 28px;
    padding: 22px;
  }

  .app-service-rail img,
  .app-service-rail b {
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }

  .app-service-rail span {
    font-size: 15px;
  }

  .app-service-rail small {
    font-size: 14px;
  }

  .sms-order-page {
    padding-top: 24px;
  }

  .sms-order-hero {
    min-height: 300px;
    grid-template-columns: minmax(0, 1fr) 180px;
    border-radius: 34px;
    padding: 42px 52px;
  }

  .sms-order-hero h1 {
    max-width: 760px;
    font-size: clamp(54px, 5vw, 72px);
  }

  .sms-order-hero p {
    max-width: 720px;
    font-size: 18px;
  }

  .sms-order-orb {
    width: 148px;
    height: 148px;
  }

  .app-flow {
    padding-top: 28px;
  }

  .app-flow-head {
    margin-bottom: 20px;
  }

  .app-flow-head h2 {
    font-size: 52px;
  }

  .app-stepper span {
    width: 38px;
    height: 38px;
  }

  .sms-order-catalog-card {
    padding: 22px;
  }

  .sms-order-catalog-card .app-panel-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    max-height: min(64vh, 720px);
    padding-top: 14px;
  }

  .sms-order-catalog-card .number-section-label {
    grid-column: 1 / -1;
  }

  .sms-order-catalog-card .number-design-row {
    min-height: 86px;
    margin-bottom: 0;
    border-color: rgba(226, 232, 242, .7);
    border-radius: 24px;
    padding: 14px;
  }

  .app-selected-card {
    max-width: 720px;
    margin-bottom: 16px;
  }

  .sms-order-confirm-card {
    width: min(760px, 100%);
    min-height: 680px;
    margin-inline: auto;
    border-radius: 36px;
    padding: 38px;
  }

  .app-order-summary h3 {
    font-size: 44px;
  }

  .app-info-list {
    max-width: 520px;
    margin-inline: auto;
  }

  .sms-mobile-board {
    max-width: none;
    padding-top: 24px;
  }

  .sms-mobile-device {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    grid-template-areas:
      "balance balance"
      "activeTitle favoriteTitle"
      "active favorite"
      "historyHead historyHead"
      "history history";
    gap: 22px;
    align-items: start;
  }

  .sms-balance-card {
    grid-area: balance;
    grid-column: 1 / -1;
    min-height: 180px;
    border-radius: 34px;
    padding: 34px;
  }

  .sms-balance-card strong {
    font-size: 56px;
  }

  .sms-balance-card a {
    right: 34px;
    top: 34px;
    min-height: 56px;
    border-radius: 20px;
    padding: 0 24px;
  }

  .sms-mobile-device > h2 {
    margin: 0 0 -6px;
    font-size: 32px;
  }

  .sms-mobile-device > h2:nth-of-type(1),
  .sms-mobile-device > [data-tab-panel="active"] {
    grid-column: auto;
  }

  .sms-mobile-device > h2:nth-of-type(2),
  .sms-favorite-row {
    grid-column: auto;
  }

  .sms-mobile-device > h2:nth-of-type(1) {
    grid-area: activeTitle;
  }

  .sms-mobile-device > [data-tab-panel="active"] {
    grid-area: active;
  }

  .sms-mobile-device > h2:nth-of-type(2) {
    grid-area: favoriteTitle;
  }

  .sms-favorite-row {
    grid-area: favorite;
  }

  .sms-active-number {
    min-height: 290px;
    border-radius: 30px;
    padding: 24px;
  }

  .sms-code-line b {
    font-size: 36px;
  }

  .sms-favorite-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .sms-favorite-row span {
    min-height: 132px;
    justify-content: center;
    border: 1px solid var(--app-line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 14px 34px rgba(17, 18, 37, .06);
  }

  .sms-history-head,
  .sms-transaction-list {
    grid-column: auto;
  }

  .sms-history-head {
    grid-area: historyHead;
  }

  .sms-transaction-list {
    grid-area: history;
  }

  .sms-transaction-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sms-transaction-list article {
    min-height: 92px;
    border-radius: 24px;
    padding: 18px;
  }

  .sms-funds-page,
  .sms-profile-page {
    padding-top: 24px;
  }

  .sms-page-hero.compact {
    min-height: 230px;
    border-radius: 34px;
    padding: 34px 40px;
  }

  .sms-page-hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 4.2vw, 64px);
  }

  .sms-page-hero p {
    max-width: 680px;
    font-size: 17px;
  }

  .sms-payment-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 22px;
  }

  .sms-payment-left,
  .sms-payment-summary,
  .sms-payment-history,
  .sms-profile-card {
    border-radius: 30px;
  }

  .sms-payment-left,
  .sms-payment-summary {
    padding: 26px;
  }

  .sms-payment-history {
    margin-top: 28px;
  }

  .sms-payment-history {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .sms-history-head.compact {
    grid-column: 1 / -1;
  }

  .sms-payment-history article {
    margin-top: 0;
    padding: 18px;
  }

  .sms-profile-hero {
    min-height: 220px;
    grid-template-columns: 94px minmax(0, 1fr);
    border-radius: 34px;
    padding: 34px;
  }

  .sms-profile-avatar {
    width: 94px;
    height: 94px;
    border-radius: 30px;
    font-size: 28px;
  }

  .sms-profile-hero h1 {
    font-size: 46px;
  }

  .sms-profile-hero p {
    font-size: 16px;
  }

  .sms-profile-kpis.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .sms-profile-kpis a {
    min-height: 120px;
    border-radius: 28px;
    padding: 24px;
  }

  .sms-profile-kpis.three strong {
    font-size: 34px;
  }

  .sms-profile-layout,
  .sms-profile-page {
    align-items: start;
  }

  .sms-profile-menu {
    width: 100%;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 10px;
    overflow: visible;
    margin: 0;
    padding: 0 0 16px;
  }

  .sms-profile-menu a {
    justify-content: center;
  }

  .sms-profile-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .sms-profile-content .sms-profile-card:last-child {
    grid-column: 1 / -1;
  }

  .sms-profile-card {
    padding: 26px;
  }

  .sms-info-page {
    gap: 24px;
    padding-top: 24px;
  }

  .sms-info-hero {
    min-height: 360px;
    border-radius: 34px;
    padding: 46px 54px;
  }

  .sms-info-hero h1 {
    max-width: 900px;
    font-size: 64px;
  }

  .sms-info-hero p {
    max-width: 760px;
    font-size: 18px;
  }

  .sms-info-actions {
    max-width: 520px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sms-doc-grid,
  .sms-help-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .sms-doc-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sms-help-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sms-doc-card,
  .sms-api-console,
  .sms-faq-list {
    border-radius: 30px;
    padding: 24px;
  }

  .sms-doc-card.metric {
    min-height: 160px;
  }

  .sms-doc-card.metric span {
    font-size: 44px;
  }

  .sms-api-console .sms-card-head {
    margin-bottom: 4px;
  }

  .sms-endpoint-list article {
    grid-template-columns: 78px minmax(220px, .8fr) minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .sms-endpoint-list b {
    width: 62px;
  }

  .sms-endpoint-list span {
    grid-column: auto;
  }

  .number-drawer-panel,
  .number-auth-sheet,
  .number-detail-sheet,
  .number-policy-sheet {
    width: min(560px, calc(100% - 40px));
  }

  .number-drawer-backdrop {
    background: rgba(7, 9, 18, .28);
    backdrop-filter: blur(9px);
  }

  .number-drawer-panel {
    top: 24px;
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(460px, calc(100% - 48px));
    max-height: calc(100vh - 48px);
    border-radius: 30px;
    padding: 18px;
    box-shadow: 0 28px 80px rgba(17, 18, 37, .22);
    transform: translateX(calc(100% + 32px));
  }

  .number-drawer.open .number-drawer-panel {
    transform: translateX(0);
  }

  .number-drawer-nav {
    gap: 10px;
  }

  .number-drawer-nav > a {
    min-height: 72px;
    border-radius: 22px;
    padding: 11px 12px;
  }
}

@media (min-width: 1280px) {
  .app-service-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1500px) {
  .sms-order-catalog-card .app-panel-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Final desktop polish: keep icon assets centered, rows stable, and wide layouts balanced. */
.app-service-rail img,
.number-row-main > img,
.sms-summary-pick img,
.app-selected-card img,
.app-order-icon img,
.sms-active-row img,
.sms-transaction-list img,
.sms-favorite-row img,
.number-drawer-profile img {
  object-fit: contain;
  object-position: center;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 242, .82);
}

.app-service-rail img,
.number-row-main > img,
.sms-summary-pick img,
.app-selected-card img,
.sms-active-row img,
.sms-transaction-list img,
.sms-favorite-row img {
  padding: 5px;
}

.app-order-icon img {
  padding: 8px;
}

.number-drawer-profile img {
  padding: 4px;
}

.number-design-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.number-row-main,
.number-row-main > span:last-child,
.number-row-side {
  min-width: 0;
}

.number-row-main > span:last-child > span:first-child,
.number-row-main > span:last-child > span:last-child {
  max-width: 100%;
}

.number-row-side {
  justify-content: end;
}

.number-row-side.service {
  min-width: 122px;
}

.number-row-stock,
.number-price,
.sms-balance,
.sms-code-line b,
.sms-payment-history article b,
.sms-transaction-list article b {
  font-variant-numeric: tabular-nums;
}

.sms-card-head span,
.drawer-icon,
.sms-help-icon,
.sms-payment-icon,
.number-bottom-nav span,
.sms-icon-btn,
.sms-menu-toggle,
.number-pin-btn,
.app-back-btn {
  flex: 0 0 auto;
  place-items: center;
}

.sms-payment-history article,
.sms-transaction-list article {
  min-width: 0;
}

@media (min-width: 1024px) {
  body.number-shell header.wide-container,
  body.number-shell main.wide-container {
    width: min(100%, 1540px);
  }

  .sms-header {
    column-gap: 18px;
  }

  .sms-top-nav {
    flex: 0 1 auto;
  }

  .sms-top-nav a {
    padding-inline: 16px;
  }

  .sms-header-actions {
    flex: 0 0 auto;
  }

  .app-hero-card h1 {
    font-size: 64px;
  }

  .sms-order-hero {
    min-height: 228px;
    padding-block: 32px;
  }

  .sms-order-hero h1 {
    font-size: 60px;
  }

  .app-flow-head h2 {
    font-size: 48px;
  }

  .sms-page-hero h1 {
    font-size: 56px;
  }

  .sms-order-catalog-card .number-design-row {
    grid-template-columns: minmax(0, 1fr) minmax(122px, auto);
    gap: 16px;
  }

  .sms-order-catalog-card .number-row-main {
    gap: 13px;
  }

  .sms-order-catalog-card .number-row-main > img,
  .sms-order-catalog-card .number-flag-fallback,
  .sms-order-catalog-card .number-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .sms-order-catalog-card .number-row-side {
    gap: 9px;
  }

  .sms-order-catalog-card .number-row-stock {
    min-width: 92px;
    max-width: 112px;
  }

  .sms-order-catalog-card .number-price {
    min-width: 76px;
  }

  .app-order-glow {
    top: 34px;
    width: 164px;
    height: 164px;
  }

  .app-order-summary {
    padding-top: 78px;
  }

  .app-order-icon,
  .app-order-icon img,
  .app-order-icon b {
    width: 86px;
    height: 86px;
    border-radius: 26px;
  }

  .app-order-summary h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .sms-order-confirm-card {
    min-height: 600px;
  }

  .sms-order-confirm-card .app-price-card {
    margin: 18px 0 14px;
  }

  .sms-order-page.number-flow-step-order .sms-order-hero {
    min-height: 188px;
    padding: 26px 44px;
  }

  .sms-order-page.number-flow-step-order .sms-order-hero h1 {
    margin-top: 10px;
    font-size: 54px;
  }

  .sms-order-page.number-flow-step-order .sms-order-hero p {
    font-size: 16px;
  }

  .sms-order-flow.number-flow-step-order {
    padding-top: 18px;
  }

  .sms-order-flow.number-flow-step-order .app-flow-head {
    margin-bottom: 14px;
  }

  .sms-order-flow.number-flow-step-order .app-flow-head h2 {
    font-size: 44px;
  }

  .sms-order-flow.number-flow-step-order .sms-order-confirm-card {
    min-height: 540px;
    padding: 30px 38px 32px;
  }

  .sms-order-flow.number-flow-step-order .app-order-glow {
    top: 24px;
    width: 142px;
    height: 142px;
  }

  .sms-order-flow.number-flow-step-order .app-order-summary {
    padding-top: 58px;
  }

  .sms-order-flow.number-flow-step-order .app-order-icon,
  .sms-order-flow.number-flow-step-order .app-order-icon img,
  .sms-order-flow.number-flow-step-order .app-order-icon b {
    width: 78px;
    height: 78px;
    border-radius: 24px;
  }

  .sms-order-flow.number-flow-step-order .app-order-summary h3 {
    margin-top: 10px;
    font-size: 38px;
  }

  .sms-order-flow.number-flow-step-order .app-price-card {
    margin: 14px 0 12px;
    padding: 14px 16px;
  }

  .sms-order-flow.number-flow-step-order .app-info-list {
    gap: 7px;
    margin-bottom: 12px;
  }

  .sms-active-row,
  .sms-transaction-list article {
    align-items: center;
  }

  .sms-payment-history article,
  .sms-transaction-list article {
    grid-template-columns: 50px minmax(0, 1fr) auto;
  }

  .sms-favorite-row span {
    overflow: hidden;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  body.number-shell header.wide-container,
  body.number-shell main.wide-container {
    padding-inline: 26px;
  }

  .sms-brand-image,
  .is-authenticated .sms-brand-image {
    max-width: 200px;
  }

  .sms-brand-logo,
  .is-authenticated .sms-brand-logo {
    width: min(200px, 19vw);
  }

  .sms-top-nav {
    gap: 3px;
  }

  .sms-top-nav a {
    padding-inline: 10px;
    font-size: 12px;
  }

  .sms-lang {
    display: none !important;
  }

  .sms-balance {
    min-width: 104px;
    padding-inline: 14px;
  }
}

/* Number and catalog finishing pass. */
.number-flag-fallback {
  color: var(--app-ink);
  background: #fff;
  font-size: 35px;
  line-height: 1;
}

.number-country-flag {
  object-fit: contain !important;
  object-position: center;
  padding: 8px !important;
  background: #fff !important;
}

.sms-order-catalog-card .number-country-flag,
.sms-order-catalog-card .number-flag-fallback {
  font-size: 35px;
}

.sms-order-catalog-card .number-country-flag {
  padding: 9px !important;
}

.number-service-logo {
  object-fit: contain !important;
}

.number-phone-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.number-phone-copy .number-ghost-btn,
.number-button-row .number-ghost-btn {
  min-width: 0;
  padding-inline: 10px;
  white-space: normal;
}

.number-ghost-btn[disabled] {
  cursor: not-allowed;
  color: #9aa3b3;
  background: #f6f8fc;
}

.copy-value.copied {
  border-color: rgba(24, 199, 129, .28);
  color: #067647;
  background: #ecfdf3;
}

.order-phone {
  color: var(--app-ink) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: 0;
}

@media (min-width: 1024px) {
  .number-phone-copy {
    gap: 10px;
  }

  .number-phone-copy .number-ghost-btn {
    min-height: 44px;
  }
}

/* Orders page interaction pass. */
.route-client-numbers .sms-mobile-device > [data-tab-panel="active"] {
  display: grid;
  gap: 14px;
}

.route-client-numbers .sms-active-number {
  min-height: 0;
}

.route-client-numbers .sms-active-row {
  align-items: flex-start;
}

.route-client-numbers .sms-active-row .order-phone {
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  line-height: 1.25;
}

.number-inline-copy {
  min-height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid rgba(255, 119, 23, .2);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--app-orange);
  background: #fff7f0;
  box-shadow: 0 10px 24px rgba(255, 119, 23, .08);
  font-size: 12px;
  font-weight: 950;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.number-inline-copy:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 119, 23, .34);
  background: #fff1e5;
}

.number-inline-copy:disabled {
  cursor: not-allowed;
  border-color: var(--app-line);
  color: #98a2b3;
  background: #f6f8fc;
  box-shadow: none;
}

.number-copy-modal {
  position: fixed;
  inset: 0;
  z-index: 12600;
  pointer-events: none;
}

.number-copy-modal.open {
  pointer-events: auto;
}

.number-copy-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 9, 18, .36);
  opacity: 0;
  backdrop-filter: blur(7px);
  transition: opacity .18s ease;
}

.number-copy-modal.open .number-copy-backdrop {
  opacity: 1;
}

.number-copy-sheet {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: min(430px, calc(100% - 20px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 32px;
  padding: 22px;
  background:
    radial-gradient(circle at 94% 0%, rgba(255, 119, 23, .16), transparent 34%),
    rgba(255, 255, 255, .98);
  box-shadow: 0 -24px 68px rgba(17, 18, 37, .26);
  transform: translate(-50%, 112%);
  transition: transform .24s cubic-bezier(.2, .82, .2, 1);
}

.number-copy-modal.open .number-copy-sheet {
  transform: translate(-50%, 0);
}

.number-copy-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--app-ink);
  background: var(--app-soft);
  font-size: 20px;
  font-weight: 900;
}

.number-copy-sheet h2 {
  margin: 8px 44px 4px 0;
  color: var(--app-ink);
  font-size: 26px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.035em;
}

.number-copy-sheet p {
  margin: 0;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 850;
}

.number-copy-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.number-copy-options button {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid var(--app-line);
  border-radius: 22px;
  padding: 14px 16px;
  text-align: left;
  background: #fff;
  box-shadow: 0 14px 32px rgba(17, 18, 37, .06);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.number-copy-options button:hover,
.number-copy-options button.copied {
  transform: translateY(-1px);
  border-color: rgba(24, 199, 129, .32);
  background: #ecfdf3;
}

.number-copy-options span {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 900;
}

.number-copy-options b {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--app-ink);
  text-align: right;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.sms-history-head span {
  color: var(--app-orange);
  font-size: 13px;
  font-weight: 900;
}

.number-load-more {
  min-height: 52px;
  width: min(360px, 100%);
  display: grid;
  place-items: center;
  gap: 2px;
  margin: 18px auto 0 !important;
  border: 1px solid rgba(255, 119, 23, .24);
  border-radius: 18px;
  color: var(--app-orange);
  background: #fff7f0;
  box-shadow: 0 16px 34px rgba(255, 119, 23, .08);
  font-size: 14px;
  font-weight: 950;
}

.number-load-more small {
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 850;
}

.app-service-load-more,
.sms-payment-history .number-load-more,
.sms-transaction-list + .number-load-more {
  grid-column: 1 / -1;
  justify-self: center;
}

.sms-transaction-list article.is-revealed,
.sms-payment-history article.is-revealed,
.app-service-rail a.is-revealed {
  animation: numberItemReveal .24s ease both;
}

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

@media (max-width: 430px) {
  .number-inline-copy {
    min-height: 36px;
    padding-inline: 12px;
  }

  .number-copy-options button {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .number-copy-options b {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .route-client-numbers .sms-mobile-device {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "balance"
      "activeTitle"
      "active"
      "historyHead"
      "history"
      "loadMore" !important;
    gap: 18px;
    max-width: 1280px;
    margin-inline: auto;
  }

  .route-client-numbers .sms-mobile-device > h2:nth-of-type(1) {
    grid-area: activeTitle;
  }

  .route-client-numbers .sms-mobile-device > [data-tab-panel="active"] {
    grid-area: active;
    gap: 16px;
  }

  .route-client-numbers .sms-history-head {
    grid-area: historyHead;
    margin-top: 22px;
  }

  .route-client-numbers .sms-transaction-list {
    grid-area: history;
  }

  .route-client-numbers .number-load-more {
    grid-area: loadMore;
  }

  .route-client-numbers .sms-active-number {
    min-height: 0 !important;
    border-radius: 28px;
    padding: 22px 24px !important;
  }

  .route-client-numbers .sms-code-line {
    margin-top: 14px;
  }

  .route-client-numbers .number-button-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .number-copy-sheet {
    top: 50%;
    bottom: auto;
    width: min(460px, calc(100% - 40px));
    box-shadow: 0 28px 84px rgba(17, 18, 37, .24);
    transform: translate(-50%, -46%) scale(.96);
    opacity: 0;
    transition: transform .22s cubic-bezier(.2, .82, .2, 1), opacity .18s ease;
  }

  .number-copy-modal.open .number-copy-sheet {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Premium order flow pass. */
.route-client-order .sms-order-page,
.route-client-order .sms-order-flow {
  animation: orderPageRise .34s ease both;
}

.route-client-order .sms-order-flow {
  scroll-margin-top: 118px;
}

.route-client-order .sms-order-hero {
  isolation: isolate;
  min-height: 190px;
  border-color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 198, 134, .52), transparent 30%),
    radial-gradient(circle at 18% 120%, rgba(255, 119, 23, .32), transparent 28%),
    linear-gradient(137deg, #111225 0%, #20213c 52%, #955034 100%);
  box-shadow:
    0 26px 58px rgba(17, 18, 37, .18),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.route-client-order .sms-order-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, .1) 42%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 52px);
  opacity: .58;
  animation: orderSheen 5.8s ease-in-out infinite;
}

.route-client-order .sms-order-eyebrow {
  min-height: 34px;
  align-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.route-client-order .sms-order-orb {
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    0 18px 44px rgba(0, 0, 0, .16);
}

.route-client-order .sms-order-orb:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  right: 24px;
  top: 24px;
  border-radius: 50%;
  background: #fff;
  opacity: .38;
  animation: orderDotDrift 2.7s ease-in-out infinite;
}

.route-client-order .app-flow-head {
  align-items: center;
}

.route-client-order .app-flow-head small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: var(--app-muted);
  background: rgba(241, 245, 249, .85);
}

.route-client-order .app-stepper {
  gap: 7px;
  border-radius: 22px;
  padding: 7px;
  box-shadow: 0 14px 34px rgba(17, 18, 37, .07);
}

.route-client-order .app-stepper span {
  position: relative;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.route-client-order .app-stepper span.active {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 18, 37, .16);
}

.route-client-order .sms-order-catalog-card {
  border-color: rgba(226, 232, 242, .78);
  background:
    radial-gradient(circle at 96% 4%, rgba(255, 119, 23, .12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .9));
  box-shadow:
    0 24px 64px rgba(17, 18, 37, .1),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}

.route-client-order .app-search {
  position: sticky;
  top: 0;
  z-index: 6;
  border-radius: 20px;
  background: rgba(246, 248, 252, .94);
  box-shadow: 0 12px 24px rgba(17, 18, 37, .04);
  backdrop-filter: blur(14px);
}

.number-pinned-section {
  grid-column: 1 / -1;
  margin: 10px 0 12px;
  border: 1px solid rgba(255, 119, 23, .18);
  border-radius: 26px;
  padding: 10px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 119, 23, .13), transparent 34%),
    #fff8f2;
  box-shadow: 0 18px 38px rgba(255, 119, 23, .08);
  animation: pinnedSectionIn .22s ease both;
}

.number-section-label.pinned {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 5px 10px;
  color: var(--app-orange);
}

.number-section-label.pinned span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.number-section-label.pinned span:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--app-orange);
  box-shadow: 0 0 0 6px rgba(255, 119, 23, .1);
}

.number-section-label.pinned small {
  color: #a7653a;
  font-size: 10px;
  font-weight: 950;
}

.number-pinned-grid {
  display: grid;
  gap: 9px;
}

.number-pinned-section .number-design-row {
  margin-bottom: 0;
  border-color: rgba(255, 119, 23, .24);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 26px rgba(17, 18, 37, .05);
}

.number-design-row {
  position: relative;
}

.number-design-row:before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background .16s ease, box-shadow .16s ease;
}

.number-design-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(17, 18, 37, .08);
}

.number-design-row.is-pinned-row:before {
  background: var(--app-orange);
  box-shadow: 0 0 0 5px rgba(255, 119, 23, .08);
}

.number-pin-btn {
  position: relative;
  transition: transform .16s ease, color .16s ease, background .16s ease;
}

.number-pin-btn:hover {
  transform: rotate(-8deg) scale(1.04);
}

.number-pin-btn.is-pinned {
  color: #fff;
  background: var(--app-orange);
  box-shadow: 0 10px 22px rgba(255, 119, 23, .22);
}

.app-selected-card {
  border: 1px solid rgba(255, 119, 23, .14);
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 119, 23, .12), transparent 32%),
    linear-gradient(145deg, #fff8f2, #fff);
  box-shadow: 0 16px 34px rgba(17, 18, 37, .06);
}

.sms-order-confirm-card {
  border-color: rgba(226, 232, 242, .78);
  background:
    radial-gradient(circle at 50% 13%, rgba(255, 119, 23, .14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92));
  box-shadow: 0 28px 78px rgba(17, 18, 37, .12);
}

.sms-order-confirm-card:before,
.sms-order-confirm-card:after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.sms-order-confirm-card:before {
  width: 210px;
  height: 210px;
  right: -96px;
  top: -86px;
  background: rgba(255, 119, 23, .1);
}

.sms-order-confirm-card:after {
  width: 150px;
  height: 150px;
  left: -82px;
  bottom: -74px;
  background: rgba(17, 18, 37, .06);
}

.route-client-order .app-order-icon {
  animation: orderIconFloat 3.4s ease-in-out infinite;
}

.route-client-order .app-price-card {
  border: 1px solid rgba(226, 232, 242, .88);
  background: linear-gradient(135deg, #f6f8fc, #fff);
}

.route-client-order .app-info-list {
  border-radius: 24px;
  padding: 12px;
  background: rgba(246, 248, 252, .72);
}

.route-client-order .app-info-list span {
  min-height: 34px;
  border-radius: 15px;
  padding: 0 4px;
}

.route-client-order .app-primary-action.wide {
  min-height: 58px;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(255, 119, 23, .26);
}

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

@keyframes orderSheen {
  0%, 100% {
    transform: translateX(-16%);
    opacity: .42;
  }
  50% {
    transform: translateX(12%);
    opacity: .72;
  }
}

@keyframes orderDotDrift {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-18px, 20px);
  }
}

@keyframes pinnedSectionIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orderIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 430px) {
  .route-client-order .sms-order-hero {
    min-height: 178px;
    grid-template-columns: minmax(0, 1fr) 86px;
    border-radius: 30px;
    padding: 20px;
  }

  .route-client-order .sms-order-hero h1 {
    font-size: 32px;
  }

  .route-client-order .sms-order-orb {
    width: 82px;
    height: 82px;
    border-radius: 26px;
  }

  .route-client-order .app-stepper span {
    width: 30px;
    height: 30px;
  }

  .number-pinned-section {
    padding: 9px;
    border-radius: 22px;
  }

  .route-client-order .app-search {
    height: 54px;
  }

  .route-client-order .sms-order-flow {
    scroll-margin-top: 92px;
  }
}

@media (min-width: 1024px) {
  .route-client-order .sms-order-hero {
    min-height: 318px;
  }

  .route-client-order .sms-order-catalog-card {
    border-radius: 34px;
    padding: 24px;
  }

  .route-client-order .app-panel-list {
    max-height: min(66vh, 760px);
  }

  .number-pinned-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-client-order .number-flow-step-order .app-flow-head,
  .route-client-order .number-flow-step-order .sms-order-confirm-card {
    max-width: 820px;
    margin-inline: auto;
  }
}

/* Service-first order flow and 30-card popular services polish. */
.app-service-rail a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.app-service-rail a:before {
  content: "";
  position: absolute;
  inset: auto 18% -38px 18%;
  z-index: -1;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 119, 23, .16);
  filter: blur(18px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}

.app-service-rail a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 119, 23, .28);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 248, 242, .92));
  box-shadow: 0 22px 46px rgba(17, 18, 37, .1);
}

.app-service-rail a:hover:before {
  opacity: 1;
  transform: translateY(-8px);
}

.number-flow-step-service-first .app-flow-head h2 {
  max-width: 680px;
}

.app-selected-card.service-first {
  max-width: 720px;
  margin-bottom: 16px;
  border-color: rgba(255, 119, 23, .2);
}

.app-selected-card.service-first .number-service-icon-wrap {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.app-selected-card.service-first .number-service-logo,
.app-selected-card.service-first .number-service-icon {
  width: 46px;
  height: 46px;
  border-radius: 17px;
}

.sms-empty-state.compact {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
}

.sms-empty-state.compact span {
  color: var(--app-muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 430px) {
  .app-service-rail a {
    flex-basis: calc((100% - 30px) / 4);
  }

  .app-selected-card.service-first {
    min-height: 74px;
    border-radius: 24px;
  }
}

/* Wide premium confirmation screen. */
.route-client-order .sms-order-confirm-card {
  width: 100%;
}

.app-order-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.app-order-main {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 242, .78);
  border-radius: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at 52% 12%, rgba(255, 119, 23, .16), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(17, 18, 37, .06), transparent 25%),
    rgba(255, 255, 255, .86);
}

.app-order-selection {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.app-order-chip {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(226, 232, 242, .82);
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 30px rgba(17, 18, 37, .05);
}

.app-order-chip img,
.app-order-chip b {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--app-ink);
  font-size: 18px;
  font-weight: 950;
  object-fit: contain;
}

.app-order-chip img {
  padding: 5px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 242, .9);
}

.app-order-chip span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.app-order-chip small,
.app-order-checkout-label {
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.app-order-chip strong {
  overflow: hidden;
  color: var(--app-ink);
  font-size: 15px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-order-aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

.app-order-checkout,
.app-order-notes {
  border: 1px solid rgba(226, 232, 242, .82);
  border-radius: 30px;
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 119, 23, .1), transparent 30%),
    rgba(255, 255, 255, .88);
  box-shadow: 0 18px 42px rgba(17, 18, 37, .07);
}

.app-order-checkout h4 {
  margin: 6px 0 16px;
  color: var(--app-ink);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 950;
}

.app-order-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.app-order-lines div {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(226, 232, 242, .72);
  padding-bottom: 8px;
}

.app-order-lines div:last-child {
  border-bottom: 0;
}

.app-order-lines span {
  color: var(--app-muted);
  font-size: 13px;
  font-weight: 900;
}

.app-order-lines strong {
  max-width: 58%;
  overflow: hidden;
  color: var(--app-ink);
  font-size: 14px;
  font-weight: 950;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-order-alert {
  margin: 2px 0 14px;
  border: 1px solid rgba(255, 119, 23, .18);
  border-radius: 18px;
  padding: 12px 14px;
  color: #9a4b1e;
  background: rgba(255, 248, 242, .92);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
}

.app-order-notes {
  display: grid;
  gap: 10px;
}

.app-order-notes span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--app-muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

.app-order-notes b {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--app-green);
  box-shadow: 0 0 0 6px rgba(24, 199, 129, .1);
}

@media (min-width: 1024px) {
  .route-client-order .number-flow-step-order .app-flow-head,
  .route-client-order .number-flow-step-order .sms-order-confirm-card {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .route-client-order .sms-order-flow.number-flow-step-order {
    padding-top: 24px;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-flow-head {
    display: flex;
    justify-content: space-between;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .sms-order-confirm-card {
    min-height: 0;
    border-radius: 34px;
    padding: 24px;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-order-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: 22px;
    align-items: stretch;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-order-main {
    min-height: 560px;
    padding: 34px;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-order-glow {
    top: 42px;
    width: 190px;
    height: 190px;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-order-summary {
    padding-top: 112px;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-order-summary h3 {
    font-size: clamp(38px, 3.2vw, 54px);
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-order-summary p {
    font-size: 15px;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-price-card {
    max-width: 520px;
    margin-inline: auto;
    padding: 18px 20px;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-order-selection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-info-list {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 18px 0 0;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-info-list span {
    justify-content: center;
    min-height: 58px;
    border: 1px solid rgba(226, 232, 242, .74);
    background: rgba(255, 255, 255, .68);
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-order-aside {
    grid-template-rows: 1fr auto;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-order-checkout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    padding: 24px;
  }

  .route-client-order .sms-order-flow.number-flow-step-order .app-primary-action.wide {
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .route-client-order .sms-order-confirm-card {
    padding: 12px;
  }

  .app-order-main,
  .app-order-checkout,
  .app-order-notes {
    border-radius: 26px;
  }

  .app-order-main {
    min-height: 0;
    padding: 22px 16px 16px;
  }

  .app-order-selection {
    margin-top: 12px;
  }

  .app-order-chip {
    min-height: 66px;
  }

  .app-order-lines strong {
    max-width: 52%;
  }
}

.route-client-order .sms-order-flow.number-flow-step-order .app-order-main,
.route-client-order .number-flow-step-order .app-order-main {
  --order-art-top: 48px;
  --order-art-size: 188px;
  --order-icon-size: 96px;
  --order-icon-center-y: 142px;
  --order-summary-offset: 220px;
}

.route-client-order .sms-order-flow.number-flow-step-order .app-order-glow,
.route-client-order .number-flow-step-order .app-order-glow {
  top: var(--order-art-top);
  left: 50%;
  width: var(--order-art-size);
  height: var(--order-art-size);
  transform: translateX(-50%);
}

.route-client-order .sms-order-flow.number-flow-step-order .app-order-summary,
.route-client-order .number-flow-step-order .app-order-summary {
  position: static;
  padding-top: var(--order-summary-offset);
}

.route-client-order .sms-order-flow.number-flow-step-order .app-order-icon,
.route-client-order .number-flow-step-order .app-order-icon {
  position: absolute;
  top: var(--order-icon-center-y);
  left: 50%;
  width: var(--order-icon-size);
  height: var(--order-icon-size);
  transform: translate(-50%, -50%);
  animation: orderIconCenterFloat 3.4s ease-in-out infinite;
}

.route-client-order .sms-order-flow.number-flow-step-order .app-order-summary h3,
.route-client-order .number-flow-step-order .app-order-summary h3 {
  position: relative;
  z-index: 4;
  display: block;
  margin: 0 0 8px;
  color: var(--app-ink);
  line-height: .98;
}

.route-client-order .sms-order-flow.number-flow-step-order .app-order-summary p,
.route-client-order .number-flow-step-order .app-order-summary p {
  position: relative;
  z-index: 4;
}

.route-client-order .number-flow-step-order .app-order-icon img,
.route-client-order .number-flow-step-order .app-order-icon b {
  width: 100%;
  height: 100%;
  border-radius: 28px;
}

.route-client-order .number-flow-step-order .app-order-icon img {
  object-fit: contain;
  padding: 10px;
}

@keyframes orderIconCenterFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-5px);
  }
}

@media (min-width: 1024px) {
  .route-client-order .sms-order-flow.number-flow-step-order .app-order-main,
  .route-client-order .number-flow-step-order .app-order-main {
    --order-art-top: 42px;
    --order-art-size: 220px;
    --order-icon-size: 108px;
    --order-icon-center-y: 152px;
    --order-summary-offset: 232px;
  }
}

@media (max-width: 640px) {
  .route-client-order .sms-order-flow.number-flow-step-order .app-order-main,
  .route-client-order .number-flow-step-order .app-order-main {
    --order-art-top: 36px;
    --order-art-size: 172px;
    --order-icon-size: 90px;
    --order-icon-center-y: 122px;
    --order-summary-offset: 206px;
  }
}

@media (max-width: 430px) {
  .route-client-order .sms-order-flow.number-flow-step-order .app-order-main,
  .route-client-order .number-flow-step-order .app-order-main {
    --order-art-top: 28px;
    --order-art-size: 148px;
    --order-icon-size: 82px;
    --order-icon-center-y: 102px;
    --order-summary-offset: 178px;
  }
}

/* Support tickets */
.sms-support-page,
.sms-ticket-page {
  min-width: 0;
}

.sms-support-hero {
  min-height: 300px;
}

.sms-doc-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.sms-doc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.sms-doc-head .sms-help-icon {
  flex: 0 0 48px;
}

.sms-doc-head h2 {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sms-support-layout {
  display: grid;
  gap: 16px;
  align-items: start;
}

.sms-ticket-entry,
.sms-ticket-side,
.sms-ticket-board,
.sms-ticket-thread,
.sms-ticket-reply-card {
  min-width: 0;
  border: 1px solid rgba(226, 232, 242, .88);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 119, 23, .06), transparent 32%),
    rgba(255, 255, 255, .93);
  box-shadow: 0 18px 44px rgba(17, 18, 37, .07);
}

.sms-ticket-entry,
.sms-ticket-side,
.sms-ticket-board,
.sms-ticket-thread,
.sms-ticket-reply-card {
  padding: 18px;
}

.sms-ticket-form {
  display: grid;
  gap: 12px;
}

.sms-ticket-form label {
  display: grid;
  gap: 8px;
  color: var(--app-ink);
  font-size: 13px;
  font-weight: 950;
}

.sms-ticket-form textarea.number-input {
  height: auto;
  min-height: 126px;
  padding-top: 14px;
  line-height: 1.45;
  resize: vertical;
}

.sms-ticket-form-grid {
  display: grid;
  gap: 10px;
}

.sms-ticket-login {
  display: grid;
  gap: 12px;
  border-radius: 22px;
  padding: 18px;
  background: var(--app-soft);
}

.sms-ticket-login strong {
  color: var(--app-ink);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}

.sms-ticket-login p {
  margin: 0;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
}

.sms-ticket-login > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sms-ticket-list {
  display: grid;
  gap: 10px;
}

.sms-ticket-list.compact {
  margin-bottom: 12px;
}

.sms-ticket-row {
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(226, 232, 242, .86);
  border-radius: 20px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 18, 37, .045);
}

.sms-ticket-row.large {
  min-height: 86px;
  border-radius: 24px;
  padding: 14px;
}

.sms-ticket-row > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--app-ink);
  font-size: 12px;
  font-weight: 950;
}

.sms-ticket-row strong,
.sms-ticket-row small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sms-ticket-row strong {
  color: var(--app-ink);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
}

.sms-ticket-row small {
  margin-top: 4px;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 850;
}

.sms-ticket-row-meta {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.sms-ticket-empty {
  border: 1px dashed rgba(199, 207, 221, .9);
  border-radius: 20px;
  padding: 20px;
  color: var(--app-muted);
  background: rgba(246, 248, 252, .72);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
  text-align: center;
}

.status-pill.open {
  color: #9a5b0d;
  background: #fff5d6;
}

.status-pill.answered {
  color: #067647;
  background: #dcfae6;
}

.status-pill.closed {
  color: #596174;
  background: #eef2f7;
}

.sms-ticket-hero {
  margin-bottom: 14px;
}

.sms-ticket-kpis {
  margin-bottom: 16px;
}

.sms-ticket-detail-head {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(226, 232, 242, .88);
  border-radius: 30px;
  padding: 18px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 119, 23, .10), transparent 30%),
    rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(17, 18, 37, .07);
}

.sms-back-link {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--app-line);
  border-radius: 16px;
  padding: 0 12px;
  color: var(--app-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 950;
}

.sms-back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sms-ticket-detail-head span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: #8b421f;
  background: #fff2ea;
  font-size: 11px;
  font-weight: 950;
}

.sms-ticket-detail-head h1 {
  margin: 10px 0 8px;
  color: var(--app-ink);
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.sms-ticket-detail-head p {
  margin: 0;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
}

.sms-ticket-detail-grid {
  display: grid;
  gap: 16px;
}

.sms-ticket-thread {
  display: grid;
  gap: 12px;
}

.sms-ticket-message {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.sms-ticket-message.admin {
  grid-template-columns: minmax(0, 1fr) 42px;
}

.sms-ticket-message-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--app-ink);
  font-size: 12px;
  font-weight: 950;
}

.sms-ticket-message.admin .sms-ticket-message-avatar {
  grid-column: 2;
  background: linear-gradient(145deg, var(--app-orange), #ff9142);
}

.sms-ticket-message.admin .sms-ticket-message-bubble {
  grid-column: 1;
  grid-row: 1;
}

.sms-ticket-message-bubble {
  min-width: 0;
  border: 1px solid var(--app-line);
  border-radius: 22px;
  padding: 14px;
  background: #fff;
}

.sms-ticket-message.admin .sms-ticket-message-bubble {
  background: #fff8f3;
}

.sms-ticket-message-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.sms-ticket-message-meta strong {
  color: var(--app-ink);
  font-size: 13px;
  font-weight: 950;
}

.sms-ticket-message-meta small {
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.sms-ticket-message-bubble p {
  margin: 0;
  color: #596174;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.sms-ticket-reply-card {
  display: grid;
  gap: 14px;
}

@media (min-width: 768px) {
  .sms-ticket-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sms-ticket-detail-head {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .sms-support-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
    gap: 20px;
  }

  .sms-ticket-entry,
  .sms-ticket-side,
  .sms-ticket-board,
  .sms-ticket-thread,
  .sms-ticket-reply-card {
    border-radius: 32px;
    padding: 24px;
  }

  .sms-ticket-detail-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    align-items: start;
    gap: 20px;
  }

  .sms-ticket-reply-card {
    position: sticky;
    top: 106px;
  }
}

@media (max-width: 640px) {
  .sms-support-hero {
    min-height: 250px;
  }

  .sms-doc-head {
    align-items: flex-start;
    gap: 12px;
  }

  .sms-doc-head .sms-help-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .sms-doc-head h2 {
    font-size: 20px;
    line-height: 1.08;
  }

  .sms-ticket-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .sms-ticket-row-meta {
    grid-column: 2;
    justify-items: start;
  }

  .sms-ticket-detail-head h1 {
    font-size: 30px;
  }

  .sms-ticket-message.admin,
  .sms-ticket-message {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .sms-ticket-message.admin .sms-ticket-message-avatar,
  .sms-ticket-message.admin .sms-ticket-message-bubble {
    grid-column: auto;
    grid-row: auto;
  }

  .sms-ticket-message-avatar {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }
}

.app-provider-options {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 18px 0 4px;
  padding: 14px;
  border: 1px solid rgba(224, 231, 244, .95);
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 38px rgba(17, 18, 38, .06);
}

.app-provider-options > span {
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.app-provider-options > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.app-provider-options a {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid var(--app-line);
  border-radius: 18px;
  color: var(--app-ink);
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.app-provider-options a:hover,
.app-provider-options a.active {
  border-color: rgba(255, 122, 31, .55);
  background: linear-gradient(135deg, #fff7f1, #fff);
  box-shadow: 0 14px 28px rgba(255, 122, 31, .12);
  transform: translateY(-1px);
}

.app-provider-options strong {
  font-size: 13px;
  font-weight: 950;
}

.app-provider-options small {
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 850;
}

.app-provider-filter {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: stretch;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(224, 231, 244, .92);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 50px rgba(17, 18, 38, .07);
}

.app-provider-filter-head {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fff;
  background: radial-gradient(circle at 86% 16%, rgba(255, 255, 255, .24), transparent 34%),
    linear-gradient(135deg, #14152a 0%, #302c3a 48%, #ff7a1f 150%);
}

.app-provider-filter-head span {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.app-provider-filter-head strong {
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.app-provider-filter-head small {
  max-width: 360px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 850;
}

.app-provider-filter-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.app-provider-filter-list a {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--app-line);
  border-radius: 22px;
  color: var(--app-ink);
  background: #fff;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.app-provider-filter-list a:hover,
.app-provider-filter-list a.active {
  border-color: rgba(255, 122, 31, .55);
  background: linear-gradient(135deg, #fff7f1, #fff);
  box-shadow: 0 16px 30px rgba(255, 122, 31, .12);
  transform: translateY(-1px);
}

.app-provider-filter-list b {
  font-size: 14px;
  font-weight: 950;
}

.app-provider-filter-list span {
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 850;
}

.app-selected-provider {
  justify-self: end;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--app-orange);
  background: rgba(255, 119, 23, .1);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

@media (max-width: 640px) {
  .app-provider-filter {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
  }

  .app-provider-filter-head {
    min-height: auto;
    padding: 15px;
    border-radius: 20px;
  }

  .app-provider-filter-list {
    grid-template-columns: 1fr;
  }

  .app-provider-filter-list a {
    min-height: 66px;
    border-radius: 18px;
  }

  .app-provider-options {
    border-radius: 20px;
    padding: 12px;
  }

  .app-provider-options > div {
    grid-template-columns: 1fr;
  }
}
