﻿:root {
  --primary: #008fc9;
  --primary-dark: #005a9c;
  --green: #75bf43;
  --text: #153f5c;
  --muted: #4f6f7d;
  --muted-light: #7c919b;
  --border: #d8edf2;
  --bg-light: #f4fbfd;
  --container: 1240px;
  --header: 70px;
  --logo: 82px;
  --radius: 24px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

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

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

.container {
  width: min(var(--container), 94%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 143, 201, 0.16);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  margin-left: -10px;
}

.brand-logo {
  width: var(--logo);
  height: auto;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  padding-left: 7px;
  border-left: 1px solid rgba(0, 169, 199, 0.28);
}

.brand-cn {
  font-size: 23px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-en {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  font-size: 14px;
  color: var(--muted);
}

.nav > a {
  flex: 0 0 auto;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
}

.lang-menu {
  position: relative;
  flex: 0 0 auto;
  width: 76px;
  height: 40px;
  margin-left: 44px;
  margin-right: 0;
}

.lang-menu::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 1px;
  height: 22px;
  transform: translateY(-50%);
  background: rgba(0, 143, 201, 0.18);
}

.lang-trigger {
  width: 76px;
  height: 40px;
  min-width: 76px;
  max-width: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 0 12px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 143, 201, 0.2);
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transform: none !important;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.lang-trigger:hover,
.lang-trigger:focus,
.lang-trigger:active,
.lang-menu.open .lang-trigger {
  width: 76px;
  height: 40px;
  min-width: 76px;
  max-width: 76px;
  transform: none !important;
  background: #fff;
  border-color: rgba(0, 143, 201, 0.42);
  box-shadow: 0 10px 22px rgba(0, 90, 156, 0.1);
}

.lang-trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.lang-current {
  display: inline-block;
  width: 22px;
  flex: 0 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: left;
  pointer-events: none;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  width: 156px;
  min-width: 156px;
  padding: 8px;
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 36, 68, 0.16);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.16s ease;
}

.lang-menu.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.52);
}

.lang-dropdown a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-cta,
.button.primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 24px rgba(0, 143, 201, 0.18);
}

.nav-cta {
  padding: 8px 15px;
  border-radius: 999px;
  font-weight: 800;
}

main {
  padding-top: var(--header);
}

.snap-section {
  height: calc(100vh - var(--header));
  min-height: calc(100vh - var(--header));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 42px 0;
}

.section {
  padding: 42px 0;
}

.section.light {
  background: var(--bg-light);
}

.hero {
  position: relative;
  isolation: isolate;
  align-items: flex-start;
  padding: 0;
  background: linear-gradient(180deg, #f7fcff 0%, #fff 48%, #f1fbfd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: min(78vh, 720px);
  background: url("hero-atmosphere.png") center 8% / cover no-repeat;
  opacity: 0.88;
  filter: none;
  transform: none;
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 40%,
    rgba(0, 0, 0, 0.78) 56%,
    rgba(0, 0, 0, 0.36) 76%,
    rgba(0, 0, 0, 0.12) 91%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 40%,
    rgba(0, 0, 0, 0.78) 56%,
    rgba(0, 0, 0, 0.36) 76%,
    rgba(0, 0, 0, 0.12) 91%,
    transparent 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* 左侧文字安全区：保持左边干净，右侧逐步放开。 */
    linear-gradient(
      104deg,
      #fff 0%,
      rgba(255, 255, 255, 0.99) 32%,
      rgba(255, 255, 255, 0.86) 47%,
      rgba(255, 255, 255, 0.42) 61%,
      rgba(255, 255, 255, 0.08) 78%,
      rgba(255, 255, 255, 0) 100%
    ),
    /* 顶部融合层：天空向上渐隐，最后和白色背景融为一体。 */
    linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0.98) 14%,
      rgba(255, 255, 255, 0.78) 29%,
      rgba(255, 255, 255, 0.42) 48%,
      rgba(255, 255, 255, 0.13) 72%,
      rgba(255, 255, 255, 0.04) 100%
    ),
    /* 右侧上扬包裹感：显露中心上移，让右侧图片比左侧更高出现。 */
    radial-gradient(
      ellipse at 90% 46%,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.02) 34%,
      rgba(255, 255, 255, 0.22) 60%,
      rgba(255, 255, 255, 0.58) 84%,
      #fff 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 90, 156, 0.055) 0%,
      rgba(0, 143, 201, 0.02) 42%,
      rgba(255, 255, 255, 0) 78%
    );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, 92%);
  height: 100%;
  max-height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(72px, 10vh, 116px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.tagline,
.section-label {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tagline {
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.14;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

h2 {
  margin: 8px 0 24px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--text);
}

h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--text);
}

.hero-text,
.screen-heading p,
.positioning-panel p,
.card p,
.step p,
.faq-wrap p,
.contact-copy p {
  color: var(--muted);
}

.hero-text {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.notice {
  max-width: 660px;
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted-light);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.scroll-hint strong {
  font-size: 18px;
  line-height: 1;
  animation: scrollBounce 1.4s ease-in-out infinite;
}

@keyframes scrollBounce {
  50% {
    transform: translateY(5px);
  }
}

.button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  box-shadow: 0 16px 34px rgba(0, 90, 156, 0.24);
}

.button.secondary {
  color: var(--primary-dark);
  background: #fff;
  border-color: rgba(0, 169, 199, 0.28);
}

.button.secondary:hover {
  border-color: var(--primary);
}

.screen-layout,
.process-screen,
.faq-screen,
.contact-page {
  max-height: 100%;
}

.screen-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.grid,
.steps.vertical,
.contact-list-simple {
  display: grid;
}

.grid {
  gap: 24px;
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.grid.three,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid rgba(0, 169, 199, 0.55);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:nth-child(2n) {
  border-top-color: rgba(117, 191, 67, 0.55);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 90, 156, 0.08);
}

.process-screen {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.positioning-panel,
.process-panel {
  max-height: calc(100vh - var(--header) - 84px);
  overflow-y: auto;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 90, 156, 0.06);
}

.steps.vertical {
  gap: 8px;
}

.step {
  padding: 4px 0 4px 16px;
  border-left: 3px solid var(--primary);
}

.step:nth-child(2n) {
  border-left-color: var(--green);
}

.step span {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.step:nth-child(2n) span {
  color: var(--green);
}

.step h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

.step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.faq-screen {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.faq-wrap {
  max-width: 860px;
  max-height: calc(100vh - var(--header) - 84px);
  overflow-y: auto;
  padding-right: 4px;
}

details {
  margin-bottom: 12px;
  padding: 18px 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

details p {
  margin-bottom: 0;
}

.contact {
  align-items: stretch;
  padding: 42px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(117, 191, 67, 0.18), transparent 28%),
    linear-gradient(135deg, #005a9c 0%, #008fc9 58%, #16b8b4 100%);
}

.contact .section-label,
.contact h2,
.contact-copy p {
  color: #fff;
}

.contact-page {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  position: relative;
}

.contact-main {
  min-height: 0;
  align-self: center;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 24px;
}

.contact-card {
  overflow: hidden;
  padding: 24px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(0, 169, 199, 0.26);
  border-radius: var(--radius-lg);
}

.contact-card p {
  color: #374151;
}

.contact-card .small {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted-light);
}

.contact-card-wide {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: stretch;
}

.contact-card-left h3,
.contact-list-simple strong,
.qr-area-heading h3,
.qr-item h4 {
  color: var(--primary-dark);
}

.contact-list-simple {
  gap: 8px;
  margin-bottom: 14px;
}

.contact-list-simple p {
  margin: 0;
  line-height: 1.65;
}

.phone-number {
  display: inline-block;
  white-space: nowrap;
}

.qr-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.qr-area-heading {
  text-align: center;
  transform: translateY(-8px);
}

.qr-area-heading h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

.qr-area-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: auto;
}

.qr-item {
  text-align: center;
}

.qr-frame {
  width: 100%;
  aspect-ratio: 1;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f4fbfd 100%);
  border: 1px solid rgba(0, 169, 199, 0.24);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 90, 156, 0.1);
}

.qr-code {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.qr-item h4 {
  margin: 10px 0 4px;
  font-size: 14px;
}

.qr-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.contact-bottom {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  align-self: end;
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  padding: 24px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 18px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid rgba(0, 143, 201, 0.18);
  box-shadow: 0 -10px 30px rgba(0, 36, 68, 0.1);
}

.contact-disclaimer h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 900;
}

.contact-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  color: var(--primary-dark);
  font-size: 13px;
  border-top: 1px solid rgba(0, 143, 201, 0.16);
}

.contact-footer p {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-footer a {
  color: var(--primary-dark);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 981px) {
  html {
    scroll-snap-type: none;
    overscroll-behavior-y: auto;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 68px;
    --logo: 74px;
  }

  html {
    scroll-snap-type: none;
    overscroll-behavior-y: auto;
  }

  .site-header {
    position: sticky;
  }

  main {
    padding-top: 0;
  }

  .nav {
    display: none;
  }

  .snap-section {
    height: auto;
    min-height: auto;
    display: block;
    overflow: visible;
    padding: 76px 0;
  }

  .hero {
    min-height: 760px;
    padding: 0 0 min(46vw, 360px);
  }

  .hero::before,
  .hero::after {
    height: min(48vw, 360px);
    background-position: center 16%;
  }

  .hero-inner {
    width: min(92%, 720px);
    height: auto;
    padding-top: 84px;
  }

  .hero-content,
  .hero-text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 44px);
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.82;
  }

  .process-screen,
  .faq-screen,
  .contact-main,
  .contact-card-wide {
    grid-template-columns: 1fr;
  }

  .positioning-panel,
  .process-panel,
  .faq-wrap,
  .contact-card {
    max-height: none;
    overflow: visible;
  }

  .contact {
    padding: 76px 0 0;
  }

  .contact-page {
    height: auto;
    display: block;
  }

  .contact-main {
    padding-bottom: 0;
  }

  .contact-bottom {
    margin-top: 48px;
  }

  .grid.four,
  .grid.three,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qr-area-heading {
    margin-bottom: 12px;
    transform: none;
  }

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

@media (max-width: 640px) {
  :root {
    --header: 64px;
    --logo: 62px;
  }

  .scroll-hint {
    display: none;
  }

  .grid.four,
  .grid.three,
  .why-grid,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .snap-section {
    padding: 64px 0;
  }

  .hero {
    min-height: 780px;
    padding: 0 0 min(74vw, 360px);
  }

  .hero::before,
  .hero::after {
    height: min(76vw, 360px);
    background-position: center 14%;
  }

  .hero-inner {
    padding-top: 70px;
  }

  .contact {
    padding: 64px 0 0;
  }

  .brand {
    gap: 5px;
    margin-left: -4px;
  }

  .brand-text {
    padding-left: 6px;
  }

  .brand-cn {
    font-size: 18px;
  }

  .brand-en {
    font-size: 7px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.2;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .qr-area-heading {
    text-align: left;
  }

  .qr-item {
    max-width: 260px;
  }

  .contact-bottom {
    padding: 20px 18px 16px;
  }

  .contact-disclaimer p {
    font-size: 13px;
  }

  .contact-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Improved landing page additions ===== */
.nav {
  gap: 13px;
  font-size: 13px;
}

.hero h1 {
  max-width: 780px;
}

.hero-proof {
  max-width: 690px;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span,
.boundary-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 143, 201, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 90, 156, 0.06);
}

.screen-heading.compact {
  margin-bottom: 22px;
}

.support-screen,
.services-screen {
  max-height: 100%;
}

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

.support-card {
  position: relative;
  min-height: 188px;
  padding: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(0, 90, 156, 0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.support-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 126px;
  height: 126px;
  background: radial-gradient(circle, rgba(0, 143, 201, 0.12), transparent 68%);
  pointer-events: none;
}

.support-card.featured {
  border-color: rgba(0, 169, 199, 0.36);
  background: linear-gradient(135deg, #fff 0%, #f2fbfd 100%);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 90, 156, 0.09);
  border-color: rgba(0, 169, 199, 0.42);
}

.support-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.support-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

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

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 372px;
  padding: 22px;
}

.service-card.emphasis {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbfd 100%);
  border-top-color: rgba(117, 191, 67, 0.82);
}

.service-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.72;
}

.service-card ul {
  margin: auto 0 0;
  padding: 16px 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  border-top: 1px dashed rgba(0, 143, 201, 0.18);
}

.service-card li + li {
  margin-top: 7px;
}

.boundary-list {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-note {
  margin-top: 20px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.7;
}

@media (min-width: 981px) {
  .support-screen .screen-heading,
  .services-screen .screen-heading {
    max-width: 840px;
  }

  .support-screen .screen-heading p,
  .services-screen .screen-heading p {
    margin-bottom: 0;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  :root {
    --container: 1160px;
    --logo: 74px;
  }

  .brand-cn {
    font-size: 20px;
  }

  .brand-en {
    font-size: 8px;
  }

  .nav {
    gap: 10px;
    font-size: 12px;
  }

  .lang-menu {
    margin-left: 18px;
  }

  .lang-menu::before {
    left: -10px;
  }

  .support-grid,
  .service-tabs {
    gap: 14px;
  }

  .support-card,
  .service-card {
    padding: 18px;
  }
}

@media (max-width: 980px) {
  .support-grid,
  .service-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: auto;
  }

  .hero-proof span,
  .boundary-list span {
    background: #fff;
  }
}

@media (max-width: 640px) {
  .support-grid,
  .service-tabs {
    grid-template-columns: 1fr;
  }

  .support-card,
  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span,
  .boundary-list span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* ===== Hero service keywords: separated from CTA buttons ===== */
.hero-proof-line {
  margin-top: 30px;
  padding-top: 18px;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(0, 143, 201, 0.16);
}

.hero-proof-line span {
  min-height: auto;
  padding: 0;
  color: var(--primary-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-proof-line i {
  color: rgba(0, 143, 201, 0.45);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 640px) {
  .hero-proof-line {
    margin-top: 24px;
    padding-top: 16px;
    row-gap: 6px;
  }

  .hero-proof-line span {
    min-height: auto;
    padding: 0;
    font-size: 13px;
  }
}

/* ===== Multi-page website additions ===== */
.service-entry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-entry { color: inherit; text-decoration: none; }
.service-entry ul li:last-child { color: var(--primary-dark); font-weight: 900; }
.subpage-main { padding-top: var(--header); }
.subpage-hero { position: relative; overflow: hidden; padding: 92px 0 54px; background: radial-gradient(circle at 12% 0%, rgba(117, 191, 67, 0.12), transparent 28%), linear-gradient(180deg, #f7fcff 0%, #fff 100%); }
.subpage-hero::after { content: ""; position: absolute; right: -140px; bottom: -180px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(0, 143, 201, 0.13), transparent 68%); pointer-events: none; }
.breadcrumb { margin-bottom: 16px; color: var(--muted-light); font-size: 13px; font-weight: 800; }
.breadcrumb a { color: var(--primary-dark); }
.subpage-hero h1 { max-width: 860px; margin-bottom: 12px; }
.subpage-lead { max-width: 820px; color: var(--muted); font-size: 18px; line-height: 1.9; }
.page-section { padding: 70px 0; }
.page-section.light { background: var(--bg-light); }
.page-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.page-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card { padding: 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 16px 42px rgba(0, 90, 156, 0.055); }
.info-card h2, .info-card h3 { margin-top: 0; }
.info-card p, .info-card li { color: var(--muted); }
.info-card ul, .info-card ol { margin: 0; padding-left: 20px; line-height: 1.85; }
.info-card li + li { margin-top: 6px; }
.wide-card { grid-column: 1 / -1; }
.flow-list { counter-reset: flow; display: grid; gap: 14px; }
.flow-item { position: relative; padding: 20px 22px 20px 62px; background: #fff; border: 1px solid var(--border); border-radius: 20px; }
.flow-item::before { counter-increment: flow; content: counter(flow, decimal-leading-zero); position: absolute; left: 20px; top: 20px; color: var(--primary); font-weight: 950; letter-spacing: 0.04em; }
.flow-item h3 { margin-bottom: 4px; font-size: 18px; }
.flow-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.cta-panel { padding: 34px; color: #fff; background: radial-gradient(circle at top left, rgba(117, 191, 67, 0.18), transparent 30%), linear-gradient(135deg, #005a9c 0%, #008fc9 58%, #16b8b4 100%); border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0, 90, 156, 0.16); }
.cta-panel h2, .cta-panel p { color: #fff; }
.cta-panel p { max-width: 760px; }
.cta-panel .button.secondary { background: rgba(255,255,255,0.82); }
.page-contact-list { display: grid; gap: 12px; margin-top: 18px; }
.page-contact-list p { margin: 0; }
@media (max-width: 980px) { .subpage-main { padding-top: 0; } .subpage-hero { padding: 72px 0 48px; } .service-entry-grid, .page-grid, .page-grid.two { grid-template-columns: 1fr; } .page-section { padding: 58px 0; } }


/* ===== Trust / conversion upgrade additions ===== */
.nav-group{position:relative;display:inline-flex;align-items:center;flex:0 0 auto}.nav-group>a{display:inline-flex;align-items:center;gap:4px}.nav-group>a::after{content:"▾";font-size:10px;transform:translateY(-1px);opacity:.65}.nav-submenu{position:absolute;top:calc(100% + 14px);left:50%;z-index:55;width:238px;padding:10px;display:grid;gap:4px;opacity:0;visibility:hidden;transform:translate(-50%,-4px);background:rgba(255,255,255,.88);border:1px solid rgba(255,255,255,.66);border-radius:18px;box-shadow:0 18px 42px rgba(0,36,68,.16);backdrop-filter:blur(14px) saturate(1.12);-webkit-backdrop-filter:blur(14px) saturate(1.12);transition:opacity .16s ease,visibility .16s ease,transform .16s ease}.nav-group:hover .nav-submenu,.nav-group:focus-within .nav-submenu{opacity:1;visibility:visible;transform:translate(-50%,0)}.nav-submenu a{display:block;padding:10px 12px;color:var(--muted);border-radius:12px;font-size:13px;font-weight:850;line-height:1.35}.nav-submenu a:hover{color:var(--primary-dark);background:rgba(244,251,253,.92)}
.problem-entry-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.service-entry .entry-label{display:inline-block;margin-bottom:10px;color:var(--green);font-size:12px;font-weight:950;letter-spacing:.08em;text-transform:uppercase}.trust-strip{margin-top:22px;padding:18px 20px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;background:rgba(255,255,255,.72);border:1px solid rgba(0,143,201,.14);border-radius:22px;box-shadow:0 16px 42px rgba(0,90,156,.055)}.trust-strip strong{display:block;color:var(--primary-dark);font-size:14px;line-height:1.45}.trust-strip span{display:block;margin-top:3px;color:var(--muted);font-size:12px;line-height:1.55}
.fit-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.fit-card{padding:26px;background:#fff;border:1px solid var(--border);border-radius:var(--radius);box-shadow:0 16px 42px rgba(0,90,156,.055)}.fit-card h2,.fit-card h3{margin-top:0}.fit-card ul{margin:0;padding-left:20px;color:var(--muted);line-height:1.85}.fit-card li+li{margin-top:6px}.fit-card.not-fit{background:linear-gradient(180deg,#fff 0%,#fbfdfe 100%);border-color:rgba(0,143,201,.14)}.notice-card{padding:22px 24px;background:linear-gradient(135deg,rgba(244,251,253,.96),rgba(255,255,255,.9));border:1px solid rgba(0,143,201,.20);border-left:4px solid var(--primary);border-radius:20px;box-shadow:0 14px 34px rgba(0,90,156,.07)}.notice-card strong{color:var(--primary-dark)}.notice-card p{margin:0;color:var(--muted);line-height:1.75}
.prep-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.prep-card{padding:26px;background:#fff;border:1px solid var(--border);border-top:3px solid rgba(0,169,199,.55);border-radius:var(--radius);box-shadow:0 16px 42px rgba(0,90,156,.055)}.prep-card:nth-child(2){border-top-color:rgba(117,191,67,.75)}.prep-card h2,.prep-card h3{margin-top:0}.prep-card ul{margin:0;padding-left:20px;color:var(--muted);line-height:1.85}.boundary-matrix{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.boundary-card{padding:28px;background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:0 18px 48px rgba(0,90,156,.06)}.boundary-card h2{margin-top:0}.boundary-card ul{margin:0;padding-left:20px;color:var(--muted);line-height:1.9}.boundary-card.allowed{border-top:4px solid rgba(117,191,67,.82)}.boundary-card.limited{border-top:4px solid rgba(0,143,201,.72)}.cta-panel .cta-hint{margin-top:-6px;margin-bottom:18px;font-size:14px;opacity:.92}.footer-simple{padding:24px 0;color:var(--muted);background:#fff;border-top:1px solid rgba(0,143,201,.14);font-size:13px}.footer-simple .container{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap}.footer-simple a{color:var(--primary-dark);font-weight:850}
@media (max-width:980px){.nav-group{display:none}.problem-entry-grid,.trust-strip,.prep-list,.fit-grid,.boundary-matrix{grid-template-columns:1fr}}

/* ===== Header spacing refinement ===== */
.site-header {
  min-height: var(--header);
}

.header-inner {
  gap: 28px;
}

.brand {
  margin-left: 0;
  padding: 6px 0;
}

.nav {
  height: var(--header);
  align-items: center;
  gap: 10px;
}

.nav > a,
.nav-group > a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  line-height: 1;
}

.nav > a:hover,
.nav-group > a:hover {
  background: rgba(0, 143, 201, 0.06);
}

.nav-cta {
  min-height: 38px;
  padding: 0 15px !important;
}

.lang-menu {
  margin-left: 24px;
}

.lang-menu::before {
  left: -12px;
}

/* Remove the small mark after “服务内容”; the dropdown itself is enough. */
.nav-group > a::after {
  content: none !important;
}

.nav-submenu {
  top: calc(100% + 8px);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .brand {
    margin-left: 0;
  }

  .nav {
    gap: 7px;
  }

  .nav > a,
  .nav-group > a {
    padding: 0 6px;
  }

  .lang-menu {
    margin-left: 14px;
  }

  .lang-menu::before {
    left: -8px;
  }
}

/* ===== QR restore refinements ===== */
.qr-contact-card {
  overflow: hidden;
}

.qr-contact-lead {
  margin: -4px 0 18px;
  color: var(--muted);
}

.contact-page-qr {
  margin-top: 8px;
}

.contact-page-qr .qr-frame {
  max-width: 180px;
  margin: 0 auto;
}

/* ===== Restored homepage side navigation, hero CTA, and second-page service matrix ===== */
.side-nav {
  position: fixed;
  top: 50%;
  right: 28px;
  z-index: 30;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.side-nav a {
  position: relative;
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 999px;
  background: rgba(0, 143, 201, 0.22);
  border: 1px solid rgba(0, 143, 201, 0.26);
  box-shadow: 0 8px 18px rgba(0, 90, 156, 0.08);
  transition: height 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.side-nav a::before {
  content: "";
  position: absolute;
  inset: -8px;
}

.side-nav a span {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 6px 10px;
  opacity: 0;
  visibility: hidden;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 143, 201, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 90, 156, 0.12);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.side-nav a:hover span,
.side-nav a.active span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.side-nav a:hover {
  transform: scale(1.12);
  background: rgba(0, 143, 201, 0.42);
}

.side-nav a.active {
  height: 28px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-color: rgba(0, 143, 201, 0.52);
  box-shadow: 0 12px 28px rgba(0, 90, 156, 0.22);
}

.hero-actions-prioritized .hero-main-cta {
  min-width: 220px;
  min-height: 52px;
  padding-inline: 30px;
  font-size: 16px;
}

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

.project-card {
  position: relative;
  min-height: 174px;
  padding: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid rgba(0, 169, 199, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(0, 90, 156, 0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 136px;
  height: 136px;
  background: radial-gradient(circle, rgba(0, 143, 201, 0.12), transparent 68%);
  pointer-events: none;
}

.project-card.featured {
  border-top-color: rgba(117, 191, 67, 0.78);
  background: linear-gradient(135deg, #fff 0%, #f3fbfd 100%);
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 169, 199, 0.42);
  box-shadow: 0 22px 54px rgba(0, 90, 156, 0.09);
}

.project-card span {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.project-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.project-card strong {
  margin-top: auto;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
}

.service-note {
  margin-top: 18px;
  padding: 18px 20px;
}

.service-direction-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-direction-grid .project-card {
  min-height: 212px;
  padding: 26px 28px;
}

.service-direction-grid .project-card h3 {
  font-size: 22px;
  line-height: 1.35;
}

.service-direction-grid .project-card p {
  font-size: 14px;
  line-height: 1.75;
}

.service-direction-grid .project-card strong {
  font-size: 14px;
}

.service-direction-grid + .service-note {
  margin-top: 22px;
}

@media (min-width: 981px) {
  .services-screen .screen-heading.compact {
    margin-bottom: 20px;
  }

  .service-direction-grid {
    max-width: 1040px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .project-entry-grid,
  .service-direction-grid {
    gap: 18px;
  }

  .project-card,
  .service-direction-grid .project-card {
    min-height: 204px;
    padding: 22px 24px;
  }

  .project-card h3,
  .service-direction-grid .project-card h3 {
    font-size: 20px;
  }

  .project-card p,
  .service-direction-grid .project-card p {
    font-size: 13px;
    line-height: 1.68;
  }
}

@media (max-width: 980px) {
  .side-nav {
    display: none;
  }

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

@media (max-width: 640px) {
  .hero-actions-prioritized .hero-main-cta {
    width: 100%;
  }

  .project-entry-grid,
  .service-direction-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .service-direction-grid .project-card {
    min-height: auto;
    padding: 20px;
  }
}


/* ===== 我们的服务项目 / 重点医疗方向重构 ===== */
@media (min-width: 981px) {
  #services .service-direction-grid,
  #projects .project-entry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 18px;
  }

  #services .service-direction-grid .project-card,
  #projects .project-entry-grid .project-card {
    min-height: 176px;
    padding: 22px 24px;
  }

  #services .service-direction-grid .project-card h3,
  #projects .project-entry-grid .project-card h3 {
    font-size: 19px;
  }

  #services .service-direction-grid .project-card p,
  #projects .project-entry-grid .project-card p {
    font-size: 13px;
    line-height: 1.62;
  }

  #services .service-note,
  #projects .service-note {
    margin-top: 16px;
    padding: 16px 18px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services .service-direction-grid,
  #projects .project-entry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  #services .service-direction-grid .project-card,
  #projects .project-entry-grid .project-card {
    min-height: 178px;
    padding: 18px;
  }

  #services .service-direction-grid .project-card h3,
  #projects .project-entry-grid .project-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 980px) {
  #services .service-direction-grid,
  #projects .project-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #services .service-direction-grid,
  #projects .project-entry-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Project section after removing PET-CT and overview ===== */
@media (min-width: 981px) {
  .project-screen .project-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1040px;
  }
}


/* ===== 首页第三页：重点医疗方向田字格修正 =====
   说明：不用 home.css。这个覆盖写在 style.css 最底部，
   专门压过前面 #projects 的三列设置。 */
@media (min-width: 981px) {
  #projects .project-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 1040px;
    gap: 22px;
  }

  #projects .project-entry-grid .project-card {
    min-height: 212px;
    padding: 26px 28px;
  }

  #projects .project-entry-grid .project-card h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  #projects .project-entry-grid .project-card p {
    font-size: 14px;
    line-height: 1.75;
  }
}

@media (max-width: 980px) {
  #projects .project-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  #projects .project-entry-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== 首页首屏：自然氛围渐变，不做文字区方框 =====
   目标：左上角增加轻微色彩层次，但不出现独立色块；
   左上淡蓝绿与右下图片渐隐交叉融合，最后都过渡到白色。 */
.hero {
  background:
    radial-gradient(
      ellipse at 18% 22%,
      rgba(0, 143, 201, 0.070) 0%,
      rgba(0, 143, 201, 0.040) 24%,
      rgba(117, 191, 67, 0.022) 42%,
      rgba(255, 255, 255, 0) 70%
    ),
    radial-gradient(
      ellipse at 78% 78%,
      rgba(0, 143, 201, 0.060) 0%,
      rgba(0, 143, 201, 0.026) 34%,
      rgba(255, 255, 255, 0) 68%
    ),
    linear-gradient(180deg, #f7fcff 0%, #fff 48%, #f1fbfd 100%);
}

.hero::after {
  background:
    /* 左上整体空气感：不是方框，是铺满页面的大范围淡色渐变 */
    radial-gradient(
      ellipse at 19% 24%,
      rgba(232, 249, 254, 0.56) 0%,
      rgba(239, 252, 255, 0.38) 28%,
      rgba(249, 254, 255, 0.18) 48%,
      rgba(255, 255, 255, 0) 72%
    ),
    /* 左侧文字安全区：只保证清晰，不做明显白框 */
    linear-gradient(
      104deg,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(255, 255, 255, 0.82) 30%,
      rgba(255, 255, 255, 0.56) 47%,
      rgba(255, 255, 255, 0.24) 62%,
      rgba(255, 255, 255, 0.06) 78%,
      rgba(255, 255, 255, 0) 100%
    ),
    /* 顶部向白色融合，避免天空和页面断开 */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 15%,
      rgba(255, 255, 255, 0.62) 32%,
      rgba(255, 255, 255, 0.32) 52%,
      rgba(255, 255, 255, 0.10) 74%,
      rgba(255, 255, 255, 0.03) 100%
    ),
    /* 右下图片上扬区：与左上淡色产生交叉融合 */
    radial-gradient(
      ellipse at 86% 56%,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.015) 32%,
      rgba(255, 255, 255, 0.18) 58%,
      rgba(255, 255, 255, 0.54) 84%,
      rgba(255, 255, 255, 0.94) 100%
    ),
    linear-gradient(
      28deg,
      rgba(0, 143, 201, 0.035) 0%,
      rgba(117, 191, 67, 0.018) 30%,
      rgba(255, 255, 255, 0) 64%
    );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* 确保没有上一版的文字区伪元素残留 */
.hero-content::before {
  content: none !important;
}


/* ===== 首页第四页：赴日前后流程支持｜时间轴展开效果 ===== */
.support-timeline-screen {
  max-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 20px;
}

.support-timeline-heading {
  max-width: 900px;
  margin-bottom: 0;
}

.support-timeline-heading p {
  max-width: 860px;
}

.support-timeline-wrap {
  position: relative;
  max-height: min(62vh, 610px);
  overflow-y: auto;
  padding: 4px 6px 4px 0;
  display: grid;
  gap: 14px;
}

.support-timeline-wrap::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0,143,201,.32), rgba(117,191,67,.22));
}

.support-timeline-item {
  position: relative;
  padding-left: 66px;
}

.support-timeline-trigger {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 17px 20px 17px 0;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0,143,201,.14);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0,90,156,.055);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.support-timeline-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(0,169,199,.34);
  box-shadow: 0 18px 44px rgba(0,90,156,.08);
}

.support-timeline-no {
  position: absolute;
  left: 5px;
  top: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 4px solid var(--bg-light);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,90,156,.18);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
}

.support-timeline-title {
  display: grid;
  gap: 4px;
  padding-left: 20px;
}

.support-timeline-title strong {
  color: var(--text);
  font-size: 19px;
  line-height: 1.35;
}

.support-timeline-title em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}

.support-timeline-plus {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background: rgba(0,143,201,.08);
  border: 1px solid rgba(0,143,201,.15);
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  transition: transform .22s ease, background .22s ease;
}

.support-timeline-item.open .support-timeline-plus {
  transform: rotate(45deg);
  background: rgba(0,143,201,.14);
}

.support-timeline-item.open .support-timeline-trigger {
  border-color: rgba(0,169,199,.36);
  background: linear-gradient(135deg, #fff 0%, #f4fbfd 100%);
}

.support-timeline-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .32s ease, opacity .25s ease;
}

.support-timeline-detail > div {
  margin-top: 10px;
  padding: 18px 22px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(0,143,201,.13);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,90,156,.045);
}

.support-timeline-detail p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.support-timeline-detail ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.support-timeline-detail li + li {
  margin-top: 4px;
}

.support-timeline-item.open .support-timeline-detail {
  max-height: 340px;
  opacity: 1;
}

@media (max-width: 980px) {
  .support-timeline-screen {
    display: block;
  }

  .support-timeline-wrap {
    max-height: none;
    overflow: visible;
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .support-timeline-item {
    padding-left: 50px;
  }

  .support-timeline-wrap::before {
    left: 20px;
  }

  .support-timeline-no {
    left: 2px;
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .support-timeline-trigger {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 16px 16px 0;
  }

  .support-timeline-title {
    padding-left: 16px;
  }

  .support-timeline-plus {
    position: absolute;
    right: 14px;
    top: 20px;
    width: 30px;
    height: 30px;
  }

  .support-timeline-title strong {
    padding-right: 38px;
    font-size: 17px;
  }

  .support-timeline-title em,
  .support-timeline-detail p,
  .support-timeline-detail ul {
    font-size: 13px;
  }
}


/* ===== 首页第四页：赴日前后流程支持｜横向时间轴 ===== */
.support-horizontal-screen {
  max-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 24px;
}

.support-horizontal-heading {
  max-width: 920px;
  margin-bottom: 0;
}

.support-horizontal-heading p {
  max-width: 860px;
}

.support-horizontal-timeline {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 28px;
}

.support-horizontal-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  padding-top: 8px;
}

.support-horizontal-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 143, 201, 0.28), rgba(117, 191, 67, 0.24));
}

