﻿:root {
  --brand-blue: #087cff;
  --brand-blue-soft: #39a7ff;
  --ink: #f4f8ff;
  --muted: rgba(237, 245, 255, 0.72);
  --header-height: 80px;
  --page-x: clamp(1.5rem, 8.4vw, 10rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: #02050b;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #02050b;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.contact-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.contact-reveal-ready .contact-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 720ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 720ms var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.contact-reveal-ready .contact-reveal.is-reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page-container {
  width: min(calc(100% - 4rem), 1408px);
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  height: 840px;
  overflow: hidden;
  color: #fff;
}

.contact-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 52% 42%, transparent 0, rgba(0, 4, 18, 0.1) 66%, rgba(0, 2, 12, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 3, 18, 0.16), rgba(0, 3, 16, 0.22) 66%, rgba(0, 2, 10, 0.72));
}

.contact-hero-inner {
  display: flex;
  height: 100%;
  padding-bottom: 116px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.contact-hero-inner img {
  margin-bottom: 26px;
  width: 130px;
}

.hero-kicker {
  position: relative;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1;
  font-style: italic;
  font-weight: 800;
}

.contact-hero h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
}

.contact-hero h1 span {
  margin-left: 12px;
  font-size: 16px;
  font-weight: 600;
}

.contact-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #02050a;
}

.contact-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 838px;
  left: 0;
  width: 100%;
  height: 1591px;
  background: url("../image/sunlight-home/images/contact/contact-flow.jpg") right center / 148.44% 100% no-repeat;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.24) 90px, #000 260px, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.24) 90px, #000 260px, #000 100%);
  pointer-events: none;
  transform: scaleX(-1);
}

.contact-content::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 690px;
  left: 0;
  width: 100%;
  height: 430px;
  background: linear-gradient(180deg, rgba(2, 5, 10, 0.98), rgba(2, 5, 10, 0.34) 58%, transparent);
  pointer-events: none;
}

.office-section {
  position: relative;
  height: 1010px;
  overflow: hidden;
  background: transparent;
}

.office-inner {
  height: 100%;
  padding-top: 90px;
}

.office-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 851px) minmax(340px, 488px);
  gap: 92px;
  align-items: center;
  margin-top: 78px;
}

.china-map {
  position: relative;
  z-index: auto;
  width: 100%;
  aspect-ratio: 851 / 716;
}

.china-map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nanhai-inset {
  position: absolute;
  top: 73.3%;
  left: 4.7%;
  z-index: 1;
  width: 15.28%;
  height: auto;
  max-width: none;
}

.office-pin {
  position: absolute;
  z-index: 4;
  min-width: 106px;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 21px;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(300deg, #0071ff 0%, #0071ff 23%, #0233ff 52%, #0233ff 100%);
  box-shadow:
    inset 15px 1px 20px rgba(71, 109, 255, 0.38),
    inset -16px -4px 20px rgba(0, 202, 255, 0.48),
    0 7px 22px rgba(0, 100, 255, 0.24);
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    transform 220ms var(--ease-out),
    background 220ms ease,
    box-shadow 220ms ease;
}

.office-pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  width: 10px;
  height: 10px;
  /* border: 3px solid rgba(74, 166, 255, 0.34); */
  border-radius: 50%;
  background: #0378ff;
  box-shadow: 0 0 0 4px rgba(42, 131, 255, 0.12);
  transform: translateY(-50%);
}

.office-pin:hover,
.office-pin:focus-visible,
.office-pin.is-active {
  background: linear-gradient(300deg, #058aff 0%, #0878ff 24%, #0740ff 54%, #123cff 100%);
  box-shadow:
    inset 16px 1px 22px rgba(92, 130, 255, 0.48),
    inset -18px -5px 22px rgba(0, 216, 255, 0.64),
    0 10px 28px rgba(0, 126, 255, 0.4);
  transform: translate(-50%, -50%) scale(1.04);
}

.office-pin:focus-visible {
  outline: 2px solid rgba(129, 215, 255, 0.9);
  outline-offset: 3px;
}

.pin-northeast {
  left: 96.3%;
  top: 26.5%;
}

.pin-headquarters {
  left: 83.8%;
  top: 41%;
}

.pin-east {
  left: 90%;
  top: 56.3%;
}

.pin-southwest {
  left: 67%;
  top: 67%;
}

.pin-south {
  left: 80.2%;
  top: 84.4%;
}

.office-connector {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.office-connector-line {
  fill: none;
  stroke: rgba(73, 166, 255, 0.88);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(0, 131, 255, 0.42));
}

.office-card-shell {
  position: relative;
  z-index: 3;
}

.office-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(64, 164, 255, 0.38);
  border-radius: 2px;
  color: #171b22;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 30, 83, 0.26);
}

