/* GOWIN service overview final clean stylesheet */
:root {
  --red: #fa0046;
  --red-deep: #d9003c;
  --ink: #101114;
  --ink2: #30343b;
  --muted: #5d6672;
  --line: rgba(16, 17, 20, .10);
  --line-soft: rgba(16, 17, 20, .07);
  --gray: #f5f5f5;
  --black: #05080e;
  --black2: #111722;
  --max: min(1550px, calc(100vw - 96px));
  --nav-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--gray);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

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

.container {
  width: var(--max);
  margin: 0 auto;
}

/* NAV */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 17, 20, .08);
}

.nav {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  height: 34px;
}

.logo img {
  width: 194px;
  height: 28px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 12px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  transition: color .18s ease;
}

.nav-item:hover,
.nav-item.active,
#serviceTrigger.active {
  background: transparent;
  color: var(--red);
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 24px;
  height: 2px;
  margin-left: -12px;
  background: var(--red);
  opacity: 0;
  transition: opacity .18s ease;
}

.nav-item:hover::after,
.nav-item.active::after,
#serviceTrigger.active::after {
  opacity: 1;
}

.arrow {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .18s ease;
}

.nav-item.active .arrow,
#serviceTrigger.active .arrow {
  transform: rotate(225deg) translateY(-1px);
}

.nav-cta {
  height: 48px;
  min-width: 100px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border: 0;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
  background: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(250, 0, 70, .22);
}

.mobile-toggle {
  display: none;
}

.mega-wrap {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(16, 17, 20, .06);
}

.mega-wrap.open {
  display: block;
}

.mega {
  width: var(--max);
  margin: 0 auto;
  padding: 26px 0 30px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
}

.mega-side {
  border-right: 1px solid var(--line);
  padding-right: 28px;
}

.mega-title {
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -.03em;
}

.mega-title-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  font-size: 26px;
  line-height: 1.15;
}

.mega-title-link:hover,
.mega-title-link:focus-visible {
  color: var(--red);
}

.mega-title-arrow {
  display: inline-block;
  font-weight: 760;
  transform: translateY(-1px);
}

.mega-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

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

.mega-card {
  padding: 18px 18px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mega-card:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 0, 70, .22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.mega-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 6px;
}

.mega-card span {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* Common */
section {
  position: relative;
  overflow: hidden;
}

.section {
  padding: 96px 0;
}

.section-white {
  background: #fff;
}

.section-gray {
  background: var(--gray);
}

.section-black {
  background: var(--black);
  color: #fff;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--red);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 46px;
}

.section-title {
  margin: 0;
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.04;
  font-weight: 860;
  letter-spacing: .01em;
  color: #101114;
}

.section-black .section-title {
  color: #fff;
}

.section-desc {
  margin: 0;
  color: #5b626d;
  font-size: 16px;
  line-height: 1.9;
  max-width: 760px;
  justify-self: end;
}

.section-black .section-desc {
  color: rgba(255, 255, 255, .78);
}

#process .section-head,
#cases .section-head,
#resources .section-head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 76px;
  align-items: start;
}

#process .section-head>div:first-child,
#cases .section-head>div:first-child,
#resources .section-head>div:first-child {
  min-width: 0;
}

#process .section-title {
  max-width: 10.5ch;
}

#cases .section-title {
  max-width: 10.5ch;
}

#resources .section-title {
  max-width: 9ch;
}

#process .section-desc {
  max-width: 420px;
  width: 100%;
  justify-self: end;
  line-height: 1.85;
}

#cases .section-desc {
  max-width: 360px;
  width: 100%;
  justify-self: end;
  line-height: 1.85;
}

#resources .section-desc {
  max-width: 420px;
  width: 100%;
  justify-self: end;
  line-height: 1.85;
}

.b2b-inline {
  font-weight: 780;
  letter-spacing: -.01em;
}

.nowrap {
  white-space: nowrap;
}

.red {
  color: var(--red);
}