.support-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  text-align: center;
  cursor: pointer;
}

.support-step-no {
  min-width: 46px;
  padding: 6px 10px;
  color: var(--primary-dark);
  background: rgba(0, 143, 201, 0.08);
  border: 1px solid rgba(0, 143, 201, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.support-step-dot {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid rgba(0, 143, 201, 0.72);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(0, 143, 201, 0.08);
}

.support-step-text {
  width: 100%;
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 18px 14px;
  background: #fff;
  border: 1px solid rgba(0, 143, 201, 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 90, 156, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.support-step:hover .support-step-text {
  transform: translateY(-2px);
  border-color: rgba(0, 169, 199, 0.32);
  box-shadow: 0 18px 40px rgba(0, 90, 156, 0.08);
}

.support-step-text strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.4;
}

.support-step-text em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
}

.support-step.active .support-step-no {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
}

.support-step.active .support-step-dot {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 7px rgba(0, 143, 201, 0.14);
}

.support-step.active .support-step-text {
  background: linear-gradient(135deg, #fff 0%, #f4fbfd 100%);
  border-color: rgba(0, 169, 199, 0.32);
  box-shadow: 0 20px 44px rgba(0, 90, 156, 0.09);
}

.support-detail-panels {
  min-height: 250px;
}

.support-detail-panel {
  display: none;
  padding: 28px 30px;
  background: linear-gradient(135deg, #fff 0%, #f7fcfd 100%);
  border: 1px solid rgba(0, 143, 201, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(0, 90, 156, 0.06);
}

.support-detail-panel.active {
  display: block;
}

.support-detail-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.support-detail-header span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.support-detail-header h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.35;
}

.support-detail-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.support-detail-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.support-detail-panel li + li {
  margin-top: 5px;
}

@media (max-width: 1100px) {
  .support-horizontal-track {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 1fr);
    grid-template-columns: unset;
    padding-bottom: 4px;
  }

  .support-horizontal-track::before {
    left: 85px;
    right: 85px;
  }
}

@media (max-width: 980px) {
  .support-horizontal-screen {
    display: block;
  }

  .support-horizontal-timeline {
    margin-top: 28px;
  }

  .support-step-text {
    min-height: 124px;
  }
}

@media (max-width: 640px) {
  .support-horizontal-track {
    gap: 12px;
    grid-auto-columns: minmax(155px, 1fr);
  }

  .support-step-text {
    min-height: 118px;
    padding: 16px 12px;
  }

  .support-step-text strong {
    font-size: 15px;
  }

  .support-step-text em,
  .support-detail-panel p,
  .support-detail-panel ul {
    font-size: 13px;
  }

  .support-detail-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .support-detail-header h3 {
    font-size: 20px;
  }
}


/* ===== 第四页：横向时间轴增加图片感背景（步道图版本）=====
   处理思路：
   1) 使用“步道通往医院”的照片，强化流程感；
   2) 保留蓝天与道路引导线；
   3) 用左上与顶部白色渐变保护文案；
   4) 用右侧柔光层弱化路牌与人物，让背景更像氛围图。 */
.support-horizontal-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      ellipse at 16% 16%,
      rgba(0, 143, 201, 0.080) 0%,
      rgba(0, 143, 201, 0.040) 24%,
      rgba(255, 255, 255, 0) 62%
    ),
    linear-gradient(180deg, #fbfeff 0%, #f4fbfd 100%);
}

.support-horizontal-section > * {
  position: relative;
  z-index: 2;
}

.support-horizontal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* 左侧保护层：让标题与时间轴更清晰 */
    linear-gradient(
      90deg,
      rgba(251, 254, 255, 0.985) 0%,
      rgba(251, 254, 255, 0.975) 18%,
      rgba(251, 254, 255, 0.92) 34%,
      rgba(251, 254, 255, 0.72) 48%,
      rgba(251, 254, 255, 0.34) 64%,
      rgba(251, 254, 255, 0.06) 84%,
      rgba(251, 254, 255, 0.00) 100%
    ),
    /* 顶部融合层：让蓝天自然融进页面白色 */
    linear-gradient(
      180deg,
      rgba(251, 254, 255, 0.98) 0%,
      rgba(251, 254, 255, 0.95) 12%,
      rgba(251, 254, 255, 0.72) 30%,
      rgba(251, 254, 255, 0.34) 52%,
      rgba(251, 254, 255, 0.10) 74%,
      rgba(251, 254, 255, 0.02) 100%
    ),
    /* 右中柔光层：压淡路牌与人物 */
    radial-gradient(
      ellipse at 84% 58%,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.28) 18%,
      rgba(255, 255, 255, 0.14) 34%,
      rgba(255, 255, 255, 0.04) 54%,
      rgba(255, 255, 255, 0.00) 74%
    ),
    url("support-process-bg.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, cover;
  background-position: left top, center top, 86% 58%, 58% 52%;
  opacity: 1;
  transform: scale(1.01);
  filter: saturate(0.92) brightness(1.03);
}

.support-horizontal-section::after {
  content: "";
  position: absolute;
  right: -3%;
  bottom: -8%;
  width: min(54vw, 820px);
  height: min(62vh, 560px);
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 54% 58%,
      rgba(0, 143, 201, 0.10) 0%,
      rgba(0, 143, 201, 0.042) 26%,
      rgba(255, 255, 255, 0.08) 52%,
      rgba(255, 255, 255, 0.00) 78%
    );
}

.support-step-text {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.support-step.active .support-step-text {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(244, 251, 253, 0.92) 100%
  );
}

.support-detail-panel {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(247, 252, 253, 0.90) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .support-horizontal-section::before {
    background:
      linear-gradient(
        180deg,
        rgba(251, 254, 255, 0.98) 0%,
        rgba(251, 254, 255, 0.94) 16%,
        rgba(251, 254, 255, 0.74) 34%,
        rgba(251, 254, 255, 0.34) 58%,
        rgba(251, 254, 255, 0.08) 82%,
        rgba(251, 254, 255, 0.02) 100%
      ),
      radial-gradient(
        ellipse at 84% 62%,
        rgba(255, 255, 255, 0.34) 0%,
        rgba(255, 255, 255, 0.12) 28%,
        rgba(255, 255, 255, 0.00) 62%
      ),
      url("support-process-bg.png");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, cover;
    background-position: center top, 84% 62%, 58% 52%;
  }

  .support-horizontal-section::after {
    width: min(72vw, 520px);
    height: min(36vh, 260px);
    right: -12%;
    bottom: -4%;
  }
}

@media (max-width: 640px) {
  .support-step-text,
  .support-detail-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .support-horizontal-section::before {
    background-position: center top, 82% 64%, 60% 50%;
  }
}

/* ===== 第四页横向时间轴：降噪与空间优化版 =====
   目标：
   1) 背景图继续保留，但存在感压到约 15%～20%；
   2) 时间轴上方卡片变薄，减少拥挤感；
   3) 详情卡片保留，但更轻、更干净；
   4) 左侧标题区和中间内容区保持清晰可读。 */

.support-horizontal-section {
  background:
    radial-gradient(
      ellipse at 14% 16%,
      rgba(0, 143, 201, 0.055) 0%,
      rgba(0, 143, 201, 0.026) 25%,
      rgba(255, 255, 255, 0) 62%
    ),
    linear-gradient(180deg, #fcfeff 0%, #f7fcfd 100%);
}

.support-horizontal-section::before {
  background:
    /* 全局白纱：把图片存在感整体压低 */
    linear-gradient(
      0deg,
      rgba(252, 254, 255, 0.62) 0%,
      rgba(252, 254, 255, 0.58) 44%,
      rgba(252, 254, 255, 0.68) 100%
    ),
    /* 左侧文字保护层：标题和说明更干净 */
    linear-gradient(
      90deg,
      rgba(252, 254, 255, 0.995) 0%,
      rgba(252, 254, 255, 0.985) 24%,
      rgba(252, 254, 255, 0.94) 40%,
      rgba(252, 254, 255, 0.78) 56%,
      rgba(252, 254, 255, 0.48) 72%,
      rgba(252, 254, 255, 0.18) 88%,
      rgba(252, 254, 255, 0.04) 100%
    ),
    /* 顶部融合层：天空更自然地融入白色 */
    linear-gradient(
      180deg,
      rgba(252, 254, 255, 0.995) 0%,
      rgba(252, 254, 255, 0.96) 16%,
      rgba(252, 254, 255, 0.78) 34%,
      rgba(252, 254, 255, 0.48) 56%,
      rgba(252, 254, 255, 0.20) 76%,
      rgba(252, 254, 255, 0.06) 100%
    ),
    /* 右侧柔光：继续弱化路牌和人物 */
    radial-gradient(
      ellipse at 82% 58%,
      rgba(255, 255, 255, 0.60) 0%,
      rgba(255, 255, 255, 0.42) 20%,
      rgba(255, 255, 255, 0.22) 38%,
      rgba(255, 255, 255, 0.08) 58%,
      rgba(255, 255, 255, 0.00) 78%
    ),
    url("support-process-bg.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, auto, cover;
  background-position: center, left top, center top, 82% 58%, 58% 52%;
  transform: scale(1.01);
  filter: saturate(0.78) brightness(1.08);
}

.support-horizontal-section::after {
  right: -8%;
  bottom: -12%;
  width: min(50vw, 720px);
  height: min(54vh, 460px);
  background:
    radial-gradient(
      ellipse at 54% 58%,
      rgba(0, 143, 201, 0.060) 0%,
      rgba(0, 143, 201, 0.024) 28%,
      rgba(255, 255, 255, 0.08) 54%,
      rgba(255, 255, 255, 0.00) 80%
    );
}

/* 上方标题区更舒展，不抢时间轴空间 */
.support-horizontal-screen {
  gap: 18px;
}

.support-horizontal-heading {
  max-width: 880px;
}

.support-horizontal-heading h2 {
  margin-bottom: 12px;
}

.support-horizontal-heading p {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.78;
}

/* 横向时间轴整体降噪 */
.support-horizontal-timeline {
  gap: 20px;
}

.support-horizontal-track {
  gap: 12px;
  padding-top: 4px;
}

.support-horizontal-track::before {
  top: 38px;
  opacity: 0.78;
}

/* 让上方 6 个步骤更像“节点标签”，不要像六张大卡片 */
.support-step {
  gap: 8px;
}

.support-step-no {
  min-width: 42px;
  padding: 5px 9px;
  font-size: 11px;
}

.support-step-dot {
  width: 16px;
  height: 16px;
  border-width: 4px;
  box-shadow: 0 0 0 5px rgba(0, 143, 201, 0.07);
}

.support-step-text {
  min-height: 104px;
  padding: 14px 12px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(0, 143, 201, 0.105);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 90, 156, 0.042);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.support-step-text strong {
  font-size: 15px;
  line-height: 1.36;
}

.support-step-text em {
  font-size: 12px;
  line-height: 1.48;
}

.support-step:hover .support-step-text {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 90, 156, 0.065);
}

.support-step.active .support-step-dot {
  box-shadow: 0 0 0 6px rgba(0, 143, 201, 0.12);
}

.support-step.active .support-step-text {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(246, 252, 253, 0.90) 100%
  );
  box-shadow: 0 16px 34px rgba(0, 90, 156, 0.078);
}

/* 下方详情卡片保留，但更轻、更清楚 */
.support-detail-panels {
  min-height: 218px;
}

.support-detail-panel {
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.93) 0%,
    rgba(248, 253, 254, 0.88) 100%
  );
  border-color: rgba(0, 143, 201, 0.11);
  box-shadow: 0 14px 36px rgba(0, 90, 156, 0.052);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.support-detail-header {
  margin-bottom: 10px;
}

.support-detail-header span {
  min-width: 40px;
  height: 40px;
  font-size: 11px;
}

.support-detail-header h3 {
  font-size: 22px;
}

.support-detail-panel p,
.support-detail-panel ul {
  font-size: 14px;
  line-height: 1.76;
}

@media (max-width: 1100px) {
  .support-horizontal-track {
    grid-auto-columns: minmax(150px, 1fr);
  }

  .support-horizontal-track::before {
    top: 36px;
  }

  .support-step-text {
    min-height: 102px;
  }
}

@media (max-width: 980px) {
  .support-horizontal-screen {
    display: block;
  }

  .support-horizontal-timeline {
    margin-top: 22px;
  }

  .support-horizontal-section::before {
    background:
      linear-gradient(
        0deg,
        rgba(252, 254, 255, 0.68) 0%,
        rgba(252, 254, 255, 0.62) 48%,
        rgba(252, 254, 255, 0.72) 100%
      ),
      linear-gradient(
        180deg,
        rgba(252, 254, 255, 0.99) 0%,
        rgba(252, 254, 255, 0.94) 18%,
        rgba(252, 254, 255, 0.76) 40%,
        rgba(252, 254, 255, 0.42) 64%,
        rgba(252, 254, 255, 0.12) 88%,
        rgba(252, 254, 255, 0.03) 100%
      ),
      radial-gradient(
        ellipse at 82% 62%,
        rgba(255, 255, 255, 0.44) 0%,
        rgba(255, 255, 255, 0.18) 32%,
        rgba(255, 255, 255, 0.00) 66%
      ),
      url("support-process-bg.png");
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: center, center top, 82% 62%, 58% 52%;
  }
}

@media (max-width: 640px) {
  .support-horizontal-heading p {
    font-size: 14px;
  }

  .support-horizontal-track {
    grid-auto-columns: minmax(145px, 1fr);
  }

  .support-step-text {
    min-height: 96px;
    padding: 13px 11px;
    border-radius: 16px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .support-step-text strong {
    font-size: 14px;
  }

  .support-step-text em,
  .support-detail-panel p,
  .support-detail-panel ul {
    font-size: 13px;
  }

  .support-detail-panel {
    padding: 20px 18px;
    border-radius: 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .support-detail-header h3 {
    font-size: 19px;
  }
}


/* ===== 第四页背景图增强版：提高图片存在感 ===== */
.support-horizontal-section::before {
  background:
    /* 全局白纱：降低遮罩强度，让背景图更可见 */
    linear-gradient(
      0deg,
      rgba(252, 254, 255, 0.42) 0%,
      rgba(252, 254, 255, 0.38) 44%,
      rgba(252, 254, 255, 0.48) 100%
    ),
    /* 左侧文字保护层：左边继续清楚，但不过度发白 */
    linear-gradient(
      90deg,
      rgba(252, 254, 255, 0.985) 0%,
      rgba(252, 254, 255, 0.965) 22%,
      rgba(252, 254, 255, 0.86) 38%,
      rgba(252, 254, 255, 0.64) 54%,
      rgba(252, 254, 255, 0.34) 70%,
      rgba(252, 254, 255, 0.12) 86%,
      rgba(252, 254, 255, 0.02) 100%
    ),
    /* 顶部融合层：保留天空融白效果，但减少雾感 */
    linear-gradient(
      180deg,
      rgba(252, 254, 255, 0.985) 0%,
      rgba(252, 254, 255, 0.90) 14%,
      rgba(252, 254, 255, 0.62) 32%,
      rgba(252, 254, 255, 0.28) 56%,
      rgba(252, 254, 255, 0.10) 76%,
      rgba(252, 254, 255, 0.02) 100%
    ),
    /* 右侧柔光：仍弱化杂讯，但让树和建筑留一点层次 */
    radial-gradient(
      ellipse at 82% 58%,
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.22) 22%,
      rgba(255, 255, 255, 0.10) 42%,
      rgba(255, 255, 255, 0.03) 60%,
      rgba(255, 255, 255, 0.00) 78%
    ),
    url("support-process-bg.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, auto, cover;
  background-position: center, left top, center top, 82% 58%, 58% 52%;
  filter: saturate(0.92) brightness(1.02);
}

@media (max-width: 980px) {
  .support-horizontal-section::before {
    background:
      linear-gradient(
        0deg,
        rgba(252, 254, 255, 0.46) 0%,
        rgba(252, 254, 255, 0.40) 48%,
        rgba(252, 254, 255, 0.50) 100%
      ),
      linear-gradient(
        180deg,
        rgba(252, 254, 255, 0.98) 0%,
        rgba(252, 254, 255, 0.88) 18%,
        rgba(252, 254, 255, 0.60) 40%,
        rgba(252, 254, 255, 0.26) 64%,
        rgba(252, 254, 255, 0.08) 88%,
        rgba(252, 254, 255, 0.02) 100%
      ),
      radial-gradient(
        ellipse at 82% 62%,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.10) 32%,
        rgba(255, 255, 255, 0.00) 66%
      ),
      url("support-process-bg.png");
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: center, center top, 82% 62%, 58% 52%;
    filter: saturate(0.9) brightness(1.02);
  }
}


/* ===== 开屏特效：毛玻璃自动门 =====
   关键调整：不再给整个全屏外壳加 blur；只让左右两扇门自身毛玻璃化。
   这样门打开到哪里，哪里就立刻恢复清晰，形成“步入网站”的感觉。 */
.opening-door {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: auto;
  background: transparent;
  animation: openingDoorShell 2.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.opening-door::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.16) 49.6%, rgba(255,255,255,.54) 50%, rgba(255,255,255,.16) 50.4%, transparent 100%);
  opacity: 0.74;
  animation: openingDoorSeam 2.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.opening-door-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.8%;
  z-index: 1;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(0, 143, 201, 0.075), transparent 46%),
    radial-gradient(ellipse at 74% 76%, rgba(117, 191, 67, 0.055), transparent 50%),
    linear-gradient(115deg, rgba(255,255,255,.34), rgba(255,255,255,.16) 48%, rgba(255,255,255,.06)),
    rgba(244, 251, 253, 0.22);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow:
    inset 0 0 30px rgba(255,255,255,.26),
    0 24px 78px rgba(0, 90, 156, 0.10);
  backdrop-filter: blur(10px) saturate(1.04);
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
  animation-duration: 2.25s;
  animation-delay: 0.36s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.opening-door-left {
  left: 0;
  transform-origin: left center;
  animation-name: openingDoorLeft;
}

.opening-door-right {
  right: 0;
  transform-origin: right center;
  animation-name: openingDoorRight;
}

.opening-door-left::after,
.opening-door-right::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 143, 201, 0.22), rgba(255,255,255,.54), transparent);
  box-shadow: 0 0 20px rgba(0, 143, 201, 0.12);
}

.opening-door-left::after { right: 0; }
.opening-door-right::after { left: 0; }

.opening-door-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-align: center;
  opacity: 0;
  animation: openingDoorCenter 2.05s ease forwards;
}

.opening-door-logo {
  width: clamp(92px, 10vw, 132px);
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0, 90, 156, 0.14));
}

.opening-door.is-finished {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

@keyframes openingDoorLeft {
  0%, 24% { transform: translateX(0); }
  100% { transform: translateX(-102%); }
}

@keyframes openingDoorRight {
  0%, 24% { transform: translateX(0); }
  100% { transform: translateX(102%); }
}

@keyframes openingDoorShell {
  0% { opacity: 1; visibility: visible; }
  78% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes openingDoorSeam {
  0%, 28% { opacity: .95; transform: scaleX(1); }
  70% { opacity: .45; transform: scaleX(1.08); }
  100% { opacity: 0; transform: scaleX(1.18); }
}

@keyframes openingDoorCenter {
  0% { opacity: 0; transform: translate(-50%, -46%); filter: blur(8px); }
  24%, 48% { opacity: 1; transform: translate(-50%, -50%); filter: blur(0); }
  76%, 100% { opacity: 0; transform: translate(-50%, -54%); filter: blur(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .opening-door {
    animation-duration: .55s;
  }

  .opening-door-panel,
  .opening-door-center,
  .opening-door::before {
    animation-duration: .55s;
    animation-delay: 0s;
  }
}

@media (max-width: 640px) {
  .opening-door-center span {
    font-size: 10px;
    letter-spacing: .14em;
  }
}


/* ===== 开屏特效：更从容 + 去掉绿色高光 =====
   这段放在 style.css 最底部，用于覆盖前面的开屏动画设置。 */

.opening-door {
  animation: openingDoorShell 3.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.opening-door::before {
  animation: openingDoorSeam 2.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.opening-door-panel {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.42) 18%, transparent 46%),
    radial-gradient(circle at 70% 72%, rgba(0, 143, 201, 0.10) 0%, rgba(0, 143, 201, 0.045) 26%, transparent 56%),
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.12) 36%, transparent 72%),
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.60) 24%,
      rgba(255, 255, 255, 0.46) 52%,
      rgba(255, 255, 255, 0.58) 100%
    );
  backdrop-filter: blur(38px) saturate(1.24) contrast(1.02) brightness(1.03);
  -webkit-backdrop-filter: blur(38px) saturate(1.24) contrast(1.02) brightness(1.03);
  animation-duration: 2.95s;
  animation-delay: 0.22s;
  animation-timing-function: cubic-bezier(0.70, 0, 0.18, 1);
}

.opening-door-panel::before {
  opacity: 0.58;
  background:
    linear-gradient(115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.00) 24%,
      rgba(255, 255, 255, 0.42) 40%,
      rgba(255, 255, 255, 0.10) 50%,
      transparent 64%
    ),
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.22), transparent 50%);
  animation: openingDoorLiquidSheen 2.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes openingDoorLeft {
  0%, 34% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes openingDoorRight {
  0%, 34% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(100%, 0, 0); }
}

@keyframes openingDoorSeam {
  0%, 38% {
    opacity: 0.88;
    transform: translateX(-50%) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(1.04);
  }
}

@keyframes openingDoorShell {
  0% { opacity: 1; visibility: visible; }
  86% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes openingDoorLiquidSheen {
  0%, 32% {
    opacity: 0.52;
    transform: translateX(-8%) rotate(-7deg);
  }
  100% {
    opacity: 0.18;
    transform: translateX(14%) rotate(-7deg);
  }
}

@media (max-width: 640px) {
  .opening-door-panel {
    backdrop-filter: blur(34px) saturate(1.20) contrast(1.02) brightness(1.03);
    -webkit-backdrop-filter: blur(34px) saturate(1.20) contrast(1.02) brightness(1.03);
  }
}


/* ===== 开屏特效接缝修正：中间严丝合缝，不再重叠 =====
   只修正中线：
   1) 两扇门严格各占 50%；
   2) 右门从 left:50% 开始，避免和左门叠压；
   3) 中缝高光改成真正的细线，不再是一整条宽白带。 */
.opening-door-panel {
  width: 50% !important;
  box-sizing: border-box;
  border: 0 !important;
}

.opening-door-left {
  left: 0 !important;
  right: auto !important;
}

.opening-door-right {
  left: 50% !important;
  right: auto !important;
}

.opening-door::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  inset: auto;
  z-index: 7;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.28) 16%,
    rgba(255,255,255,0.82) 50%,
    rgba(0,143,201,0.14) 56%,
    rgba(255,255,255,0.28) 84%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 6px rgba(255,255,255,0.34),
    0 0 12px rgba(0,143,201,0.08);
}

.opening-door-left::after,
.opening-door-right::after {
  width: 1px;
  opacity: 0.58;
  box-shadow: 0 0 6px rgba(255,255,255,0.28);
}


/* ===== 开屏特效：进一步增强毛玻璃遮挡，降低开门前页面可读性 =====
   只加强玻璃遮挡，不改变接缝、不改变整体开门节奏。 */

.opening-door-panel {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.54) 20%, transparent 48%),
    radial-gradient(circle at 70% 72%, rgba(0, 143, 201, 0.12) 0%, rgba(0, 143, 201, 0.06) 28%, transparent 58%),
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.18) 38%, transparent 74%),
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.70) 26%,
      rgba(255, 255, 255, 0.56) 54%,
      rgba(255, 255, 255, 0.68) 100%
    );
  backdrop-filter: blur(48px) saturate(1.14) contrast(0.98) brightness(1.04);
  -webkit-backdrop-filter: blur(48px) saturate(1.14) contrast(0.98) brightness(1.04);
}

.opening-door-panel::before {
  opacity: 0.50;
  background:
    linear-gradient(115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.00) 24%,
      rgba(255, 255, 255, 0.46) 40%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 64%
    ),
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.28), transparent 50%);
}

/* 关门等待阶段更朦胧；打开后露出的区域仍然清晰 */
@keyframes openingDoorLiquidSheen {
  0%, 32% {
    opacity: 0.48;
    transform: translateX(-8%) rotate(-7deg);
  }
  100% {
    opacity: 0.16;
    transform: translateX(14%) rotate(-7deg);
  }
}

@media (max-width: 640px) {
  .opening-door-panel {
    backdrop-filter: blur(40px) saturate(1.12) contrast(0.98) brightness(1.04);
    -webkit-backdrop-filter: blur(40px) saturate(1.12) contrast(0.98) brightness(1.04);
  }
}


/* ===== 开屏特效：不模糊页面，只增强玻璃门自身的磨砂遮挡 =====
   思路：
   1) 去掉 door panel 的 backdrop-filter，避免把页面本身模糊掉；
   2) 通过更高的不透明度 + 磨砂雾层 + 柔和高光，降低开门前可读性；
   3) 保留开门节奏与中缝接合方式。 */

.opening-door-panel {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.68) 18%, transparent 42%),
    radial-gradient(circle at 72% 72%, rgba(205, 232, 245, 0.30) 0%, rgba(205, 232, 245, 0.14) 26%, transparent 56%),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 36%, transparent 72%),
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.84) 22%,
      rgba(248, 251, 253, 0.76) 52%,
      rgba(255, 255, 255, 0.86) 100%
    ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(255, 255, 255, 0.32),
    inset 26px 0 56px rgba(255, 255, 255, 0.22),
    inset -18px 0 40px rgba(190, 220, 236, 0.10),
    0 24px 72px rgba(0, 36, 68, 0.16) !important;
}

/* 把原来的流光层改成“磨砂雾层”，只模糊门自己的质感，不模糊页面 */
.opening-door-panel::before {
  content: "";
  position: absolute;
  inset: -14%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 24%, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.30) 18%, transparent 50%),
    radial-gradient(ellipse at 72% 70%, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.12) 28%, transparent 54%),
    linear-gradient(115deg,
      transparent 0%,
      rgba(255,255,255,0.06) 18%,
      rgba(255,255,255,0.46) 38%,
      rgba(255,255,255,0.18) 50%,
      rgba(255,255,255,0.06) 62%,
      transparent 78%
    ),
    linear-gradient(180deg,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.06) 28%,
      rgba(255,255,255,0.16) 56%,
      rgba(255,255,255,0.04) 100%
    );
  opacity: 0.88;
  filter: blur(18px);
  transform: rotate(-6deg);
  mix-blend-mode: screen;
  animation: openingDoorLiquidSheen 2.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 让门边缘保持清晰一点，避免整片发死白 */
.opening-door-left::after,
.opening-door-right::after {
  opacity: 0.64;
  box-shadow:
    0 0 8px rgba(255,255,255,0.26),
    0 0 14px rgba(0,143,201,0.05);
}

@keyframes openingDoorLiquidSheen {
  0%, 32% {
    opacity: 0.88;
    transform: translateX(-6%) rotate(-6deg);
  }
  100% {
    opacity: 0.30;
    transform: translateX(12%) rotate(-6deg);
  }
}

@media (max-width: 640px) {
  .opening-door-panel::before {
    filter: blur(14px);
  }
}


/* ===== 开屏特效：玻璃门减少纯白感，增加淡蓝灰层次 =====
   只增加玻璃门自身层次，不改变开门节奏、不改变中缝、不模糊页面本身。 */