.office-corner {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  pointer-events: none;
}

.corner-top-left {
  top: -7px;
  left: -7px;
  border-top: 1px solid rgba(255, 255, 255, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.92);
}

.corner-top-right {
  top: -7px;
  right: -7px;
  border-top: 1px solid rgba(255, 255, 255, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.92);
}

.corner-bottom-left {
  bottom: -7px;
  left: -7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.92);
}

.corner-bottom-right {
  right: -7px;
  bottom: -7px;
  border-right: 1px solid rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.92);
}

.office-photo {
  width: 100%;
  aspect-ratio: 488 / 201;
  object-fit: cover;
}

.office-card-body {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  min-height: 156px;
  padding: 32px 24px;
  align-items: start;
}

.office-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.office-contact-lines {
  padding-left: 24px;
  border-left: 1px solid #bac0c8;
}

.office-contact-lines p {
  display: flex;
  margin: 0;
  align-items: flex-start;
  color: #4a5059;
  font-size: 13px;
  line-height: 1.55;
}

.office-contact-lines p+p {
  margin-top: 12px;
}

.office-contact-lines img {
  /*width: 18px;*/
  height: 18px;
  margin: 1px 9px 0 0;
  filter: invert(0.72);
}

.join-section,
.consult-section {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.join-section {
  height: 820px;
}

.join-inner {
  height: 100%;
  padding-top: 48px;
}

.job-search {
  position: relative;
  width: 296px;
  height: 55px;
  margin: 54px auto 0;
}

.job-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.job-search input {
  width: 100%;
  height: 100%;
  padding: 0 54px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 2px;
  color: #1b2430;
  background: #fff;
  outline: none;
}

.job-search input:focus {
  border-color: #53b8ff;
  box-shadow: 0 0 0 3px rgba(44, 154, 255, 0.2);
}

.job-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 55px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-glyph {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid #303a47;
  border-radius: 50%;
}

.search-glyph::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: #303a47;
  transform: rotate(45deg);
}

.job-search-status {
  min-height: 22px;
  margin: 8px 0 0;
  color: #b9dfff;
  font-size: 13px;
  text-align: center;
}

.jobs-carousel {
  position: relative;
  margin-top: 14px;
  padding: 0 62px;
}

.jobs-viewport {
  overflow: hidden;
  padding: 8px 0;
}

.jobs-track {
  display: flex;
  justify-content: flex-start;
  gap: 52px;
  transition: transform 520ms var(--ease-out);
}

.jobs-track.is-centered {
  justify-content: center;
}


