:root {
  --green: #13bd73;
  --green-dark: #053f27;
  --green-soft: #d9f7ea;
  --blue: #2f8fe9;
  --orange: #ff9a24;
  --red: #f34d58;
  --cyan: #20aee6;
  --magenta: #d9579f;
  --ink: #17191d;
  --muted: #73777f;
  --soft: #f3f5f6;
  --line: #e9ecef;
  --panel: #ffffff;
  --shadow: 0 14px 34px rgba(25, 35, 42, 0.08);
  --bottom-nav-height: 70px;
  --bottom-bar-height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
}

* {
  box-sizing: border-box;
}

html {
  background: #dfe6e9;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #dfe6e9;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  touch-action: manipulation;
  overscroll-behavior: none;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.g-2 {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.12em;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.mobile-app {
  position: relative;
  width: min(100%, 460px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: visible;
  background: #f6f7f8;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 24px 80px rgba(16, 28, 36, 0.22);
}

.app-loading {
  display: none;
}

.mobile-app.is-hydrating .app-screen {
  visibility: hidden;
  pointer-events: none;
}

.mobile-app.is-hydrating .app-loading {
  position: absolute;
  inset: 0;
  z-index: 70;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 14px calc(var(--bottom-bar-height) + 72px);
  background: #f6f7f8;
}

.loading-phone-card,
.loading-grid span,
.loading-tabs span {
  overflow: hidden;
  background: #fff;
}

.loading-phone-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 114px;
  padding: 16px;
  border-radius: 0;
}

.loading-logo,
.loading-line,
.loading-grid span,
.loading-tabs span {
  display: block;
  border-radius: 10px;
  background: linear-gradient(90deg, #eceff1 0%, #f8f9fa 45%, #eceff1 100%);
  background-size: 220% 100%;
  animation: skeletonFlow 1.05s ease-in-out infinite;
}

.loading-logo {
  width: 46px;
  height: 31px;
  grid-row: span 2;
}

.loading-line-md {
  width: 48%;
  height: 17px;
}

.loading-line-lg {
  width: 82%;
  height: 24px;
}

.loading-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 16px 26px 12px;
  background: #fff;
}

.loading-tabs span {
  height: 20px;
}

.loading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 0;
}

.loading-grid span {
  min-height: 64px;
  border: 1px solid #eef1f3;
}

@keyframes skeletonFlow {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

.app-screen {
  display: none;
  min-height: 100vh;
  padding-bottom: calc(var(--bottom-bar-height) + 72px);
  background: #f6f7f8;
}

.app-screen.active {
  display: block;
  animation: screenIn 180ms ease-out;
}

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

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(243, 245, 246, 0.88) 70%, var(--soft));
  pointer-events: none;
}

.hero-home {
  display: none;
  min-height: 0;
  padding-bottom: 0;
  background: transparent;
}

.hero-home::after,
.home-nav,
.hero-copy {
  display: none !important;
}

.data-hero,
.auto-hero {
  min-height: 292px;
  background: linear-gradient(180deg, #11b66d 0%, #12bd72 52%, #8ee7c1 100%);
}

.auto-hero {
  min-height: 300px;
}

.navline {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 12px 18px 0;
}

.navline h1 {
  margin: 0;
  flex: 1;
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  color: #fff;
}

.left-title {
  gap: 10px;
}

.left-title h1 {
  flex: 0 1 auto;
  color: #fff;
  text-align: left;
  font-size: 19px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: currentColor;
  transition: background-color 160ms ease, transform 160ms ease;
}

.icon-button:active {
  transform: scale(0.95);
}

.icon-button.light {
  color: #fff;
}

.icon-button.muted {
  color: #aeb2b6;
}

.icon-button svg {
  width: 25px;
  height: 25px;
}

.order-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 20px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.12);
  font-weight: 800;
  color: #fff;
}

.order-pill svg {
  width: 22px;
  height: 22px;
}

.home-nav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 42px 1fr 74px;
  align-items: center;
  min-height: 76px;
  padding: 12px 18px 0;
}

.home-nav h1 {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
}

.nav-more {
  justify-self: end;
  width: 74px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 83, 45, 0.18);
  color: #fff;
}

.nav-more svg {
  width: 26px;
  height: 26px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px 34px 0;
}

.hero-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 800;
}