.opening-door-panel {
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.58) 18%, transparent 42%),
    radial-gradient(circle at 72% 72%, rgba(184, 221, 238, 0.34) 0%, rgba(184, 221, 238, 0.16) 28%, transparent 58%),
    radial-gradient(circle at 38% 68%, rgba(218, 236, 244, 0.28) 0%, rgba(218, 236, 244, 0.10) 32%, transparent 64%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(246, 251, 253, 0.82) 34%,
      rgba(229, 241, 247, 0.66) 68%,
      rgba(255, 255, 255, 0.82) 100%
    ),
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(245, 250, 252, 0.74) 24%,
      rgba(232, 243, 248, 0.62) 54%,
      rgba(255, 255, 255, 0.78) 100%
    ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(255, 255, 255, 0.26),
    inset 28px 0 62px rgba(255, 255, 255, 0.20),
    inset -24px 0 54px rgba(150, 190, 210, 0.12),
    inset 0 18px 42px rgba(255, 255, 255, 0.18),
    inset 0 -22px 50px rgba(160, 196, 214, 0.10),
    0 24px 72px rgba(0, 36, 68, 0.14) !important;
}

.opening-door-panel::before {
  background:
    radial-gradient(ellipse at 30% 24%, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.26) 18%, transparent 50%),
    radial-gradient(ellipse at 72% 70%, rgba(218,236,244,0.46) 0%, rgba(218,236,244,0.16) 28%, transparent 54%),
    linear-gradient(115deg,
      transparent 0%,
      rgba(255,255,255,0.04) 18%,
      rgba(255,255,255,0.36) 38%,
      rgba(210,232,242,0.16) 50%,
      rgba(255,255,255,0.04) 62%,
      transparent 78%
    ),
    linear-gradient(180deg,
      rgba(255,255,255,0.14),
      rgba(214,234,243,0.08) 30%,
      rgba(255,255,255,0.12) 58%,
      rgba(184,216,232,0.06) 100%
    );
  opacity: 0.84;
}


/* ===== 右侧纵向导航：轻量液态玻璃效果 =====
   目标：不抢主视觉，但让侧边导航和开屏玻璃语言统一。 */

.side-nav {
  padding: 12px 8px;
  gap: 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.48) 0%,
      rgba(245, 251, 253, 0.30) 48%,
      rgba(226, 241, 248, 0.24) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 16px 42px rgba(0, 90, 156, 0.10);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
}

.side-nav::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 38% 10%, rgba(255,255,255,0.72), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.22), transparent 54%);
  opacity: 0.74;
}

.side-nav a {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.88), rgba(255,255,255,0.26) 34%, transparent 56%),
    rgba(0, 143, 201, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -1px 0 rgba(0,90,156,0.10),
    0 8px 18px rgba(0, 90, 156, 0.10);
  backdrop-filter: blur(8px) saturate(1.12);
  -webkit-backdrop-filter: blur(8px) saturate(1.12);
}

.side-nav a:hover {
  transform: scale(1.12);
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.92), rgba(255,255,255,0.32) 34%, transparent 56%),
    rgba(0, 143, 201, 0.34);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.80),
    0 10px 22px rgba(0, 90, 156, 0.16);
}

.side-nav a.active {
  height: 30px;
  background:
    linear-gradient(180deg,
      rgba(124, 204, 232, 0.92) 0%,
      rgba(0, 143, 201, 0.84) 46%,
      rgba(0, 90, 156, 0.88) 100%
    );
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.64),
    inset 0 -1px 0 rgba(0,36,68,0.18),
    0 12px 28px rgba(0, 90, 156, 0.24);
}

.side-nav a span {
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(245, 251, 253, 0.70) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 14px 32px rgba(0, 90, 156, 0.14);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
}

@media (max-width: 640px) {
  .side-nav,
  .side-nav a,
  .side-nav a span {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


/* ===== 首页质感微调：顶部导航轻玻璃化 + 次按钮液态玻璃 =====
   原则：只提升材质统一感，不做重特效，不牺牲可读性和转化。 */

/* 顶部导航：85% 白底 + 轻玻璃，不做过度透明 */
.site-header {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(250, 253, 255, 0.82) 100%
    ) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 10px 30px rgba(0, 90, 156, 0.055);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

/* 给导航底部一点很淡的蓝白冷光，和右侧玻璃导航统一 */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 143, 201, 0.14) 18%,
    rgba(255, 255, 255, 0.70) 50%,
    rgba(0, 143, 201, 0.12) 82%,
    transparent 100%
  );
}

/* 顶部导航文字保持清楚，不能为了玻璃感变虚 */
.nav > a,
.nav-group > a {
  color: rgba(21, 63, 92, 0.78);
}

.nav > a:hover,
.nav-group > a:hover {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.70),
    0 8px 18px rgba(0, 90, 156, 0.055);
}

/* 下拉菜单：和导航栏统一成轻玻璃 */
.nav-submenu,
.lang-dropdown {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(246, 251, 253, 0.72) 100%
    ) !important;
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    0 18px 42px rgba(0, 36, 68, 0.14);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.nav-submenu a:hover,
.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.66);
}

/* 语言按钮：更像一个小玻璃胶囊 */
.lang-trigger {
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.76) 0%,
      rgba(246,251,253,0.58) 100%
    ) !important;
  border-color: rgba(255,255,255,0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    0 10px 22px rgba(0, 90, 156, 0.07);
  backdrop-filter: blur(14px) saturate(1.14);
  -webkit-backdrop-filter: blur(14px) saturate(1.14);
}

.lang-trigger:hover,
.lang-trigger:focus,
.lang-trigger:active,
.lang-menu.open .lang-trigger {
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.88) 0%,
      rgba(246,251,253,0.70) 100%
    ) !important;
}

/* 主按钮：不玻璃化，只加一点高光，保持强行动感 */
.hero-main-cta,
.button.primary {
  position: relative;
  overflow: hidden;
}

.hero-main-cta::before,
.button.primary::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 1px;
  height: 42%;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.34),
    rgba(255,255,255,0.06)
  );
  opacity: 0.72;
}

/* 次按钮：改成液态玻璃按钮 */
.hero-actions .button.secondary {
  color: var(--primary-dark);
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.92), rgba(255,255,255,0.28) 34%, transparent 62%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.66) 0%,
      rgba(246, 251, 253, 0.44) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    inset 0 -1px 0 rgba(0,90,156,0.08),
    0 12px 26px rgba(0, 90, 156, 0.08);
  backdrop-filter: blur(14px) saturate(1.16);
  -webkit-backdrop-filter: blur(14px) saturate(1.16);
}

.hero-actions .button.secondary:hover {
  border-color: rgba(255,255,255,0.86);
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.98), rgba(255,255,255,0.36) 34%, transparent 62%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(246, 251, 253, 0.56) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.88),
    inset 0 -1px 0 rgba(0,90,156,0.10),
    0 16px 34px rgba(0, 90, 156, 0.12);
}

/* 移动端顶部使用 sticky，不要过度透明 */
@media (max-width: 980px) {
  .site-header {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(12px) saturate(1.12);
    -webkit-backdrop-filter: blur(12px) saturate(1.12);
  }
}

@media (max-width: 640px) {
  .hero-actions .button.secondary,
  .lang-trigger,
  .nav-submenu,
  .lang-dropdown {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


/* ===== 开屏动画：同一浏览会话只展示一次 ===== */
html.opening-door-skip .opening-door {
  display: none !important;
}

/* ===== 首页主按钮：去掉塑料感，改成更克制的高级蓝色 =====
   目标：保留主行动按钮的明确性，但弱化过亮的塑料高光。 */
.hero-actions .button.primary,
.hero-main-cta,
.button.primary {
  background:
    linear-gradient(
      135deg,
      #007fba 0%,
      #006fad 46%,
      #005a9c 100%
    ) !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 36, 68, 0.12),
    0 14px 30px rgba(0, 90, 156, 0.18);
  text-shadow: 0 1px 1px rgba(0, 36, 68, 0.14);
}

.hero-main-cta::before,
.button.primary::before {
  left: 16%;
  right: 16%;
  top: 1px;
  height: 34%;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.00)
    );
  opacity: 0.52;
}

.hero-actions .button.primary::after,
.hero-main-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(
      ellipse at 28% 18%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.06) 26%,
      transparent 58%
    );
  opacity: 0.55;
}

.hero-actions .button.primary:hover,
.hero-main-cta:hover,
.button.primary:hover {
  background:
    linear-gradient(
      135deg,
      #0089c6 0%,
      #0076b2 46%,
      #005f9f 100%
    ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 36, 68, 0.14),
    0 18px 38px rgba(0, 90, 156, 0.22);
}

/* 防止按钮内部高光影响文字点击与排版 */
.hero-actions .button.primary > *,
.hero-main-cta > *,
.button.primary > * {
  position: relative;
  z-index: 1;
}


/* ===== 开屏动画修复：默认显示，只有本会话已播放才跳过 ===== */
html:not(.opening-door-skip) .opening-door {
  display: block;
}

html.opening-door-skip .opening-door {
  display: none !important;
}


/* ===== 开屏动画稳定修复：默认一定显示，不再用 html class 提前隐藏 ===== */
html.opening-door-skip .opening-door,
html:not(.opening-door-skip) .opening-door,
.opening-door {
  display: block;
}

.opening-door.is-finished {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


/* ===== 开屏自动门：干净修复版，确保首次进入一定显示 ===== */
.opening-door {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: block !important;
  overflow: hidden !important;
  pointer-events: auto !important;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
  animation: openingDoorShell 3.25s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.opening-door.is-finished {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .26s ease, visibility .26s ease !important;
}

.opening-door::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 1px !important;
  z-index: 7 !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.28) 16%,
    rgba(255,255,255,0.82) 50%,
    rgba(0,143,201,0.14) 56%,
    rgba(255,255,255,0.28) 84%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 6px rgba(255,255,255,0.34),
    0 0 12px rgba(0,143,201,0.08) !important;
  animation: openingDoorSeam 2.85s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.opening-door-panel {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 50% !important;
  height: 100% !important;
  z-index: 1 !important;
  overflow: hidden !important;
  border: 0 !important;
  box-sizing: border-box !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.58) 18%, transparent 42%),
    radial-gradient(circle at 72% 72%, rgba(184, 221, 238, 0.34) 0%, rgba(184, 221, 238, 0.16) 28%, transparent 58%),
    radial-gradient(circle at 38% 68%, rgba(218, 236, 244, 0.28) 0%, rgba(218, 236, 244, 0.10) 32%, transparent 64%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(246, 251, 253, 0.82) 34%,
      rgba(229, 241, 247, 0.66) 68%,
      rgba(255, 255, 255, 0.82) 100%
    ),
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(245, 250, 252, 0.74) 24%,
      rgba(232, 243, 248, 0.62) 54%,
      rgba(255, 255, 255, 0.78) 100%
    ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(255, 255, 255, 0.26),
    inset 28px 0 62px rgba(255, 255, 255, 0.20),
    inset -24px 0 54px rgba(150, 190, 210, 0.12),
    inset 0 18px 42px rgba(255, 255, 255, 0.18),
    inset 0 -22px 50px rgba(160, 196, 214, 0.10),
    0 24px 72px rgba(0, 36, 68, 0.14) !important;
  animation-duration: 2.95s !important;
  animation-delay: 0.22s !important;
  animation-fill-mode: forwards !important;
  animation-timing-function: cubic-bezier(0.70, 0, 0.18, 1) !important;
  will-change: transform !important;
}

.opening-door-left {
  left: 0 !important;
  right: auto !important;
  animation-name: openingDoorLeft !important;
}

.opening-door-right {
  left: 50% !important;
  right: auto !important;
  animation-name: openingDoorRight !important;
}

.opening-door-panel::before {
  content: "" !important;
  position: absolute !important;
  inset: -14% !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse at 30% 24%, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.26) 18%, transparent 50%),
    radial-gradient(ellipse at 72% 70%, rgba(218,236,244,0.46) 0%, rgba(218,236,244,0.16) 28%, transparent 54%),
    linear-gradient(115deg,
      transparent 0%,
      rgba(255,255,255,0.04) 18%,
      rgba(255,255,255,0.36) 38%,
      rgba(210,232,242,0.16) 50%,
      rgba(255,255,255,0.04) 62%,
      transparent 78%
    ),
    linear-gradient(180deg,
      rgba(255,255,255,0.14),
      rgba(214,234,243,0.08) 30%,
      rgba(255,255,255,0.12) 58%,
      rgba(184,216,232,0.06) 100%
    ) !important;
  opacity: 0.84 !important;
  filter: blur(18px) !important;
  transform: rotate(-6deg) !important;
  mix-blend-mode: screen !important;
  animation: openingDoorLiquidSheen 2.95s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.opening-door-left::after,
.opening-door-right::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  width: 1px !important;
  height: 100% !important;
  opacity: 0.62 !important;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.34) 18%,
    rgba(255, 255, 255, 0.92) 48%,
    rgba(0, 143, 201, 0.18) 54%,
    rgba(255, 255, 255, 0.34) 84%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 8px rgba(255,255,255,0.24),
    0 0 14px rgba(0,143,201,0.06) !important;
}

.opening-door-left::after { right: 0 !important; }
.opening-door-right::after { left: 0 !important; }

.opening-door-center {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 5 !important;
  transform: translate(-50%, -50%) !important;
  display: grid !important;
  justify-items: center !important;
  gap: 12px !important;
  color: var(--primary-dark) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .18em !important;
  text-align: center !important;
  animation: openingDoorCenter 2.8s ease forwards !important;
}

.opening-door-logo {
  width: clamp(92px, 10vw, 132px) !important;
  height: auto !important;
  filter: drop-shadow(0 16px 30px rgba(0, 90, 156, 0.14)) !important;
}

@keyframes openingDoorLeft {
  0%, 34% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes openingDoorRight {
  0%, 34% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(100%, 0, 0); }
}

@keyframes openingDoorSeam {
  0%, 38% {
    opacity: 0.88;
    transform: translateX(-50%) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(1.04);
  }
}

@keyframes openingDoorShell {
  0% { opacity: 1; visibility: visible; }
  86% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes openingDoorLiquidSheen {
  0%, 32% {
    opacity: 0.84;
    transform: translateX(-6%) rotate(-6deg);
  }
  100% {
    opacity: 0.28;
    transform: translateX(12%) rotate(-6deg);
  }
}

@keyframes openingDoorCenter {
  0% { opacity: 0; transform: translate(-50%, -46%); filter: blur(8px); }
  20%, 50% { opacity: 1; transform: translate(-50%, -50%); filter: blur(0); }
  82%, 100% { opacity: 0; transform: translate(-50%, -54%); filter: blur(6px); }
}


/* ===== 顶部导航下拉菜单：点击后立即收起 ===== */
.nav-group.submenu-closing .nav-submenu {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translate(-50%, -4px) !important;
  pointer-events: none !important;
}


/* ===== 开屏动画跳过：从顶栏返回首页时不显示 ===== */
html.skip-opening .opening-door {
  display: none !important;
}

/* ===== 子页面轻量加载动画：顶部细线 + 内容淡入 ===== */
html.subpage-loading::before,
html.subpage-leaving::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 143, 201, 0), rgba(0, 143, 201, 0.95), rgba(117, 191, 67, 0.82), rgba(0, 143, 201, 0));
  transform-origin: left center;
  animation: renjiPageLoadLine 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.subpage-loading .subpage-main {
  opacity: 0;
  transform: translateY(6px);
}

html.subpage-ready .subpage-main {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.44s ease, transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

html.subpage-leaving body {
  cursor: progress;
}

@keyframes renjiPageLoadLine {
  0% { opacity: 0; transform: scaleX(0); }
  12% { opacity: 1; }
  68% { opacity: 1; transform: scaleX(0.78); }
  100% { opacity: 0; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  html.subpage-loading::before,
  html.subpage-leaving::before {
    animation: none;
    opacity: 0;
  }

  html.subpage-loading .subpage-main,
  html.subpage-ready .subpage-main {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* GLASS_TEST_MARKER */

/* ===== 子页面切换质感升级：短玻璃门影过渡 ===== */
html.subpage-loading::before,
html.subpage-leaving::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.76) 41%, rgba(226,245,250,.58) 50%, rgba(255,255,255,.76) 59%, rgba(255,255,255,.88) 100%),
    radial-gradient(ellipse at 50% 46%, rgba(0,143,201,.105) 0%, rgba(0,143,201,.040) 26%, rgba(255,255,255,0) 62%),
    radial-gradient(ellipse at 72% 72%, rgba(117,191,67,.055) 0%, rgba(117,191,67,.018) 34%, rgba(255,255,255,0) 72%);
  backdrop-filter: blur(16px) saturate(1.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), inset 0 -1px 0 rgba(0,143,201,.06);
  will-change: opacity, transform, clip-path;
}
html.subpage-loading::before { animation: renjiGlassEnter .76s cubic-bezier(.22,1,.36,1) forwards; }
html.subpage-leaving::before { animation: renjiGlassLeave .32s cubic-bezier(.22,1,.36,1) forwards; }
html.subpage-loading::after,
html.subpage-leaving::after {
  content: "";
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 9999;
  width: min(520px, 64vw);
  height: 100vh;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.24) 30%, rgba(255,255,255,.88) 50%, rgba(0,143,201,.10) 54%, rgba(255,255,255,.22) 70%, rgba(255,255,255,0) 100%);
  filter: blur(10px);
  transform: translateX(-50%) skewX(-8deg);
  will-change: opacity, transform;
}
html.subpage-loading::after { animation: renjiGlassSheenEnter .72s cubic-bezier(.22,1,.36,1) forwards; }
html.subpage-leaving::after { animation: renjiGlassSheenLeave .30s cubic-bezier(.22,1,.36,1) forwards; }
html.subpage-loading body::before,
html.subpage-leaving body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,143,201,0), rgba(0,143,201,.92), rgba(117,191,67,.70), rgba(0,143,201,0));
  transform-origin: left center;
}
html.subpage-loading body::before { animation: renjiFineLineEnter .74s cubic-bezier(.22,1,.36,1) both; }
html.subpage-leaving body::before { animation: renjiFineLineLeave .30s cubic-bezier(.22,1,.36,1) both; }
html.subpage-loading .subpage-main { opacity: 0; transform: translateY(10px) scale(.996); filter: blur(5px); }
html.subpage-ready .subpage-main {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity .52s ease, transform .60s cubic-bezier(.22,1,.36,1), filter .52s ease;
}
html.subpage-leaving body { cursor: progress; }
@keyframes renjiGlassEnter {
  0% { opacity: 1; clip-path: inset(0 0 0 0); transform: scaleX(1); }
  54% { opacity: .92; clip-path: inset(0 0 0 0); transform: scaleX(1.006); }
  100% { opacity: 0; clip-path: inset(0 50% 0 50%); transform: scaleX(1.018); visibility: hidden; }
}
@keyframes renjiGlassLeave {
  0% { opacity: 0; clip-path: inset(0 50% 0 50%); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes renjiGlassSheenEnter {
  0% { opacity: .68; transform: translateX(-50%) skewX(-8deg) scaleX(.75); }
  100% { opacity: 0; transform: translateX(-50%) skewX(-8deg) scaleX(.12); }
}
@keyframes renjiGlassSheenLeave {
  0% { opacity: 0; transform: translateX(-50%) skewX(-8deg) scaleX(.12); }
  100% { opacity: .72; transform: translateX(-50%) skewX(-8deg) scaleX(.78); }
}
@keyframes renjiFineLineEnter {
  0% { opacity: 0; transform: scaleX(0); }
  18% { opacity: 1; }
  72% { opacity: .9; transform: scaleX(.86); }
  100% { opacity: 0; transform: scaleX(1); }
}
@keyframes renjiFineLineLeave {
  0% { opacity: 0; transform: scaleX(0); }
  100% { opacity: 1; transform: scaleX(.58); }
}
@media (prefers-reduced-motion: reduce) {
  html.subpage-loading::before, html.subpage-loading::after, html.subpage-loading body::before,
  html.subpage-leaving::before, html.subpage-leaving::after, html.subpage-leaving body::before {
    animation: none !important; opacity: 0 !important; visibility: hidden !important;
  }
  html.subpage-loading .subpage-main, html.subpage-ready .subpage-main {
    opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important;
  }
}

/* ===== 服务项目卡片：线性图标 ===== */
.service-card-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: -6px 0 12px;
  opacity: 0.96;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 20px rgba(0, 90, 156, 0.06));
  transition: transform 0.22s ease, opacity 0.22s ease, filter 0.22s ease;
}

.project-card:hover .service-card-icon {
  transform: translateY(-2px) scale(1.035);
  opacity: 1;
  filter: drop-shadow(0 14px 26px rgba(0, 90, 156, 0.10));
}

@media (min-width: 981px) {
  #services .service-direction-grid .project-card {
    min-height: 246px;
  }

  #services .service-direction-grid .project-card h3 {
    margin-bottom: 7px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .service-card-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 10px;
  }

  #services .service-direction-grid .project-card {
    min-height: 232px;
  }
}

@media (max-width: 640px) {
  .service-card-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 10px;
  }
}

/* ===== FINAL PATCH: 服务图标融合 + 服务卡布局修正 + 简化子页面加载 ===== */
#services.snap-section {
  padding-top: 24px;
  padding-bottom: 28px;
  align-items: flex-start;
}

#services .services-screen {
  max-height: none;
}

#services .screen-heading.compact {
  margin-bottom: 14px;
}

#services .screen-heading.compact h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.14;
  max-width: 18ch;
  color: var(--primary-dark);
}

#services .screen-heading.compact p {
  margin: 0;
  max-width: 1020px;
  font-size: 14px;
  line-height: 1.72;
}

#services .service-direction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px;
  max-width: none;
}

#services .service-direction-grid .project-card {
  min-height: 0;
  padding: 18px 22px 16px;
  border-radius: 22px;
}

#services .service-direction-grid .project-card span {
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.09em;
}

#services .service-direction-grid .project-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.34;
}

#services .service-direction-grid .project-card p {
  margin: 0 0 11px;
  font-size: 13px;
  line-height: 1.62;
}

#services .service-direction-grid .project-card strong {
  font-size: 13px;
}

.service-card-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 0 8px;
  opacity: 0.96;
  mix-blend-mode: normal;
  filter: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.project-card:hover .service-card-icon {
  transform: translateY(-1px);
  opacity: 1;
  filter: none;
}

#services .service-note {
  margin-top: 14px;
  padding: 14px 16px;
}

#services .service-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services.snap-section {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  #services .screen-heading.compact h2 {
    font-size: clamp(30px, 3vw, 42px);
    margin-bottom: 10px;
  }

  #services .screen-heading.compact p {
    font-size: 13px;
    line-height: 1.64;
  }

  #services .service-direction-grid {
    gap: 14px;
  }

  #services .service-direction-grid .project-card {
    padding: 16px 18px 15px;
  }

  #services .service-direction-grid .project-card h3 {
    font-size: 17px;
  }

  #services .service-direction-grid .project-card p {
    font-size: 12.5px;
    line-height: 1.56;
  }

  .service-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 7px;
  }
}

@media (max-height: 900px) and (min-width: 981px) {
  #services.snap-section {
    height: auto;
    min-height: calc(100vh - var(--header));
    overflow: visible;
  }
}

@media (max-width: 980px) {
  #services.snap-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 28px 0 34px;
  }

  #services .service-direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .service-card-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 640px) {
  #services .screen-heading.compact h2 {
    font-size: clamp(28px, 8.2vw, 38px);
  }

  #services .service-direction-grid {
    grid-template-columns: 1fr !important;
  }

  #services .service-direction-grid .project-card {
    padding: 18px 18px 16px;
  }

  .service-card-icon {
    width: 54px;
    height: 54px;
  }
}

/* 子页面加载动画：只保留顶部进度条 */
html.subpage-loading::before,
html.subpage-leaving::before {
  content: "" !important;
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  inset: auto !important;
  z-index: 9999 !important;
  width: 100% !important;
  height: 2px !important;
  pointer-events: none !important;
  background: linear-gradient(90deg, rgba(0, 143, 201, 0), rgba(0, 143, 201, 0.95), rgba(117, 191, 67, 0.82), rgba(0, 143, 201, 0)) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  clip-path: none !important;
  filter: none !important;
  transform-origin: left center !important;
  animation: renjiSimpleLoadLine 0.56s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

html.subpage-loading::after,
html.subpage-leaving::after,
html.subpage-loading body::before,
html.subpage-leaving body::before {
  content: none !important;
  display: none !important;
}

html.subpage-loading .subpage-main,
html.subpage-ready .subpage-main,
html.subpage-leaving .subpage-main {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

html.subpage-leaving body {
  cursor: auto !important;
}

@keyframes renjiSimpleLoadLine {
  0% { opacity: 0; transform: scaleX(0); }
  12% { opacity: 1; }
  70% { opacity: 1; transform: scaleX(0.78); }
  100% { opacity: 0; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  html.subpage-loading::before,
  html.subpage-leaving::before {
    animation: none !important;
    opacity: 0 !important;
  }
}


/* ===== 服务页图标改为右上角淡化背景水印 ===== */
#services .service-direction-grid .project-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-right: 24px;
}

#services .service-direction-grid .project-card > :not(.service-card-icon) {
  position: relative;
  z-index: 1;
}

#services .service-direction-grid .project-card .service-card-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 86px;
  height: 86px;
  margin: 0;
  opacity: 0.075;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
  filter: saturate(0.92) brightness(1.02);
  transform: none;
}

#services .service-direction-grid .project-card:hover .service-card-icon {
  opacity: 0.1;
  transform: none;
}

#services .service-direction-grid .project-card h3 {
  padding-right: 56px;
}

#services .service-direction-grid .project-card span {
  padding-right: 48px;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 78px;
    height: 78px;
    top: 12px;
    right: 12px;
    opacity: 0.072;
  }

  #services .service-direction-grid .project-card h3 {
    padding-right: 48px;
  }
}

@media (max-width: 980px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 82px;
    height: 82px;
    top: 14px;
    right: 14px;
    opacity: 0.07;
  }

  #services .service-direction-grid .project-card h3,
  #services .service-direction-grid .project-card span {
    padding-right: 44px;
  }
}

@media (max-width: 640px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 72px;
    height: 72px;
    top: 12px;
    right: 12px;
    opacity: 0.068;
  }

  #services .service-direction-grid .project-card h3,
  #services .service-direction-grid .project-card span {
    padding-right: 36px;
  }
}


/* ===== 服务页图标右上角水印：更明显、更大、允许局部裁切 ===== */
#services .service-direction-grid .project-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#services .service-direction-grid .project-card > :not(.service-card-icon) {
  position: relative;
  z-index: 1;
}

#services .service-direction-grid .project-card .service-card-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 122px;
  height: 122px;
  margin: 0;
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
  filter: saturate(0.92) brightness(1.02);
  transform: none !important;
}

#services .service-direction-grid .project-card:hover .service-card-icon {
  opacity: 0.17;
  transform: none !important;
}

#services .service-direction-grid .project-card h3 {
  padding-right: 44px;
}

#services .service-direction-grid .project-card span {
  padding-right: 38px;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 112px;
    height: 112px;
    top: -8px;
    right: -8px;
    opacity: 0.135;
  }
  #services .service-direction-grid .project-card h3 {
    padding-right: 40px;
  }
  #services .service-direction-grid .project-card span {
    padding-right: 34px;
  }
}

@media (max-width: 980px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 116px;
    height: 116px;
    top: -10px;
    right: -10px;
    opacity: 0.13;
  }
  #services .service-direction-grid .project-card h3,
  #services .service-direction-grid .project-card span {
    padding-right: 36px;
  }
}

@media (max-width: 640px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 98px;
    height: 98px;
    top: -8px;
    right: -8px;
    opacity: 0.125;
  }
  #services .service-direction-grid .project-card h3,
  #services .service-direction-grid .project-card span {
    padding-right: 28px;
  }
}


/* ===== 服务页图标右上角水印 v3：再扩大一倍 ===== */
#services .service-direction-grid .project-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#services .service-direction-grid .project-card > :not(.service-card-icon) {
  position: relative;
  z-index: 1;
}

#services .service-direction-grid .project-card .service-card-icon {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 244px;
  height: 244px;
  margin: 0;
  opacity: 0.145;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
  filter: saturate(0.92) brightness(1.02);
  transform: none !important;
}

#services .service-direction-grid .project-card:hover .service-card-icon {
  opacity: 0.175;
  transform: none !important;
}

#services .service-direction-grid .project-card h3 {
  padding-right: 18px;
}

#services .service-direction-grid .project-card span {
  padding-right: 12px;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 220px;
    height: 220px;
    top: -28px;
    right: -28px;
    opacity: 0.14;
  }
}

@media (max-width: 980px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 196px;
    height: 196px;
    top: -24px;
    right: -24px;
    opacity: 0.135;
  }
  #services .service-direction-grid .project-card h3,
  #services .service-direction-grid .project-card span {
    padding-right: 10px;
  }
}

@media (max-width: 640px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 156px;
    height: 156px;
    top: -18px;
    right: -18px;
    opacity: 0.13;
  }
}


/* ===== 服务页图标右下角贴边版 ===== */
#services .service-direction-grid .project-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#services .service-direction-grid .project-card > :not(.service-card-icon) {
  position: relative;
  z-index: 1;
}

#services .service-direction-grid .project-card .service-card-icon {
  position: absolute;
  top: auto !important;
  left: auto !important;
  bottom: -34px;
  right: -34px;
  width: 244px;
  height: 244px;
  margin: 0;
  opacity: 0.145;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
  filter: saturate(0.92) brightness(1.02);
  transform: none !important;
}

#services .service-direction-grid .project-card:hover .service-card-icon {
  opacity: 0.175;
  transform: none !important;
}

#services .service-direction-grid .project-card h3,
#services .service-direction-grid .project-card span,
#services .service-direction-grid .project-card p,
#services .service-direction-grid .project-card strong {
  padding-right: 0;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 220px;
    height: 220px;
    bottom: -28px;
    right: -28px;
    opacity: 0.14;
  }
}

@media (max-width: 980px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 196px;
    height: 196px;
    bottom: -24px;
    right: -24px;
    opacity: 0.135;
  }
}

@media (max-width: 640px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 156px;
    height: 156px;
    bottom: -18px;
    right: -18px;
    opacity: 0.13;
  }
}


/* ===== 服务页图标右下角贴边版 v2：缩小三分之一，并更贴右下角 ===== */
#services .service-direction-grid .project-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#services .service-direction-grid .project-card > :not(.service-card-icon) {
  position: relative;
  z-index: 1;
}

#services .service-direction-grid .project-card .service-card-icon {
  position: absolute;
  top: auto !important;
  left: auto !important;
  bottom: -58px;
  right: -58px;
  width: 164px;
  height: 164px;
  margin: 0;
  opacity: 0.145;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
  filter: saturate(0.92) brightness(1.02);
  transform: none !important;
}