.btn {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 14px;
  transition: all .2s ease;
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-dark:hover {
  background: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(250, 0, 70, .22);
}

.btn-line {
  border: 1px solid #111;
  background: #fff;
  color: #111;
}

.btn-line:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff;
  transform: translateY(-1px);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero {
  padding: 86px 0 76px;
  background: #f5f5f5;
}

.hero-grid {
  width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(620px, .98fr) minmax(620px, 1.02fr);
  gap: 42px;
  align-items: center;
}

.hero-title {
  margin: 0;
  font-size: clamp(54px, 5.3vw, 82px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.03em;
}

.hero-sub {
  margin: 22px 0 0;
  max-width: 760px;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.75;
  font-weight: 700;
  color: #111;
}

.hero-body {
  margin: 22px 0 0;
  max-width: 780px;
  font-size: 15px;
  line-height: 1.96;
  color: #58606b;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 780px;
}

.stat {
  min-height: 142px;
  background: #fff;
  border: 1px solid rgba(16, 17, 20, .08);
  border-radius: 14px;
  padding: 22px 18px;
}

.stat strong {
  display: block;
  font-size: 44px;
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 820;
}

.stat p {
  margin: 14px 0 0;
  color: #4e5662;
  font-size: 14px;
  line-height: 1.7;
}

.hero-visual {
  min-height: 690px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loop-wrap {
  width: min(48vw, 720px);
  height: min(48vw, 720px);
  min-width: 560px;
  min-height: 560px;
  position: relative;
}

.loop-bg1,
.loop-bg2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.loop-bg1 {
  border: 1px dashed rgba(250, 0, 70, .22);
  animation: rotateSlow 46s linear infinite;
}

.loop-bg2 {
  inset: 94px;
  border: 1px dashed rgba(16, 17, 20, .10);
  animation: rotateSlowReverse 40s linear infinite;
}

.loop-bg2::after {
  display: none;
}

.loop-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  height: 38%;
  min-width: 250px;
  min-height: 250px;
  border-radius: 50%;
  background: #fa0046;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 24px;
  box-shadow: 0 24px 46px rgba(250, 0, 70, .16);
}

.loop-core h3 {
  margin: 0;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: .01em;
  font-weight: 850;
}

.loop-core .line1,
.loop-core .line2 {
  display: block;
  white-space: nowrap;
}

.loop-core p {
  margin: 15px auto 0;
  max-width: 180px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .92);
}

.orbit-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 220px;
  transition: none;
}

.orbit-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--red);
  outline: 6px solid rgba(250, 0, 70, .10);
}

.orbit-card b {
  display: block;
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -.01em;
  margin-bottom: 4px;
  color: #111;
}

.orbit-card span {
  display: block;
  font-size: 12px;
  line-height: 1.78;
  color: #6b737c;
  max-width: 170px;
}

.o1 {
  left: 41%;
  top: 8%;
  transform: translateX(-50%);
}

.o2 {
  right: 4%;
  top: 30%;
}

.o3 {
  right: 8%;
  bottom: 22%;
}

.o4 {
  left: 47%;
  bottom: 7%;
  transform: translateX(-50%);
}

.o5 {
  left: 5%;
  bottom: 30%;
}

.o6 {
  left: 5%;
  top: 33%;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes rotateSlowReverse {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(-360deg)
  }
}

/* METHOD */
#method {
  padding: 104px 0;
  background: linear-gradient(180deg, #040912 0%, #050b14 100%);
  position: relative;
  overflow: hidden;
}

#method::before,
#method::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

#method::before {
  left: -18%;
  bottom: -34%;
  width: 54vw;
  height: 54vw;
  min-width: 760px;
  min-height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle at 56% 46%, rgba(250, 0, 70, .40) 0%, rgba(250, 0, 70, .24) 14%, rgba(250, 0, 70, .12) 30%, rgba(250, 0, 70, .05) 46%, rgba(250, 0, 70, 0) 72%);
  filter: blur(56px);
  opacity: .96;
}

#method::after {
  left: 14%;
  bottom: 4%;
  width: 56vw;
  height: 22vw;
  min-width: 820px;
  min-height: 260px;
  background: linear-gradient(114deg, rgba(250, 0, 70, 0) 0%, rgba(250, 0, 70, .04) 14%, rgba(250, 0, 70, .14) 28%, rgba(250, 0, 70, .30) 48%, rgba(250, 0, 70, .12) 66%, rgba(250, 0, 70, 0) 92%);
  filter: blur(36px);
  transform: rotate(-16deg);
  opacity: .9;
}

