/**
 * Software ops location + China map (Shenzhen highlighted)
 */
body.tx-cloud .ops-location {
  padding: 88px 0 72px;
  background: #fff;
  position: relative;
}
body.tx-cloud .ops-location::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 50% at 85% 40%, rgba(22, 119, 255, 0.06), transparent 60%),
    linear-gradient(180deg, #f7f9fc 0%, #fff 42%, #fff 100%);
  pointer-events: none;
}
body.tx-cloud .ops-location > .container {
  position: relative;
  z-index: 1;
}
body.tx-cloud .ops-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 40px 56px;
  align-items: center;
}
body.tx-cloud .ops-eyebrow {
  color: #0052d9;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
body.tx-cloud .ops-location-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1d2129;
}
body.tx-cloud .ops-location-lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: #86909c;
  max-width: 440px;
}
body.tx-cloud .ops-location-cards {
  display: grid;
  gap: 12px;
}
body.tx-cloud .ops-loc-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f7f8fa;
  border: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
body.tx-cloud .ops-loc-card:hover {
  background: #fff;
  border-color: rgba(0, 82, 217, 0.16);
  box-shadow: 0 10px 28px rgba(0, 82, 217, 0.08);
}
body.tx-cloud .ops-loc-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8f3ff, #f0f7ff);
  border: 1px solid rgba(0, 82, 217, 0.12);
  color: #0052d9;
}
body.tx-cloud .ops-loc-ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.tx-cloud .ops-loc-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1d2129;
  margin-bottom: 4px;
}
body.tx-cloud .ops-loc-card span {
  font-size: 13px;
  line-height: 1.6;
  color: #86909c;
}
body.tx-cloud .ops-location-map {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(160deg, #f0f5ff 0%, #f7faff 100%);
  border: 1px solid rgba(0, 82, 217, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  padding: 18px;
  overflow: hidden;
}
body.tx-cloud .ops-location-map img {
  display: block;
  width: 100%;
  height: auto;
}
body.tx-cloud .ops-map-tip {
  position: absolute;
  left: 24px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 82, 217, 0.12);
  box-shadow: 0 8px 20px rgba(0, 82, 217, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: #1d2129;
}
body.tx-cloud .ops-map-tip i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1677ff;
  box-shadow: 0 0 0 4px rgba(22, 119, 255, 0.2);
}

@media (max-width: 900px) {
  body.tx-cloud .ops-location { padding: 64px 0 48px; }
  body.tx-cloud .ops-location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  body.tx-cloud .ops-location-map { order: -1; }
}