#services .service-direction-grid .project-card:hover .service-card-icon {
  opacity: 0.175;
  transform: none !important;
}

#services .service-direction-grid .project-card h3,
#services .service-direction-grid .project-card span,
#services .service-direction-grid .project-card p,
#services .service-direction-grid .project-card strong {
  padding-right: 0;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 152px;
    height: 152px;
    bottom: -54px;
    right: -54px;
    opacity: 0.14;
  }
}

@media (max-width: 980px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 142px;
    height: 142px;
    bottom: -48px;
    right: -48px;
    opacity: 0.135;
  }
}

@media (max-width: 640px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 118px;
    height: 118px;
    bottom: -38px;
    right: -38px;
    opacity: 0.13;
  }
}


/* ===== 服务页图标右下角贴边版 v3：更明显一点，并稍微往左上收 ===== */
#services .service-direction-grid .project-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#services .service-direction-grid .project-card > :not(.service-card-icon) {
  position: relative;
  z-index: 1;
}

#services .service-direction-grid .project-card .service-card-icon {
  position: absolute;
  top: auto !important;
  left: auto !important;
  bottom: -42px;
  right: -42px;
  width: 164px;
  height: 164px;
  margin: 0;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
  filter: saturate(0.96) brightness(1.01);
  transform: none !important;
}

#services .service-direction-grid .project-card:hover .service-card-icon {
  opacity: 0.21;
  transform: none !important;
}

#services .service-direction-grid .project-card h3,
#services .service-direction-grid .project-card span,
#services .service-direction-grid .project-card p,
#services .service-direction-grid .project-card strong {
  padding-right: 0;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 152px;
    height: 152px;
    bottom: -38px;
    right: -38px;
    opacity: 0.175;
  }

  #services .service-direction-grid .project-card:hover .service-card-icon {
    opacity: 0.205;
  }
}

@media (max-width: 980px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 142px;
    height: 142px;
    bottom: -34px;
    right: -34px;
    opacity: 0.17;
  }

  #services .service-direction-grid .project-card:hover .service-card-icon {
    opacity: 0.195;
  }
}

@media (max-width: 640px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 118px;
    height: 118px;
    bottom: -26px;
    right: -26px;
    opacity: 0.165;
  }

  #services .service-direction-grid .project-card:hover .service-card-icon {
    opacity: 0.19;
  }
}


/* ===== 服务页图标右下角贴边版 v4：阅读优先的平衡版 ===== */
#services .service-direction-grid .project-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#services .service-direction-grid .project-card > :not(.service-card-icon) {
  position: relative;
  z-index: 1;
}

#services .service-direction-grid .project-card .service-card-icon {
  position: absolute;
  top: auto !important;
  left: auto !important;
  bottom: -48px;
  right: -48px;
  width: 164px;
  height: 164px;
  margin: 0;
  opacity: 0.145;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
  filter: saturate(0.94) brightness(1.02);
  transform: none !important;
  /* 让靠近正文的一侧更淡，右下角保留一点存在感 */
  -webkit-mask-image: radial-gradient(ellipse at 100% 100%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.98) 34%,
    rgba(0,0,0,0.85) 54%,
    rgba(0,0,0,0.48) 74%,
    rgba(0,0,0,0.16) 88%,
    rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(ellipse at 100% 100%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.98) 34%,
    rgba(0,0,0,0.85) 54%,
    rgba(0,0,0,0.48) 74%,
    rgba(0,0,0,0.16) 88%,
    rgba(0,0,0,0) 100%);
  transform-origin: bottom right;
}

#services .service-direction-grid .project-card:hover .service-card-icon {
  opacity: 0.16;
  transform: none !important;
}

#services .service-direction-grid .project-card h3,
#services .service-direction-grid .project-card span,
#services .service-direction-grid .project-card p,
#services .service-direction-grid .project-card strong {
  padding-right: 0;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 152px;
    height: 152px;
    bottom: -44px;
    right: -44px;
    opacity: 0.14;
  }

  #services .service-direction-grid .project-card:hover .service-card-icon {
    opacity: 0.155;
  }
}

@media (max-width: 980px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 142px;
    height: 142px;
    bottom: -40px;
    right: -40px;
    opacity: 0.135;
  }

  #services .service-direction-grid .project-card:hover .service-card-icon {
    opacity: 0.15;
  }
}

@media (max-width: 640px) {
  #services .service-direction-grid .project-card .service-card-icon {
    width: 118px;
    height: 118px;
    bottom: -30px;
    right: -30px;
    opacity: 0.13;
  }

  #services .service-direction-grid .project-card:hover .service-card-icon {
    opacity: 0.145;
  }
}


/* ===== 服务卡右下角蓝色氛围底色：再淡一点 ===== */
.project-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 136px;
  height: 136px;
  background: radial-gradient(circle, rgba(0, 143, 201, 0.06), rgba(0, 143, 201, 0.025) 34%, transparent 72%);
  pointer-events: none;
}

.project-card.featured {
  background: linear-gradient(135deg, #ffffff 0%, #f8fcfd 100%);
}


/* ===== 服务卡图标颜色：稍微加深一点 ===== */
#services .service-direction-grid .project-card .service-card-icon {
  filter: saturate(1.08) brightness(0.9) contrast(1.03);
  opacity: 0.152;
}

#services .service-direction-grid .project-card:hover .service-card-icon {
  filter: saturate(1.1) brightness(0.88) contrast(1.04);
  opacity: 0.168;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #services .service-direction-grid .project-card .service-card-icon {
    opacity: 0.148;
  }
  #services .service-direction-grid .project-card:hover .service-card-icon {
    opacity: 0.162;
  }
}

@media (max-width: 980px) {
  #services .service-direction-grid .project-card .service-card-icon {
    opacity: 0.145;
  }
  #services .service-direction-grid .project-card:hover .service-card-icon {
    opacity: 0.158;
  }
}

@media (max-width: 640px) {
  #services .service-direction-grid .project-card .service-card-icon {
    opacity: 0.14;
  }
  #services .service-direction-grid .project-card:hover .service-card-icon {
    opacity: 0.152;
  }
}


/* ===== 全站右侧浮动“联系我们”按钮 ===== */
.floating-contact-fab {
  position: fixed;
  right: 18px;
  top: calc(50% + 250px);
  z-index: 42;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 143, 201, 0.96), rgba(0, 90, 156, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 28px rgba(0, 90, 156, 0.18), 0 3px 10px rgba(0, 143, 201, 0.14);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.floating-contact-fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 34px rgba(0, 90, 156, 0.22), 0 4px 12px rgba(0, 143, 201, 0.18);
  background: linear-gradient(135deg, rgba(0, 143, 201, 1), rgba(0, 90, 156, 1));
}

.floating-contact-fab:active {
  transform: translateY(0) scale(0.99);
}

.floating-contact-fab__icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-contact-fab__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.floating-contact-fab__label {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  border: 1px solid rgba(0, 143, 201, 0.16);
  box-shadow: 0 12px 28px rgba(0, 90, 156, 0.12);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.floating-contact-fab:hover .floating-contact-fab__label,
.floating-contact-fab:focus-visible .floating-contact-fab__label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.floating-contact-fab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.92), 0 0 0 6px rgba(0,143,201,0.28), 0 18px 34px rgba(0, 90, 156, 0.18);
}

@media (max-width: 980px) {
  .floating-contact-fab {
    top: auto;
    right: 16px;
    bottom: 12px;
    width: 58px;
    height: 58px;
  }

  .floating-contact-fab__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact-fab,
  .floating-contact-fab__label {
    transition: none;
  }
}


/* ===== 开屏中央标识：替换为线条桥梁 ===== */
.opening-door-center--bridge {
  gap: 14px;
}

.opening-door-bridge {
  width: clamp(126px, 14vw, 196px);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 14px 28px rgba(0, 90, 156, 0.14));
}

.opening-door-bridge svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.opening-door-wordmark {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.bridge-line {
  fill: none;
  stroke: rgba(0, 90, 156, 0.96);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  opacity: 0;
  animation: bridgeLineDraw 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bridge-arch {
  stroke-width: 3.4;
  animation-delay: 0.26s;
}

.bridge-deck {
  animation-delay: 0.46s;
}

.bridge-base {
  stroke: rgba(0, 143, 201, 0.78);
  stroke-width: 2.6;
  animation-delay: 0.58s;
}

.bridge-pillar {
  stroke: rgba(0, 143, 201, 0.86);
  stroke-width: 2.7;
}

.pillar-1 { animation-delay: 0.66s; }
.pillar-2 { animation-delay: 0.78s; }
.pillar-3 { animation-delay: 0.90s; }
.pillar-4 { animation-delay: 1.02s; }

.opening-door-center--bridge::before {
  content: "";
  position: absolute;
  width: clamp(136px, 15vw, 212px);
  height: clamp(136px, 15vw, 212px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.36) 38%, rgba(255,255,255,0.06) 68%, transparent 100%);
  z-index: -1;
  filter: blur(4px);
  opacity: 0;
  animation: openingDoorBridgeGlow 1.25s ease .22s forwards;
}

@keyframes bridgeLineDraw {
  0% {
    stroke-dashoffset: 260;
    opacity: 0;
  }
  12% {
    opacity: 0.96;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes openingDoorBridgeGlow {
  0% { opacity: 0; transform: scale(0.92); }
  35% { opacity: 0.86; transform: scale(1); }
  100% { opacity: 0.58; transform: scale(1.04); }
}

@media (max-width: 640px) {
  .opening-door-bridge {
    width: clamp(118px, 34vw, 156px);
  }

  .opening-door-wordmark {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .bridge-line {
    stroke-width: 3;
  }

  .bridge-base,
  .bridge-pillar {
    stroke-width: 2.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bridge-line,
  .opening-door-center--bridge::before {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
  }
}


/* ===== 开屏桥梁优化 v10：线条更从容，和开门衔接更强 ===== */
.opening-door {
  animation: openingDoorShellBridgeSync 3.92s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.opening-door::before {
  animation: openingDoorSeamBridgeSync 3.10s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.opening-door-panel {
  animation-duration: 3.06s !important;
  animation-delay: 0.80s !important;
  animation-timing-function: cubic-bezier(0.68, 0.02, 0.2, 1) !important;
}

.opening-door-panel::before {
  animation-duration: 3.06s !important;
  animation-delay: 0.80s !important;
}

.opening-door-center {
  animation: openingDoorCenterBridgeSync 3.02s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.opening-door-center--bridge {
  gap: 15px;
}

.opening-door-wordmark {
  opacity: 0;
  animation: openingDoorWordmarkReveal 0.88s ease 0.52s forwards;
}

.bridge-line {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  opacity: 0;
  animation: bridgeLineDrawGraceful 1.14s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.bridge-arch {
  animation-delay: 0.18s !important;
}

.bridge-deck {
  animation-delay: 0.54s !important;
}

.bridge-base {
  animation-delay: 0.74s !important;
}

.pillar-1 { animation-delay: 0.92s !important; }
.pillar-2 { animation-delay: 1.06s !important; }
.pillar-3 { animation-delay: 1.20s !important; }
.pillar-4 { animation-delay: 1.34s !important; }

.opening-door-center--bridge::before {
  animation: openingDoorBridgeGlowGraceful 1.55s ease .18s forwards !important;
}

@keyframes bridgeLineDrawGraceful {
  0% {
    stroke-dashoffset: 280;
    opacity: 0;
    filter: blur(1.6px);
  }
  10% {
    opacity: 0.9;
  }
  68% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes openingDoorWordmarkReveal {
  0% {
    opacity: 0;
    transform: translateY(4px);
    letter-spacing: .22em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: .18em;
  }
}

@keyframes openingDoorBridgeGlowGraceful {
  0% { opacity: 0; transform: scale(0.9); }
  32% { opacity: 0.82; transform: scale(1); }
  100% { opacity: 0.52; transform: scale(1.05); }
}

@keyframes openingDoorCenterBridgeSync {
  0% {
    opacity: 0;
    transform: translate(-50%, -47%);
    filter: blur(8px);
  }
  12% {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(1px);
  }
  22%, 70% {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);
  }
  86%, 100% {
    opacity: 0;
    transform: translate(-50%, -53.5%);
    filter: blur(4px);
  }
}

@keyframes openingDoorSeamBridgeSync {
  0%, 56% {
    opacity: 0.9;
    transform: translateX(-50%) scaleX(1);
  }
  84% {
    opacity: 0.38;
    transform: translateX(-50%) scaleX(1.03);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(1.05);
  }
}

@keyframes openingDoorShellBridgeSync {
  0% { opacity: 1; visibility: visible; }
  94% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* 门在桥梁线条完成后几乎无缝开启 */
@keyframes openingDoorLeft {
  0%, 47% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes openingDoorRight {
  0%, 47% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(100%, 0, 0); }
}

@media (max-width: 640px) {
  .opening-door {
    animation-duration: 3.58s !important;
  }

  .opening-door-panel {
    animation-duration: 2.84s !important;
    animation-delay: 0.72s !important;
  }

  .opening-door-panel::before {
    animation-duration: 2.84s !important;
    animation-delay: 0.72s !important;
  }

  .opening-door-center {
    animation-duration: 2.78s !important;
  }

  .bridge-line {
    animation-duration: 1.02s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-door,
  .opening-door::before,
  .opening-door-panel,
  .opening-door-panel::before,
  .opening-door-center,
  .opening-door-wordmark,
  .bridge-line,
  .opening-door-center--bridge::before {
    animation-duration: 0.6s !important;
    animation-delay: 0s !important;
  }
}


/* ===== 开屏桥梁优化 v11：桥与字放大 + 线完成后轻微发光再开门 ===== */
.opening-door-center--bridge {
  gap: 18px;
}

.opening-door-bridge {
  width: clamp(156px, 17vw, 238px) !important;
  filter: drop-shadow(0 16px 34px rgba(0, 90, 156, 0.16));
}

.opening-door-wordmark {
  font-size: 13px !important;
  letter-spacing: .22em !important;
}

.bridge-line {
  stroke-width: 3.35;
}

.bridge-arch {
  stroke-width: 3.55;
}

.bridge-base,
.bridge-pillar {
  stroke-width: 2.85;
}

/* 光晕改成“桥画完后轻轻亮一下”，然后门再几乎无缝打开 */
.opening-door-center--bridge::before {
  width: clamp(172px, 19vw, 264px) !important;
  height: clamp(172px, 19vw, 264px) !important;
  background: radial-gradient(circle,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.54) 28%,
    rgba(0,143,201,0.16) 54%,
    rgba(255,255,255,0.10) 72%,
    transparent 100%) !important;
  filter: blur(5px);
  opacity: 0;
  animation: openingDoorBridgePulse 0.52s ease 1.48s forwards !important;
}

/* 让文字稍晚一点出现，跟桥更同步 */
.opening-door-wordmark {
  animation: openingDoorWordmarkRevealLarge 0.92s ease 0.72s forwards !important;
}

/* 门稍微再晚一点点启动，给光晕留一个短暂停顿 */
.opening-door-panel {
  animation-delay: 0.90s !important;
  animation-duration: 3.00s !important;
}

.opening-door-panel::before {
  animation-delay: 0.90s !important;
  animation-duration: 3.00s !important;
}

.opening-door::before {
  animation: openingDoorSeamBridgeSyncV11 3.12s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.opening-door {
  animation: openingDoorShellBridgeSyncV11 3.98s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

@keyframes openingDoorWordmarkRevealLarge {
  0% {
    opacity: 0;
    transform: translateY(5px);
    letter-spacing: .26em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: .22em;
  }
}

@keyframes openingDoorBridgePulse {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  45% {
    opacity: 0.92;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.40;
    transform: scale(1.06);
  }
}

@keyframes openingDoorSeamBridgeSyncV11 {
  0%, 58% {
    opacity: 0.9;
    transform: translateX(-50%) scaleX(1);
  }
  86% {
    opacity: 0.34;
    transform: translateX(-50%) scaleX(1.03);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(1.05);
  }
}

@keyframes openingDoorShellBridgeSyncV11 {
  0% { opacity: 1; visibility: visible; }
  94% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* 在桥线完成后，再开始开门 */
@keyframes openingDoorLeft {
  0%, 50% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes openingDoorRight {
  0%, 50% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(100%, 0, 0); }
}

@media (max-width: 640px) {
  .opening-door-bridge {
    width: clamp(136px, 38vw, 184px) !important;
  }

  .opening-door-wordmark {
    font-size: 11px !important;
    letter-spacing: .18em !important;
  }

  .opening-door-center--bridge::before {
    width: clamp(150px, 42vw, 210px) !important;
    height: clamp(150px, 42vw, 210px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-door-center--bridge::before,
  .opening-door-wordmark {
    animation-duration: 0.6s !important;
    animation-delay: 0s !important;
  }
}


/* ===== 开屏桥梁 v12：去掉发光，保留放大后的桥与字 ===== */
.opening-door-center--bridge::before {
  animation: none !important;
  opacity: 0 !important;
  display: none !important;
}

/* 去掉桥画完后的 pulse，只保留桥完成 -> 门开启 */
.opening-door-panel {
  animation-delay: 0.84s !important;
  animation-duration: 2.96s !important;
}

.opening-door-panel::before {
  animation-delay: 0.84s !important;
  animation-duration: 2.96s !important;
}

.opening-door::before {
  animation: openingDoorSeamBridgeSyncV12 3.04s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.opening-door {
  animation: openingDoorShellBridgeSyncV12 3.90s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

@keyframes openingDoorSeamBridgeSyncV12 {
  0%, 55% {
    opacity: 0.9;
    transform: translateX(-50%) scaleX(1);
  }
  84% {
    opacity: 0.34;
    transform: translateX(-50%) scaleX(1.03);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(1.05);
  }
}

@keyframes openingDoorShellBridgeSyncV12 {
  0% { opacity: 1; visibility: visible; }
  94% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* 没有发光停顿时，门仍然稍晚于桥完成再开，保持从容感 */
@keyframes openingDoorLeft {
  0%, 48% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes openingDoorRight {
  0%, 48% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(100%, 0, 0); }
}

/* ===== 开屏期间锁定页面切换：禁止滚轮、触控和键盘翻页 ===== */
html.opening-lock,
html.opening-lock body {
  overflow: hidden !important;
  overscroll-behavior: none !important;
  touch-action: none !important;
}

html.opening-lock {
  scroll-behavior: auto !important;
}

html.opening-lock body {
  position: fixed;
  inset: 0;
  width: 100%;
}

/* ===== 开屏滚动条防抖：预留滚动条位置，避免开屏结束页面横向跳动 ===== */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

/* 覆盖上一版 opening-lock 里的 overflow hidden / fixed body。
   滚动动作继续由 JS 拦截，但视觉上始终保留右侧滚动条空间。 */
html.opening-lock,
html.opening-lock body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: none !important;
  touch-action: none !important;
}

html.opening-lock body {
  position: static !important;
  inset: auto !important;
  width: auto !important;
}

/* ===== 全站隐藏浏览器右侧滚动条，但保留页面滚动能力 ===== */
html,
body {
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* Old Edge / IE */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* 因为滚动条全程隐藏，不再需要预留滚动条沟槽 */
html {
  scrollbar-gutter: auto !important;
}

/* 开屏锁定期间继续拦截滚动动作，但不显示滚动条 */
html.opening-lock,
html.opening-lock body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html.opening-lock::-webkit-scrollbar,
html.opening-lock body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}


/* =========================================================
   MINIMAL POLISH v1：只保留用户确认的四项优化
   1. 首页字体比例
   2. 顶栏 Logo 比例
   3. 第二页服务项目排版
   4. 右侧联系我们浮动按钮位置与阴影
   ========================================================= */

/* 1) 顶栏 Logo：略微收敛，不改变整体结构 */
:root {
  --logo: 74px;
}

.site-header {
  background: rgba(255, 255, 255, 0.965);
}

.brand {
  gap: 5px;
}

.brand-text {
  padding-left: 6px;
}

.brand-cn {
  font-size: 21px;
  letter-spacing: 0.035em;
}

.brand-en {
  font-size: 8.5px;
  letter-spacing: 0.15em;
}

/* 2) 首页首屏字体：降低压迫感，保留原来的气势 */
.hero-content {
  max-width: 840px;
}

.hero h1 {
  font-size: clamp(34px, 4.25vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.95;
}

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

.hero-proof {
  margin-top: 22px;
}

.notice {
  margin-top: 20px;
}

/* 3) 第二页服务项目排版：标题拆层，降低上方压迫感 */
#services .screen-heading.compact h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--primary-dark);
}

#services .screen-subtitle {
  margin: -8px 0 14px !important;
  color: var(--primary-dark) !important;
  font-size: clamp(20px, 2.2vw, 30px) !important;
  line-height: 1.35 !important;
  font-weight: 900;
  letter-spacing: -0.025em;
}

#services .screen-heading.compact > p:not(.section-label):not(.screen-subtitle) {
  max-width: 980px;
  font-size: 14px;
  line-height: 1.75;
}

/* 服务卡片保持原有风格，只微调阴影，不改内容与图标逻辑 */
#services .service-direction-grid .project-card {
  box-shadow: 0 14px 36px rgba(0, 90, 156, 0.048);
}

#services .service-direction-grid .project-card:hover {
  box-shadow: 0 20px 48px rgba(0, 90, 156, 0.075);
}

/* 4) 右侧联系我们浮动按钮：下移、减轻阴影 */
.floating-contact-fab {
  top: calc(50% + 250px);
  right: 20px;
  width: 60px;
  height: 60px;
  box-shadow: 0 12px 24px rgba(0, 90, 156, 0.14), 0 3px 8px rgba(0, 143, 201, 0.10);
  background: linear-gradient(135deg, rgba(0, 143, 201, 0.94), rgba(0, 90, 156, 0.96));
}

.floating-contact-fab:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 16px 30px rgba(0, 90, 156, 0.18), 0 4px 10px rgba(0, 143, 201, 0.13);
}

.floating-contact-fab__icon {
  width: 25px;
  height: 25px;
}

.floating-contact-fab__label {
  right: 72px;
  background: rgba(255, 255, 255, 0.94);
}

/* 移动端保护，只跟随上述四项优化 */
@media (max-width: 980px) {
  :root {
    --logo: 68px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 46px);
  }

  #services .screen-heading.compact h2 {
    font-size: clamp(30px, 8.2vw, 42px);
  }

  #services .screen-subtitle {
    font-size: clamp(20px, 5.8vw, 28px) !important;
  }

  .floating-contact-fab {
    top: auto;
    right: 16px;
    bottom: 12px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 640px) {
  .brand-cn {
    font-size: 19px;
  }

  .brand-en {
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.2;
  }

  .hero-text {
    font-size: 15.5px;
  }

  #services .screen-heading.compact > p:not(.section-label):not(.screen-subtitle) {
    font-size: 13px;
  }
}


/* =========================================================
   MINIMAL POLISH v2：第三页与第二页风格统一
   只统一标题层级、背景基调、卡片质感和留白，不新增装饰。
   ========================================================= */

/* 第三页背景改回白色，和第二页保持同一个视觉系统 */
#projects.section.light {
  background: #fff;
}

/* 第三页标题结构和第二页一致 */
#projects .screen-heading.compact h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--primary-dark);
}

#projects .screen-subtitle {
  margin: -8px 0 14px !important;
  color: var(--primary-dark) !important;
  font-size: clamp(20px, 2.2vw, 30px) !important;
  line-height: 1.35 !important;
  font-weight: 900;
  letter-spacing: -0.025em;
}

#projects .screen-heading.compact > p:not(.section-label):not(.screen-subtitle) {
  max-width: 980px;
  font-size: 14px;
  line-height: 1.75;
}

/* 第三页卡片质感与第二页统一，但保留 2×2 格局 */
#projects .project-entry-grid .project-card {
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0, 90, 156, 0.048);
}

#projects .project-entry-grid .project-card:hover {
  box-shadow: 0 20px 48px rgba(0, 90, 156, 0.075);
}

/* 第三页卡片内部文字尺度略向第二页靠拢 */
@media (min-width: 981px) {
  #projects .project-entry-grid .project-card {
    padding: 24px 26px;
  }

  #projects .project-entry-grid .project-card h3 {
    font-size: 21px;
    line-height: 1.34;
    margin-bottom: 7px;
  }

  #projects .project-entry-grid .project-card p {
    font-size: 13.5px;
    line-height: 1.68;
  }

  #projects .service-note {
    margin-top: 18px;
    padding: 15px 18px;
  }

  #projects .service-note p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
  }
}

@media (max-width: 980px) {
  #projects .screen-heading.compact h2 {
    font-size: clamp(30px, 8.2vw, 42px);
  }

  #projects .screen-subtitle {
    font-size: clamp(20px, 5.8vw, 28px) !important;
  }
}

@media (max-width: 640px) {
  #projects .screen-heading.compact > p:not(.section-label):not(.screen-subtitle) {
    font-size: 13px;
  }
}


/* =========================================================
   REORDER CLEAN v2：只调整顺序，避免新增复杂布局
   ========================================================= */

/* 第二屏“为什么选择”：复用原卡片风格，不搞新四宫格 */
#why {
  background: #fff;
}

.why-clean-screen {
  width: 100%;
}

.why-clean-screen .screen-heading.compact {
  margin-bottom: 24px;
}

.why-clean-screen .screen-heading.compact h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--primary-dark);
}

.why-clean-screen .screen-heading.compact > p:not(.section-label) {
  max-width: 880px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.why-clean-grid .card {
  min-height: 190px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid rgba(0, 169, 199, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(0, 90, 156, 0.048);
}

.why-clean-grid .card:nth-child(2) {
  border-top-color: rgba(117, 191, 67, 0.74);
  background: linear-gradient(135deg, #ffffff 0%, #f8fcfd 100%);
}

.why-clean-grid .card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}

.why-clean-grid .card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.74;
}

/* 关于/初心：一张轻量横向说明卡，不破坏首页节奏 */
#story {
  background: var(--bg-light);
}

.story-clean-screen {
  width: 100%;
}

.story-clean-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid rgba(0, 143, 201, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 42px rgba(0, 90, 156, 0.055);
}

.story-clean-card h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.035em;
  color: var(--primary-dark);
}

.story-clean-card p:not(.section-label) {
  max-width: 840px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.86;
}

.story-clean-card .button {
  margin-top: 16px;
}

/* FAQ 独立后居中，避免空散 */
.faq-clean-screen {
  display: flex;
  justify-content: center;
  width: 100%;
}

.faq-clean-screen .faq-wrap {
  width: min(900px, 100%);
}

/* 右侧导航项变多后，稍微收紧，不挡视线 */
.side-nav {
  gap: 11px;
}

.side-nav a {
  width: 12px;
  height: 12px;
}

.side-nav a.active {
  height: 25px;
}

/* 移动端：改为自然高度 */
@media (max-width: 980px) {
  #why,
  #story,
  #faq {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 58px 0;
  }

  .why-clean-grid {
    grid-template-columns: 1fr;
  }

  .why-clean-grid .card {
    min-height: auto;
  }

  .story-clean-card {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .why-clean-screen .screen-heading.compact h2,
  .story-clean-card h2 {
    font-size: clamp(30px, 8.2vw, 40px);
  }

  .why-clean-grid {
    gap: 14px;
  }

  .why-clean-grid .card {
    padding: 20px;
  }

  .story-clean-card {
    padding: 24px 20px;
  }
}


/* =========================================================
   FIX v3：修复“为什么选择仁济康桥”第二屏布局溢出与 Logo 挤压
   只修复布局，不新增内容，不改变页面顺序。
   ========================================================= */

/* 顶栏 Logo 防止挤压换行 */
.site-header .brand {
  flex-shrink: 0;
  min-width: 190px;
  max-width: 260px;
  overflow: visible;
}

.site-header .brand-logo {
  width: 74px;
  min-width: 74px;
  flex: 0 0 auto;
}

.site-header .brand-text {
  flex: 0 0 auto;
  min-width: 118px;
  white-space: nowrap;
}

.site-header .brand-cn,
.site-header .brand-en {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* 顶栏导航略微压缩，给 Logo 留空间 */
.site-header .nav {
  gap: 14px;
}

.site-header .nav a {
  white-space: nowrap;
}

/* 第二屏 why：强制回到正常居中容器，不允许向左/向右溢出 */
#why.snap-section {
  align-items: center;
  justify-content: center;
  padding: 42px 0;
  overflow: hidden;
  background: #fff;
}

#why .why-clean-screen {
  width: min(var(--container), 92%);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  transform: none !important;
}

/* 标题区域不要贴边，也不要掉到下方 */
#why .screen-heading.compact {
  width: 100%;
  max-width: 920px;
  margin: 0 0 26px;
}

#why .screen-heading.compact .section-label {
  margin: 0 0 8px;
}

#why .screen-heading.compact h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 3.35vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: var(--primary-dark);
  white-space: normal;
  word-break: keep-all;
}

#why .screen-heading.compact > p:not(.section-label) {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* 三张卡片回到页面内部，避免第三张被右侧导航区域压住 */
#why .why-clean-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#why .why-clean-grid .card {
  min-width: 0;
  min-height: 184px;
  padding: 24px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid rgba(0, 169, 199, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(0, 90, 156, 0.048);
}

#why .why-clean-grid .card:nth-child(2) {
  border-top-color: rgba(117, 191, 67, 0.74);
  background: linear-gradient(135deg, #ffffff 0%, #f8fcfd 100%);
}

#why .why-clean-grid .card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--text);
}

#why .why-clean-grid .card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.74;
}

/* 右侧导航在 why 页不要压视觉中心 */
.side-nav {
  right: 28px;
}

/* 中等宽度时，避免卡片太挤 */
@media (max-width: 1180px) and (min-width: 981px) {
  .site-header .brand {
    min-width: 176px;
  }

  .site-header .nav {
    gap: 11px;
    font-size: 13px;
  }

  #why .why-clean-grid {
    gap: 14px;
  }

  #why .why-clean-grid .card {
    padding: 22px 20px;
  }

  #why .why-clean-grid .card h3 {
    font-size: 19px;
  }

  #why .why-clean-grid .card p {
    font-size: 13.5px;
  }
}

/* 平板与手机：自然高度，不裁切 */
@media (max-width: 980px) {
  .site-header .brand {
    min-width: auto;
    max-width: none;
  }

  .site-header .brand-logo {
    width: 68px;
    min-width: 68px;
  }

  #why.snap-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 58px 0;
  }

  #why .why-clean-grid {
    grid-template-columns: 1fr;
  }

  #why .why-clean-grid .card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  #why .screen-heading.compact h2 {
    font-size: clamp(30px, 8.2vw, 40px);
  }

  #why .screen-heading.compact > p:not(.section-label) {
    font-size: 13.5px;
  }

  #why .why-clean-grid .card {
    padding: 20px;
  }
}