#method .container {
  position: relative;
  z-index: 1;
}

#method .section-head {
  display: block;
  margin-bottom: 34px;
}

#method .section-title {
  max-width: 940px;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 780;
  letter-spacing: -.03em;
  color: #fff;
}

#method .method-lead {
  margin: 18px 0 0;
  max-width: 980px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.9;
}

.method-formula-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(18, 24, 35, .56), rgba(12, 16, 24, .58));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  padding: 48px 44px 44px;
}

.formula {
  text-align: center;
  color: #fff;
  font-weight: 720;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.formula-line {
  display: block;
  font-size: clamp(38px, 4vw, 64px);
}

.formula-line-2 {
  margin-top: 8px;
}

.formula-accent {
  font-weight: 820;
  color: var(--red);
}

.method-flow-box {
  width: max-content;
  max-width: 100%;
  margin: 32px auto 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.method-flow-box .flow-title {
  display: none;
}

.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.flow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.flow i {
  color: rgba(255, 255, 255, .48);
  font-size: 14px;
  font-style: normal;
}

.method-grid-v32 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.method-info-card {
  min-height: 206px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(18, 24, 35, .54), rgba(12, 16, 24, .56));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 30px 34px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.method-info-icon {
  display: none;
}

.method-info-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 28px;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.method-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, .80);
  font-size: 15px;
  line-height: 1.9;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 450px;
  padding: 30px 30px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 18px 54px rgba(17, 17, 20, .08), inset 0 1px 0 rgba(255, 255, 255, .58);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover,
.service-card:focus-visible,
.service-card:active,
.service-card.is-active {
  transform: translateY(-2px);
  box-shadow: 0 18px 54px rgba(17, 17, 20, .08), inset 0 1px 0 rgba(255, 255, 255, .58);
  border-color: rgba(255, 255, 255, .72);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #11151e;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
}

.service-card:hover .service-no,
.service-card.is-active .service-no {
  background: var(--red);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7078;
  opacity: .9;
}

.service-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: .02em;
}

.service-one {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 650;
  color: #2f343b;
}

.service-section {
  padding-top: 18px;
  border-top: 1px solid rgba(16, 17, 20, .07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-label {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-text {
  margin: 0;
  color: #555d68;
  font-size: 14px;
  line-height: 1.8;
}

.line-bullet {
  display: block;
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.line-bullet::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .82em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8b929b;
  transform: translateY(-50%);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid rgba(16, 17, 20, .07);
  font-size: 12px;
  color: #30343b;
  line-height: 1.2;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 900;
  color: #111;
}

.card-link::after,
.entry-link::after {
  content: "→";
  color: var(--red);
}

.service-card:hover .card-link,
.service-card.is-active .card-link {
  color: var(--red);
}

/* PROCESS */
.process-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.process-list {
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-tab {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 17, 20, .08);
  border-radius: 20px;
  background: #fff;
  color: #111;
  text-align: left;
  cursor: pointer;
  transition: all .18s ease;
}

.process-tab .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #111;
  font-size: 15px;
  font-weight: 900;
}

.process-tab strong {
  font-size: 17px;
  line-height: 1.45;
}

.process-tab.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.process-tab.active .num {
  background: var(--red);
  color: #fff;
}

.process-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .06);
  border-color: rgba(16, 17, 20, .12);
}

.process-tab:hover .num {
  background: #ededed;
}

.process-tab.active:hover {
  background: #111;
  border-color: #111;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
}

.process-tab.active:hover .num {
  background: var(--red);
}

.process-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 17, 20, .08);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .05);
}

.process-hero {
  padding: 40px 42px 32px;
}

.step-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.process-hero h3 {
  margin: 0 0 22px;
  font-size: clamp(36px, 3.3vw, 56px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.process-hero p {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: #59616b;
}

.process-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 42px 30px;
}

.detail-card {
  min-height: 150px;
  border: 1px solid rgba(16, 17, 20, .08);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
}

.detail-card b {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 15px;
}

.detail-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #555e69;
}