.job-card {
  position: relative;
  display: flex;
  width: calc((100% - 104px) / 3);
  min-width: calc((100% - 104px) / 3);
  height: 460px;
  padding: 42px 26px 28px 34px;
  overflow: hidden;
  border: 1px solid rgba(91, 183, 255, 0.74);
  border-radius: 14px;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(145deg, rgba(0, 67, 133, 0.9) 0%, rgba(0, 95, 183, 0.82) 54%, rgba(0, 126, 230, 0.72) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 60px rgba(0, 51, 133, 0.24);
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.job-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, #0055dd 0%, #007fff 52%, #159bff 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out);
}

.job-card:hover,
.job-card:focus-visible {
  border-color: #7dd4ff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 0 34px rgba(55, 174, 255, 0.16);
}

.job-card:hover::before,
.job-card:focus-visible::before {
  opacity: 1;
}

.job-card-scroll {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding-right: 26px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  touch-action: pan-y;
}

.job-card-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.job-scrollbar {
  position: absolute;
  z-index: 2;
  top: 55px;
  right: 28px;
  width: 2px;
  height: 245px;
  border-radius: 2px;
  background: rgba(4, 24, 58, 0.76);
  cursor: pointer;
  touch-action: none;
  transition: opacity 180ms ease;
}

.job-scrollbar.is-inactive {
  opacity: 0.35;
  pointer-events: none;
}

.job-scrollbar-thumb {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(128, 201, 255, 0.42);
  border-radius: 50%;
  background: #55aaff;
  box-shadow: 0 0 0 4px rgba(30, 126, 255, 0.18), 0 0 12px rgba(63, 168, 255, 0.58);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.job-scrollbar:hover .job-scrollbar-thumb,
.job-scrollbar.is-dragging .job-scrollbar-thumb {
  background: #8acbff;
  box-shadow: 0 0 0 5px rgba(30, 126, 255, 0.22), 0 0 16px rgba(92, 185, 255, 0.72);
}

.job-card h3 {
  max-width: calc(100% - 30px);
  margin: 0 0 18px;
  font-size: 25px;
  line-height: 1.25;
}

.job-card-info {
  font-size: 13px;
  line-height: 1.85;
}

.job-card-info-heading {
  display: block;
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 1.4;
}

.job-card-info-section+.job-card-info-section {
  margin-top: 22px;
}

.job-card-info-item {
  margin: 0;
  padding-left: 1.4em;
  text-indent: -1.4em;
}

.job-card-info-list {
  margin: 0;
  padding-left: 1.4em;
  font-size: inherit;
  line-height: inherit;
}

.job-card-info-item+.job-card-info-item {
  margin-top: 14px;
}

.job-card-info-list li+li {
  margin-top: 14px;
}

.job-card-info-item+.job-card-info-list,
.job-card-info-list+.job-card-info-item,
.job-card-info-list+.job-card-info-list {
  margin-top: 14px;
}

.job-card-info-block {
  max-width: 100%;
  margin: 14px 0 0;
  overflow-x: auto;
}

.job-card>p {
  position: relative;
  z-index: 1;
  flex: none;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.job-card>p span {
  color: #a9cfff;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 60px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-arrow::before {
  content: "";
  position: absolute;
  top: 19px;
  width: 19px;
  height: 19px;
  border-top: 3px solid rgba(255, 255, 255, 0.88);
  border-left: 3px solid rgba(255, 255, 255, 0.88);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-prev::before {
  left: 14px;
  transform: rotate(-45deg);
}

.carousel-next::before {
  right: 14px;
  transform: rotate(135deg);
}

.consult-section {
  height: 836px;
}

.consult-inner {
  height: 100%;
  padding-top: 36px;
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 52px;
  margin-top: 30px;
}

.form-field {
  position: relative;
  display: flex;
  min-height: 68px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 2px;
  color: #222a34;
  background: #fff;
  align-items: center;
}

.form-field > span:not(.form-error)  {
  width: 90px;
  flex: none;
  color: #4d5560;
  font-size: 20px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  color: #151b23;
  background: transparent;
  outline: none;
  font-size: 20px;
}

.form-field input {
  height: 66px;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 230px;
  align-items: flex-start;
}

.form-message > span:not(.form-error) {
  padding-top: 25px;
  width: 100px;
}

.form-field textarea {
  height: 190px;
  padding-top: 25px;
  resize: vertical;
}

.form-field:focus-within {
  border-color: #56b8ff;
  box-shadow: 0 0 0 3px rgba(44, 154, 255, 0.2);
}


.form-field.is-invalid {
  border-color: #f56c6c;
}

.form-field.is-invalid:focus-within {
  border-color: #f56c6c;
  box-shadow: 0 0 0 3px rgba(245, 108, 108, 0.16);
}

.form-error {
  position: absolute;
  top: calc(100% + 5px);
  left: 96px;
  width: auto;
  color: #f56c6c;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}

.form-error[hidden] {
  display: none;
}

.captcha-row {
  position: relative;
  display: grid;
  grid-template-columns: 100px 320px 170px;
  grid-column: 1 / -1;
  gap: 18px;
  align-items: center;
  justify-content: start;
}

.captcha-row label {
  font-size: 20px;
}

.captcha-row input {
  height: 68px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 2px;
  color: #1b2430;
  background: #fff;
  outline: none;
}

.captcha-row.is-invalid input {
  border-color: #f56c6c;
}

.captcha-row.is-invalid input:focus {
  border-color: #f56c6c;
  box-shadow: 0 0 0 3px rgba(245, 108, 108, 0.16);
}

.captcha-row .form-error {
  left: 118px;
}

.captcha-code {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /*color: #111;
  background:
    repeating-linear-gradient(165deg, transparent 0 8px, rgba(0, 0, 0, 0.08) 9px 10px),
    #f2f2f2;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 12px;*/
}
.captcha-code:focus-visible {
  outline: 3px solid rgba(44, 154, 255, 0.45);
  outline-offset: 3px;
}

.submit-button {
  display: inline-flex;
  width: 176px;
  min-height: 68px;
  grid-column: 1 / -1;
  margin: -4px auto 0;
  border: 1px solid #2c9cff;
  border-radius: 34px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #005eff, #009bff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 30px rgba(0, 94, 255, 0.28);
  cursor: pointer;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 16px 38px rgba(0, 132, 255, 0.4);
  outline: none;
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.consult-form-status {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.consult-form-status[hidden] {
  display: none;
}

.consult-form-status.is-pending {
  color: rgba(255, 255, 255, 0.84);
}

.consult-form-status.is-success {
  color: #d9ffea;
}

.consult-form-status.is-error {
  color: #ffd9d9;
}

.consult-success-dialog {
  width: min(calc(100% - 40px), 440px);
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: #172236;
  background: #fff;
  box-shadow: 0 8px 36px rgba(0, 26, 70, 0.24);
}

.consult-success-dialog::backdrop {
  background: rgba(2, 14, 34, 0.58);
}

.consult-success-dialog-content {
  padding: 42px 36px 36px;
  text-align: center;
}

.consult-success-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0877f9;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.consult-success-dialog h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
}

.consult-success-dialog p {
  margin: 0;
  color: #4d5b70;
  font-size: 15px;
  line-height: 1.7;
}

.consult-success-close {
  min-width: 128px;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 24px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background: #0877f9;
  cursor: pointer;
  font: inherit;
}

.consult-success-close:hover {
  background: #0068dc;
}

.consult-success-close:focus-visible {
  outline: 3px solid rgba(8, 119, 249, 0.3);
  outline-offset: 3px;
}

@media (max-width: 1280px) {

  .office-stage {
    grid-template-columns: minmax(0, 1.65fr) minmax(310px, 1fr);
    gap: 3rem;
  }

  .office-card-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .office-contact-lines {
    padding: 0;
    border: 0;
  }

  .jobs-track {
    gap: 28px;
  }

  .job-card {
    width: calc((100% - 56px) / 3);
    min-width: calc((100% - 56px) / 3);
  }
}

@media (max-width: 980px) {

  .page-container{
    width: min(calc(100% - 3rem), 46rem);
  }

  .contact-hero {
    height: 620px;
  }

  .contact-hero-inner {
    padding-bottom: 4.2rem;
  }

  .office-section,
  .join-section,
  .consult-section {
    height: auto;
    min-height: 0;
  }

  .contact-content::before {
    top: 760px;
    height: 1700px;
    background-size: auto 100%;
    background-position: center;
  }

  .office-inner,
  .join-inner,
  .consult-inner {
    height: auto;
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .office-stage {
    display: flex;
    margin-top: 4rem;
    flex-direction: column;
    gap: 4rem;
  }

  .china-map {
    width: min(100%, 720px);
  }

  .office-card-shell {
    width: min(100%, 500px);
  }

  .office-card {
    width: 100%;
  }

  .office-connector {
    display: none;
  }

  .jobs-carousel {
    padding: 0 52px;
  }

  .jobs-track {
    gap: 24px;
  }

  .job-card {
    width: calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
  }

  .job-card-scroll {
    padding-right: 22px;
  }

  .consult-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .captcha-row {
    grid-template-columns: 100px 1fr 140px;
  }

}

@media (max-width: 600px) {

  .page-container,
  .footer-container {
    width: calc(100% - 2.5rem);
  }

  main .page-container {
    width: calc(100% - 1.25rem);
  }

  .section-title {
    font-size: 20px;
  }

  .contact-hero {
    height: 255px;
  }

  .contact-hero-image {
    object-position: 50% center;
  }

  .contact-hero-inner {
    padding-bottom: 23px;
  }

  .contact-hero-inner img {
    width: 73px;
    margin-bottom: 8px;
  }

  .contact-hero h1 {
    font-size: 23px;
  }

  .contact-hero h1 span {
    margin-left: 5px;
    font-size: 11px;
  }

  .contact-content::before {
    top: 590px;
    height: 1320px;
    background-position: center top;
  }

  .contact-content::after {
    top: 510px;
    height: 260px;
  }

  .office-inner {
    padding-top: 36px;
    padding-bottom: 45px;
  }

  .office-stage {
    margin-top: 24px;
    gap: 34px;
  }

  .china-map {
    width: 80%;
  }

  .office-pin {
    min-width: 64px;
    height: 28px;
    padding: 0 6px;
    font-size: 9px;
  }

  .office-pin::before {
    left: -9px;
    width: 6px;
    height: 6px;
    border-width: 2px;
  }

  .office-card-shell {
    width: min(100%, 300px);
  }

  .office-photo {
    aspect-ratio: 600 / 246;
  }

  .office-card-body {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0;
    min-height: 94px;
    padding: 20px 13px;
  }

  .office-card h3 {
    padding-top: 2px;
    font-size: 16px;
  }

  .office-contact-lines {
    padding-left: 12px;
    border-left: 1px solid #bac0c8;
  }

  .office-contact-lines p {
    font-size: 10px;
    line-height: 1.45;
  }

  .office-contact-lines p+p {
    margin-top: 8px;
  }

  .office-contact-lines img {
    height: 14px;
    margin-right: 6px;
  }

  .join-inner {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .job-search {
    width: min(100%, 193px);
    height: 35px;
    margin-top: 20px;
  }

  .job-search input {
    padding: 0 40px 0 12px;
    font-size: 12px;
  }

  .job-search button {
    width: 38px;
    height: 35px;
  }

  .search-glyph {
    top: 9px;
    left: 9px;
    width: 14px;
    height: 14px;
  }

  .job-search-status {
    min-height: 16px;
    margin-top: 4px;
    font-size: 10px;
  }

  .jobs-carousel {
    margin-top: 14px;
    padding: 0 28px;
  }

  .jobs-track {
    gap: 16px;
  }

  .job-card {
    width: 100%;
    min-width: 100%;
    height: 352px;
    padding: 25px 20px 18px 24px;
    border-radius: 8px;
  }

  .job-card h3 {
    margin-bottom: 13px;
    font-size: 18px;
  }

  .job-card-info {
    font-size: 11px;
    line-height: 1.8;
  }

  .job-card-info-heading {
    margin-bottom: 9px;
    font-size: 13px;
  }

  .job-card-info-item+.job-card-info-item,
  .job-card-info-list li+li,
  .job-card-info-item+.job-card-info-list,
  .job-card-info-list+.job-card-info-item,
  .job-card-info-list+.job-card-info-list,
  .job-card-info-block {
    margin-top: 10px;
  }

  .job-card>p {
    margin-top: 12px;
    font-size: 11px;
  }

  .job-card-scroll {
    padding-right: 19px;
  }

  .job-scrollbar {
    top: 43px;
    right: 20px;
    height: 190px;
  }

  .carousel-arrow {
    width: 20px;
    height: 48px;
  }

  .carousel-prev {
    left: 6px;
  }

  .carousel-next {
    right: 6px;
  }

  .carousel-arrow::before {
    top: 15px;
    width: 15px;
    height: 15px;
    border-width: 2px;
  }

  .carousel-prev::before {
    left: 2px;
  }

  .carousel-next::before {
    right: 2px;
  }

  .consult-inner {
    padding-top: 38px;
    padding-bottom: 56px;
  }

  .consult-form {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .form-field {
    min-height: 59px;
    padding: 0 14px;
  }

  .form-field>span:not(.form-error) {
    width: 76px;
    font-size: 14px;
  }

  .form-field input {
    height: 57px;
  }

  .form-message {
    min-height: 180px;
  }

  .form-message>span:not(.form-error),
  .form-field textarea {
    padding-top: 18px;
  }

  .form-field textarea {
    height: 160px;
  }

  .form-message,
  .captcha-row,
  .submit-button,
  .consult-form-status {
    grid-column: 1;
  }

  .captcha-row {
    grid-template-columns: 46px minmax(0, 1fr) 90px;
    gap: 8px;
  }

  .form-field.is-invalid,
  .captcha-row.is-invalid {
    margin-bottom: 8px;
  }

  .captcha-row label {
    grid-column: auto;
    font-size: 13px;
    white-space: nowrap;
  }

  .captcha-row .form-error {
    left: 0;
  }

  .captcha-row input,
  .captcha-code {
    height: 51px;
  }

  .captcha-row input {
    min-width: 0;
    padding: 0 12px;
    font-size: 12px;
  }

  .captcha-code {
    font-size: 24px;
    letter-spacing: 5px;
  }

  .submit-button {
    width: 80px;
    min-height: 46px;
    margin-top: 4px;
    font-size: 14px;
  }

  .contact-footer {
    background-position: 80% center;
  }

  .footer-container {
    padding-top: 4.5rem;
  }

  .footer-brand {
    width: 170px;
  }

  .footer-contact-list a {
    font-size: 12px;
  }

  .copyright {
    padding: 0 1rem;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .contact-reveal-ready .contact-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}