/* =========================================================
   REORDER v4：第二屏改为非卡片式左右分栏，降低卡片审美疲劳
   ========================================================= */

/* 第二屏 Why：非卡片式，左右分栏 + 编号列表 */
#why.why-section {
  background: #fff;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 42px 0;
}

.why-split-screen {
  width: min(var(--container), 92%);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.why-split-copy {
  position: relative;
}

.why-split-copy::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 143, 201, 0.22), rgba(117, 191, 67, 0.18), transparent);
}

.why-split-copy h2 {
  margin: 0 0 22px;
  color: var(--primary-dark);
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.why-lead {
  margin: 0;
  max-width: 620px;
  color: var(--text);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.72;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.why-note {
  margin: 20px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.86;
}

.why-reason-list {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 4px 0;
}

.why-reason-list::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 143, 201, 0.06), rgba(0, 143, 201, 0.22), rgba(117, 191, 67, 0.20), rgba(0, 143, 201, 0.06));
}

.why-reason {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0 18px 0;
}

.why-reason span {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 90, 156, 0.12);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.why-reason:nth-child(even) span {
  background: linear-gradient(135deg, var(--green), var(--primary));
}

.why-reason h3 {
  margin: 0 0 7px;
  color: var(--primary-dark);
  font-size: 22px;
  line-height: 1.35;
}

.why-reason p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.78;
}

/* 关于/初心：短文横幅，不使用卡片堆叠 */
#story.story-band-section {
  background: var(--bg-light);
}

.story-band-screen {
  width: min(var(--container), 92%);
  max-width: var(--container);
  margin: 0 auto;
}

.story-band {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 42px 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,253,255,0.92));
  border: 1px solid rgba(0, 143, 201, 0.14);
  box-shadow: 0 16px 42px rgba(0, 90, 156, 0.052);
  overflow: hidden;
}

.story-band::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -62px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 143, 201, 0.06), transparent 68%);
  pointer-events: none;
}

.story-band h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--primary-dark);
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.story-band p:not(.section-label) {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.86;
}

.story-band .button {
  position: relative;
  z-index: 1;
  margin-top: 16px;
}

/* FAQ 独立后居中 */
.faq-clean-screen {
  display: flex;
  justify-content: center;
  width: 100%;
}

.faq-clean-screen .faq-wrap {
  width: min(900px, 100%);
}

/* 覆盖旧 v3 对 why 卡片的规则，避免残留 */
#why .why-clean-screen,
#why .why-clean-grid,
#why .why-clean-grid .card {
  all: unset;
}

/* 右侧导航项变多后保持克制 */
.side-nav {
  gap: 11px;
}

.side-nav a {
  width: 12px;
  height: 12px;
}

.side-nav a.active {
  height: 25px;
}

/* 顶栏 Logo 防止被挤压换行 */
.site-header .brand {
  flex-shrink: 0;
  min-width: 190px;
  max-width: 260px;
  overflow: visible;
}

.site-header .brand-logo {
  width: 74px;
  min-width: 74px;
  flex: 0 0 auto;
}

.site-header .brand-text,
.site-header .brand-cn,
.site-header .brand-en {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* 响应式 */
@media (max-width: 1180px) and (min-width: 981px) {
  .why-split-screen {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: 46px;
  }

  .why-split-copy h2 {
    font-size: clamp(34px, 3.7vw, 48px);
  }

  .why-lead {
    font-size: 18px;
  }

  .why-reason h3 {
    font-size: 20px;
  }

  .site-header .brand {
    min-width: 176px;
  }

  .site-header .nav {
    gap: 11px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  #why.why-section,
  #story.story-band-section,
  #faq {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 58px 0;
  }

  .why-split-screen {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why-split-copy::after {
    display: none;
  }

  .why-split-copy h2 {
    font-size: clamp(32px, 8.4vw, 44px);
  }

  .why-lead {
    font-size: 17px;
  }

  .story-band {
    padding: 30px 26px;
  }

  .site-header .brand {
    min-width: auto;
    max-width: none;
  }

  .site-header .brand-logo {
    width: 68px;
    min-width: 68px;
  }
}

@media (max-width: 640px) {
  .why-reason {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 0;
  }

  .why-reason-list::before {
    left: 18px;
  }

  .why-reason span {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .why-reason h3 {
    font-size: 19px;
  }

  .why-reason p {
    font-size: 13.5px;
  }

  .story-band {
    padding: 26px 22px;
  }

  .story-band h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
}


/* ===== 第二屏：创始人寄语（仅新增，不改其它布局） ===== */
.founder-message {
  position: relative;
  max-width: 620px;
  margin-top: 26px;
  padding: 18px 0 2px 18px;
  border-left: 2px solid rgba(0, 143, 201, 0.28);
}

.founder-message::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 18px;
  width: 2px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--green));
}

.founder-message-title {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.founder-message-quote {
  margin: 0;
  color: rgba(21, 63, 92, 0.92);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.founder-message-text {
  margin: 12px 0 0;
  color: rgba(79, 111, 125, 0.92);
  font-size: 13.5px;
  line-height: 1.78;
}

.founder-message-sign {
  margin: 10px 0 0;
  color: rgba(0, 90, 156, 0.72);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .founder-message {
    margin-top: 22px;
  }

  .founder-message-quote {
    font-size: 16px;
  }

  .founder-message-text {
    font-size: 13px;
    line-height: 1.68;
  }
}

@media (max-width: 640px) {
  .founder-message {
    margin-top: 22px;
    padding-left: 15px;
  }

  .founder-message-quote {
    font-size: 15.5px;
  }

  .founder-message-text,
  .founder-message-sign {
    font-size: 12.8px;
  }
}


/* ===== 创始人寄语移至首页左下角：轻量版 ===== */
.hero-founder-message {
  position: relative;
  max-width: 620px;
  margin-top: 18px;
  padding: 13px 0 0 16px;
  border-left: 2px solid rgba(0, 143, 201, 0.24);
}

.hero-founder-message::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 13px;
  width: 2px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--green));
}

.hero-founder-message p {
  margin: 0;
  color: rgba(21, 63, 92, 0.76);
  font-size: 13.5px;
  line-height: 1.72;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-founder-message span {
  display: inline-block;
  margin-top: 7px;
  color: rgba(0, 90, 156, 0.64);
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

/* 移走后，第二屏恢复清爽；如果旧块残留也不显示 */
#why .founder-message {
  display: none !important;
}

@media (max-height: 850px) and (min-width: 981px) {
  .hero-founder-message {
    margin-top: 14px;
    padding-top: 10px;
  }

  .hero-founder-message p {
    font-size: 12.8px;
    line-height: 1.62;
  }

  .hero-founder-message span {
    margin-top: 5px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .hero-founder-message {
    margin-top: 16px;
    padding-left: 14px;
  }

  .hero-founder-message p {
    font-size: 13px;
  }

  .hero-founder-message span {
    font-size: 12px;
  }
}


/* ===== 第二屏创始人寄语：底部横向轻量带 ===== */
/* 如果上一版首页寄语样式残留，隐藏它 */
.hero-founder-message,
#why .founder-message {
  display: none !important;
}

/* 让第二屏容纳底部寄语带，不挤压左右主结构 */
#why.why-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

#why .why-split-screen {
  align-items: center;
  row-gap: 24px;
}

.why-founder-band {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.95fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 4px;
  padding: 18px 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(247,252,253,0.84) 100%);
  border: 1px solid rgba(0, 143, 201, 0.14);
  border-left: 4px solid rgba(0, 143, 201, 0.58);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 90, 156, 0.045);
  overflow: hidden;
}

.why-founder-band::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -76px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 143, 201, 0.06), transparent 68%);
  pointer-events: none;
}

.why-founder-band-copy,
.why-founder-band-text,
.why-founder-band-sign {
  position: relative;
  z-index: 1;
}

.why-founder-band-title {
  margin: 0 0 5px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.why-founder-band-quote {
  margin: 0;
  color: rgba(21, 63, 92, 0.92);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.62;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.why-founder-band-text {
  margin: 0;
  color: rgba(79, 111, 125, 0.92);
  font-size: 13px;
  line-height: 1.7;
}

.why-founder-band-sign {
  margin: 0;
  color: rgba(0, 90, 156, 0.72);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* 为底部寄语腾出空间：略微压缩第二屏主内容间距，但不改变整体结构 */
@media (min-width: 981px) {
  #why .why-split-copy h2 {
    margin-bottom: 16px;
  }

  #why .why-lead {
    line-height: 1.62;
  }

  #why .why-note {
    margin-top: 14px;
    line-height: 1.72;
  }

  #why .why-reason {
    padding: 13px 0;
  }

  #why .why-reason h3 {
    margin-bottom: 5px;
  }

  #why .why-reason p {
    line-height: 1.64;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .why-founder-band {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
    gap: 16px 20px;
    padding: 16px 20px;
  }

  .why-founder-band-sign {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .why-founder-band-text {
    font-size: 12.6px;
  }

  .why-founder-band-quote {
    font-size: 15px;
  }
}

@media (max-width: 980px) {
  .why-founder-band {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
    padding: 22px;
  }

  .why-founder-band-sign {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .why-founder-band {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .why-founder-band-quote {
    font-size: 15px;
  }

  .why-founder-band-text,
  .why-founder-band-sign {
    font-size: 12.8px;
  }
}


/* ===== 创始人寄语：首页之后单独一屏试验版 ===== */
/* 清理前一版第二页底部寄语带残留 */
.why-founder-band {
  display: none !important;
}

#founder.founder-standalone-section {
  position: relative;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(0, 143, 201, 0.055) 0%, rgba(0, 143, 201, 0.020) 34%, transparent 70%),
    radial-gradient(ellipse at 84% 76%, rgba(117, 191, 67, 0.050) 0%, rgba(117, 191, 67, 0.016) 36%, transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f6fcfd 100%);
  overflow: hidden;
}

#founder.founder-standalone-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 143, 201, 0.070), transparent 68%);
  pointer-events: none;
}

.founder-standalone-screen {
  position: relative;
  z-index: 1;
  width: min(var(--container), 92%);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.founder-standalone-main {
  max-width: 780px;
}

.founder-standalone-main h2 {
  margin: 0 0 26px;
  color: var(--primary-dark);
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.founder-standalone-quote {
  margin: 0;
  color: rgba(21, 63, 92, 0.94);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.62;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.founder-standalone-text {
  margin: 24px 0 0;
  max-width: 760px;
  color: rgba(79, 111, 125, 0.94);
  font-size: 16px;
  line-height: 1.95;
}

.founder-standalone-sign {
  margin: 22px 0 0;
  color: rgba(0, 90, 156, 0.76);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.founder-standalone-side {
  display: grid;
  gap: 16px;
}

.founder-standalone-side > div {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 143, 201, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0, 90, 156, 0.045);
}

.founder-standalone-side span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.founder-standalone-side strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-size: 21px;
  line-height: 1.35;
}

.founder-standalone-side p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.72;
}

/* 侧边导航多一项后压紧一点 */
.side-nav {
  gap: 10px;
}

.side-nav a {
  width: 12px;
  height: 12px;
}

.side-nav a.active {
  height: 25px;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .founder-standalone-screen {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 46px;
  }

  .founder-standalone-main h2 {
    font-size: clamp(34px, 3.6vw, 48px);
  }

  .founder-standalone-quote {
    font-size: 20px;
  }

  .founder-standalone-text {
    font-size: 14.5px;
    line-height: 1.82;
  }

  .founder-standalone-side > div {
    padding: 18px 20px;
  }
}

@media (max-width: 980px) {
  #founder.founder-standalone-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 58px 0;
  }

  .founder-standalone-screen {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .founder-standalone-main h2 {
    font-size: clamp(30px, 8.2vw, 40px);
  }

  .founder-standalone-quote {
    font-size: 18px;
  }

  .founder-standalone-text {
    font-size: 13.8px;
    line-height: 1.78;
  }

  .founder-standalone-side > div {
    padding: 18px;
  }
}


/* ===== 创始人寄语独立页：去掉右侧三框，改为克制居中版 ===== */
#founder .founder-standalone-screen {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: start;
  align-items: center;
  width: min(980px, 88%);
}

#founder .founder-standalone-main {
  max-width: 860px;
}

#founder .founder-standalone-side {
  display: none !important;
}

#founder .founder-standalone-main h2 {
  max-width: 760px;
}

#founder .founder-standalone-quote {
  max-width: 820px;
}

#founder .founder-standalone-text {
  max-width: 780px;
}

/* 去掉右侧卡片后，给页面右侧留一点轻微空气感 */
#founder.founder-standalone-section::after {
  right: -160px;
  bottom: -190px;
  width: 460px;
  height: 460px;
  opacity: 0.82;
}

@media (min-width: 981px) {
  #founder .founder-standalone-screen {
    transform: translateX(-3%);
  }
}

@media (max-width: 980px) {
  #founder .founder-standalone-screen {
    width: min(92%, 760px);
    transform: none;
  }
}


/* ===== 创始人寄语页：纯情绪居中版 ===== */
/* 彻底隐藏前版右侧原则框或残留项 */
#founder .founder-standalone-side,
#founder .founder-standalone-side *,
#founder .founder-standalone-main {
  display: none !important;
}

#founder.founder-emotional-section {
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 42px 0;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(0, 143, 201, 0.055) 0%, rgba(0, 143, 201, 0.020) 34%, transparent 70%),
    radial-gradient(ellipse at 82% 78%, rgba(117, 191, 67, 0.050) 0%, rgba(117, 191, 67, 0.016) 36%, transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
  overflow: hidden;
}

#founder.founder-emotional-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 760px);
  height: min(72vw, 760px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.42) 34%, rgba(0,143,201,0.035) 62%, transparent 100%);
  pointer-events: none;
}

#founder.founder-emotional-section::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -190px;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 143, 201, 0.060), transparent 68%);
  pointer-events: none;
}

.founder-emotional-screen {
  position: relative;
  z-index: 1;
  width: min(920px, 88%);
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 不是传统卡片，是一块很轻的“情绪留白” */
.founder-emotional-card {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.founder-emotional-card .section-label {
  margin: 0 0 18px;
  color: rgba(0, 90, 156, 0.72);
}

.founder-emotional-card h2 {
  margin: 0 0 30px;
  color: var(--primary-dark);
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.founder-emotional-quote {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(21, 63, 92, 0.94);
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.72;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.founder-emotional-text {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(79, 111, 125, 0.90);
  font-size: 16px;
  line-height: 2;
}

.founder-emotional-sign {
  margin: 28px auto 0;
  color: rgba(0, 90, 156, 0.76);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

/* 侧边导航多一项时保持紧凑 */
.side-nav {
  gap: 10px;
}

.side-nav a {
  width: 12px;
  height: 12px;
}

.side-nav a.active {
  height: 25px;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .founder-emotional-screen {
    width: min(860px, 86%);
  }

  .founder-emotional-card h2 {
    font-size: clamp(34px, 3.7vw, 50px);
    margin-bottom: 24px;
  }

  .founder-emotional-quote {
    font-size: 22px;
    line-height: 1.66;
  }

  .founder-emotional-text {
    margin-top: 22px;
    font-size: 14.5px;
    line-height: 1.86;
  }

  .founder-emotional-sign {
    margin-top: 22px;
  }
}

@media (max-width: 980px) {
  #founder.founder-emotional-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 70px 0;
  }

  .founder-emotional-screen {
    width: min(92%, 760px);
  }
}

@media (max-width: 640px) {
  .founder-emotional-card h2 {
    font-size: clamp(30px, 8.2vw, 40px);
    margin-bottom: 22px;
  }

  .founder-emotional-quote {
    font-size: 18px;
    line-height: 1.76;
  }

  .founder-emotional-text {
    font-size: 13.8px;
    line-height: 1.86;
    margin-top: 22px;
  }

  .founder-emotional-sign {
    font-size: 13px;
    margin-top: 22px;
  }
}


/* ===== 创始人寄语页：预留手写签名位置 ===== */
.founder-signature-space {
  width: min(260px, 54vw);
  height: 74px;
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 90, 156, 0.22);
  font-family: "Brush Script MT", "Segoe Script", "Snell Roundhand", cursive;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
  transform: rotate(-1.5deg);
  user-select: none;
  pointer-events: none;
}

/* 如果后续替换成真实签名图，用这个结构即可：
   <div class="founder-signature-space"><img src="signature.png" alt="张宁签名"></div>
*/
.founder-signature-space img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.68;
  filter: sepia(1) hue-rotate(165deg) saturate(0.9) brightness(0.72);
}

.founder-emotional-sign {
  margin-top: 8px !important;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .founder-signature-space {
    height: 62px;
    margin-top: 22px;
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .founder-signature-space {
    width: min(210px, 60vw);
    height: 56px;
    margin-top: 20px;
    font-size: 28px;
  }
}


/* ===== 创始人寄语页：增强层次感版本 ===== */
#founder.founder-emotional-section {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.36) 30%, rgba(0,143,201,0.024) 60%, transparent 100%),
    linear-gradient(180deg, #eef6f8 0%, #f8fcfd 56%, #eef7f7 100%);
}

#founder.founder-emotional-section::before {
  width: min(64vw, 680px);
  height: min(64vw, 680px);
  background:
    radial-gradient(circle, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.52) 32%, rgba(0,143,201,0.045) 63%, transparent 100%);
}

#founder.founder-emotional-section::after {
  right: -120px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(117, 191, 67, 0.048), transparent 68%);
}

.founder-emotional-screen {
  width: min(980px, 90%);
  max-width: 980px;
}

.founder-emotional-card-layered {
  position: relative;
  width: min(860px, 100%);
  margin: 0 auto;
}

.founder-emotional-card-layered .section-label {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(0, 90, 156, 0.64);
}

.founder-emotional-card-layered h2 {
  margin-bottom: 26px;
  font-size: clamp(40px, 4.35vw, 62px);
  line-height: 1.08;
}

.founder-quote-block {
  width: min(880px, 100%);
  margin: 0 auto;
}

.founder-quote-line {
  width: 96px;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 143, 201, 0.26) 25%, rgba(117, 191, 67, 0.32) 50%, rgba(0, 143, 201, 0.26) 75%, transparent 100%);
}

.founder-quote-block .founder-quote-line:last-child {
  margin-top: 24px;
  margin-bottom: 0;
}

.founder-emotional-quote {
  max-width: 900px;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.58;
  letter-spacing: -0.035em;
}

.founder-emotional-text {
  max-width: 720px;
  margin: 34px auto 0;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(79, 111, 125, 0.9);
}

.founder-signature-space {
  width: min(420px, 62vw);
  height: 112px;
  margin-top: 26px;
  color: rgba(0, 90, 156, 0.18);
  font-size: 40px;
}

.founder-emotional-sign {
  position: relative;
  display: inline-block;
  margin-top: 6px !important;
  padding-top: 16px;
  color: rgba(0, 90, 156, 0.76);
}

.founder-emotional-sign::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(0, 143, 201, 0.18);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .founder-emotional-card-layered h2 {
    font-size: clamp(36px, 4vw, 54px);
    margin-bottom: 22px;
  }

  .founder-emotional-quote {
    font-size: 24px;
    line-height: 1.62;
  }

  .founder-emotional-text {
    max-width: 680px;
    font-size: 14px;
    margin-top: 28px;
  }

  .founder-signature-space {
    width: min(360px, 58vw);
    height: 94px;
    font-size: 36px;
  }
}

@media (max-width: 980px) {
  .founder-emotional-card-layered h2 {
    margin-bottom: 20px;
  }

  .founder-quote-line {
    width: 72px;
    margin-bottom: 12px;
  }

  .founder-quote-block .founder-quote-line:last-child {
    margin-top: 18px;
  }

  .founder-emotional-text {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .founder-emotional-card-layered h2 {
    font-size: clamp(30px, 8.2vw, 42px);
    line-height: 1.14;
  }

  .founder-emotional-quote {
    font-size: 19px;
    line-height: 1.72;
  }

  .founder-emotional-text {
    font-size: 13.4px;
    line-height: 1.85;
    margin-top: 24px;
  }

  .founder-signature-space {
    width: min(260px, 70vw);
    height: 70px;
    font-size: 30px;
  }
}


/* ===== 创始人寄语页：签名缩小，回到落款角色 ===== */
#founder .founder-signature-space {
  width: min(260px, 48vw) !important;
  height: 70px !important;
  margin-top: 20px !important;
  font-size: 30px !important;
}

#founder .founder-signature-space img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  opacity: 0.62;
}

#founder .founder-emotional-sign {
  margin-top: 4px !important;
  padding-top: 12px !important;
  font-size: 14px;
}

#founder .founder-emotional-sign::before {
  width: 56px;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #founder .founder-signature-space {
    width: min(230px, 44vw) !important;
    height: 62px !important;
    margin-top: 18px !important;
    font-size: 28px !important;
  }
}

@media (max-width: 640px) {
  #founder .founder-signature-space {
    width: min(190px, 56vw) !important;
    height: 52px !important;
    margin-top: 18px !important;
    font-size: 24px !important;
  }

  #founder .founder-emotional-sign {
    font-size: 12.5px;
  }
}

/* ===== 第二页微调：去掉左侧泡泡，改成更克制的质感层 ===== */
#founder.founder-emotional-section {
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.42) 24%, rgba(255,255,255,0.08) 44%, transparent 66%),
    linear-gradient(180deg, #eef6f8 0%, #f8fcfd 56%, #eff7f6 100%) !important;
}

/* 去掉左侧那个容易像“坏屏”的泡 */
#founder.founder-emotional-section::before {
  display: none !important;
}

/* 把右下角泡泡也弱化，改成整页极淡纹理层，更高级、更安静 */
#founder.founder-emotional-section::after {
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 18%, transparent 82%, rgba(255,255,255,0.14) 100%),
    repeating-linear-gradient(115deg, rgba(0, 90, 156, 0.012) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(60deg, rgba(117, 191, 67, 0.010) 0 1px, transparent 1px 28px) !important;
  opacity: 0.42 !important;
  filter: none !important;
  animation: none !important;
  pointer-events: none;
}

/* 在内容背后加极淡桥形水印，替代泡泡带来的层次 */
#founder .founder-emotional-screen {
  position: relative;
}

#founder .founder-emotional-screen::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: min(540px, 72vw);
  height: 170px;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  opacity: 0.048;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 180'%3E%3Cpath d='M22 142C68 138 88 124 110 100c20-22 41-50 68-50 27 0 41 21 54 42 13 21 28 42 55 42 31 0 52-24 72-52' fill='none' stroke='%23005a9c' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24 143h372' fill='none' stroke='%23005a9c' stroke-width='3' stroke-linecap='round' opacity='.66'/%3E%3Cpath d='M109 100v43M165 69v74M232 92v51M286 134v9M340 110v33' fill='none' stroke='%23005a9c' stroke-width='3' stroke-linecap='round' opacity='.66'/%3E%3C/svg%3E");
}

/* 小幅增强排版质感：标题与正文更稳、更透气 */
#founder .founder-emotional-card-layered h2 {
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
  margin-bottom: 28px;
}

#founder .founder-emotional-quote {
  text-shadow: 0 1px 0 rgba(255,255,255,0.32);
}

#founder .founder-emotional-text {
  max-width: 680px;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  #founder.founder-emotional-section::after {
    opacity: 0.28 !important;
  }

  #founder .founder-emotional-screen::before {
    width: min(360px, 82vw);
    height: 110px;
    top: 18px;
    opacity: 0.042;
  }
}


/* ===== V2：去掉首页左下角文案，并让首屏排版更饱满 ===== */
.hero-bottom-message {
  display: none !important;
}

.hero-inner {
  align-items: center;
  padding-top: clamp(34px, 6vh, 72px) !important;
  padding-bottom: clamp(72px, 12vh, 120px);
}

.hero-content {
  max-width: 760px;
}

.tagline {
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.14em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5.4vw, 70px);
  line-height: 1.09;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.88;
}

.hero-actions {
  margin-top: 34px;
}

.notice {
  max-width: 700px;
  margin-top: 28px;
  font-size: 12.5px;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .hero-inner {
    align-items: flex-start;
    padding-top: clamp(68px, 10vh, 102px) !important;
    padding-bottom: 92px;
  }

  h1 {
    font-size: clamp(38px, 8vw, 58px);
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.82;
  }
}

@media (max-width: 640px) {
  .tagline {
    font-size: 12px;
  }

  h1 {
    font-size: clamp(34px, 9.4vw, 48px);
    line-height: 1.12;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .notice {
    font-size: 12px;
    line-height: 1.72;
  }
}


/* ===== V2：第二页做更晶莹的玻璃浮雕字，不加方框 ===== */
#founder .founder-emotional-screen {
  width: min(1040px, 92%);
}

#founder .founder-emotional-card-layered {
  width: min(900px, 100%);
  perspective: 1200px;
}

#founder .founder-emotional-card-layered::before {
  content: "";
  position: absolute;
  inset: -44px -72px -52px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.42), rgba(255,255,255,0.16) 28%, transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 26%, rgba(0,143,201,0.03) 54%, rgba(255,255,255,0.14) 78%, transparent 100%);
  filter: blur(18px);
  opacity: 0.95;
}

#founder .founder-emotional-card-layered .section-label {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: rgba(0, 90, 156, 0.54) !important;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.86),
    0 10px 20px rgba(0,90,156,0.06);
}

/* 关键：文字本身采用高光渐变 + 透明填充，提升晶莹感 */
#founder .founder-emotional-card-layered h2,
#founder .founder-emotional-quote {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.98) 0%,
      rgba(234,247,255,0.98) 10%,
      rgba(159,221,247,0.96) 24%,
      rgba(255,255,255,0.82) 40%,
      rgba(72,146,188,0.96) 58%,
      rgba(206,241,250,0.92) 78%,
      rgba(255,255,255,0.98) 100%
    );
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(65, 118, 148, 0.82);
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 -1px 0 rgba(255,255,255,0.92),
    0 1px 0 rgba(176,221,241,0.34),
    0 2px 0 rgba(0,71,110,0.10),
    0 8px 18px rgba(255,255,255,0.28),
    0 16px 34px rgba(0,90,156,0.12),
    0 0 22px rgba(255,255,255,0.28);
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,0.80))
    drop-shadow(0 14px 30px rgba(0,90,156,0.10));
}

#founder .founder-emotional-card-layered h2 {
  margin-bottom: 30px;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

#founder .founder-quote-line {
  width: 118px;
  height: 2px !important;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.92) 14%,
      rgba(179,228,245,0.82) 28%,
      rgba(255,255,255,0.96) 50%,
      rgba(156,223,241,0.80) 72%,
      rgba(255,255,255,0.90) 86%,
      transparent 100%) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.82),
    0 0 12px rgba(255,255,255,0.24),
    0 12px 28px rgba(0,90,156,0.08);
}

#founder .founder-quote-block .founder-quote-line:last-child {
  margin-top: 26px;
}

#founder .founder-emotional-quote {
  max-width: 960px;
  font-size: clamp(29px, 2.95vw, 44px);
  line-height: 1.56;
  letter-spacing: -0.042em;
}

#founder .founder-emotional-text {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-top: 38px;
  font-size: 16px;
  line-height: 2.02;
  color: rgba(58, 98, 118, 0.80) !important;
  text-shadow:
    0 -1px 0 rgba(255,255,255,0.74),
    0 1px 0 rgba(0,71,110,0.05),
    0 8px 18px rgba(255,255,255,0.18);
}

#founder .founder-signature-space {
  position: relative;
  z-index: 1;
  width: min(240px, 44vw) !important;
  height: 64px !important;
  margin-top: 18px !important;
}

#founder .founder-signature-space img {
  opacity: 0.68 !important;
  filter:
    sepia(1)
    hue-rotate(164deg)
    saturate(0.82)
    brightness(0.84)
    drop-shadow(0 8px 16px rgba(0,90,156,0.08));
}

#founder .founder-emotional-sign {
  position: relative;
  z-index: 1;
  margin-top: 2px !important;
  padding-top: 11px !important;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(0,90,156,0.62) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.72);
}

#founder .founder-emotional-sign::before {
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190,230,246,0.88), transparent);
}

@media (max-width: 1180px) and (min-width: 981px) {
  #founder .founder-emotional-card-layered h2 {
    font-size: clamp(44px, 4.8vw, 62px);
  }

  #founder .founder-emotional-quote {
    font-size: clamp(26px, 2.6vw, 38px);
  }
}

@media (max-width: 980px) {
  #founder .founder-emotional-card-layered::before {
    inset: -28px -24px -38px;
    filter: blur(14px);
  }

  #founder .founder-emotional-card-layered h2 {
    margin-bottom: 24px;
    font-size: clamp(38px, 7vw, 56px);
  }

  #founder .founder-quote-line {
    width: 92px;
  }

  #founder .founder-emotional-quote {
    font-size: clamp(23px, 4.6vw, 34px);
    line-height: 1.64;
  }

  #founder .founder-emotional-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.92;
  }
}

@media (max-width: 640px) {
  #founder .founder-emotional-card-layered .section-label {
    font-size: 12px;
  }

  #founder .founder-emotional-card-layered h2 {
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.10;
  }

  #founder .founder-quote-line {
    width: 72px;
    margin-bottom: 12px;
  }

  #founder .founder-quote-block .founder-quote-line:last-child {
    margin-top: 18px;
  }

  #founder .founder-emotional-quote {
    font-size: 19px;
    line-height: 1.74;
  }

  #founder .founder-emotional-text {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.86;
  }

  #founder .founder-signature-space {
    width: min(190px, 58vw) !important;
    height: 50px !important;
    margin-top: 16px !important;
  }

  #founder .founder-emotional-sign {
    font-size: 12.5px;
  }
}


/* ===== V8-C：创始人寄语标题｜高级题字版 =====
   气质：更有仪式感和标题感，但控制在现代医疗品牌范围内，不走传统书法风。 */