.process-accept {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0 42px 42px;
  padding: 22px 24px;
  border-radius: 22px;
  background: #f3f3f3;
  color: #4e535c;
}

.process-accept span {
  font-size: 18px;
  color: #596964;
  line-height: 1.2;
}

.process-accept b {
  display: block;
  margin-bottom: 6px;
  color: #111;
}

.process-accept p {
  margin: 0;
  line-height: 1.8;
}

/* CASES */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-card {
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .03);
  transition: transform .2s ease, box-shadow .2s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .08);
}

.case-img {
  aspect-ratio: 1563 / 858;
  overflow: hidden;
  background: #ddd;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.case-card:hover .case-img img {
  transform: scale(1.02);
}

.case-body {
  padding: 20px 20px 22px;
}

.case-meta {
  font-size: 12px;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 8px;
}

.case-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.case-body p {
  margin: 0;
  color: #58616b;
  font-size: 14px;
  line-height: 1.75;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* RESOURCES */
.resources-v32 {
  background: #fff;
}

.resource-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.resource-entry-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(16, 17, 20, .08);
  border-radius: 26px;
  padding: 30px 32px 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  outline: none;
}

.resource-entry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 17, 20, .08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .07);
}

.resource-entry-card:focus-visible,
.resource-entry-card:active {
  outline: none;
  border-color: rgba(16, 17, 20, .08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .08);
}

.entry-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.entry-kicker {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.entry-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f7f7f7;
  border: 1px solid rgba(16, 17, 20, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  flex: 0 0 56px;
  transition: color .2s ease, transform .2s ease, background .2s ease;
}

.resource-entry-card:hover .entry-icon,
.resource-entry-card:focus-visible .entry-icon,
.resource-entry-card:active .entry-icon {
  color: var(--red);
  transform: translateY(-1px);
}

.resource-entry-card:hover .entry-link,
.resource-entry-card:focus-visible .entry-link {
  color: var(--red);
}

.entry-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-entry-card h3 {
  margin: 0 0 16px;
  color: #101114;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 860;
  max-width: 12em;
}

.resource-entry-card p {
  margin: 0;
  color: #5b626d;
  font-size: 15px;
  line-height: 1.85;
  max-width: 36em;
}

.entry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width:1240px) {
  :root {
    --max: min(100vw - 52px, 1100px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px
  }

  .loop-wrap {
    width: min(88vw, 720px);
    height: min(88vw, 720px);
    min-width: 0;
    min-height: 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .section-desc {
    justify-self: start;
  }

  .process-layout {
    grid-template-columns: 1fr
  }

  .process-list {
    grid-template-rows: none
  }

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

  .mega {
    grid-template-columns: 1fr
  }

  .mega-side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 18px
  }

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

@media (max-width:760px) {
  :root {
    --max: calc(100vw - 32px);
  }

  .nav {
    grid-template-columns: auto auto
  }

  .nav-links {
    display: none;
    grid-column: 1/-1;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid var(--line-soft);
    padding-top: 12px
  }

  .nav-links.open {
    display: flex
  }

  .mobile-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-soft);
    background: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center
  }

  .mobile-toggle span,
  .mobile-toggle::before,
  .mobile-toggle::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: #111;
    border-radius: 2px
  }

  .mobile-toggle {
    flex-direction: column;
    gap: 4px
  }

  .hero-title {
    font-size: 42px
  }

  .hero-stats,
  .service-grid,
  .case-grid,
  .resource-entry-grid,
  .process-detail {
    grid-template-columns: 1fr
  }

  .formula-line {
    font-size: 30px
  }

  .method-formula-card {
    padding: 30px 20px
  }

  .method-grid-v32 {
    grid-template-columns: 1fr
  }

  .nowrap {
    white-space: normal
  }

  .orbit-label {
    transform: scale(.86);
  }
}

