:root {
  --mt-yellow: #ffc300;
  --mt-orange: #ff6b35;
  --mt-green: #00a85a;
  --mt-ink: #202124;
  --mt-text: #333;
  --mt-muted: #69707a;
  --mt-line: #e7e9ee;
  --mt-soft: #f8f9fa;
  --mt-radius: 8px;
}

.mt-recruit {
  color: var(--mt-text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.65;
}

.mt-recruit * {
  box-sizing: border-box;
}

.mt-recruit a {
  text-decoration: none;
}

.mt-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.mt-section {
  padding: 88px 0;
}

.mt-soft {
  background: var(--mt-soft);
}

.mt-section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.mt-eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
  color: #7a5d00;
  font-size: 14px;
  font-weight: 900;
}

.mt-eyebrow::before {
  content: "";
  width: 22px;
  height: 4px;
  background: var(--mt-yellow);
  border-radius: 999px;
}

.mt-recruit h1,
.mt-recruit h2,
.mt-recruit h3,
.mt-recruit p {
  margin-top: 0;
}

.mt-recruit h1 {
  margin-bottom: 18px;
  color: var(--mt-ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: 0;
}

.mt-recruit h2 {
  margin-bottom: 14px;
  color: var(--mt-ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
}

.mt-recruit h3 {
  color: var(--mt-ink);
  font-size: 20px;
  line-height: 1.3;
}

.mt-lead {
  color: #4c535f;
  font-size: clamp(17px, 2vw, 21px);
}

.mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--mt-radius);
  cursor: pointer;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.mt-btn:hover {
  transform: translateY(-1px) scale(1.03);
}

.mt-btn-primary {
  color: #211a00;
  background: var(--mt-yellow);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.mt-btn-ghost {
  color: var(--mt-ink);
  background: #fff;
  border: 1px solid var(--mt-line);
}

.mt-btn-dark {
  color: #fff;
  background: var(--mt-ink);
}

.mt-hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78), rgba(255,255,255,.20)),
    url("hero-rider.png") center right / cover no-repeat;
}

.mt-hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
}

.mt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.mt-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mt-proof span {
  padding: 8px 12px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--mt-line);
  border-radius: 999px;
  font-weight: 800;
}

.mt-income-card,
.mt-card {
  background: #fff;
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
  box-shadow: 0 10px 24px rgba(32,33,36,.06);
}

.mt-income-card {
  padding: 22px;
  justify-self: end;
  width: min(100%, 410px);
}

.mt-income-card strong {
  display: block;
  margin: 8px 0;
  color: var(--mt-ink);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
}

.mt-income-card small {
  color: var(--mt-muted);
  font-size: 16px;
}

.mt-stats {
  width: min(1020px, calc(100% - 40px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
  box-shadow: 0 14px 34px rgba(32,33,36,.1);
}

.mt-stats div {
  padding: 22px 20px;
  text-align: center;
}

.mt-stats div + div {
  border-left: 1px solid var(--mt-line);
}

.mt-stats strong {
  display: block;
  color: var(--mt-ink);
  font-size: clamp(28px, 4vw, 40px);
}

.mt-stats span {
  color: var(--mt-muted);
  font-weight: 800;
}

.mt-grid {
  display: grid;
  gap: 22px;
}

.mt-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mt-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mt-card {
  padding: 24px;
}

.mt-icon {
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: 18px;
  background: var(--mt-yellow);
  border-radius: var(--mt-radius);
}

.mt-income-section,
.mt-form-grid,
.mt-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

.mt-formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  margin-top: 26px;
  align-items: center;
}

.mt-formula span {
  min-height: 96px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
  color: var(--mt-ink);
  font-size: 22px;
  font-weight: 900;
}

.mt-formula b {
  color: var(--mt-orange);
  font-size: 24px;
}

.mt-city-income {
  display: grid;
  gap: 12px;
}

.mt-city-income p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
}

.mt-city-income span {
  color: var(--mt-orange);
  font-weight: 900;
}

.mt-story-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
  box-shadow: 0 10px 24px rgba(32,33,36,.06);
}

.mt-story-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.mt-story-card div {
  padding: 22px;
}

