.support-page {
  background: var(--white);
}

.support-hero {
  min-height: 560px;
  overflow: hidden;
  background: url("../img/support/hero-bg.png") center center / cover no-repeat;
}

.support-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 548px) minmax(520px, 620px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(48px, 6vw, 120px);
  width: min(var(--section-max), calc(100% - 222px));
  min-height: 560px;
  margin: 0 auto;
  padding: 40px 0 62px;
}

.support-hero-copy h1 {
  color: #000000;
  font-size: clamp(42px, 3.5vw, 50px);
  line-height: 1.48;
  font-weight: 900;
}

.support-hero-copy p {
  max-width: 548px;
  margin-top: 20px;
  color: #000000;
  font-size: 20px;
  line-height: 1.5;
}

.support-hero-img {
  width: min(620px, 100%);
  justify-self: end;
}

.support-services {
  min-height: 728px;
  padding: 62px clamp(20px, 7vw, 113px) 96px;
  background: var(--white);
}

.support-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 21px;
  align-items: stretch;
  width: min(var(--section-max), 100%);
  margin: 86px auto 0;
}

.support-service-card {
  position: relative;
  min-height: 322px;
  overflow: hidden;
  border-radius: 10px;
  background: #f1f7ff;
  padding: 52px 16px 0;
  color: #ffffff;
}

.support-service-card > div {
  position: relative;
  z-index: 1;
}

.support-service-card h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
}

.support-service-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.75;
}

.support-service-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 68%;
  max-height: 56%;
  object-fit: contain;
  object-position: right bottom;
}

.support-service-card-large {
  padding: 52px 31px 0;
  color: #000000;
}

.support-service-card-large h3 {
  color: #000000;
  font-size: 18px;
}

.support-service-card-large p {
  max-width: 276px;
  margin-top: 28px;
  color: #222222;
  font-size: 14px;
  line-height: 1.75;
}

.support-service-card-large img {
  inset: 0;
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.support-service-card.is-blue {
  background: linear-gradient(180deg, #08c5ef 0%, #0779f1 100%);
}

.support-service-card.is-deep {
  background: linear-gradient(180deg, #2d89ff 0%, #245ce8 100%);
}

.support-value {
  min-height: 727px;
  padding: 60px clamp(20px, 7vw, 113px) 96px;
  background: url("../img/support/bg2.png") center center / 100% 100% no-repeat;
}

.support-value-inner {
  position: relative;
  width: min(var(--section-max), 100%);
  min-height: 500px;
  margin: 72px auto 0;
}

.support-value-img {
  position: absolute;
  top: 46px;
  left: 50%;
  width: min(536px, 46vw);
  transform: translateX(-50%);
}

.support-contact-card {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  max-width: calc(100% - 48px);
  min-height: 121px;
  border: 1px solid rgba(95, 128, 214, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px 24px;
  box-shadow: 0 18px 45px rgba(31, 72, 150, 0.08);
  white-space: nowrap;
}

.support-contact-card > span {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #b9ccff 0%, #2358ef 100%);
}

.support-contact-card > span img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.support-contact-card p {
  color: #555555;
  font-size: 14px;
  line-height: 1.35;
}

.support-contact-card strong {
  display: block;
  margin-top: 4px;
  color: #000000;
  font-size: 20px;
  line-height: 1.25;
}

.support-contact-card small {
  display: block;
  margin-top: 4px;
  color: #555555;
  font-size: 12px;
  line-height: 1.5;
}

.card-hotline {
  top: 0;
  left: 63px;
}

.card-email {
  bottom: 30px;
  left: 24px;
}

.card-phone {
  top: 8px;
  right: 14px;
}

.card-wechat {
  right: 40px;
  bottom: 18px;
  justify-content: space-between;
  width: max-content;
  min-height: 125px;
}

.card-wechat > img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

@media (min-width: 1600px) {
  .support-hero-inner,
  .support-service-grid,
  .support-value-inner {
    width: min(var(--section-wide-max), calc(100% - 128px));
  }
}

@media (max-width: 1120px) {
  .support-hero-inner {
    width: calc(100% - 48px);
    grid-template-columns: 1fr 0.85fr;
  }

  .support-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 48px);
  }

  .support-value-inner {
    width: calc(100% - 48px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    min-height: auto;
  }

  .support-value-img,
  .support-contact-card {
    position: static;
    width: max-content;
    transform: none;
  }

  .support-value-img {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(520px, 100%);
  }
}

@media (max-width: 820px) {
  .support-hero {
    min-height: 0;
  }

  .support-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0;
  }

  .support-hero-img {
    justify-self: center;
  }

  .support-service-grid,
  .support-value-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .support-hero-inner,
  .support-service-grid,
  .support-value-inner {
    width: calc(100% - 32px);
  }

  .support-hero-copy h1 {
    font-size: 36px;
  }

  .support-hero-copy p {
    font-size: 16px;
  }

  .support-services,
  .support-value {
    padding-inline: 16px;
  }

  .support-service-card {
    min-height: 280px;
  }
}