.nav-item::after {
  width: 36px !important;
  height: 1px !important;
  margin-left: -18px !important;
  bottom: 6px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.nav-item:hover,
.nav-item.active,
#serviceTrigger.active {
  background: transparent !important;
  color: var(--red) !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-dropdown-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  min-width: 138px;
  padding: 10px 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(16, 17, 20, .08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1200;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .arrow,
.nav-dropdown:focus-within .arrow {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-panel a {
  display: block;
  padding: 10px 16px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus {
  color: var(--red);
  background: transparent;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

@media (max-width:760px) {
  .nav-dropdown-panel {
    display: none;
  }
}

.nav-mega-trigger {
  user-select: none;
}

.nav-mega-trigger .arrow {
  pointer-events: none;
}

.mega-wrap {
  display: none;
  background: rgba(255, 255, 255, .98);
  border-top: 1px solid rgba(16, 17, 20, .06);
  border-bottom: 1px solid rgba(16, 17, 20, .06);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .06);
}

.mega-wrap.open {
  display: block;
}

.mega-wrap .mega {
  padding-top: 28px;
  padding-bottom: 30px;
}

.mega-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-card {
  min-height: 112px;
}

.mega-card:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 0, 70, .22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.nav-mega-trigger.is-open {
  color: var(--red);
}

.nav-mega-trigger.is-open::after {
  opacity: 1;
}

.nav-mega-trigger.is-open .arrow {
  transform: rotate(225deg) translateY(-1px);
}

@media (max-width:760px) {
  .mega-wrap {
    display: none !important;
  }
}

.mega-card {
  border-color: transparent !important;
  box-shadow: none !important;
  background: #fff !important;
}

.mega-card:hover,
.mega-card:focus-visible {
  border-color: rgba(16, 17, 20, .12) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

.mega-card:hover strong,
.mega-card:focus-visible strong {
  color: #111 !important;
}

/* =========================
   Mobile responsive fix V3 + process title fix V4 + mobile nav fix V5 + accordion nav fix V6
   目标：修复手机模式标题竖排、闭环图重叠、内容超宽等问题。
   ========================= */
@media (max-width: 900px) {
  :root {
    --max: calc(100vw - 36px);
    --nav-h: 72px;
  }

  body {
    overflow-x: hidden;
  }

  .container,
  .hero-grid {
    width: var(--max) !important;
    max-width: var(--max) !important;
  }

  .section {
    padding: 64px 0 !important;
  }

  .section-head,
  #process .section-head,
  #cases .section-head,
  #resources .section-head {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-items: start !important;
    margin-bottom: 30px !important;
  }

  .section-title,
  #method .section-title,
  #process .section-title,
  #cases .section-title,
  #resources .section-title {
    max-width: none !important;
    width: 100% !important;
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.035em !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .nowrap {
    white-space: normal !important;
  }

  .section-desc,
  #process .section-desc,
  #cases .section-desc,
  #resources .section-desc {
    max-width: 100% !important;
    width: 100% !important;
    justify-self: start !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
  }

  .hero {
    padding: 54px 0 60px !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 56px) !important;
    line-height: 1.06 !important;
    letter-spacing: -.04em !important;
  }

  .hero-sub {
    font-size: 18px !important;
    line-height: 1.7 !important;
  }

  .hero-body {
    font-size: 14px !important;
    line-height: 1.9 !important;
  }

  .hero-actions {
    flex-wrap: wrap !important;
  }

  .hero-actions .btn {
    min-width: 150px !important;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    max-width: none !important;
  }

  .stat {
    min-height: 118px !important;
    padding: 18px 16px !important;
  }

  .stat strong {
    font-size: 36px !important;
  }

  /* 手机端闭环图：从环形坐标改为“中心圆 + 服务卡片”，避免文字重叠 */
  .hero-visual {
    min-height: auto !important;
    display: block !important;
    padding: 8px 0 0 !important;
  }

  .loop-wrap {
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    position: relative !important;
    padding: 0 !important;
  }

  .loop-bg1,
  .loop-bg2 {
    display: none !important;
  }

  .loop-core {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    grid-column: 1 / -1 !important;
    width: 210px !important;
    height: 210px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 auto 12px !important;
    padding: 24px 18px !important;
  }

  .loop-core h3 {
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  .loop-core p {
    font-size: 12px !important;
    line-height: 1.65 !important;
    max-width: 160px !important;
  }

  .orbit-label {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    max-width: none !important;
    width: 100% !important;
    min-height: 82px !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 13px 12px !important;
    border: 1px solid rgba(16, 17, 20, .08) !important;
    border-radius: 16px !important;
    background: #fff !important;
  }

  .orbit-dot {
    margin-top: 5px !important;
    outline: 5px solid rgba(250, 0, 70, .10) !important;
  }

  .orbit-card b {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

  .orbit-card span {
    max-width: none !important;
    font-size: 12px !important;
    line-height: 1.65 !important;
  }

  #method {
    padding: 72px 0 !important;
  }

  .method-formula-card {
    padding: 34px 22px !important;
    border-radius: 26px !important;
  }

  .formula-line {
    font-size: clamp(28px, 8vw, 40px) !important;
    line-height: 1.18 !important;
  }

  .method-flow-box {
    width: 100% !important;
    margin-top: 24px !important;
  }

  .flow {
    justify-content: flex-start !important;
    gap: 8px !important;
  }

  .flow span {
    min-height: 34px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  .method-grid-v32,
  .process-layout,
  .process-detail,
  .service-grid,
  .case-grid,
  .resource-entry-grid {
    grid-template-columns: 1fr !important;
  }

  .method-info-card {
    min-height: auto !important;
    padding: 26px 24px !important;
  }

  .process-list {
    grid-template-rows: none !important;
  }

  .process-tab {
    min-height: 76px !important;
    grid-template-columns: 50px 1fr !important;
    padding: 14px 16px !important;
  }

  .process-tab .num {
    width: 46px !important;
    height: 46px !important;
  }

  .process-panel {
    border-radius: 24px !important;
  }

  .process-hero {
    padding: 30px 24px 24px !important;
  }

  .process-hero h3 {
    font-size: 34px !important;
    line-height: 1.12 !important;
    letter-spacing: -.035em !important;
  }

  .process-detail {
    padding: 0 24px 24px !important;
  }

  .process-accept {
    margin: 0 24px 30px !important;
    padding: 18px 18px !important;
  }

  .service-card {
    min-height: auto !important;
    padding: 26px 24px !important;
    border-radius: 24px !important;
  }

  .service-card h3 {
    font-size: 28px !important;
    line-height: 1.16 !important;
  }

  .case-card {
    border-radius: 18px !important;
  }

  .resource-entry-card {
    min-height: auto !important;
    padding: 28px 24px !important;
    border-radius: 22px !important;
  }

  .resource-entry-card h3 {
    font-size: 28px !important;
  }

  .entry-icon {
    width: 52px !important;
    height: 52px !important;
    flex-basis: 52px !important;
  }

  .entry-icon svg {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: auto auto auto !important;
    gap: 10px !important;
  }

  .logo img {
    width: 170px !important;
    height: auto !important;
  }

  .nav-cta {
    height: 46px !important;
    min-width: 92px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid var(--line-soft) !important;
    background: #fff !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .mobile-toggle span,
  .mobile-toggle::before,
  .mobile-toggle::after {
    content: "" !important;
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: #111 !important;
    border-radius: 2px !important;
  }

  .nav-links {
    display: none !important;
    grid-column: 1/-1 !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    border-top: 1px solid var(--line-soft) !important;
    padding-top: 12px !important;
  }

  .nav-links.open {
    display: flex !important;
  }

  .mega-wrap {
    display: none !important;
  }
}

@media (max-width: 480px) {
  :root {
    --max: calc(100vw - 32px);
  }

  .section {
    padding: 54px 0 !important;
  }

  .section-title,
  #method .section-title,
  #process .section-title,
  #cases .section-title,
  #resources .section-title {
    font-size: clamp(30px, 9.4vw, 40px) !important;
    line-height: 1.14 !important;
  }

  .hero-title {
    font-size: 42px !important;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
  }

  .loop-wrap {
    grid-template-columns: 1fr !important;
  }

  .loop-core {
    width: 196px !important;
    height: 196px !important;
  }

  .orbit-label {
    min-height: auto !important;
  }

  .formula-line {
    font-size: 28px !important;
  }
}


/* Mobile process title fix V4: remove forced gap after “落地陪跑，” */
@media (max-width: 900px) {
  #process .section-title br {
    display: none !important;
  }

  #process .section-title .nowrap {
    display: inline !important;
    white-space: normal !important;
  }
}


/* Mobile navigation fix V5: clean phone header and vertical menu */
@media (max-width: 900px) {
  .topbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
  }

  .nav {
    height: auto !important;
    min-height: 72px !important;
    padding: 10px 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    grid-template-rows: auto auto !important;
    column-gap: 10px !important;
    row-gap: 0 !important;
    align-items: center !important;
  }

  .logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
  }

  .logo img {
    width: clamp(160px, 46vw, 190px) !important;
    height: auto !important;
  }

  .nav>div[style] {
    grid-column: 2 / 4 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .nav-cta {
    height: 46px !important;
    min-width: 92px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(16, 17, 20, .10) !important;
    background: #fff !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    flex: 0 0 42px !important;
  }

  .mobile-toggle span,
  .mobile-toggle::before,
  .mobile-toggle::after {
    content: "" !important;
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: #111 !important;
    border-radius: 2px !important;
  }

  .nav-links {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    display: none !important;
    width: 100% !important;
    margin-top: 10px !important;
    padding: 10px 0 4px !important;
    border-top: 1px solid rgba(16, 17, 20, .08) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    background: #fff !important;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links .nav-item {
    width: 100% !important;
    min-height: 44px !important;
    height: 44px !important;
    padding: 0 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border-radius: 0 !important;
    color: #111 !important;
    font-size: 15px !important;
    font-weight: 760 !important;
  }

  .nav-links .nav-item:hover,
  .nav-links .nav-item.active,
  .nav-links .nav-mega-trigger.is-open {
    color: var(--red) !important;
    background: transparent !important;
  }

  .nav-links .nav-item::after {
    display: none !important;
  }

  .nav-links .nav-item .arrow {
    margin-left: 8px !important;
  }

  .mega-wrap,
  .mega-wrap.open {
    display: none !important;
  }
}


/* Final responsive and navigation fixes */
.mobile-subnav {
  display: none;
}

@media (max-width: 900px) {
  .mobile-subnav {
    display: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(16, 17, 20, .08) !important;
  }

  .mobile-subnav.open {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .mobile-subnav a {
    display: block !important;
    padding: 12px 0 12px 14px !important;
    color: #5b626d !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 650 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(16, 17, 20, .08) !important;
  }

  .mobile-subnav a:hover,
  .mobile-subnav a:focus-visible {
    color: var(--red) !important;
    background: #fafafa !important;
  }

  .nav-links .nav-mega-trigger {
    justify-content: flex-start !important;
  }

  .nav-mega-trigger.mobile-open {
    color: var(--red) !important;
  }

  .nav-mega-trigger.mobile-open .arrow {
    transform: rotate(225deg) translateY(-1px) !important;
  }
}


/* Mobile navigation hierarchy fix V8:
   一级导航加横线；二级菜单不再加内部横线，并区分“总入口”和“服务项”两个层级。 */
@media (max-width: 900px) {
  .nav-links .nav-item {
    border-bottom: 1px solid rgba(16, 17, 20, .08) !important;
  }

  .mobile-subnav {
    border-top: 0 !important;
    border-left: 0 !important;
    border-bottom: 1px solid rgba(16, 17, 20, .08) !important;
    padding: 8px 0 12px !important;
    margin: 0 !important;
  }

  .mobile-subnav a {
    border-bottom: 0 !important;
    padding: 9px 0 !important;
    background: transparent !important;
  }

  .mobile-subnav a:hover,
  .mobile-subnav a:focus-visible {
    background: transparent !important;
    color: var(--red) !important;
  }

  .mobile-subnav a:first-child {
    padding-left: 0 !important;
    color: #30343b !important;
    font-weight: 780 !important;
  }

  .mobile-subnav a:not(:first-child) {
    padding-left: 18px !important;
    color: #5b626d !important;
    font-weight: 650 !important;
  }

  .mobile-subnav a:first-child:hover,
  .mobile-subnav a:first-child:focus-visible,
  .mobile-subnav a:not(:first-child):hover,
  .mobile-subnav a:not(:first-child):focus-visible {
    color: var(--red) !important;
  }
}


/* PC hero content position fix V9:
   仅桌面端：首屏左侧文字信息整体上移 20px；移动端不受影响。 */
@media (min-width: 901px) {
  .hero-grid>.fade-up:first-child {
    position: relative;
    top: -20px;
  }
}


/* Mobile nav bottom spacing fix:
   去掉手机端导航展开底部横线，并增加底部留白。 */
@media (max-width: 900px) {
  .topbar {
    border-bottom: 0 !important;
  }

  .nav-links.open {
    padding-bottom: 24px !important;
  }

  .nav-links>#aboutTrigger {
    border-bottom: 0 !important;
  }

  .mobile-subnav[data-mobile-subnav="aboutTrigger"] {
    border-bottom: 0 !important;
  }
}


/* Mobile subnav hierarchy refinement:
   资源中心 / 关于 的二级项为同一层级；只有“服务”内部区分总入口与六项服务。 */
@media (max-width: 900px) {
  .mobile-subnav a {
    padding: 9px 0 !important;
    color: #30343b !important;
    font-weight: 760 !important;
    border-bottom: 0 !important;
    background: transparent !important;
  }

  .mobile-subnav[data-mobile-subnav="serviceTrigger"] a:first-child {
    padding-left: 0 !important;
    color: #30343b !important;
    font-weight: 780 !important;
  }

  .mobile-subnav[data-mobile-subnav="serviceTrigger"] a:not(:first-child) {
    padding-left: 18px !important;
    color: #5b626d !important;
    font-weight: 650 !important;
  }

  .mobile-subnav[data-mobile-subnav="resourcesTrigger"] a,
  .mobile-subnav[data-mobile-subnav="aboutTrigger"] a {
    padding-left: 0 !important;
    color: #30343b !important;
    font-weight: 760 !important;
  }

  .mobile-subnav a:hover,
  .mobile-subnav a:focus-visible {
    color: var(--red) !important;
    background: transparent !important;
  }
}


/* Mobile process accordion position fix V4:
   手机端把当前步骤详情放到当前选中步骤下方，避免列表和内容距离过远。 */
@media (max-width: 900px) {
  .process-layout {
    gap: 12px !important;
  }

  .process-list {
    gap: 10px !important;
  }

  .process-panel.process-panel-mobile-inline {
    width: 100% !important;
    margin: 0 0 10px !important;
    grid-column: 1 / -1 !important;
  }

  .process-panel.process-panel-mobile-inline .process-hero {
    padding-top: 26px !important;
  }
}


/* Mobile process accordion collapse fix V5:
   手机端当前步骤详情支持点击展开/收回。 */
@media (max-width: 900px) {
  .process-panel.process-panel-mobile-collapsed {
    display: none !important;
  }
}


/* Mobile process tab affordance fix V6:
   手机端流程卡右侧增加 + / × 状态图标，让用户知道可展开、可收回。 */
@media (max-width: 900px) {
  .process-tab {
    grid-template-columns: 50px minmax(0, 1fr) 34px !important;
  }

  .process-tab::after {
    content: "+";
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #f2f2f2 !important;
    color: #111 !important;
    font-size: 20px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
  }

  .process-tab.active::after {
    content: "×";
    background: var(--red) !important;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 760 !important;
  }
}


/* Mobile process icon center fix V7:
   使用 SVG 背景绘制 + / ×，避免文字基线导致图标不居中。 */
@media (max-width: 900px) {
  .process-tab::after {
    content: "" !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    place-self: center end !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    line-height: 0 !important;
    background: #f2f2f2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 6v12M6 12h12' fill='none' stroke='%23111' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center/14px 14px no-repeat !important;
    color: transparent !important;
  }

  .process-tab.active::after {
    content: "" !important;
    background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7l10 10M17 7L7 17' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center/14px 14px no-repeat !important;
    color: transparent !important;
  }
}