#founder .founder-emotional-card-layered h2 {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.055em !important;
  color: var(--primary-dark) !important;
  -webkit-text-fill-color: var(--primary-dark) !important;
  transform: scaleX(1.02);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.90),
    0 2px 0 rgba(218, 234, 244, 0.96),
    0 4px 0 rgba(190, 215, 231, 0.60),
    0 8px 18px rgba(0, 90, 156, 0.11),
    0 18px 38px rgba(0, 90, 156, 0.07),
    0 0 1px rgba(0, 90, 156, 0.18) !important;
}
/* ===== 第一页引言：去掉透明玻璃感，只保留浮雕效果 ===== */
#founder .founder-emotional-quote {
  background: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;

  color: #cfe4f0 !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.58;

  text-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.96),
    0 1px 0 rgba(210, 235, 246, 0.95),
    0 2px 0 rgba(160, 205, 225, 0.72),
    0 3px 0 rgba(116, 170, 198, 0.42),
    0 10px 22px rgba(0, 90, 156, 0.10),
    0 18px 38px rgba(0, 90, 156, 0.08);

  filter: none !important;
}
/* ===== LEO PATCH：第一页布局再平衡 =====
   目标：不改当前高级感，只修正失衡感。
   核心思路：
   1. 整体内容略微上提，减少“下坠感”；
   2. 标题 / 引言 / 正文形成更清晰的三级层级；
   3. 引言略缩窄、略缩小，避免压过整页；
   4. 正文与签名收紧，让视觉中心更集中。 */

#founder.founder-emotional-section {
  padding-top: 0 !important;
}

#founder .founder-emotional-screen {
  width: min(1120px, 92%) !important;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(28px, 5vh, 60px) !important;
  padding-bottom: clamp(72px, 10vh, 118px) !important;
}

#founder .founder-emotional-card-layered {
  width: min(980px, 100%) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#founder .founder-emotional-card-layered .section-label {
  margin-bottom: 14px !important;
}

#founder .founder-emotional-card-layered h2 {
  margin-bottom: clamp(22px, 3vh, 30px) !important;
  font-size: clamp(50px, 4.8vw, 74px) !important;
  line-height: 1.04 !important;
}

#founder .founder-quote-block {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 0 18px !important;
}

#founder .founder-quote-block::before {
  width: min(1040px, 94vw) !important;
  height: 232px !important;
}

#founder .founder-quote-line {
  width: 100px !important;
}

#founder .founder-quote-block .founder-quote-line:last-child {
  margin-top: 18px !important;
}

#founder .founder-emotional-quote {
  max-width: 900px !important;
  margin: 0 auto;
  font-size: clamp(26px, 2.6vw, 40px) !important;
  line-height: 1.46 !important;
  letter-spacing: -0.038em !important;
}

#founder .founder-emotional-text {
  max-width: 760px !important;
  margin-top: 28px !important;
  font-size: 16px !important;
  line-height: 1.92 !important;
}

#founder .founder-signature-space {
  margin-top: 10px !important;
  width: min(228px, 42vw) !important;
  height: 60px !important;
}

#founder .founder-signature-space img {
  opacity: 0.7 !important;
}

#founder .founder-emotional-sign {
  margin-top: 0 !important;
  padding-top: 8px !important;
}

#founder .founder-emotional-sign::before {
  width: 54px !important;
}

/* scroll 提示略向下，让内容主体更稳 */
#founder + .scroll-hint,
.scroll-hint {
  bottom: 12px;
}

/* 让右侧侧边导航稍微更靠中，不抢画面 */
.side-nav {
  top: 52% !important;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #founder .founder-emotional-screen {
    width: min(1080px, 94%) !important;
    padding-top: 34px !important;
    padding-bottom: 108px !important;
  }

  #founder .founder-emotional-quote {
    max-width: 840px !important;
    font-size: clamp(25px, 2.45vw, 36px) !important;
  }
}

@media (max-width: 980px) {
  #founder .founder-emotional-screen {
    min-height: auto;
    padding-top: 108px !important;
    padding-bottom: 96px !important;
  }

  #founder .founder-emotional-card-layered {
    width: min(94vw, 760px) !important;
  }

  #founder .founder-emotional-card-layered h2 {
    font-size: clamp(40px, 7vw, 58px) !important;
    margin-bottom: 20px !important;
  }

  #founder .founder-quote-block {
    padding: 14px 0 16px !important;
  }

  #founder .founder-quote-block::before {
    height: 210px !important;
  }

  #founder .founder-emotional-quote {
    font-size: clamp(22px, 4.5vw, 32px) !important;
    line-height: 1.54 !important;
  }

  #founder .founder-emotional-text {
    max-width: 92% !important;
    margin-top: 24px !important;
    font-size: 15px !important;
    line-height: 1.84 !important;
  }
}

@media (max-width: 640px) {
  #founder .founder-emotional-screen {
    padding-top: 94px !important;
    padding-bottom: 84px !important;
  }

  #founder .founder-emotional-card-layered h2 {
    font-size: clamp(34px, 9vw, 44px) !important;
    line-height: 1.10 !important;
  }

  #founder .founder-emotional-quote {
    max-width: 94vw !important;
    font-size: 19px !important;
    line-height: 1.68 !important;
  }

  #founder .founder-emotional-text {
    max-width: 94% !important;
    font-size: 14px !important;
  }

  #founder .founder-signature-space {
    width: min(184px, 56vw) !important;
    height: 48px !important;
  }
}

/* ===== FINAL FIX: 保持新版布局，同时恢复寄语深蓝高可读颜色 ===== */
#founder .founder-quote-block {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 16px 0 18px !important;
}

#founder .founder-quote-block::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(1040px, 94vw) !important;
  height: 232px !important;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(189, 222, 238, 0.54) 0%,
      rgba(210, 235, 246, 0.38) 30%,
      rgba(236, 248, 252, 0.24) 55%,
      rgba(255, 255, 255, 0.00) 78%
    );
  filter: blur(4px);
}

#founder .founder-emotional-quote {
  background: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;

  color: #0f5f96 !important;
  font-weight: 850 !important;
  letter-spacing: -0.038em !important;
  line-height: 1.46 !important;

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 2px 0 rgba(188, 223, 239, 0.72),
    0 4px 8px rgba(0, 90, 156, 0.12),
    0 14px 30px rgba(0, 90, 156, 0.10) !important;

  filter: none !important;
}

#founder .founder-quote-line {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 95, 150, 0.26) 50%,
    transparent 100%
  ) !important;
  box-shadow: none !important;
}

/* ===== LEO PATCH：创始人寄语固定换行 =====
   让“只有在当下条件中更适合的路径。”整体作为第二行显示，
   桌面端不从中间断开；移动端恢复自然换行避免溢出。 */
#founder .founder-emotional-quote .quote-second-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 640px) {
  #founder .founder-emotional-quote .quote-second-line {
    white-space: normal;
  }
}

/* ===== LEO PATCH：第一页换上抽象背景图试版 =====
   目的：填充左右留白、保持对称高级感、不抢文字。
   做法：整页浅色罩层 + 抽象背景图 + 关闭重复水印，避免画面太满。 */
#founder.founder-emotional-section {
  background:
    linear-gradient(180deg, rgba(244, 249, 251, 0.74) 0%, rgba(248, 252, 253, 0.78) 55%, rgba(243, 248, 250, 0.76) 100%),
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.18) 38%, rgba(255,255,255,0.00) 70%),
    url("serene_blue_and_white_tech_backdrop.png") center center / cover no-repeat !important;
}

/* 背景图里已经有桥感与层次，原来的额外纹理层先弱化掉，避免打架 */
#founder.founder-emotional-section::after {
  display: none !important;
}

#founder .founder-emotional-screen::before {
  display: none !important;
}

/* 稍微抬一点内容，和新背景更贴合 */
#founder .founder-emotional-screen {
  padding-top: clamp(22px, 4.2vh, 52px) !important;
  padding-bottom: clamp(74px, 10vh, 122px) !important;
}

/* 中心区域保持更干净，增强文字承托 */
#founder .founder-quote-block::before {
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(255,255,255,0.72) 0%,
      rgba(245, 250, 252, 0.56) 32%,
      rgba(232, 244, 249, 0.24) 56%,
      rgba(255,255,255,0.00) 80%
    ) !important;
  filter: blur(5px) !important;
}

#founder .founder-emotional-text {
  color: rgba(58, 98, 118, 0.86) !important;
}

/* ===== FINAL PATCH｜第一页创始人寄语视觉重心再平衡 =====
   问题：标题和金句过重，签名与按钮区域太轻，整体显得头重脚轻。
   做法：略收标题与金句尺寸、整体下移一点、增强下方承托层和按钮存在感。 */
#founder.founder-emotional-section {
  position: relative;
  overflow: hidden;
}

#founder.founder-emotional-section::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: -12% !important;
  z-index: 0 !important;
  width: min(92vw, 1280px) !important;
  height: min(34vh, 320px) !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
  border-radius: 999px 999px 0 0 !important;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 143, 201, 0.115) 0%, rgba(0, 143, 201, 0.052) 36%, rgba(255,255,255,0.00) 72%),
    radial-gradient(ellipse at 50% 34%, rgba(255,255,255,0.64) 0%, rgba(255,255,255,0.20) 46%, rgba(255,255,255,0.00) 74%) !important;
  filter: blur(6px) !important;
  opacity: 1 !important;
}

#founder.founder-emotional-section::after {
  display: none !important;
}

#founder .founder-emotional-screen {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header)) !important;
  padding-top: clamp(42px, 6.5vh, 82px) !important;
  padding-bottom: clamp(56px, 7.5vh, 92px) !important;
}

#founder .founder-emotional-card-layered {
  transform: translateY(16px);
}

#founder .founder-emotional-card-layered .section-label {
  margin-bottom: 12px !important;
}

#founder .founder-emotional-card-layered h2 {
  font-size: clamp(46px, 4.25vw, 66px) !important;
  line-height: 1.06 !important;
  margin-bottom: clamp(18px, 2.2vh, 24px) !important;
  letter-spacing: -0.045em !important;
}

#founder .founder-quote-block {
  padding: 12px 0 14px !important;
}

#founder .founder-quote-block::before {
  width: min(920px, 90vw) !important;
  height: 192px !important;
  opacity: 0.92 !important;
}

#founder .founder-emotional-quote {
  max-width: 820px !important;
  font-size: clamp(24px, 2.25vw, 35px) !important;
  line-height: 1.50 !important;
}

#founder .founder-emotional-text {
  max-width: 780px !important;
  margin-top: 24px !important;
  font-size: 15px !important;
  line-height: 1.88 !important;
}

#founder .founder-signature-space {
  margin-top: 12px !important;
  width: min(220px, 40vw) !important;
  height: 56px !important;
}

#founder .founder-emotional-sign {
  padding-top: 6px !important;
  font-size: 13px !important;
}

.founder-read-more {
  margin-top: 12px !important;
  min-height: 36px !important;
  padding: 0 20px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86) 0%, rgba(245,251,253,0.72) 100%) !important;
  border-color: rgba(0, 143, 201, 0.24) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 12px 28px rgba(0, 90, 156, 0.08) !important;
}

#founder + .scroll-hint {
  bottom: 10px !important;
  opacity: 0.58 !important;
}

@media (max-width: 980px) {
  #founder .founder-emotional-card-layered {
    transform: none;
  }

  #founder .founder-emotional-screen {
    padding-top: 94px !important;
    padding-bottom: 88px !important;
  }

  #founder .founder-emotional-card-layered h2 {
    font-size: clamp(38px, 7vw, 54px) !important;
  }

  #founder .founder-emotional-quote {
    font-size: clamp(21px, 4.2vw, 30px) !important;
  }
}

@media (max-width: 640px) {
  #founder .founder-emotional-screen {
    padding-top: 82px !important;
    padding-bottom: 78px !important;
  }

  #founder .founder-emotional-card-layered h2 {
    font-size: clamp(32px, 8.6vw, 42px) !important;
  }

  #founder .founder-emotional-quote {
    font-size: 18px !important;
    line-height: 1.62 !important;
  }

  .founder-read-more {
    min-height: 34px !important;
    padding: 0 18px !important;
    font-size: 13px !important;
  }
}

/* ===== RESTORE PROJECTS INTERACTIVE LAYOUT (left showcase + right tabs) ===== */
#projects.projects-interactive-section {
  position: relative;
  overflow: hidden;
  align-items: center;
  padding: 30px 0 34px;
  background:
    radial-gradient(ellipse at 14% 14%, rgba(0, 143, 201, 0.055), transparent 34%),
    radial-gradient(ellipse at 86% 76%, rgba(117, 191, 67, 0.040), transparent 32%),
    linear-gradient(180deg, #fbfeff 0%, #f6fbfd 100%);
}

#projects .projects-interactive-screen {
  width: min(var(--container), 92%);
  max-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
}

#projects .projects-interactive-heading {
  max-width: 920px;
  margin-bottom: 0;
}

#projects .projects-interactive-heading h2 {
  margin: 4px 0 4px;
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

#projects .projects-interactive-heading .screen-subtitle {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

#projects .projects-interactive-heading p:last-child {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.projects-interactive-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 26px;
  align-items: stretch;
}

.projects-showcase {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(255,255,255,0.24), transparent 38%),
    linear-gradient(135deg, #005a9c 0%, #008fc9 62%, #16b8b4 100%);
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: 32px;
  box-shadow: 0 26px 68px rgba(0, 90, 156, 0.16);
  isolation: isolate;
  transform: translateZ(0);
}

.projects-showcase-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--showcase-photo), linear-gradient(135deg, #eaf8fc, #fff);
  background-size: cover;
  background-position: center;
  opacity: 0.86;
  filter: saturate(0.94) brightness(0.94);
  transform: scale(1.015);
  transition: background-image 0.18s ease, opacity 0.22s ease, filter 0.22s ease, transform 0.4s ease;
}

.projects-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 54, 94, 0.76) 0%, rgba(0, 90, 156, 0.56) 42%, rgba(0, 90, 156, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 36, 68, 0.74) 0%, rgba(0, 36, 68, 0.20) 54%, rgba(0, 36, 68, 0.04) 100%);
}

.projects-showcase::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  pointer-events: none;
  border-radius: 31px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -1px 0 rgba(255,255,255,0.10);
}

.projects-showcase:hover .projects-showcase-media {
  transform: scale(1.045);
  filter: saturate(0.98) brightness(0.98);
}

.projects-showcase-content {
  position: relative;
  z-index: 3;
  width: min(620px, 88%);
  padding: 34px 36px;
}

.projects-showcase-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.84);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.projects-showcase-content h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.projects-showcase-content p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.78;
}

.projects-showcase-content strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--primary-dark);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 36, 68, 0.16);
  font-size: 13px;
  font-weight: 950;
}

.projects-topic-list {
  min-height: 0;
  display: grid;
  gap: 12px;
}

.projects-topic {
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  overflow: hidden;
  color: inherit;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0, 143, 201, 0.13);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 90, 156, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.projects-topic::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0,143,201,0.10), transparent 66%);
  pointer-events: none;
}

.projects-topic:hover,
.projects-topic.active {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245,252,253,0.92));
  border-color: rgba(0, 169, 199, 0.32);
  box-shadow: 0 18px 44px rgba(0, 90, 156, 0.075);
}

.projects-topic.active {
  border-left: 4px solid var(--primary);
}

.projects-topic > span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background: rgba(0,143,201,0.08);
  border: 1px solid rgba(0,143,201,0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.projects-topic.active > span {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
}

.projects-topic div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.projects-topic em {
  display: block;
  margin-bottom: 2px;
  color: var(--green);
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects-topic strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.32;
}

.projects-topic p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.projects-interactive-note {
  margin-top: 0;
  padding: 16px 18px;
}

.projects-interactive-note p {
  font-size: 13px;
  line-height: 1.66;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .projects-interactive-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
    gap: 20px;
  }

  .projects-showcase {
    min-height: 360px;
  }

  .projects-showcase-content {
    padding: 28px;
  }

  .projects-topic {
    min-height: 78px;
    padding: 13px 15px;
    border-radius: 20px;
  }

  .projects-topic strong {
    font-size: 16px;
  }

  .projects-topic p {
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  #projects.projects-interactive-section {
    padding: 72px 0;
  }

  #projects .projects-interactive-screen {
    width: min(92%, 760px);
    display: block;
  }

  .projects-interactive-layout {
    margin-top: 26px;
    grid-template-columns: 1fr;
  }

  .projects-showcase {
    min-height: 430px;
  }

  .projects-topic-list {
    margin-top: 18px;
  }

  .projects-interactive-note {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  #projects .projects-interactive-heading h2 {
    font-size: 36px;
  }

  #projects .projects-interactive-heading .screen-subtitle {
    font-size: 24px;
  }

  .projects-showcase {
    min-height: 400px;
    border-radius: 26px;
  }

  .projects-showcase-content {
    width: 100%;
    padding: 26px 22px;
  }

  .projects-showcase-content h3 {
    font-size: 28px;
  }

  .projects-topic {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .projects-topic > span {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
}
/* ===== END RESTORE PROJECTS INTERACTIVE LAYOUT ===== */

/* ===== PATCH｜首页创始初心按钮下移并加强毛玻璃质感 ===== */
#founder .founder-read-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 24px !important;
  min-height: 40px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.42) 0%, rgba(245,251,253,0.28) 100%) !important;
  backdrop-filter: blur(14px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 12px 28px rgba(0, 90, 156, 0.08),
    0 2px 8px rgba(255,255,255,0.22) !important;
}

#founder .founder-read-more:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.52) 0%, rgba(245,251,253,0.36) 100%) !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.74),
    0 16px 34px rgba(0, 90, 156, 0.10),
    0 2px 10px rgba(255,255,255,0.28) !important;
}

@media (max-width: 640px) {
  #founder .founder-read-more {
    margin-top: 20px !important;
    min-height: 38px !important;
    padding: 0 20px !important;
  }
}

/* ===== PATCH 2｜首页创始初心按钮再下移一些 ===== */
#founder .founder-read-more {
  margin-top: 34px !important;
}

@media (max-width: 640px) {
  #founder .founder-read-more {
    margin-top: 28px !important;
  }
}

/* ===== RESTORE｜创始人初心页 founder.html 排版样式 ===== */
.founder-page {
  background: linear-gradient(180deg, #fbfeff 0%, #ffffff 44%, #f6fbfd 100%);
}

.founder-page .founder-main {
  background:
    radial-gradient(ellipse at 12% 4%, rgba(0, 143, 201, 0.075), transparent 30%),
    radial-gradient(ellipse at 88% 8%, rgba(117, 191, 67, 0.055), transparent 28%),
    linear-gradient(180deg, #fbfeff 0%, #ffffff 42%, #f7fcfd 100%);
}

.founder-page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  border-bottom: 1px solid rgba(0, 143, 201, 0.10);
  background:
    radial-gradient(ellipse at 18% 18%, rgba(0, 143, 201, 0.075), transparent 36%),
    radial-gradient(ellipse at 82% 70%, rgba(117, 191, 67, 0.052), transparent 34%),
    linear-gradient(180deg, #f7fcff 0%, rgba(255,255,255,0.94) 100%);
}

.founder-page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 143, 201, 0.12), transparent 68%);
}

.founder-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.founder-page-copy h1 {
  margin: 0 0 20px;
  color: var(--primary-dark);
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.founder-page-line {
  margin: 0 0 24px;
  color: var(--primary-dark);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 950;
  line-height: 1.36;
  letter-spacing: -0.04em;
}

.founder-page-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.92;
}

.founder-page-card,
.founder-value-card,
.founder-letter,
.founder-bottom-cta {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 143, 201, 0.14);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(0, 90, 156, 0.055);
}

.founder-page-card {
  padding: 34px 36px;
}

.founder-page-card--quote {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 4px solid rgba(117, 191, 67, 0.82);
  background:
    radial-gradient(ellipse at top right, rgba(0, 143, 201, 0.095), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,251,253,0.82));
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.founder-page-card--quote::after {
  content: "“";
  position: absolute;
  right: 24px;
  bottom: -36px;
  color: rgba(0, 143, 201, 0.08);
  font-family: Georgia, serif;
  font-size: 180px;
  line-height: 1;
}

.founder-page-card--quote span,
.founder-value-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.founder-page-card--quote strong {
  position: relative;
  z-index: 1;
  color: var(--primary-dark);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.56;
  letter-spacing: -0.035em;
}

.founder-page-section {
  padding: 76px 0;
}

.founder-page-section--soft {
  background:
    radial-gradient(ellipse at 10% 12%, rgba(0, 143, 201, 0.052), transparent 30%),
    linear-gradient(180deg, rgba(244, 251, 253, 0.72), rgba(255,255,255,0.84));
  border-block: 1px solid rgba(0, 143, 201, 0.08);
}

.founder-page-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.founder-page-card h2,
.founder-page-heading h2,
.founder-letter h2,
.founder-bottom-cta h2 {
  margin: 6px 0 16px;
  color: var(--primary-dark);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.26;
  letter-spacing: -0.04em;
}

.founder-page-card p,
.founder-value-card p,
.founder-letter p,
.founder-bottom-cta p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.88;
}

.founder-page-card p {
  margin: 0;
}

.founder-page-card p + p {
  margin-top: 14px;
}

.founder-page-heading {
  max-width: 760px;
  margin: 0 0 28px;
}

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

.founder-value-card {
  min-height: 232px;
  padding: 26px 24px;
  border-top: 3px solid rgba(0, 143, 201, 0.45);
}

.founder-value-card:nth-child(2n) {
  border-top-color: rgba(117, 191, 67, 0.68);
}

.founder-value-card span {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.founder-value-card h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 22px;
}

.founder-value-card p {
  margin: 0;
}

.founder-letter {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,143,201,0.07), transparent 34%),
    rgba(255,255,255,0.90);
}

.founder-letter p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
}

.founder-letter p + p {
  margin-top: 14px;
}

.founder-letter-sign {
  margin-top: 22px !important;
  color: var(--primary-dark) !important;
  font-weight: 950;
}

.founder-page-section--cta {
  padding-top: 48px;
}

.founder-bottom-cta {
  padding: 34px 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(117, 191, 67, 0.18), transparent 30%),
    linear-gradient(135deg, #005a9c 0%, #008fc9 58%, #16b8b4 100%);
  box-shadow: 0 22px 60px rgba(0, 90, 156, 0.16);
}

.founder-bottom-cta .section-label,
.founder-bottom-cta h2,
.founder-bottom-cta p {
  color: #fff;
}

.founder-bottom-cta p {
  max-width: 760px;
  margin: 0;
}

.founder-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.founder-bottom-actions .button.secondary {
  background: rgba(255, 255, 255, 0.84);
}

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

@media (max-width: 980px) {
  .founder-page-hero {
    padding: 74px 0 56px;
  }

  .founder-page-hero-grid,
  .founder-page-two-col,
  .founder-bottom-cta {
    grid-template-columns: 1fr;
  }

  .founder-page-card--quote {
    min-height: auto;
  }

  .founder-bottom-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .founder-page-section {
    padding: 58px 0;
  }

  .founder-value-grid {
    grid-template-columns: 1fr;
  }

  .founder-page-card,
  .founder-value-card,
  .founder-letter,
  .founder-bottom-cta {
    padding: 24px;
    border-radius: 22px;
  }

  .founder-page-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .founder-page-line {
    font-size: clamp(22px, 7vw, 30px);
  }
}

/* ===== PATCH｜首页创始人寄语标题字体优化：宋体/明朝体方向 ===== */
#founder .founder-emotional-card-layered h2 {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.18 !important;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.50),
    0 8px 18px rgba(0,90,156,0.11) !important;
}

@media (max-width: 640px) {
  #founder .founder-emotional-card-layered h2 {
    letter-spacing: 0.05em !important;
  }
}

/* ===== PATCH｜首页“仁济之心，康桥之行”改为更圆润顺滑的字体 ===== */
#founder .founder-emotional-card-layered h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 640px) {
  #founder .founder-emotional-card-layered h2 {
    letter-spacing: 0.03em !important;
  }
}

/* ===== PATCH｜首页八字标题：区别于正文的圆润标题字体 ===== */
#founder .founder-emotional-card-layered h2 {
  font-family: "FZYaoti", "STZhongsong", "Yuanti SC", "Songti SC", "Noto Serif SC", "Microsoft YaHei", serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.075em !important;
  color: var(--primary-dark) !important;
  background: linear-gradient(180deg, #0068a8 0%, #005a9c 58%, #144d78 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.52),
    0 10px 24px rgba(0,90,156,0.10) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (max-width: 640px) {
  #founder .founder-emotional-card-layered h2 {
    letter-spacing: 0.055em !important;
  }
}

/* ===== PATCH｜首页八字标题：降低锐利感，改成温润标题感 ===== */
#founder .founder-emotional-card-layered h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  color: var(--primary-dark) !important;
  background: linear-gradient(180deg, #006ba8 0%, #005a9c 68%, #174b75 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.55),
    0 10px 24px rgba(0,90,156,0.08) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (max-width: 640px) {
  #founder .founder-emotional-card-layered h2 {
    letter-spacing: 0.05em !important;
  }
}

/* ===== PATCH｜首页八字标题颜色统一为深蓝色 ===== */
#founder .founder-emotional-card-layered h2 {
  color: var(--primary-dark) !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: var(--primary-dark) !important;
}

/* ===== PATCH｜首页寄语文字：上凸下凹的细腻雕刻感 =====
   目标：
   1) “仁济之心，康桥之行”轻微凸出，像温润浮雕；
   2) “医疗选择像人生一样……”轻微凹进去，像浅刻字；
   3) 不做过重阴影，避免廉价 3D 效果。 */
#founder .founder-emotional-card-layered h2 {
  color: var(--primary-dark) !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.92),
    0 1px 0 rgba(0, 58, 110, 0.18),
    0 3px 8px rgba(0, 90, 156, 0.10),
    0 14px 28px rgba(0, 90, 156, 0.07) !important;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.30));
}

#founder .founder-emotional-quote {
  color: rgba(0, 90, 156, 0.78) !important;
  font-weight: 600 !important;
  letter-spacing: 0.035em !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.90),
    0 -1px 0 rgba(0, 58, 110, 0.20),
    inset 0 1px 1px rgba(0, 58, 110, 0.18) !important;
  filter:
    drop-shadow(0 -1px 0 rgba(0, 58, 110, 0.10))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.58));
  opacity: 0.94;
}

#founder .founder-quote-line {
  opacity: 0.42 !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.72),
    0 -1px 0 rgba(0,90,156,0.08);
}

@media (max-width: 640px) {
  #founder .founder-emotional-card-layered h2 {
    letter-spacing: 0.055em !important;
    text-shadow:
      0 -1px 0 rgba(255, 255, 255, 0.88),
      0 1px 0 rgba(0, 58, 110, 0.16),
      0 8px 18px rgba(0, 90, 156, 0.07) !important;
  }

  #founder .founder-emotional-quote {
    letter-spacing: 0.02em !important;
  }
}

/* ===== STRONGER EMBOSS/ENGRAVE PATCH｜首页标题凸起 + 金句内凹 ===== */
#founder .founder-emotional-card-layered h2 {
  color: var(--primary-dark) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: var(--primary-dark) !important;
  letter-spacing: 0.075em !important;
  text-shadow:
    -2px -2px 0 rgba(255, 255, 255, 0.92),
    -1px -1px 0 rgba(255, 255, 255, 0.78),
     1px  1px 0 rgba(0, 50, 92, 0.24),
     2px  3px 0 rgba(0, 90, 156, 0.13),
     0 14px 26px rgba(0, 90, 156, 0.20) !important;
  filter: drop-shadow(0 5px 8px rgba(0, 90, 156, 0.10)) !important;
}

#founder .founder-emotional-quote {
  color: rgba(0, 90, 156, 0.68) !important;
  -webkit-text-fill-color: rgba(0, 90, 156, 0.68) !important;
  text-shadow:
    -1px -1px 1px rgba(0, 45, 86, 0.42),
     1px  1px 1px rgba(255, 255, 255, 0.96),
     2px  2px 2px rgba(255, 255, 255, 0.58),
     0 0 1px rgba(0, 90, 156, 0.10) !important;
  filter: none !important;
}

#founder .founder-quote-line {
  opacity: 0.42 !important;
}


/* ===== Floating back button｜子页面返回上层悬浮按钮：放大、左侧中上、返回图标 ===== */
.floating-back {
  position: fixed;
  left: 18px;
  top: 38%;
  z-index: 90;
  width: 62px;
  min-width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px;
  overflow: hidden;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 143, 201, 0.24);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(0, 36, 68, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  transform: translateY(-50%);
  transform-origin: left center;
  transition:
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.floating-back:hover,
.floating-back:focus-visible {
  width: 194px;
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(0, 143, 201, 0.42);
  box-shadow:
    0 22px 52px rgba(0, 36, 68, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(-50%) translateX(3px);
}

.floating-back:focus-visible {
  outline: 3px solid rgba(0, 143, 201, 0.22);
  outline-offset: 4px;
}

.floating-back-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 90, 156, 0.20);
}

.floating-back-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-back-text {
  min-width: 108px;
  display: grid;
  gap: 2px;
  line-height: 1.1;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.18s ease 0.06s, transform 0.18s ease 0.06s;
}

.floating-back:hover .floating-back-text,
.floating-back:focus-visible .floating-back-text {
  opacity: 1;
  transform: translateX(0);
}

.floating-back-text strong {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.floating-back-text span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .floating-back,
  .floating-back-text {
    transition: none;
  }
}

@media (max-width: 980px) {
  .floating-back {
    left: 14px;
    top: auto;
    bottom: 16px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 8px;
    transform: none;
  }

  .floating-back:hover,
  .floating-back:focus-visible {
    width: 50px;
    transform: none;
  }

  .floating-back-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .floating-back-icon svg {
    width: 20px;
    height: 20px;
  }

  .floating-back-text {
    display: none;
  }
}

/* ===== Header brand anti-wrap refinement ===== */
.brand {
  flex: 0 0 auto;
}

.brand-text {
  min-width: max-content;
}

.brand-cn,
.brand-en {
  white-space: nowrap;
}



/* ===== Instant anchor jump from subpage back buttons ===== */
html.instant-anchor-jump {
  scroll-behavior: auto !important;
}

html.instant-anchor-jump * {
  scroll-behavior: auto !important;
}


/* ===== Floating back icon optical centering ===== */
.floating-back-icon svg {
  transform: translate(-1.5px, -1px);
  transform-origin: center;
}

@media (max-width: 980px) {
  .floating-back-icon svg {
    transform: translate(-1.2px, -0.8px);
  }
}



/* ===== Unified scroll hint｜所有向下阅读提示统一文案与位置 ===== */
.scroll-hint {
  left: 50% !important;
  bottom: 24px !important;
  transform: translateX(-50%) !important;
  z-index: 12 !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--primary-dark) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  opacity: .78 !important;
}
.scroll-hint:hover { opacity: 1 !important; }
.scroll-hint span { display: block !important; line-height: 1.2 !important; }
.scroll-hint strong { font-size: 18px !important; line-height: 1 !important; }
#founder + .scroll-hint { bottom: 24px !important; opacity: .78 !important; }


/* ===== Floating back button final position｜左下角浏览器式返回 ===== */
.floating-back {
  left: 24px !important;
  right: auto !important;
  top: auto !important;
  bottom: 24px !important;
  transform: none !important;
  transform-origin: left bottom !important;
}