.mt-story-card span {
  display: inline-flex;
  margin: 0 8px 8px 0;
  padding: 4px 10px;
  color: #5f4700;
  background: #fff4bf;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.mt-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.mt-faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
}

.mt-faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border: 0;
  background: #fff;
  color: var(--mt-ink);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.mt-faq-item div {
  display: none;
  padding: 0 20px 20px;
  color: var(--mt-muted);
}

.mt-faq-item.is-open div {
  display: block;
}

.mt-page-header {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.74)),
    url("page-header.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--mt-line);
}

.mt-cta {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(255,195,0,.94), rgba(255,211,61,.82)),
    url("cta-riders.png") center right / cover no-repeat;
}

.mt-cta .mt-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.mt-warning {
  padding: 18px;
  color: #6b3a00;
  background: #fff5d6;
  border: 1px solid #ffe199;
  border-radius: var(--mt-radius);
}

.mt-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mt-recruit label,
.mt-recruit fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--mt-ink);
  font-weight: 900;
}

.mt-recruit fieldset {
  border: 0;
  padding: 0;
}

.mt-recruit fieldset label {
  display: inline-flex;
  margin-right: 10px;
  gap: 7px;
  font-weight: 700;
}

.mt-recruit input,
.mt-recruit select,
.mt-recruit textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d8dce4;
  border-radius: var(--mt-radius);
  background: #fff;
  color: var(--mt-ink);
}

.mt-recruit textarea {
  min-height: 112px;
}

.mt-recruit em {
  color: var(--mt-orange);
  font-style: normal;
}

.mt-full {
  grid-column: 1 / -1;
}

.mt-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: #4d535c;
  font-size: 14px;
}

.mt-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.mt-full-btn {
  width: 100%;
  margin-top: 20px;
}

.mt-side {
  display: grid;
  gap: 18px;
}

.mt-alert {
  display: none;
  margin-bottom: 16px;
  padding: 13px 14px;
  border-radius: var(--mt-radius);
  font-weight: 900;
}

.mt-alert.is-error {
  display: block;
  color: #8a1f11;
  background: #fff0ed;
  border: 1px solid #ffd1c7;
}

.mt-alert.is-success {
  display: block;
  color: #0f6b3d;
  background: #eafff2;
  border: 1px solid #b8efd0;
}

.mt-query-result {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: var(--mt-soft);
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
}

.mt-query-result.is-visible {
  display: block;
}

.mt-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: #053d22;
  background: #d8ffe8;
  border-radius: 999px;
  font-weight: 900;
}

.mt-qr {
  width: 112px;
  height: 112px;
}

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

.mt-success {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 72px 20px;
  background: var(--mt-soft);
}

.mt-success .mt-card {
  width: min(720px, 100%);
  text-align: center;
}

.mt-success-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: #fff;
  background: var(--mt-green);
  border-radius: 50%;
  font-size: 40px;
  font-weight: 900;
}

.mt-center {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 1023px) {
  .mt-hero-inner,
  .mt-income-section,
  .mt-form-grid,
  .mt-contact-grid {
    grid-template-columns: 1fr;
  }

  .mt-income-card {
    justify-self: start;
  }

  .mt-grid-4,
  .mt-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .mt-container,
  .mt-hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .mt-section {
    padding: 62px 0;
  }

  .mt-hero {
    min-height: 78vh;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88), rgba(255,255,255,.42)),
      url("hero-rider-mobile.png") center bottom / cover no-repeat;
  }

  .mt-actions .mt-btn,
  .mt-full-btn,
  .mt-query-form .mt-btn,
  .mt-consult-form .mt-btn {
    width: 100%;
  }

  .mt-stats,
  .mt-grid-4,
  .mt-grid-3,
  .mt-fields {
    grid-template-columns: 1fr;
  }

  .mt-stats div + div {
    border-left: 0;
    border-top: 1px solid var(--mt-line);
  }

  .mt-formula {
    grid-template-columns: 1fr;
  }

  .mt-formula b {
    text-align: center;
    transform: rotate(90deg);
  }

  .mt-cta .mt-container {
    display: grid;
  }
}

