.operate-page {
  --op-blue: #0c6aff;
  --op-cyan: #11c7ff;
  --op-ink: #101828;
  --op-muted: #667085;
  --op-line: rgba(16, 24, 40, .10);
  --op-bg: #f5f8ff;
  color: var(--op-ink);
  background: #fff;
  overflow: hidden;
}

.operate-page * {
  box-sizing: border-box;
}

.operate-page img {
  display: block;
  max-width: 100%;
}

.op-wrap {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.op-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--op-blue);
  font-size: 15px;
  font-weight: 800;
}

.op-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--op-blue), var(--op-cyan));
}

.op-title {
  margin: 0;
  color: var(--op-ink);
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 850;
}

.op-title span {
  color: var(--op-blue);
}

.op-desc {
  margin: 18px 0 0;
  color: var(--op-muted);
  font-size: 18px;
  line-height: 1.8;
}

.op-hero {
  position: relative;
  min-height: 690px;
  padding: 168px 0 92px;
  color: #fff;
  background: #071c44 url('../images/operate-weimob/banner.2b9c89c9.png') center/cover no-repeat;
}

.op-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 17, 44, .78), rgba(4, 24, 68, .32) 52%, rgba(4, 24, 68, .06));
  pointer-events: none;
}

.op-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.op-hero .op-kicker {
  color: rgba(255, 255, 255, .88);
}

.op-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 850;
}

.op-hero p {
  margin: 26px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, .78);
  font-size: 22px;
  line-height: 1.75;
}

.op-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.op-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 156px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 6px;
  color: #fff;
  background: var(--op-blue);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(12, 106, 255, .28);
  transition: transform .28s ease, box-shadow .28s ease;
}

.op-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(12, 106, 255, .36);
}

.op-btn.ghost {
  color: var(--op-blue);
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 24, 40, .10);
}

.op-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
  max-width: 660px;
}

.op-stat {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.op-stat b {
  display: block;
  color: #fff;
  font-size: 32px;
}

.op-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .70);
  font-size: 14px;
}

.op-section {
  padding: 104px 0;
}

.op-section.soft {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.op-head {
  margin-bottom: 54px;
  text-align: center;
}

.op-head .op-desc {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.op-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.op-cap-card {
  min-height: 320px;
  padding: 36px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(12, 106, 255, .08);
  box-shadow: 0 18px 48px rgba(16, 70, 150, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.op-cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 64px rgba(16, 70, 150, .14);
}

.op-cap-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 34px;
}

.op-cap-card h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 24px;
}

.op-cap-card p {
  margin: 0;
  color: var(--op-muted);
  font-size: 16px;
  line-height: 1.8;
}

.op-split {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
}

.op-split.reverse {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr);
}

.op-copy {
  max-width: 520px;
}

.op-points {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.op-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--op-line);
}

.op-point i {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--op-blue);
  font-style: normal;
  font-weight: 800;
}

.op-point h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.op-point p {
  margin: 0;
  color: var(--op-muted);
  font-size: 14px;
  line-height: 1.7;
}

.op-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #eaf3ff;
  box-shadow: 0 30px 78px rgba(16, 70, 150, .12);
}

.op-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-industry {
  color: #fff;
  background: #06172f;
}

.op-industry .op-title,
.op-industry .op-desc {
  color: #fff;
}

.op-industry .op-desc {
  color: rgba(255, 255, 255, .72);
}

.op-industry-box {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
}

.op-industry-copy {
  max-width: 430px;
}

.op-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.op-industry-item {
  display: grid;
  place-items: center;
  min-height: 126px;
  padding: 18px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: transform .28s ease, background .28s ease;
}

.op-industry-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .12);
}

.op-industry-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 12px;
}

.op-industry-item span {
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 700;
}

.op-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.op-team-card {
  display: flex;
  gap: 20px;
  min-height: 174px;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--op-line);
  box-shadow: 0 16px 42px rgba(16, 24, 40, .07);
}

.op-team-card img {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.op-team-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  color: #111827;
}

.op-team-card p {
  margin: 0;
  color: var(--op-muted);
  font-size: 14px;
  line-height: 1.7;
}

.op-cta {
  position: relative;
  padding: 64px 0;
  color: #fff;
  background: #0b6dff url('../images/operate-weimob/bg.8f69f82c.png') center/cover no-repeat;
}

.op-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.op-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.2;
}

.op-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.op-form-look {
  display: flex;
  align-items: center;
  gap: 14px;
}

.op-input-look {
  display: flex;
  align-items: center;
  width: 210px;
  height: 48px;
  padding: 0 16px;
  border-radius: 6px;
  color: rgba(16, 24, 40, .50);
  background: #fff;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .op-card-grid,
  .op-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .op-split,
  .op-split.reverse,
  .op-industry-box {
    grid-template-columns: 1fr;
  }

  .op-copy,
  .op-industry-copy {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .op-wrap {
    width: calc(100% - 32px);
  }

  .op-hero {
    min-height: auto;
    padding: 112px 0 58px;
    background-position: 58% center;
  }

  .op-hero::after {
    background: linear-gradient(180deg, rgba(5, 20, 48, .86), rgba(5, 27, 74, .58));
  }

  .op-hero h1,
  .op-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.18;
  }

  .op-hero p,
  .op-desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .op-actions {
    margin-top: 28px;
  }

  .op-btn {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 15px;
  }

  .op-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
  }

  .op-stat {
    padding: 14px 10px;
  }

  .op-stat b {
    font-size: 22px;
  }

  .op-stat span {
    font-size: 12px;
  }

  .op-section {
    padding: 66px 0;
  }

  .op-head {
    margin-bottom: 34px;
    text-align: left;
  }

  .op-card-grid,
  .op-team-grid {
    grid-template-columns: 1fr;
  }

  .op-cap-card {
    min-height: auto;
    padding: 26px;
  }

  .op-cap-card img {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
  }

  .op-split {
    gap: 28px;
  }

  .op-image-card {
    border-radius: 18px;
  }

  .op-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .op-industry-item {
    min-height: 106px;
    border-radius: 14px;
  }

  .op-industry-item img {
    width: 44px;
    height: 44px;
  }

  .op-team-card {
    min-height: auto;
    padding: 22px;
    border-radius: 16px;
  }

  .op-cta {
    padding: 48px 0;
  }

  .op-cta-panel,
  .op-form-look {
    display: block;
  }

  .op-input-look {
    width: 100%;
    margin-top: 14px;
  }

  .op-form-look .op-btn {
    width: 100%;
    margin-top: 14px;
  }
}

@media (max-width: 420px) {
  .op-wrap {
    width: calc(100% - 28px);
  }

  .op-hero {
    padding-top: 104px;
  }

  .op-hero h1,
  .op-title {
    font-size: 32px;
  }
}