.floating-back:hover,
.floating-back:focus-visible {
  transform: translateX(3px) !important;
}

/* 右下角联系我们浮动按钮已取消；保留兜底，防止旧页面残留。 */
.floating-contact-fab {
  display: none !important;
}

@media (max-width: 980px) {
  .floating-back {
    left: 14px !important;
    bottom: 14px !important;
    top: auto !important;
    transform: none !important;
  }

  .floating-back:hover,
  .floating-back:focus-visible {
    transform: none !important;
  }
}


/* ===== Homepage service process refinement ===== */
.process-flow-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 16% 10%, rgba(0, 143, 201, 0.08), transparent 34%),
    linear-gradient(180deg, #f6fbfd 0%, #ffffff 100%);
}

.process-flow-screen {
  max-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 3vh, 30px);
}

.process-flow-heading {
  max-width: 820px;
}

.process-flow-heading h2 {
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.process-flow-heading p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.process-flow-card {
  position: relative;
  min-height: 238px;
  padding: 26px 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 143, 201, 0.16);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 90, 156, 0.07);
}

.process-flow-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -48px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 143, 201, 0.11), transparent 68%);
  pointer-events: none;
}

.process-flow-card:nth-child(2n)::after {
  background: radial-gradient(circle, rgba(117, 191, 67, 0.13), transparent 68%);
}

.process-flow-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(0, 90, 156, 0.16);
}

.process-flow-card:nth-child(2n) span {
  background: linear-gradient(135deg, #75bf43, #22a7a5);
}

.process-flow-card h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 21px;
}

.process-flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.process-flow-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 143, 201, 0.16);
  border-left: 4px solid var(--primary);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 90, 156, 0.055);
}

.process-flow-note strong {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.process-flow-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.process-flow-note a {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .process-flow-screen {
    max-height: none;
  }

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

  .process-flow-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .process-flow-grid {
    grid-template-columns: 1fr;
  }

  .process-flow-card {
    min-height: auto;
  }
}

/* ===== Homepage service process: editorial vertical path ===== */
.process-ribbon-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fbfeff 0%, #fbfeff 42%, #eef8fb 42%, #f8fcfd 100%);
}

.process-ribbon-section::before {
  content: "";
  position: absolute;
  left: 42%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 143, 201, 0.22), transparent);
}

.process-ribbon-screen {
  position: relative;
  z-index: 1;
  max-height: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.process-ribbon-copy h2 {
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.process-ribbon-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.process-ribbon-note {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 143, 201, 0.18);
}

.process-ribbon-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 950;
}

.process-ribbon-note p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.process-ribbon-note a {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
}

.process-path {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 34px;
}

.process-path::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 143, 201, 0.24), rgba(117, 191, 67, 0.28));
}

.process-path-step {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 143, 201, 0.14);
}

.process-path-step:first-child {
  padding-top: 0;
}

.process-path-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-path-number {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(0, 143, 201, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(0, 90, 156, 0.08);
}

.process-path-step:nth-child(2n) .process-path-number {
  color: #267f50;
  border-color: rgba(117, 191, 67, 0.28);
}

.process-path-step h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.28;
}

.process-path-step p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

@media (max-width: 980px) {
  .process-ribbon-section {
    background: linear-gradient(180deg, #fbfeff 0%, #f4fbfd 100%);
  }

  .process-ribbon-section::before {
    display: none;
  }

  .process-ribbon-screen {
    max-height: none;
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .process-path {
    padding-left: 0;
  }

  .process-path::before {
    left: 23px;
  }

  .process-path-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 0;
  }

  .process-path-number {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }
}

/* ===== Homepage service process: runway landing scene ===== */
.process-runway-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 16% 18%, rgba(0, 143, 201, 0.08), transparent 34%),
    linear-gradient(105deg, #fbfeff 0%, #fbfeff 38%, #eef8fb 38%, #f8fcfd 100%);
}

.process-runway-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.74) 35%, rgba(255,255,255,0.18) 66%, rgba(255,255,255,0) 100%);
}

.process-runway-screen {
  position: relative;
  z-index: 1;
  max-height: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.process-runway-copy h2 {
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.process-runway-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.runway-note {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 143, 201, 0.18);
}

.runway-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 950;
}

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

.runway-note a {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
}

.runway-stage {
  position: relative;
  min-height: min(64vh, 560px);
  display: grid;
  align-items: center;
}

.runway-surface {
  position: absolute;
  left: 50%;
  top: -6%;
  bottom: -6%;
  width: clamp(84px, 9vw, 116px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    repeating-linear-gradient(180deg, transparent 0 26px, rgba(255,255,255,0.86) 26px 48px, transparent 48px 76px),
    linear-gradient(90deg, rgba(0, 90, 156, 0.10), rgba(0, 143, 201, 0.18) 50%, rgba(0, 90, 156, 0.10));
  box-shadow:
    inset 0 0 0 1px rgba(0, 143, 201, 0.16),
    inset 0 0 30px rgba(255,255,255,0.76),
    0 24px 56px rgba(0, 90, 156, 0.09);
}

.runway-surface::before,
.runway-surface::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.88) 0 10px, transparent 10px 24px);
  opacity: 0.68;
}

.runway-surface::before {
  left: 18px;
}

.runway-surface::after {
  right: 18px;
}

.runway-plane {
  position: absolute;
  left: 50%;
  top: -18%;
  z-index: 4;
  width: clamp(48px, 5vw, 68px);
  height: clamp(48px, 5vw, 68px);
  transform: translate(-50%, -120px) scale(0.58);
  opacity: 0;
  pointer-events: none;
}

.runway-plane svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 14px 18px rgba(0, 90, 156, 0.18));
}

.runway-plane path:first-child {
  fill: #ffffff;
  stroke: #005a9c;
  stroke-width: 3;
  stroke-linejoin: round;
}

.runway-plane path:last-child {
  fill: none;
  stroke: #008fc9;
  stroke-width: 3;
  stroke-linecap: round;
}

.runway-plane.reveal {
  opacity: 0;
  transform: translate(-50%, -120px) scale(0.58);
  transition: none;
}

.runway-plane.is-visible {
  animation: runwayPlaneLanding 4.9s cubic-bezier(0.18, 0.82, 0.28, 1) 0.12s forwards;
}

@keyframes runwayPlaneLanding {
  0% {
    top: -20%;
    opacity: 0;
    transform: translate(-50%, -130px) scale(0.52);
  }
  16% {
    opacity: 1;
  }
  42% {
    top: 18%;
    transform: translate(-50%, -20px) scale(0.9);
  }
  64% {
    top: 45%;
    transform: translate(-50%, 0) scale(0.82);
  }
  100% {
    top: 82%;
    opacity: 1;
    transform: translate(-50%, 0) scale(0.68);
  }
}

.runway-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(104px, 12vw, 150px) minmax(0, 1fr);
  row-gap: clamp(14px, 2.4vh, 24px);
}

.runway-step {
  position: relative;
  min-height: 102px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 143, 201, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 90, 156, 0.065);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
}

.runway-step-left {
  grid-column: 1;
  text-align: right;
}

.runway-step-right {
  grid-column: 3;
}

.runway-step::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 143, 201, 0.06), rgba(0, 143, 201, 0.48));
}

.runway-step-left::before {
  right: -52px;
}

.runway-step-right::before {
  left: -52px;
  transform: rotate(180deg);
}

.runway-step span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.runway-step h3 {
  margin: 0 0 6px;
  color: var(--primary-dark);
  font-size: 19px;
  line-height: 1.28;
}

.runway-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.runway-step.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.runway-step.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.runway-step:nth-child(1).is-visible { transition-delay: 0.55s; }
.runway-step:nth-child(2).is-visible { transition-delay: 1.35s; }
.runway-step:nth-child(3).is-visible { transition-delay: 2.15s; }
.runway-step:nth-child(4).is-visible { transition-delay: 2.95s; }

@media (prefers-reduced-motion: reduce) {
  .runway-plane.is-visible {
    animation: none;
    top: 48%;
    opacity: 1;
    transform: translate(-50%, 0) scale(0.76);
  }

  .runway-step:nth-child(n).is-visible {
    transition-delay: 0s;
  }
}

@media (max-width: 980px) {
  .process-runway-section {
    background: linear-gradient(180deg, #fbfeff 0%, #f4fbfd 100%);
  }

  .process-runway-section::before {
    display: none;
  }

  .process-runway-screen {
    max-height: none;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .runway-stage {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .runway-stage {
    min-height: auto;
  }

  .runway-surface,
  .runway-plane {
    left: 25px;
  }

  .runway-surface {
    width: 52px;
  }

  .runway-surface::before,
  .runway-surface::after {
    display: none;
  }

  .runway-steps {
    grid-template-columns: 64px minmax(0, 1fr);
    row-gap: 16px;
  }

  .runway-step-left,
  .runway-step-right {
    grid-column: 2;
    text-align: left;
  }

  .runway-step::before {
    left: -38px;
    right: auto;
    width: 38px;
    transform: none;
  }

  .runway-step {
    min-height: auto;
    padding: 16px 17px;
  }
}


/* ===== Runway realism and reliable plane trigger ===== */
.runway-stage.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.runway-stage.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.runway-surface {
  top: -10% !important;
  bottom: -10% !important;
  width: clamp(126px, 15vw, 190px) !important;
  overflow: hidden;
  border-radius: 18px !important;
  clip-path: polygon(38% 0%, 62% 0%, 92% 100%, 8% 100%);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18) 0 2px, transparent 2px calc(100% - 2px), rgba(255,255,255,0.18) calc(100% - 2px) 100%),
    linear-gradient(180deg, #2e5666 0%, #274a59 42%, #203b49 100%) !important;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.16),
    inset 0 30px 70px rgba(255,255,255,0.12),
    0 26px 64px rgba(0, 48, 78, 0.18) !important;
}

.runway-surface::before,
.runway-surface::after {
  display: none !important;
}

.runway-centerline {
  position: absolute;
  left: 50%;
  top: 72px;
  bottom: 62px;
  width: 6px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, #ffffff 0 28px, transparent 28px 58px);
  border-radius: 999px;
  opacity: 0.88;
}

.runway-number {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.92);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.04em;
}

.runway-stage::before,
.runway-stage::after {
  content: "";
  position: absolute;
  top: 2%;
  bottom: 2%;
  z-index: 1;
  width: 8px;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(0,143,201,0.62) 0 7px, transparent 7px 36px);
  filter: drop-shadow(0 0 7px rgba(0,143,201,0.36));
  opacity: 0.72;
}

.runway-stage::before {
  left: calc(50% - clamp(82px, 9vw, 118px));
}

.runway-stage::after {
  right: calc(50% - clamp(82px, 9vw, 118px));
}

.runway-plane {
  width: clamp(70px, 7vw, 98px) !important;
  height: clamp(70px, 7vw, 98px) !important;
  opacity: 0;
  transform: translate(-50%, -140px) scale(0.7);
}

.runway-plane svg {
  filter: drop-shadow(0 18px 22px rgba(0, 38, 70, 0.28)) !important;
}

.runway-plane path:first-child {
  fill: #eaf8ff !important;
  stroke: #004e8d !important;
  stroke-width: 4 !important;
}

.runway-plane path:last-child {
  stroke: #00a8d8 !important;
  stroke-width: 4 !important;
}

.runway-plane.reveal,
.runway-plane.is-visible {
  opacity: 0;
  transform: translate(-50%, -140px) scale(0.7);
  animation: none;
}

.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneLandingV2 5.2s cubic-bezier(0.18, 0.82, 0.28, 1) 0.2s forwards;
}

@keyframes runwayPlaneLandingV2 {
  0% {
    top: -18%;
    opacity: 0;
    transform: translate(-50%, -130px) scale(0.62);
  }
  12% {
    opacity: 1;
  }
  38% {
    top: 16%;
    transform: translate(-50%, -18px) scale(1.04);
  }
  58% {
    top: 36%;
    transform: translate(-50%, 0) scale(0.92);
  }
  100% {
    top: 78%;
    opacity: 1;
    transform: translate(-50%, 0) scale(0.72);
  }
}

.runway-step {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.runway-step.reveal,
.runway-step.is-visible {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
}

.runway-stage.is-visible .runway-step {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 0.9s; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 1.75s; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 2.6s; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 3.45s; }

@media (prefers-reduced-motion: reduce) {
  .runway-stage.is-visible .runway-plane {
    animation: none;
    top: 48%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(1);
  }
}

@media (max-width: 640px) {
  .runway-surface {
    width: 56px !important;
    clip-path: none;
    border-radius: 999px !important;
  }

  .runway-centerline {
    width: 4px;
    top: 46px;
    bottom: 42px;
    background: repeating-linear-gradient(180deg, #ffffff 0 18px, transparent 18px 38px);
  }

  .runway-number {
    display: none;
  }

  .runway-stage::before,
  .runway-stage::after {
    display: none;
  }
}

/* ===== Runway step staggering and plane stop alignment ===== */
.runway-stage {
  min-height: min(68vh, 620px) !important;
}

.runway-steps {
  min-height: min(68vh, 620px);
  grid-template-columns: minmax(230px, 1fr) clamp(112px, 13vw, 172px) minmax(230px, 1fr) !important;
  grid-template-rows: repeat(7, minmax(54px, 1fr));
  row-gap: 0 !important;
  align-items: center;
}

.runway-step {
  min-height: 0 !important;
  max-width: 330px;
  align-self: center;
}

.runway-step:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-self: end;
}

.runway-step:nth-child(2) {
  grid-column: 3;
  grid-row: 3 / span 2;
  justify-self: start;
}

.runway-step:nth-child(3) {
  grid-column: 1;
  grid-row: 5 / span 2;
  justify-self: end;
}

.runway-step:nth-child(4) {
  grid-column: 3;
  grid-row: 7 / span 1;
  justify-self: start;
}

.runway-step-left::before,
.runway-step-right::before {
  top: 50%;
}

.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneLandingStops 7.4s cubic-bezier(0.2, 0.82, 0.26, 1) 0.18s forwards !important;
}

@keyframes runwayPlaneLandingStops {
  0% {
    top: -18%;
    opacity: 0;
    transform: translate(-50%, -130px) scale(0.58);
  }
  8% {
    opacity: 1;
  }
  16%, 26% {
    top: 14%;
    opacity: 1;
    transform: translate(-50%, 0) scale(1.02);
  }
  36%, 46% {
    top: 38%;
    opacity: 1;
    transform: translate(-50%, 0) scale(0.92);
  }
  56%, 66% {
    top: 62%;
    opacity: 1;
    transform: translate(-50%, 0) scale(0.82);
  }
  76%, 86% {
    top: 86%;
    opacity: 1;
    transform: translate(-50%, 0) scale(0.72);
  }
  100% {
    top: 94%;
    opacity: 0.92;
    transform: translate(-50%, 8px) scale(0.66);
  }
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 0.95s !important; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.45s !important; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.95s !important; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 5.45s !important; }

@media (prefers-reduced-motion: reduce) {
  .runway-stage.is-visible .runway-plane {
    animation: none !important;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, 0) scale(0.82);
  }
}

@media (max-width: 980px) {
  .runway-stage,
  .runway-steps {
    min-height: 660px !important;
  }

  .runway-steps {
    grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr) !important;
  }

  .runway-step {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .runway-stage,
  .runway-steps {
    min-height: auto !important;
  }

  .runway-steps {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    grid-template-rows: none;
    row-gap: 16px !important;
  }

  .runway-step:nth-child(n) {
    grid-column: 2;
    grid-row: auto;
    justify-self: stretch;
  }

  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneLandingStopsMobile 6.2s cubic-bezier(0.2, 0.82, 0.26, 1) 0.18s forwards !important;
  }

  @keyframes runwayPlaneLandingStopsMobile {
    0% { top: -12%; opacity: 0; transform: translate(-50%, -80px) scale(0.62); }
    12%, 22% { top: 12%; opacity: 1; transform: translate(-50%, 0) scale(0.86); }
    34%, 44% { top: 35%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(1); }
    56%, 66% { top: 58%; opacity: 1; transform: translate(-50%, 0) scale(0.70); }
    78%, 88% { top: 82%; opacity: 1; transform: translate(-50%, 0) scale(0.64); }
    100% { top: 92%; opacity: 0.9; transform: translate(-50%, 8px) scale(0.58); }
  }
}

/* ===== Runway compact viewport fit ===== */
.process-runway-screen {
  gap: clamp(24px, 3.6vw, 46px) !important;
}

.runway-stage,
.runway-steps {
  min-height: min(55vh, 500px) !important;
}

.runway-steps {
  grid-template-columns: minmax(210px, 1fr) clamp(96px, 11vw, 136px) minmax(210px, 1fr) !important;
  grid-template-rows: repeat(4, minmax(92px, 1fr)) !important;
  align-items: center;
}

.runway-step {
  max-width: 300px !important;
  padding: 14px 16px !important;
  min-height: 88px !important;
}

.runway-step:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.runway-step:nth-child(2) {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
}

.runway-step:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
}

.runway-step:nth-child(4) {
  grid-column: 3;
  grid-row: 4;
  justify-self: start;
}

.runway-step h3 {
  margin-bottom: 4px !important;
  font-size: 17px !important;
}

.runway-step p {
  font-size: 12px !important;
  line-height: 1.52 !important;
}

.runway-step span {
  margin-bottom: 5px !important;
}

.runway-surface {
  top: -5% !important;
  bottom: -5% !important;
  width: clamp(104px, 12vw, 150px) !important;
}

.runway-centerline {
  top: 50px !important;
  bottom: 46px !important;
  background: repeating-linear-gradient(180deg, #ffffff 0 22px, transparent 22px 48px) !important;
}

.runway-number {
  bottom: 20px !important;
  font-size: clamp(24px, 2.6vw, 34px) !important;
}

.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneLandingStopsCompact 6.4s cubic-bezier(0.2, 0.82, 0.26, 1) 0.18s forwards !important;
}

@keyframes runwayPlaneLandingStopsCompact {
  0% { top: -16%; opacity: 0; transform: translate(-50%, -110px) scale(0.58); }
  8% { opacity: 1; }
  16%, 26% { top: 12%; opacity: 1; transform: translate(-50%, 0) scale(0.98); }
  36%, 46% { top: 36%; opacity: 1; transform: translate(-50%, 0) scale(0.90); }
  56%, 66% { top: 60%; opacity: 1; transform: translate(-50%, 0) scale(0.80); }
  76%, 86% { top: 84%; opacity: 1; transform: translate(-50%, 0) scale(0.70); }
  100% { top: 91%; opacity: 0.92; transform: translate(-50%, 6px) scale(0.64); }
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 0.8s !important; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.0s !important; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.25s !important; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 4.5s !important; }

@media (max-width: 980px) {
  .runway-stage,
  .runway-steps {
    min-height: 560px !important;
  }

  .runway-steps {
    grid-template-columns: minmax(0, 1fr) 82px minmax(0, 1fr) !important;
    grid-template-rows: repeat(4, minmax(104px, 1fr)) !important;
  }

  .runway-step {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .runway-stage,
  .runway-steps {
    min-height: auto !important;
  }

  .runway-steps {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    grid-template-rows: none !important;
    row-gap: 12px !important;
  }

  .runway-step:nth-child(n) {
    grid-column: 2;
    grid-row: auto;
    justify-self: stretch;
  }

  .runway-step {
    min-height: auto !important;
  }
}

/* ===== Runway landing perspective: nose-down approach ===== */
.runway-surface {
  clip-path: polygon(42% 0%, 58% 0%, 96% 100%, 4% 100%) !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.16) 0 2px, transparent 2px calc(100% - 2px), rgba(255,255,255,0.16) calc(100% - 2px) 100%),
    linear-gradient(180deg, #365f70 0%, #284c5c 46%, #1f3947 100%) !important;
}

.runway-centerline {
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.72) 0 18px, transparent 18px 42px) !important;
  transform: translateX(-50%) perspective(260px) rotateX(7deg);
}

.runway-number {
  bottom: 18px !important;
  transform: translateX(-50%) perspective(240px) rotateX(12deg) !important;
}

.runway-plane {
  transform: translate(-50%, -120px) rotate(180deg) scale(0.34);
  transform-origin: center center;
}

.runway-plane.reveal,
.runway-plane.is-visible {
  opacity: 0;
  transform: translate(-50%, -120px) rotate(180deg) scale(0.34);
  animation: none;
}

.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneFinalApproach 6.6s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
}

@keyframes runwayPlaneFinalApproach {
  0% {
    top: -20%;
    opacity: 0;
    transform: translate(-50%, -120px) rotate(180deg) scale(0.30);
  }
  10% {
    opacity: 1;
  }
  18%, 28% {
    top: 12%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(0.48);
  }
  38%, 48% {
    top: 36%;
    transform: translate(-50%, 0) rotate(180deg) scale(0.68);
  }
  58%, 68% {
    top: 60%;
    transform: translate(-50%, 0) rotate(180deg) scale(0.92);
  }
  78%, 88% {
    top: 84%;
    transform: translate(-50%, 0) rotate(180deg) scale(1.18);
  }
  100% {
    top: 92%;
    opacity: 1;
    transform: translate(-50%, 8px) rotate(180deg) scale(1.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .runway-stage.is-visible .runway-plane {
    animation: none !important;
    top: 70%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(1);
  }
}

@media (max-width: 640px) {
  .runway-plane,
  .runway-plane.reveal,
  .runway-plane.is-visible {
    transform: translate(-50%, -80px) rotate(180deg) scale(0.34);
  }

  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneFinalApproachMobile 5.8s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
  }

  @keyframes runwayPlaneFinalApproachMobile {
    0% { top: -12%; opacity: 0; transform: translate(-50%, -70px) rotate(180deg) scale(0.32); }
    12%, 22% { top: 12%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.48); }
    34%, 44% { top: 35%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.64); }
    56%, 66% { top: 58%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.82); }
    78%, 88% { top: 82%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(1.02); }
    100% { top: 92%; opacity: 1; transform: translate(-50%, 8px) rotate(180deg) scale(1.12); }
  }
}


/* ===== Final runway alignment: number on top, centered growing plane ===== */
.runway-number {
  top: 24px !important;
  bottom: auto !important;
  transform: translateX(-50%) perspective(220px) rotateX(10deg) !important;
  z-index: 2;
}

.runway-centerline {
  top: 86px !important;
  bottom: 42px !important;
}

.runway-plane {
  left: 50% !important;
  top: -18%;
  opacity: 0;
  transform: translate(-50%, -110px) rotate(180deg) scale(0.28);
  transform-origin: 50% 50%;
}

.runway-plane.reveal,
.runway-plane.is-visible {
  opacity: 0;
  transform: translate(-50%, -110px) rotate(180deg) scale(0.28);
  animation: none !important;
}

.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneAlignedLanding 6.7s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
}

@keyframes runwayPlaneAlignedLanding {
  0% {
    top: -18%;
    opacity: 0;
    transform: translate(-50%, -115px) rotate(180deg) scale(0.24);
  }
  10% {
    opacity: 1;
  }
  18%, 28% {
    top: 14%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(0.46);
  }
  38%, 48% {
    top: 37%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(0.70);
  }
  58%, 68% {
    top: 60%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(0.98);
  }
  78%, 88% {
    top: 83%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(1.28);
  }
  100% {
    top: 92%;
    opacity: 1;
    transform: translate(-50%, 8px) rotate(180deg) scale(1.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  .runway-stage.is-visible .runway-plane {
    animation: none !important;
    top: 60%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(1) !important;
  }
}

@media (max-width: 640px) {
  .runway-number {
    display: block !important;
    top: 18px !important;
    font-size: 18px !important;
  }

  .runway-centerline {
    top: 58px !important;
  }

  .runway-plane,
  .runway-plane.reveal,
  .runway-plane.is-visible {
    left: 25px !important;
    transform: translate(-50%, -70px) rotate(180deg) scale(0.26);
  }

  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneAlignedLandingMobile 5.9s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
  }

  @keyframes runwayPlaneAlignedLandingMobile {
    0% { top: -12%; opacity: 0; transform: translate(-50%, -70px) rotate(180deg) scale(0.24); }
    12%, 22% { top: 12%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.42); }
    34%, 44% { top: 35%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.58); }
    56%, 66% { top: 58%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.76); }
    78%, 88% { top: 82%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.96); }
    100% { top: 92%; opacity: 1; transform: translate(-50%, 6px) rotate(180deg) scale(1.06); }
  }
}

/* ===== Final runway stop: remove number and hold beside step 04 ===== */
.runway-number {
  display: none !important;
}

.runway-centerline {
  top: 44px !important;
  bottom: 42px !important;
}

.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneStopAtStepFour 6.6s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
}

@keyframes runwayPlaneStopAtStepFour {
  0% {
    top: -18%;
    opacity: 0;
    transform: translate(-50%, -115px) rotate(180deg) scale(0.24);
  }
  10% {
    opacity: 1;
  }
  18%, 28% {
    top: 13%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(0.46);
  }
  38%, 48% {
    top: 38%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(0.70);
  }
  58%, 68% {
    top: 63%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(0.98);
  }
  78%, 100% {
    top: 87%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(1.24);
  }
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 0.8s !important; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.0s !important; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.25s !important; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 4.45s !important; }

@media (prefers-reduced-motion: reduce) {
  .runway-stage.is-visible .runway-plane {
    animation: none !important;
    top: 87%;
    opacity: 1;
    transform: translate(-50%, 0) rotate(180deg) scale(1.05) !important;
  }
}

@media (max-width: 640px) {
  .runway-number {
    display: none !important;
  }

  .runway-centerline {
    top: 36px !important;
  }

  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneStopAtStepFourMobile 5.9s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
  }

  @keyframes runwayPlaneStopAtStepFourMobile {
    0% { top: -12%; opacity: 0; transform: translate(-50%, -70px) rotate(180deg) scale(0.24); }
    12%, 22% { top: 12%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.42); }
    34%, 44% { top: 36%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.58); }
    56%, 66% { top: 60%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.76); }
    78%, 100% { top: 84%; opacity: 1; transform: translate(-50%, 0) rotate(180deg) scale(0.98); }
  }
}

/* ===== Precise runway alignment: step centers equal plane centers ===== */
.runway-stage,
.runway-steps {
  min-height: min(55vh, 500px) !important;
}

.runway-steps {
  position: relative !important;
  display: block !important;
  min-height: min(55vh, 500px) !important;
}

.runway-step {
  position: absolute !important;
  width: min(34vw, 330px) !important;
  max-width: 330px !important;
  min-height: auto !important;
  transform: translateY(calc(-50% + 18px)) scale(0.98) !important;
}

.runway-step:nth-child(1) { top: 13% !important; }
.runway-step:nth-child(2) { top: 38% !important; }
.runway-step:nth-child(3) { top: 63% !important; }
.runway-step:nth-child(4) { top: 87% !important; }

.runway-step-left {
  left: auto !important;
  right: calc(50% + clamp(78px, 8.5vw, 112px)) !important;
  text-align: right !important;
}

.runway-step-right {
  left: calc(50% + clamp(78px, 8.5vw, 112px)) !important;
  right: auto !important;
  text-align: left !important;
}

.runway-stage.is-visible .runway-step {
  transform: translateY(-50%) scale(1) !important;
}

.runway-step-left::before,
.runway-step-right::before {
  top: 50% !important;
}

.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneCenterAlignedStops 6.6s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
}

.runway-plane,
.runway-plane.reveal,
.runway-plane.is-visible {
  transform: translate(-50%, -50%) rotate(180deg) scale(0.24);
}

@keyframes runwayPlaneCenterAlignedStops {
  0% {
    top: -12%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.24);
  }
  10% {
    opacity: 1;
  }
  18%, 28% {
    top: 13%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.42);
  }
  38%, 48% {
    top: 38%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.64);
  }
  58%, 68% {
    top: 63%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.88);
  }
  78%, 100% {
    top: 87%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(1.08);
  }
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 0.8s !important; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.0s !important; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.25s !important; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 4.45s !important; }

@media (prefers-reduced-motion: reduce) {
  .runway-stage.is-visible .runway-plane {
    animation: none !important;
    top: 87%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.98);
  }
}

@media (max-width: 980px) {
  .runway-stage,
  .runway-steps {
    min-height: 560px !important;
  }

  .runway-step {
    width: min(38vw, 300px) !important;
  }

  .runway-step-left {
    right: calc(50% + 58px) !important;
  }

  .runway-step-right {
    left: calc(50% + 58px) !important;
  }
}

@media (max-width: 640px) {
  .runway-steps {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    min-height: auto !important;
  }

  .runway-step,
  .runway-step:nth-child(n) {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    transform: translateY(18px) scale(0.98) !important;
  }

  .runway-stage.is-visible .runway-step {
    transform: translateY(0) scale(1) !important;
  }

  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneCenterAlignedStopsMobile 5.9s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
  }

  @keyframes runwayPlaneCenterAlignedStopsMobile {
    0% { top: -12%; opacity: 0; transform: translate(-50%, -50%) rotate(180deg) scale(0.24); }
    12%, 22% { top: 12%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.40); }
    34%, 44% { top: 36%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.56); }
    56%, 66% { top: 60%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.72); }
    78%, 100% { top: 84%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.90); }
  }
}


/* ===== Stronger plane depth: small-to-large final approach ===== */
.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneDepthApproach 6.7s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
}

@keyframes runwayPlaneDepthApproach {
  0% {
    top: -12%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.16);
  }
  10% {
    opacity: 1;
  }
  18%, 28% {
    top: 13%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.34);
  }
  38%, 48% {
    top: 38%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.58);
  }
  58%, 68% {
    top: 63%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.88);
  }
  78%, 100% {
    top: 87%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(1.34);
  }
}

@media (max-width: 640px) {
  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneDepthApproachMobile 5.9s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards !important;
  }

  @keyframes runwayPlaneDepthApproachMobile {
    0% { top: -12%; opacity: 0; transform: translate(-50%, -50%) rotate(180deg) scale(0.18); }
    12%, 22% { top: 12%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.34); }
    34%, 44% { top: 36%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.50); }
    56%, 66% { top: 60%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.70); }
    78%, 100% { top: 84%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.96); }
  }
}

/* ===== Sync runway cards exactly with plane arrival stops ===== */
.runway-step {
  transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 1.38s !important; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.72s !important; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 4.06s !important; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 5.40s !important; }

@media (max-width: 640px) {
  .runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 0.88s !important; }
  .runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.18s !important; }
  .runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.48s !important; }
  .runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 4.78s !important; }
}