.hero-copy strong {
  color: #fff;
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.hero-copy p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.hero-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.content-stack {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 0;
  padding: 0 0 26px;
}

.content-overlap {
  margin-top: -26px;
}

.hero-home + .content-overlap {
  margin-top: 0;
  padding-top: 0;
}

.panel,
.section-block,
.service-group,
.list-card {
  background: var(--panel);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.category-tabs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  margin: 10px 0 0;
  padding: 0 20px;
  overflow-x: auto;
  background: var(--panel);
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  scrollbar-width: none;
  box-shadow: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs button {
  position: relative;
  flex: 1 1 0;
  padding: 16px 0 11px;
  color: #53555a;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.category-tabs button.active {
  color: var(--ink);
  font-weight: 800;
}

.category-tabs button.active::after {
  content: "";
  position: absolute;
  left: 32%;
  right: 32%;
  bottom: 0;
  height: 4px;
  border-radius: 99px;
  background: var(--green);
}

.phone-panel {
  padding: 16px 16px 13px;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.compact-panel {
  padding: 24px;
}

.carrier-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #73777f;
  font-size: 15px;
}

.operator-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
}

.operator-logo {
  width: 58px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--green);
  overflow: visible;
}

.operator-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  transform: translateY(3px);
}

.operator-logo.has-logo {
  background: transparent;
}

.operator-logo .carrier-mark {
  display: none;
}

.operator-name {
  min-width: 0;
  min-height: 38px;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  transform: translateY(10px);
  color: #333941;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.operator-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #3f454d;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.operator-switch[hidden] {
  display: none;
}

.operator-switch svg {
  width: 18px;
  height: 18px;
}