/* ===== Smooth runway pass: cards appear just after plane crosses ===== */
.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneSmoothPass 5.6s cubic-bezier(0.19, 0.78, 0.24, 1) 0.18s forwards !important;
}

@keyframes runwayPlaneSmoothPass {
  0% {
    top: -12%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.16);
  }
  8% {
    opacity: 1;
  }
  22% {
    top: 13%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.34);
  }
  43% {
    top: 38%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.58);
  }
  64% {
    top: 63%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.88);
  }
  85%, 100% {
    top: 87%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(1.34);
  }
}

.runway-step {
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 1.54s !important; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.72s !important; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.90s !important; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 5.08s !important; }

@media (max-width: 640px) {
  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneSmoothPassMobile 5.2s cubic-bezier(0.19, 0.78, 0.24, 1) 0.18s forwards !important;
  }

  @keyframes runwayPlaneSmoothPassMobile {
    0% { top: -12%; opacity: 0; transform: translate(-50%, -50%) rotate(180deg) scale(0.18); }
    8% { opacity: 1; }
    22% { top: 12%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.34); }
    43% { top: 36%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.50); }
    64% { top: 60%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.70); }
    85%, 100% { top: 84%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.96); }
  }

  .runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 1.44s !important; }
  .runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.54s !important; }
  .runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.64s !important; }
  .runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 4.74s !important; }
}

/* ===== Linear runway landing: instant cards after pass ===== */
.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneLinearLanding 5.2s linear 0.18s forwards !important;
}

@keyframes runwayPlaneLinearLanding {
  0% {
    top: -12%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.16);
  }
  5% {
    opacity: 1;
  }
  100% {
    top: 87%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(1.34);
  }
}

.runway-step {
  transition: opacity 0.16s ease-out, transform 0.16s ease-out !important;
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 1.54s !important; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.86s !important; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 4.17s !important; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 5.36s !important; }

@media (max-width: 640px) {
  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneLinearLandingMobile 4.9s linear 0.18s forwards !important;
  }

  @keyframes runwayPlaneLinearLandingMobile {
    0% { top: -12%; opacity: 0; transform: translate(-50%, -50%) rotate(180deg) scale(0.18); }
    5% { opacity: 1; }
    100% { top: 84%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.96); }
  }

  .runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 1.36s !important; }
  .runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.60s !important; }
  .runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.83s !important; }
  .runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 5.00s !important; }
}

/* ===== Decelerating runway landing: slow to runway end ===== */
.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneDeceleratingLanding 6.2s cubic-bezier(0.12, 0.72, 0.16, 1) 0.18s forwards !important;
}

@keyframes runwayPlaneDeceleratingLanding {
  0% {
    top: -12%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.16);
  }
  5% {
    opacity: 1;
  }
  42% {
    top: 48%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.70);
  }
  72% {
    top: 78%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(1.16);
  }
  100% {
    top: 91%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(1.36);
  }
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 1.20s !important; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.36s !important; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.64s !important; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 5.02s !important; }

@media (max-width: 640px) {
  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneDeceleratingLandingMobile 5.8s cubic-bezier(0.12, 0.72, 0.16, 1) 0.18s forwards !important;
  }

  @keyframes runwayPlaneDeceleratingLandingMobile {
    0% { top: -12%; opacity: 0; transform: translate(-50%, -50%) rotate(180deg) scale(0.18); }
    5% { opacity: 1; }
    42% { top: 48%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.58); }
    72% { top: 76%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.84); }
    100% { top: 88%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(1.02); }
  }

  .runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 1.08s !important; }
  .runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.20s !important; }
  .runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 3.45s !important; }
  .runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 4.76s !important; }
}

/* ===== One-curve runway landing: continuous deceleration, no segmented stops ===== */
.runway-stage.is-visible .runway-plane {
  animation: runwayPlaneOneCurveLanding 6.4s cubic-bezier(0.28, 0.02, 0.18, 1) 0.18s forwards !important;
}

@keyframes runwayPlaneOneCurveLanding {
  from {
    top: -12%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.16);
  }
  to {
    top: 87%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(1.34);
  }
}

.runway-step {
  transition: opacity 0.14s ease-out, transform 0.14s ease-out !important;
}

.runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 1.44s !important; }
.runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.88s !important; }
.runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 4.52s !important; }
.runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 6.22s !important; }

@media (prefers-reduced-motion: reduce) {
  .runway-stage.is-visible .runway-plane {
    animation: none !important;
    top: 87%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg) scale(1) !important;
  }
}

@media (max-width: 640px) {
  .runway-stage.is-visible .runway-plane {
    animation: runwayPlaneOneCurveLandingMobile 5.8s cubic-bezier(0.28, 0.02, 0.18, 1) 0.18s forwards !important;
  }

  @keyframes runwayPlaneOneCurveLandingMobile {
    from { top: -12%; opacity: 0; transform: translate(-50%, -50%) rotate(180deg) scale(0.18); }
    to { top: 84%; opacity: 1; transform: translate(-50%, -50%) rotate(180deg) scale(0.96); }
  }

  .runway-stage.is-visible .runway-step:nth-child(1) { transition-delay: 1.28s !important; }
  .runway-stage.is-visible .runway-step:nth-child(2) { transition-delay: 2.56s !important; }
  .runway-stage.is-visible .runway-step:nth-child(3) { transition-delay: 4.02s !important; }
  .runway-stage.is-visible .runway-step:nth-child(4) { transition-delay: 5.60s !important; }
}

/* ===== JS-controlled runway flight: exact position-triggered cards ===== */
.runway-stage {
  --plane-y: -34%;
  --plane-scale: 0.14;
  --plane-opacity: 0;
}

.runway-plane,
.runway-plane.reveal,
.runway-plane.is-visible,
.runway-stage.is-visible .runway-plane {
  top: var(--plane-y) !important;
  left: 50% !important;
  opacity: var(--plane-opacity) !important;
  transform: translate(-50%, -50%) rotate(180deg) scale(var(--plane-scale)) !important;
  animation: none !important;
  transition: none !important;
}

.runway-stage .runway-step,
.runway-stage.is-visible .runway-step,
.runway-stage .runway-step.reveal,
.runway-stage .runway-step.is-visible {
  opacity: 0 !important;
  transform: translateY(calc(-50% + 12px)) scale(0.985) !important;
  transition: opacity 0.13s ease-out, transform 0.13s ease-out !important;
  transition-delay: 0s !important;
}

.runway-stage .runway-step.passed,
.runway-stage.is-visible .runway-step.passed {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
}

@media (max-width: 640px) {
  .runway-plane,
  .runway-plane.reveal,
  .runway-plane.is-visible,
  .runway-stage.is-visible .runway-plane {
    left: 25px !important;
  }

  .runway-stage .runway-step,
  .runway-stage.is-visible .runway-step,
  .runway-stage .runway-step.reveal,
  .runway-stage .runway-step.is-visible {
    transform: translateY(12px) scale(0.985) !important;
  }

  .runway-stage .runway-step.passed,
  .runway-stage.is-visible .runway-step.passed {
    transform: translateY(0) scale(1) !important;
  }
}

/* ===== Runway cards: tighter reveal timing ===== */
.runway-stage .runway-step,
.runway-stage.is-visible .runway-step,
.runway-stage .runway-step.reveal,
.runway-stage .runway-step.is-visible {
  transition: opacity 0.10s ease-out, transform 0.10s ease-out !important;
}

/* ===== Runway cards: near-instant reveal ===== */
.runway-stage .runway-step,
.runway-stage.is-visible .runway-step,
.runway-stage .runway-step.reveal,
.runway-stage .runway-step.is-visible {
  transition: opacity 0.035s linear, transform 0.035s linear !important;
}

.runway-stage .runway-step.passed,
.runway-stage.is-visible .runway-step.passed {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
}

@media (max-width: 640px) {
  .runway-stage .runway-step.passed,
  .runway-stage.is-visible .runway-step.passed {
    transform: translateY(0) scale(1) !important;
  }
}

/* ===== Runway cards: coordinate-triggered, no delayed schedule ===== */
.runway-stage .runway-step,
.runway-stage.is-visible .runway-step,
.runway-stage .runway-step.reveal,
.runway-stage .runway-step.is-visible,
.runway-stage .runway-step.passed,
.runway-stage.is-visible .runway-step.passed {
  transition-delay: 0s !important;
}

/* ===== Runway cards: polished fade-in after coordinate trigger ===== */
.runway-stage .runway-step,
.runway-stage.is-visible .runway-step,
.runway-stage .runway-step.reveal,
.runway-stage .runway-step.is-visible {
  opacity: 0 !important;
  transform: translateY(calc(-50% + 14px)) scale(0.985) !important;
  filter: blur(2px);
  transition:
    opacity 0.28s ease-out,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.28s ease-out !important;
  transition-delay: 0s !important;
}

.runway-stage .runway-step.passed,
.runway-stage.is-visible .runway-step.passed {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
  filter: blur(0);
}

@media (max-width: 640px) {
  .runway-stage .runway-step,
  .runway-stage.is-visible .runway-step,
  .runway-stage .runway-step.reveal,
  .runway-stage .runway-step.is-visible {
    transform: translateY(14px) scale(0.985) !important;
  }

  .runway-stage .runway-step.passed,
  .runway-stage.is-visible .runway-step.passed {
    transform: translateY(0) scale(1) !important;
  }
}

/* ===== Runway section spacing: keep copy and scene apart ===== */
.process-runway-screen {
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.44fr) !important;
  gap: clamp(56px, 7vw, 104px) !important;
}

.process-runway-copy {
  max-width: 440px;
}

.runway-stage {
  transform: translateX(clamp(18px, 2.8vw, 42px));
}

@media (max-width: 1180px) and (min-width: 981px) {
  .process-runway-screen {
    grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr) !important;
    gap: 58px !important;
  }

  .process-runway-copy {
    max-width: 390px;
  }

  .runway-stage {
    transform: translateX(24px);
  }
}

@media (max-width: 980px) {
  .process-runway-screen {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
  }

  .process-runway-copy {
    max-width: none;
  }

  .runway-stage {
    transform: none;
  }
}

/* ===== 赴日前后流程支持：上方 6 个时间轴节点文字稍微放大 ===== */
.support-step-no {
  min-width: 46px !important;
  padding: 6px 10px !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
}

.support-step-text {
  min-height: 116px !important;
  padding: 16px 14px !important;
}

.support-step-text strong {
  font-size: 17px !important;
  line-height: 1.38 !important;
}

.support-step-text em {
  font-size: 13px !important;
  line-height: 1.56 !important;
}

@media (max-width: 1100px) {
  .support-step-text {
    min-height: 112px !important;
  }

  .support-step-text strong {
    font-size: 16px !important;
  }

  .support-step-text em {
    font-size: 12.5px !important;
  }
}

@media (max-width: 640px) {
  .support-step-no {
    font-size: 11px !important;
  }

  .support-step-text {
    min-height: 104px !important;
    padding: 14px 12px !important;
  }

  .support-step-text strong {
    font-size: 15px !important;
  }

  .support-step-text em {
    font-size: 13px !important;
  }
}

/* ===== Mobile drawer navigation: 右上角三横线菜单 ===== */
.mobile-menu-toggle,
.mobile-menu-backdrop,
.mobile-menu-drawer{
  display:none;
}

@media (max-width: 980px){
  .site-header{
    z-index:1000;
  }

  .header-inner{
    position:relative;
  }

  .site-header .nav{
    display:none !important;
  }

  .mobile-menu-toggle{
    display:inline-flex;
    width:44px;
    height:44px;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(24, 55, 92, .16);
    border-radius:999px;
    background:rgba(255,255,255,.72);
    -webkit-backdrop-filter:blur(16px);
    backdrop-filter:blur(16px);
    box-shadow:0 12px 28px rgba(25, 55, 90, .12);
    cursor:pointer;
    margin-left:auto;
    color:#17385d;
    touch-action:manipulation;
  }

  .mobile-menu-toggle span,
  .mobile-menu-toggle span::before,
  .mobile-menu-toggle span::after{
    display:block;
    width:19px;
    height:2px;
    border-radius:99px;
    background:currentColor;
    transition:transform .22s ease, opacity .18s ease;
    content:"";
  }

  .mobile-menu-toggle span{
    position:relative;
  }

  .mobile-menu-toggle span::before,
  .mobile-menu-toggle span::after{
    position:absolute;
    left:0;
  }

  .mobile-menu-toggle span::before{top:-6px;}
  .mobile-menu-toggle span::after{top:6px;}

  body.mobile-menu-open .mobile-menu-toggle span{
    background:transparent;
  }

  body.mobile-menu-open .mobile-menu-toggle span::before{
    transform:translateY(6px) rotate(45deg);
  }

  body.mobile-menu-open .mobile-menu-toggle span::after{
    transform:translateY(-6px) rotate(-45deg);
  }

  .mobile-menu-backdrop{
    display:block;
    position:fixed;
    inset:0;
    z-index:1200;
    background:rgba(8, 24, 42, .32);
    opacity:0;
    pointer-events:none;
    transition:opacity .26s ease;
  }

  .mobile-menu-drawer{
    display:flex;
    position:fixed;
    top:0;
    right:0;
    z-index:1201;
    width:min(84vw, 360px);
    height:100dvh;
    padding:22px 18px calc(22px + env(safe-area-inset-bottom));
    flex-direction:column;
    background:linear-gradient(145deg, rgba(255,255,255,.92), rgba(238,246,250,.82));
    -webkit-backdrop-filter:blur(24px) saturate(1.18);
    backdrop-filter:blur(24px) saturate(1.18);
    box-shadow:-24px 0 60px rgba(18, 45, 76, .22);
    transform:translateX(104%);
    transition:transform .3s cubic-bezier(.22,.8,.22,1);
    overflow-y:auto;
    overscroll-behavior:contain;
  }

  body.mobile-menu-open{
    overflow:hidden;
  }

  body.mobile-menu-open .mobile-menu-backdrop{
    opacity:1;
    pointer-events:auto;
  }

  body.mobile-menu-open .mobile-menu-drawer{
    transform:translateX(0);
  }

  .mobile-menu-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding-bottom:16px;
    border-bottom:1px solid rgba(23, 56, 93, .12);
  }

  .mobile-menu-title{
    display:flex;
    flex-direction:column;
    gap:3px;
    color:#17385d;
  }

  .mobile-menu-title strong{
    font-size:18px;
    letter-spacing:.04em;
  }

  .mobile-menu-title small{
    font-size:11px;
    letter-spacing:.14em;
    color:rgba(23, 56, 93, .62);
  }

  .mobile-menu-close{
    width:38px;
    height:38px;
    border:0;
    border-radius:999px;
    background:rgba(23,56,93,.08);
    color:#17385d;
    font-size:26px;
    line-height:1;
    cursor:pointer;
  }

  .mobile-menu-links{
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:18px 0;
  }

  .mobile-menu-links a,
  .mobile-menu-links summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-height:46px;
    padding:12px 14px;
    border-radius:16px;
    color:#17385d;
    text-decoration:none;
    font-size:15px;
    font-weight:650;
    background:rgba(255,255,255,.48);
    border:1px solid rgba(23, 56, 93, .08);
  }

  .mobile-menu-links a:active,
  .mobile-menu-links summary:active{
    transform:scale(.99);
    background:rgba(212,231,240,.62);
  }

  .mobile-menu-links details{
    border:0;
  }

  .mobile-menu-links summary{
    cursor:pointer;
    list-style:none;
  }

  .mobile-menu-links summary::-webkit-details-marker{
    display:none;
  }

  .mobile-menu-links summary::after{
    content:"⌄";
    font-size:18px;
    color:rgba(23,56,93,.58);
    transition:transform .2s ease;
  }

  .mobile-menu-links details[open] summary::after{
    transform:rotate(180deg);
  }

  .mobile-sub-links{
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:8px 0 4px 14px;
  }

  .mobile-sub-links a{
    min-height:40px;
    padding:10px 14px;
    font-size:13px;
    font-weight:560;
    color:rgba(23,56,93,.82);
    background:rgba(255,255,255,.32);
  }

  .mobile-menu-cta{
    margin-top:auto;
    padding-top:14px;
    border-top:1px solid rgba(23, 56, 93, .12);
  }

  .mobile-menu-cta a{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:46px;
    border-radius:999px;
    background:#17385d;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 14px 28px rgba(23,56,93,.2);
  }

  .side-nav{
    display:none !important;
  }
}

/* ===== 服务流程小飞机颜色修正：与“服务流程”文字同深蓝 ===== */
.runway-plane svg path {
  fill: #ffffff !important;
  stroke: var(--text) !important;
  stroke-width: 4 !important;
  stroke-linejoin: round !important;
  stroke-linecap: round !important;
}


/* ===== 服务流程小飞机最终颜色锁定：压过 first-child / last-child 旧浅蓝规则 ===== */
#process .runway-plane svg path,
#process .runway-plane svg path:first-child,
#process .runway-plane svg path:last-child,
.runway-plane svg path,
.runway-plane svg path:first-child,
.runway-plane svg path:last-child {
  fill: #ffffff !important;
  stroke: #153f5c !important;
  stroke-width: 4 !important;
  stroke-linejoin: round !important;
  stroke-linecap: round !important;
}


/* ===== 首页新增：跨国健康管理与慢病随访支持 ===== */
.health-loop-section{
  position:relative;
  isolation:isolate;
  min-height:calc(100vh - var(--header));
  height:calc(100vh - var(--header));
  overflow:hidden;
  padding:12px 0 14px;
  background:
    radial-gradient(ellipse at 14% 8%, rgba(0,143,201,.105), transparent 36%),
    radial-gradient(ellipse at 92% 86%, rgba(117,191,67,.095), transparent 34%),
    linear-gradient(180deg,#f7fcff 0%,#ffffff 42%,#f3fbfd 100%);
}

.health-loop-section::before{
  content:"";
  position:absolute;
  inset:12px 18px 10px;
  z-index:-1;
  border:1px solid rgba(0,143,201,.10);
  border-radius:34px;
  background:linear-gradient(135deg,rgba(255,255,255,.58),rgba(255,255,255,.20));
  pointer-events:none;
}

.health-loop-screen{
  height:100%;
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  gap:14px;
  align-content:start;
}

.health-loop-heading{
  max-width:980px;
  margin-bottom:0;
}

.health-loop-heading .section-label{
  margin-bottom:8px;
}

.health-loop-heading h2{
  margin:0 0 8px;
  color:var(--primary-dark);
  font-size:clamp(34px,3.2vw,54px);
  line-height:1.14;
}

.health-loop-lead{
  max-width:1020px;
  margin:0;
  color:#557184;
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.72;
}

.health-loop-main{
  min-height:0;
  display:grid;
  grid-template-columns:300px minmax(0,.88fr) minmax(380px,1fr);
  gap:18px;
  align-items:stretch;
  margin-top:-4px;
}

.health-loop-bookmarks{
  min-width:0;
  height:100%;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  grid-template-rows:auto repeat(3,minmax(0,1fr));
  gap:12px 10px;
  align-content:stretch;
}

.health-bookmarks-label{
  grid-column:1 / -1;
  margin:0;
  padding-left:2px;
  color:var(--primary-dark);
  font-size:12px;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.health-bookmark-item{
  position:relative;
  min-height:0;
  height:100%;
  padding:12px 12px 12px 13px;
  display:flex;
  align-items:center;
  gap:10px;
  overflow:visible;
  border-radius:18px;
  color:#153f5c;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(0,143,201,.15);
  box-shadow:0 12px 28px rgba(0,90,156,.07);
  backdrop-filter:blur(12px) saturate(1.08);
  -webkit-backdrop-filter:blur(12px) saturate(1.08);
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.health-bookmark-item:hover,
.health-bookmark-item:focus-within{
  border-color:rgba(0,143,201,.32);
  box-shadow:0 18px 36px rgba(0,90,156,.12);
  transform:translateY(-1px);
  z-index:12;
}

.health-bookmark-item:nth-child(2n+1){
  border-color:rgba(117,191,67,.22);
}

.health-bookmark-item:nth-child(2n+1):hover,
.health-bookmark-item:nth-child(2n+1):focus-within{
  border-color:rgba(117,191,67,.40);
}

.health-bookmark-no{
  flex:0 0 36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  color:var(--primary);
  background:rgba(0,143,201,.08);
  font-size:11px;
  font-weight:950;
  letter-spacing:.10em;
}

.health-bookmark-body{
  min-width:0;
}

.health-bookmark-body h3{
  margin:0 0 3px;
  color:#173e5d;
  font-size:14px;
  line-height:1.24;
}

.health-bookmark-body p{
  margin:0;
  color:#5e7888;
  font-size:11px;
  line-height:1.35;
}

.health-bookmark-body small{
  display:block;
  margin-top:2px;
  color:#8aa0ad;
  font-size:10px;
  line-height:1.25;
}

.health-bookmark-detail{
  position:absolute;
  left:calc(100% + 16px);
  top:50%;
  z-index:20;
  width:clamp(280px, 24vw, 360px);
  padding:18px 20px;
  opacity:0;
  visibility:hidden;
  transform:translate(8px,-50%);
  pointer-events:none;
  border-radius:22px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(0,143,201,.18);
  box-shadow:0 22px 48px rgba(0,90,156,.14);
  backdrop-filter:blur(16px) saturate(1.08);
  -webkit-backdrop-filter:blur(16px) saturate(1.08);
  transition:opacity .18s ease, transform .2s ease, visibility .18s ease;
}

.health-bookmark-detail::before{
  content:"";
  position:absolute;
  left:-8px;
  top:50%;
  width:16px;
  height:16px;
  background:rgba(255,255,255,.96);
  border-left:1px solid rgba(0,143,201,.18);
  border-bottom:1px solid rgba(0,143,201,.18);
  transform:translateY(-50%) rotate(45deg);
}

.health-bookmark-item:hover .health-bookmark-detail,
.health-bookmark-item:focus-within .health-bookmark-detail{
  opacity:1;
  visibility:visible;
  transform:translate(0,-50%);
}

.health-bookmark-detail-kicker{
  display:block;
  margin-bottom:8px;
  color:var(--primary);
  font-size:11px;
  font-weight:950;
  letter-spacing:.12em;
}

.health-bookmark-detail h4{
  margin:0 0 8px;
  color:#153f5c;
  font-size:18px;
  line-height:1.35;
}

.health-bookmark-detail p{
  margin:0;
  color:#567182;
  font-size:13px;
  line-height:1.72;
}

.health-bookmark-detail ul{
  margin:12px 0 0;
  padding-left:18px;
  color:#4f6f7d;
  font-size:12px;
  line-height:1.68;
}

.health-bookmark-detail li + li{
  margin-top:5px;
}

.health-bookmark-card-1 .health-bookmark-detail,
.health-bookmark-card-3 .health-bookmark-detail,
.health-bookmark-card-5 .health-bookmark-detail{
  left:calc(100% + 16px);
}

.health-bookmark-card-2 .health-bookmark-detail,
.health-bookmark-card-4 .health-bookmark-detail,
.health-bookmark-card-6 .health-bookmark-detail{
  left:auto;
  right:calc(100% + 16px);
  transform:translate(-8px,-50%);
}

.health-bookmark-card-2 .health-bookmark-detail::before,
.health-bookmark-card-4 .health-bookmark-detail::before,
.health-bookmark-card-6 .health-bookmark-detail::before{
  left:auto;
  right:-8px;
  border-left:none;
  border-bottom:none;
  border-right:1px solid rgba(0,143,201,.18);
  border-top:1px solid rgba(0,143,201,.18);
}

.health-bookmark-card-2:hover .health-bookmark-detail,
.health-bookmark-card-2:focus-within .health-bookmark-detail,
.health-bookmark-card-4:hover .health-bookmark-detail,
.health-bookmark-card-4:focus-within .health-bookmark-detail,
.health-bookmark-card-6:hover .health-bookmark-detail,
.health-bookmark-card-6:focus-within .health-bookmark-detail{
  transform:translate(0,-50%);
}

.health-loop-copy{
  min-width:0;
  display:grid;
  gap:10px;
  align-content:start;
}

.health-loop-intro{
  position:relative;
  padding:18px 20px;
  border:1px solid rgba(0,143,201,.14);
  border-radius:28px;
  background:rgba(255,255,255,.78);
  box-shadow:0 16px 38px rgba(0,90,156,.065);
  backdrop-filter:blur(16px) saturate(1.08);
  -webkit-backdrop-filter:blur(16px) saturate(1.08);
}

.health-loop-intro span{
  display:inline-flex;
  margin-bottom:9px;
  color:var(--primary-dark);
  font-size:13px;
  font-weight:950;
  letter-spacing:.06em;
}

.health-loop-intro p{
  margin:0;
  color:#466577;
  font-size:clamp(13px,.94vw,15px);
  line-height:1.78;
}

.health-loop-intro p + p{
  margin-top:9px;
}

.health-loop-fit-boundary{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:10px;
}

.health-loop-fit,
.health-loop-boundary{
  min-width:0;
  border-radius:24px;
  padding:16px 18px;
}

.health-loop-fit{
  color:#fff;
  background:linear-gradient(135deg,#005a9c 0%,#087eaf 100%);
  box-shadow:0 16px 34px rgba(0,90,156,.14);
}

.health-loop-boundary{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(21,63,92,.13);
}

.health-loop-fit h3,
.health-loop-boundary h3{
  margin:0 0 8px;
  font-size:15px;
}

.health-loop-fit h3{ color:#fff; }
.health-loop-boundary h3{ color:#153f5c; }

.health-loop-fit ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:6px;
}

.health-loop-fit li{
  position:relative;
  padding-left:13px;
  font-size:12px;
  line-height:1.48;
  color:rgba(255,255,255,.92);
}

.health-loop-fit li::before{
  content:"";
  position:absolute;
  left:0;
  top:.66em;
  width:4px;
  height:4px;
  border-radius:999px;
  background:#9ee6ff;
}

.health-loop-boundary p{
  margin:0;
  color:#536e7d;
  font-size:12px;
  line-height:1.62;
}

.health-loop-visual{
  min-width:0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:6px;
}

.health-loop-ring{
  position:relative;
  width:min(440px,100%);
  aspect-ratio:1;
  border-radius:999px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.96) 0 34%, transparent 35%),
    conic-gradient(from 10deg, rgba(0,143,201,.20), rgba(117,191,67,.20), rgba(0,90,156,.20), rgba(0,143,201,.20));
  box-shadow:inset 0 0 0 1px rgba(0,143,201,.13),0 18px 52px rgba(0,90,156,.10);
}

.health-loop-ring::before,
.health-loop-ring::after{
  content:"";
  position:absolute;
  border-radius:999px;
  pointer-events:none;
}

.health-loop-ring::before{
  inset:13%;
  border:1px dashed rgba(0,90,156,.22);
}

.health-loop-ring::after{
  inset:3.8%;
  border:1px solid rgba(255,255,255,.70);
}

.health-loop-center{
  position:absolute;
  inset:50% auto auto 50%;
  width:38%;
  min-width:150px;
  aspect-ratio:1;
  transform:translate(-50%,-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px;
  border-radius:999px;
  color:var(--primary-dark);
  background:rgba(255,255,255,.93);
  border:1px solid rgba(0,143,201,.18);
  box-shadow:0 16px 34px rgba(0,90,156,.09);
}

.health-loop-center strong{
  display:block;
  font-size:clamp(17px,1.35vw,20px);
  line-height:1.3;
  letter-spacing:-.04em;
}

.health-loop-center span{
  margin-top:5px;
  color:#4f6f7d;
  font-size:11px;
  font-weight:850;
  line-height:1.42;
}

.health-node{
  --x:50%;
  --y:50%;
  position:absolute;
  left:var(--x);
  top:var(--y);
  width:104px;
  min-height:58px;
  transform:translate(-50%,-50%);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:2px;
  padding:9px 10px;
  border-radius:18px;
  color:#153f5c;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(0,143,201,.15);
  box-shadow:0 12px 28px rgba(0,90,156,.09);
  backdrop-filter:blur(12px) saturate(1.1);
  -webkit-backdrop-filter:blur(12px) saturate(1.1);
}

.health-node span{
  color:var(--primary);
  font-size:10px;
  font-weight:950;
  letter-spacing:.12em;
}

.health-node strong{
  font-size:13px;
  line-height:1.22;
  color:#153f5c;
}

.node-1{--x:50%;--y:5%;}
.node-2{--x:88%;--y:29%;}
.node-3{--x:88%;--y:71%;}
.node-4{--x:50%;--y:95%;}
.node-5{--x:12%;--y:71%;}
.node-6{--x:12%;--y:29%;}

@media (min-width:981px) and (max-width:1320px){
  .health-loop-main{
    grid-template-columns:280px minmax(0,.9fr) minmax(340px,1fr);
    gap:14px;
  }

  .health-loop-heading h2{
    font-size:clamp(32px,3vw,46px);
  }

  .health-loop-ring{
    width:min(405px,100%);
  }

  .health-node{
    width:96px;
    min-height:54px;
    padding:8px 9px;
  }

  .health-node strong{
    font-size:12px;
  }
}

@media (max-width:980px){
  .health-loop-section{
    min-height:auto;
    height:auto;
    overflow:visible;
    padding:64px 0 40px;
  }

  .health-loop-section::before{
    inset:12px;
    border-radius:28px;
  }

  .health-loop-screen{
    height:auto;
    grid-template-rows:auto;
    gap:20px;
  }

  .health-loop-main{
    grid-template-columns:1fr;
    gap:18px;
    margin-top:0;
  }

  .health-loop-visual{
    order:-1;
    padding-top:0;
  }

  .health-loop-bookmarks{
    height:auto;
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:auto;
    order:3;
  }

  .health-bookmark-detail{
    display:none;
  }
}

@media (max-width:700px){
  .health-loop-lead{
    font-size:16px;
    line-height:1.7;
  }

  .health-loop-bookmarks,
  .health-loop-fit-boundary{
    height:auto;
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }

  .health-loop-ring{
    width:min(100%,350px);
    margin:0 auto;
    background:linear-gradient(180deg,rgba(0,143,201,.08),rgba(117,191,67,.08));
    border:1px solid rgba(0,143,201,.14);
    border-radius:28px;
    aspect-ratio:auto;
    padding:18px;
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
  }

  .health-loop-ring::before,
  .health-loop-ring::after{
    display:none;
  }

  .health-loop-center,
  .health-node{
    position:relative;
    inset:auto;
    left:auto;
    top:auto;
    transform:none;
    width:100%;
    min-width:0;
    aspect-ratio:auto;
    border-radius:18px;
  }

  .health-loop-center{
    padding:16px;
  }

  .health-node{
    min-height:0;
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
  }

  .health-node span{
    width:32px;
    flex:0 0 32px;
  }
}