.carrier-mark {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 20%, #d9575d 22% 33%, transparent 35%),
    conic-gradient(from 0deg, #d9575d, #d9575d 10%, transparent 10% 25%, #d9575d 25% 35%, transparent 35% 50%, #d9575d 50% 60%, transparent 60% 75%, #d9575d 75% 85%, transparent 85%);
}

.phone-row,
.phone-input-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.phone-input-shell {
  min-height: 52px;
  margin-top: 12px;
  padding: 0 10px 0 16px;
  border-radius: 6px;
  background: #f5f6f7;
}

.sticky-phone-bar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 58;
  width: min(100%, 460px);
  transform: translateX(-50%) translateY(-100%);
  padding: 8px 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 25, 33, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.sticky-phone-bar.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-phone-bar .phone-input-shell {
  min-height: 48px;
  margin-top: 0;
}

.dial-code {
  flex: 0 0 auto;
  padding-right: 12px;
  border-right: 1px solid #dfe3e6;
  color: #11151a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.phone-number {
  flex: 1;
  min-width: 0;
  text-align: left;
  color: #0a0c10;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-number.is-placeholder {
  color: #b3bac1;
  font-weight: 700;
}

.phone-tip {
  margin: 10px 0 0;
  color: #8b929a;
  font-size: 13px;
  line-height: 1.45;
}

.green-rule {
  width: 100%;
  height: 3px;
  margin-top: 18px;
  border-radius: 99px;
  background: var(--green);
}

.recharge-cell:active,
.flow-cell:active,
.plan-tile:active,
.wide-plan:active,
.list-card:active,
.service-grid button:active {
  transform: scale(0.985);
}

.section-block {
  padding: 0;
  overflow: hidden;
}

.product-section {
  padding: 12px 14px 6px;
  background: transparent;
  box-shadow: none;
}

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

.section-block h2 {
  margin: 0;
  padding: 20px 0 14px;
  font-size: 17px;
  font-weight: 800;
}

.product-section h2 {
  padding: 0;
  font-size: 18px;
}

.product-section p {
  margin: 5px 0 0;
  color: #7b828b;
  font-size: 13px;
  line-height: 1.35;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.plain-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #68707b;
  font-size: 14px;
  white-space: nowrap;
}

.plain-link svg {
  width: 18px;
  height: 18px;
}

.benefit-section {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 12px 14px 8px;
}

.benefit-section h2 {
  margin: 0;
  color: #363b42;
  font-size: 18px;
  font-weight: 800;
}

.benefit-card {
  position: relative;
  width: 118px;
  min-height: 88px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  border: 1px solid var(--green);
  border-radius: 14px;
  background: #fff;
  color: #11151a;
  text-align: center;
}

.benefit-card em {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 78px;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.benefit-card strong {
  color: #11151a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.benefit-card span {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.benefit-card small {
  color: #f05f3b;
  font-size: 12px;
  font-weight: 700;
}

.benefit-card.selected {
  background: #f8fffb;
  box-shadow: inset 0 0 0 1px var(--green), 0 8px 18px rgba(19, 189, 115, 0.11);
}

.benefit-card.selected strong,
.benefit-card.selected span {
  color: var(--green);
}

.product-grid {
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.product-grid.three-col {
  --bs-gutter-x: 0.65rem;
  --bs-gutter-y: 0.65rem;
  overflow: visible;
}

.product-grid .col-4,
.product-grid .col-6 {
  border: 0;
}

.product-grid .col-4:nth-child(3n + 1),
.product-grid .col-6:nth-child(2n + 1) {
  border-left: 0;
}

.recharge-cell {
  width: 100%;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid #e2e5e8;
  border-radius: 13px;
  background: #fff;
  color: #17191d;
  text-align: center;
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.recharge-cell strong {
  display: block;
  color: #0c0f13;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.recharge-cell span {
  display: none;
  color: #5c646f;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.recharge-cell small {
  display: block;
  color: #8b929a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.recharge-cell.selected,
.auto-amount.selected {
  color: var(--green);
  background: #f8fffb;
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green), 0 8px 18px rgba(19, 189, 115, 0.11);
}

.recharge-cell.selected strong {
  color: var(--green);
}

.recharge-cell.selected small {
  color: var(--green);
}

.task-cell {
  flex-direction: column;
  gap: 3px;
  color: #f17724;
  font-size: 16px;
}

.task-cell small {
  color: #d68c35;
  font-size: 13px;
}

.flow-strip .flow-cell {
  min-height: 82px;
}

.flow-cell {
  position: relative;
  width: 100%;
  min-height: 82px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  border: 1px solid #e2e5e8;
  border-radius: 13px;
  background: #fff;
  text-align: center;
  color: var(--ink);
  transition: transform 140ms ease, background-color 140ms ease;
}

.flow-cell strong {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

.flow-cell span {
  display: block;
  font-size: 12px;
  color: #6b727b;
  line-height: 1.15;
  white-space: nowrap;
}

.flow-cell small {
  color: #8b929a;
  font-size: 14px;
  font-weight: 500;
}

.flow-cell.selected {
  border-color: var(--green);
  background: #f8fffb;
  box-shadow: inset 0 0 0 1px var(--green), 0 8px 18px rgba(19, 189, 115, 0.11);
}

.flow-cell.selected strong,
.flow-cell.selected span,
.flow-cell.selected small {
  color: var(--green);
}

.flow-cell em {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 7px;
  border-radius: 0 0 0 7px;
  background: #f56934;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.more-flow strong {
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.list-card {
  width: 100%;
  min-height: 75px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  text-align: left;
  transition: transform 140ms ease;
}

.list-card strong {
  font-size: 19px;
}

.list-card > span:not(.app-icon) {
  color: #9a9fa6;
  font-size: 16px;
  white-space: nowrap;
}

.list-card > svg {
  color: #9ca1a8;
  width: 21px;
  height: 21px;
}

.app-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
}

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

.blue {
  background: var(--blue);
}

.orange {
  background: var(--orange);
}

.green {
  background: var(--green);
}

.red {
  background: var(--red);
}

.cyan {
  background: var(--cyan);
}

.floating-service {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 20;
  width: min(100%, 460px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 64px;
  padding-bottom: env(safe-area-inset-bottom);
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  font-size: 20px;
  font-weight: 900;
}

.floating-service.primary-submit {
  bottom: calc(76px + env(safe-area-inset-bottom));
  width: calc(min(100%, 460px) - 24px);
  height: 56px;
  padding-bottom: 0;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(19, 189, 115, 0.28);
}

.floating-service svg {
  width: 25px;
  height: 25px;
}

.checkout-bar {
  position: fixed;
  left: 50%;
  bottom: var(--bottom-bar-height);
  z-index: 22;
  width: min(100%, 460px);
  min-height: 52px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: #f1fff6;
  border-top: 1px solid #cdf1df;
  border-bottom: 1px solid #e8f2ed;
  box-shadow: none;
}

.checkout-price {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.checkout-price strong {
  min-width: 0;
  color: #161b22;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-price span {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.checkout-submit {
  height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.checkout-submit:disabled {
  opacity: 0.65;
  cursor: progress;
}

.assurance-strip {
  padding: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.assurance-panel {
  padding: 16px;
}

.assurance-panel[hidden] {
  display: none;
}

.assurance-panel h2 {
  margin: 0 0 8px;
  color: #17191d;
  font-size: 15px;
  font-weight: 800;
}

.type-description-body {
  color: #676e76;
  font-size: 13px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.service-screen {
  padding-bottom: calc(var(--bottom-bar-height) + 112px);
}

.service-help-content {
  display: grid;
  gap: 18px;
  padding: 28px 22px calc(var(--bottom-bar-height) + 118px);
}

.help-search-shell {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border: 2px solid rgba(20, 184, 111, .76);
  border-radius: 12px;
  background: #fff;
}

.help-search-shell svg {
  width: 25px;
  height: 25px;
  color: #3f4b56;
  flex: 0 0 auto;
}

.help-search-shell input {
  min-width: 0;
  flex: 1;
  color: #17202a;
  font-size: 18px;
  font-weight: 600;
}

.help-search-shell input::placeholder {
  color: #bdc3cc;
  font-weight: 500;
}

.help-panel {
  display: grid;
  gap: 20px;
}

.help-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.help-title-row h1 {
  margin: 0;
  color: #ff6b16;
  font-size: 25px;
  font-weight: 900;
}

.hot-badge {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50% 50% 54% 46%;
  background: linear-gradient(180deg, #ffb13c, #ff5b19);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.faq-list {
  background: #fff;
}

.faq-item {
  border-bottom: 1px solid #edf0f2;
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: #0f1720;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.faq-question span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-question svg {
  width: 22px;
  height: 22px;
  color: #111827;
  transition: transform 160ms ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 34px 18px 0;
  color: #69727d;
  font-size: 14px;
  line-height: 1.75;
}

.faq-empty {
  margin: 0;
  padding: 28px 0;
  color: #8b949e;
  text-align: center;
  font-size: 14px;
}

.support-actions {
  position: fixed;
  left: 50%;
  bottom: var(--bottom-bar-height);
  z-index: 22;
  width: min(100%, 460px);
  min-height: 72px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: 12px 24px;
  border-top: 1px solid #edf0f2;
  background: rgba(255, 255, 255, .98);
}

.support-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
}

.support-actions svg {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.support-actions i {
  width: 1px;
  height: 34px;
  background: #dde2e6;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.service-modal.active {
  display: flex;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 26, .52);
}

.service-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  display: grid;
  gap: 16px;
  padding: 24px 20px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .22);
}

.service-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #66717d;
}

.service-modal-close svg {
  width: 20px;
  height: 20px;
}

.service-modal-head {
  display: grid;
  gap: 6px;
  padding-right: 28px;
}

.service-modal-head h2 {
  margin: 0;
  color: #101820;
  font-size: 20px;
  font-weight: 900;
}

.service-modal-head p,
.service-empty {
  margin: 0;
  color: #7b8490;
  font-size: 13px;
  line-height: 1.6;
}

.support-qr {
  width: 188px;
  height: 188px;
  justify-self: center;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #eef1f3;
}

.wechat-copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid #dcefe6;
  border-radius: 12px;
  background: #f4fbf7;
}

.wechat-copy-row span {
  min-width: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.wechat-copy-row button,
.feedback-form button {
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.feedback-form {
  display: grid;
  gap: 12px;
}

.feedback-form textarea,
.feedback-form input {
  width: 100%;
  border: 1px solid #dde4ea;
  border-radius: 12px;
  background: #f9fafb;
  color: #111827;
  font-size: 15px;
  outline: none;
}

.feedback-form textarea {
  min-height: 126px;
  padding: 12px;
  resize: vertical;
}

.feedback-form input {
  height: 44px;
  padding: 0 12px;
}

.feedback-form textarea:focus,
.feedback-form input:focus {
  border-color: rgba(20, 184, 111, .68);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 184, 111, .12);
}

.service-modal-status {
  margin: -2px 0 0;
  font-size: 13px;
  font-weight: 800;
}

.service-modal-status.is-success {
  color: var(--green);
}

.service-modal-status.is-error {
  color: #e0563f;
}

.bottom-tabs {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 21;
  width: min(100%, 460px);
  height: var(--bottom-bar-height);
  min-height: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
  border-top: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.bottom-tabs button,
.bottom-tabs a {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #7a8088;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(4px);
}

.bottom-tabs svg {
  width: 22px;
  height: 22px;
}

.bottom-tabs button.active,
.bottom-tabs a.active {
  color: var(--green);
}

.account-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 10px;
  padding: 22px 28px 64px;
}

.account-band div {
  display: grid;
  gap: 8px;
}

.account-band span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
}

.account-band em {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 99px;
  background: #f9ecbe;
  color: #c26d20;
  font-size: 12px;
  font-style: normal;
}

.account-band strong {
  color: #fff;
  font-size: clamp(21px, 5.4vw, 25px);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.account-band svg {
  width: 22px;
  height: 22px;
}

.data-section {
  padding: 0 14px 14px;
  background: transparent;
  box-shadow: none;
}

.first-data-section {
  margin-top: -64px;
}

.wide-plan,
.plan-tile {
  width: 100%;
  min-height: 142px;
  position: relative;
  display: grid;
  align-content: space-between;
  justify-items: start;
  padding: 22px 20px;
  border-radius: 6px;
  background: #fff;
  text-align: left;
  box-shadow: 0 5px 18px rgba(24, 38, 48, 0.05);
  transition: transform 140ms ease, box-shadow 140ms ease, outline-color 140ms ease;
}

.wide-plan {
  min-height: 118px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 8px;
}

.wide-plan strong {
  font-size: clamp(40px, 11vw, 50px);
  font-weight: 900;
}

.wide-plan span {
  display: grid;
  gap: 4px;
}

.wide-plan b {
  font-size: 21px;
}

.wide-plan small,
.plan-tile span {
  color: #30343a;
  font-size: 16px;
}

.wide-plan em,
.plan-tile em {
  justify-self: end;
  align-self: end;
  color: var(--green);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.wide-plan.selected,
.plan-tile.selected {
  outline: 2px solid var(--green);
  box-shadow: 0 10px 24px rgba(19, 189, 115, 0.12);
}

.plan-tile strong {
  font-size: 26px;
  font-weight: 900;
}

.plan-tile b {
  font-size: 17px;
}

.plan-tile.tall {
  min-height: 170px;
}

.plan-tile.labeled i {
  position: absolute;
  top: 0;
  right: 8px;
  padding: 1px 7px;
  border-radius: 0 0 4px 4px;
  background: #efefef;
  color: #1f2228;
  font-size: 13px;
  font-style: normal;
}

.data-section h2 small {
  margin-left: 8px;
  color: #63676f;
  font-size: 15px;
  font-weight: 500;
}

.auto-copy {
  position: relative;
  z-index: 2;
  padding: 8px 44px 0;
}

.auto-copy h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.auto-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.check-orb {
  position: absolute;
  z-index: 1;
  right: 42px;
  top: 76px;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #dafbe7 0, #8be5b7 44%, #38c989 100%);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: inset 10px -14px 24px rgba(4, 117, 61, 0.22), 0 18px 38px rgba(0, 0, 0, 0.12);
  transform: rotate(-12deg);
}

.check-orb svg {
  width: 86px;
  height: 86px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.12));
}

.auto-content {
  margin-top: -118px;
}

.auto-rule-card {
  padding: 26px 24px 24px;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #73777f;
  font-size: 16px;
}

.auto-rule-card h2 {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 900;
}

.date-chip {
  color: var(--green);
  font-weight: 900;
}

.date-chip svg {
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
}

.amount-scroll {
  display: flex;
  gap: 8px;
  margin: 0 -24px;
  padding: 0 24px 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.auto-amount {
  flex: 0 0 118px;
  height: 100px;
  border-radius: 7px;
  background: #fff;
  color: #12151a;
  font-size: 24px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.promise-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 6px 0 22px;
  color: #9ca1a8;
  font-size: 14px;
  white-space: nowrap;
}

.promise-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.primary-cta {
  width: 100%;
  height: 58px;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(19, 189, 115, 0.24);
}

.explain-card {
  padding: 24px;
}

.explain-card h2 {
  margin: 0 0 28px;
  font-size: 21px;
  font-weight: 900;
}

.step-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  position: relative;
  margin-bottom: 14px;
}

.step-line::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 1px;
  background: #d6d9dc;
}

.step-line span {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: #fff;
}

.step-line span:nth-child(2) {
  justify-self: center;
}

.step-line span:nth-child(3) {
  justify-self: end;
}

.step-grid b {
  display: block;
  min-height: 42px;
  font-size: 15px;
}

.explain-card p {
  margin: 18px 0 0;
  color: #9ca1a8;
  font-size: 16px;
  line-height: 1.6;
}

.customer-link {
  margin: 8px auto 0;
  color: #56657d;
  font-size: 17px;
  font-weight: 800;
}

.simple-header {
  background: #f1f1f1;
  border-bottom: 1px solid #dddddd;
}

.service-nav {
  min-height: 64px;
  color: #0d0f12;
}

.service-nav h1 {
  color: #0d0f12;
  font-size: 20px;
}

.service-content {
  display: grid;
  gap: 12px;
  padding: 8px 10px 28px;
}

.service-group {
  padding: 20px 18px 28px;
}

.service-group h2 {
  margin: 0 0 28px;
  color: #6f747b;
  font-size: 18px;
  font-weight: 500;
}

.service-grid {
  row-gap: 34px !important;
}

.service-grid button {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #1e2227;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  transition: transform 140ms ease;
}

.draw-icon,
.mini-logo {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.draw-icon {
  background: transparent;
  color: #fff;
}

.draw-icon svg {
  width: 36px;
  height: 36px;
}

.draw-icon.blue,
.draw-icon.green,
.draw-icon.orange,
.draw-icon.red,
.draw-icon.cyan {
  background: transparent;
}

.draw-icon.blue {
  color: var(--blue);
}

.draw-icon.green {
  color: var(--green);
}

.draw-icon.orange {
  color: var(--orange);
}

.draw-icon.red {
  color: var(--red);
}

.draw-icon.cyan {
  color: var(--cyan);
}

.mini-logo {
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.orange-fill {
  background: var(--orange);
}

.red-fill {
  background: var(--red);
}

.magenta-fill {
  background: var(--magenta);
}

.last-section {
  margin-bottom: 20px;
}

.number-sheet {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  touch-action: none;
}

.number-sheet.active,
.operator-sheet.active {
  display: block;
}

.operator-sheet {
  position: fixed;
  inset: 0;
  z-index: 105;
  display: none;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  animation: fadeBackdrop 180ms ease forwards;
}

@keyframes fadeBackdrop {
  to {
    opacity: 1;
  }
}

.sheet-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 460px);
  height: 100%;
  max-height: none;
  transform: translateX(-50%);
  display: block;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  animation: none;
}

.operator-picker-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 460px);
  max-height: 72vh;
  transform: translateX(-50%) translateY(16px);
  border-radius: 22px 22px 0 0;
  background: #fff;
  box-shadow: 0 -18px 44px rgba(20, 35, 54, 0.18);
  overflow: hidden;
  animation: operatorSheetIn 180ms ease forwards;
}

@keyframes operatorSheetIn {
  to {
    transform: translateX(-50%) translateY(0);
  }
}

.operator-picker-head {
  padding: 18px 18px 8px;
}

.operator-picker-head h2 {
  margin: 0;
  color: #161b22;
  font-size: 18px;
  font-weight: 900;
}

.operator-picker-head p {
  margin: 6px 0 0;
  color: #7a8088;
  font-size: 13px;
}

.operator-picker-list {
  display: grid;
  gap: 8px;
  max-height: 52vh;
  overflow-y: auto;
  padding: 8px 14px 18px;
}

.operator-option {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: 1px solid #eef1f3;
  border-radius: 8px;
  background: #fff;
  text-align: left;
}

.operator-option.active,
.operator-option:active {
  border-color: rgba(22, 189, 116, 0.48);
  background: #effcf6;
}

.operator-option span {
  width: 48px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f6f8f9;
  overflow: hidden;
}

.operator-option img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.operator-option strong {
  min-width: 0;
  color: #161b22;
  font-size: 16px;
  font-weight: 900;
}

.operator-option small {
  color: #7a8088;
  font-size: 12px;
  white-space: nowrap;
}

@keyframes sheetIn {
  to {
    transform: translateX(-50%) translateY(0);
  }
}

.sheet-handle {
  display: none;
}

.sheet-handle::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 7px;
  height: 8px;
  border-radius: 999px;
  background: #a7a9ac;
  transform: rotate(8deg);
}

.sheet-handle::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 7px;
  height: 8px;
  border-radius: 999px;
  background: #a7a9ac;
  transform: rotate(-8deg);
}

.sheet-main {
  position: absolute;
  z-index: 2;
  top: 88px;
  left: 20px;
  right: 20px;
  padding: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.sheet-main > .carrier-line,
.sheet-main > .green-rule,
.sheet-tools,
.recent-number {
  display: none;
}

.sheet-number-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 68px;
  margin-top: 0;
  padding: 0 14px 0 16px;
  overflow: hidden;
}

.sheet-dial-code {
  flex: 0 0 auto !important;
  padding-right: 12px;
  border-right: 1px solid #dfe3e6;
  color: #11151a;
  font-size: 22px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.sheet-number-row #sheetNumber {
  flex: 1;
  min-width: 0;
  display: block;
  max-width: 100%;
  color: #11151a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sheet-number-row #sheetNumber.is-placeholder {
  color: #b3bac1;
  font-weight: 700;
}

.clear-number {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c9cbd0;
  color: #fff;
}

.clear-number svg {
  width: 18px;
  height: 18px;
}

.sheet-hint {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.keypad {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px 6px max(10px, env(safe-area-inset-bottom));
  background: #f6f6f6;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.keypad button {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #fff;
  color: #030405;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.keypad [data-delete] svg {
  width: 32px;
  height: 32px;
}

.done-key {
  grid-row: span 3;
  background: #10c76e !important;
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 900 !important;
}

.zero-key {
  grid-column: 1 / span 3;
}

.account-screen {
  min-height: 100vh;
  padding-bottom: calc(var(--bottom-bar-height) + env(safe-area-inset-bottom));
  background: #fff;
}

.account-content {
  min-height: calc(100vh - var(--bottom-bar-height));
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  gap: 34px;
  padding: 54px 36px 28px;
}

.account-content h1 {
  margin: 0;
  color: #20262d;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.15;
}

.login-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.login-tabs button {
  position: relative;
  min-width: 0;
  height: 42px;
  border: 0;
  background: transparent;
  color: #4f5864;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.login-tabs button.active {
  color: #181d24;
}

.login-tabs button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #ff6b16;
}

.login-tabs button:disabled {
  opacity: 0.78;
}

.wechat-login-card {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 270px;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.wechat-avatar {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #effcf6;
  color: var(--green);
}

.wechat-avatar svg {
  width: 35px;
  height: 35px;
}

.wechat-login-card strong {
  color: #222831;
  font-size: 16px;
  font-weight: 800;
}

.wechat-login-card p,
.wechat-login-card small {
  margin: 0;
  color: #667080;
  font-size: 13px;
  line-height: 1.55;
}

.wechat-login-button {
  min-width: 150px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  background: #08bf60;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.wechat-login-button.secondary {
  background: #eefcf5;
  color: var(--green);
}

.agreement-line {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  color: #303741;
  font-size: 13px;
  line-height: 1.45;
}

.agreement-line input {
  width: 18px;
  height: 18px;
  accent-color: #ff6b16;
}

.batch-app {
  min-height: 100vh;
  background: #f3f5f7;
}

.batch-screen {
  min-height: 100vh;
  padding-bottom: calc(var(--bottom-bar-height) + 68px + env(safe-area-inset-bottom));
}

.batch-topbar {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 16px 14px 14px;
  background: linear-gradient(180deg, #16bd74 0%, #13b96f 82%, #55d4a0 100%);
  color: #fff;
}

.batch-back {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.batch-back svg {
  width: 28px;
  height: 28px;
}

.batch-topbar h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.batch-topbar p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.batch-workspace {
  display: grid;
  gap: 10px;
  padding: 10px 10px 0;
}

.batch-panel {
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 13px 12px;
}

.batch-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.batch-section-title h2 {
  margin: 0;
  color: #14191f;
  font-size: 16px;
  font-weight: 900;
}

.batch-section-title span,
.batch-section-title button {
  border: 0;
  background: transparent;
  color: #6d7480;
  font-size: 13px;
  font-weight: 700;
}

.batch-operator-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.batch-operator-list button {
  min-width: 0;
  height: 38px;
  padding: 0 8px;
  border: 1px solid #e0e4e8;
  border-radius: 10px;
  background: #f8f9fb;
  color: #1b2027;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.batch-operator-list button.active {
  border-color: var(--green);
  background: #effcf6;
  color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}

.batch-type-tabs {
  margin: 0 -10px;
  padding: 0 10px;
  background: #fff;
  border-bottom: 1px solid #eef0f2;
}

.batch-type-tabs button {
  flex: 1;
}

.batch-app .section-block {
  padding: 12px 0 0;
}

.batch-app .product-section {
  background: transparent;
  box-shadow: none;
}

.batch-app .section-title-row {
  padding-inline: 0;
  margin-bottom: 8px;
}

.batch-app .section-title-row h2 {
  font-size: 17px;
}

.batch-app .section-title-row p {
  margin: 3px 0 0;
  font-size: 12px;
}

.batch-app .product-grid {
  transition: opacity 140ms ease;
}

.batch-app .product-grid.is-loading {
  opacity: 0.56;
}

.batch-package-choice {
  min-height: 76px;
}

.batch-number-input {
  width: 100%;
  min-height: 190px;
  padding: 15px 16px;
  border: 0;
  border-radius: 12px;
  background: #f6f7f8;
  color: #151a20;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  resize: vertical;
  outline: none;
}

.batch-number-input::placeholder {
  color: #b6bdc5;
  font-weight: 700;
}

.batch-number-input:focus {
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(18, 190, 116, 0.38), 0 0 0 3px rgba(18, 190, 116, 0.1);
}

.batch-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
  color: #8a929c;
  font-size: 12px;
}

.batch-actions button,
.batch-file-button {
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #dfe4e9;
  border-radius: 9px;
  background: #fff;
  color: #202833;
  font-size: 12px;
  font-weight: 800;
}

.batch-file-button {
  margin: 0;
  cursor: pointer;
}

.batch-file-button input {
  display: none;
}

.batch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.batch-stats span {
  display: grid;
  gap: 1px;
  justify-items: center;
  padding: 9px 6px;
  border-radius: 11px;
  background: #f8f9fb;
}

.batch-stats strong {
  color: #11161d;
  font-size: 18px;
  font-weight: 900;
}

.batch-stats small {
  color: #7b838d;
  font-size: 12px;
}

.batch-preview-list {
  display: grid;
  gap: 7px;
}

.batch-preview-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  background: #f7f9fb;
}

.batch-preview-row strong {
  color: #151a20;
  font-size: 14px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.batch-preview-row span {
  min-width: 0;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.batch-preview-row.is-ok span {
  color: var(--green);
}

.batch-preview-row.is-error {
  background: #fff5f3;
}

.batch-preview-row.is-error span {
  color: #e25938;
}

.batch-empty {
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  background: #f7f9fb;
  color: #7f8791;
  font-size: 13px;
  text-align: center;
}

.batch-empty.is-warning {
  background: #fff8eb;
  color: #cf7d16;
}

.batch-empty.in-grid {
  width: 100%;
}

.batch-result {
  display: grid;
  gap: 5px;
  margin-bottom: 10px;
  padding: 11px;
  border-radius: 11px;
  background: #f8f9fb;
}

.batch-result.is-success {
  background: #effcf6;
  color: var(--green);
}

.batch-result.is-error {
  background: #fff5f3;
  color: #e25938;
}

.batch-result strong {
  font-size: 14px;
  font-weight: 900;
}

.batch-result p {
  margin: 0;
  color: #636b75;
  font-size: 12px;
}

.batch-result-list {
  max-height: 220px;
  display: grid;
  gap: 6px;
  overflow: auto;
}

.batch-result-list span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #151a20;
  font-size: 12px;
  font-weight: 800;
}

.batch-result-list em {
  color: inherit;
  font-style: normal;
  font-weight: 700;
}

.batch-result-list span.is-ok em {
  color: var(--green);
}

.batch-result-list span.is-error em {
  color: #e25938;
}

.batch-checkout .checkout-price strong {
  font-size: 14px;
}

.batch-checkout .checkout-price span {
  font-size: 14px;
}

@media (max-width: 380px) {
  .navline {
    padding-inline: 12px;
  }

  .content-stack {
    padding-inline: 10px;
  }

  .phone-panel,
  .auto-rule-card,
  .explain-card {
    padding-inline: 16px;
  }

  .category-tabs {
    margin-inline: -10px;
    padding-inline: 10px;
    gap: 16px;
  }

  .promise-row {
    gap: 8px;
    font-size: 12px;
  }

  .plan-tile {
    padding: 18px 14px;
  }

  .service-grid button {
    font-size: 14px;
  }

  .phone-number,
  .sheet-number-row #sheetNumber {
    font-size: 17px;
  }

  .recharge-cell strong,
  .flow-cell strong {
    font-size: 17px;
  }

  .recharge-cell small,
  .flow-cell small {
    font-size: 13px;
  }
}

@media (max-height: 720px) {
  .sheet-panel {
    max-height: none;
  }

  .sheet-main {
    top: 72px;
    padding-top: 0;
  }

  .sheet-tools {
    margin: 14px 0 18px;
  }

  .recent-number {
    padding-bottom: 16px;
  }

  .keypad button {
    min-height: 56px;
  }
}
