html,
body {
  font-size: 16px;
  color: var(--color-base02);
  -webkit-font-smoothing: antialiased;
  /* Chrome / Safari */
  -moz-osx-font-smoothing: grayscale;
  /* Firefox (macOS) */
  text-rendering: optimizeLegibility;
  /* 优化字体连字和可读性 */
}

@font-face {
  font-family: 'en';
  /* 自定义名称 */
  src: url('arialroundedmtbold.woff2') format('woff2'),
    url('arialroundedmtbold.woff') format('woff'),
    url('arialroundedmtbold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none !important;
}

.en {
  font-family: 'en', sans-serif;
}

:root {
  --color-base01: #48988D;
  --color-base02: #6BBA9C;
  --color-base03: #C99C5A;
  --color-base04: #9CBB3F;
  --color-base05: #EFD776;
  --color-base06: #FFB3A2;
  --color-base07: #595959;
  --color-green: var(--color-base01);
  --rounded: 5rem;
}

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

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

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

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

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

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

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

.bg01 {
  background: #FFF6F4;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .18) 70%, rgba(0, 0, 0, 0));
  border-bottom: 0;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Header Scrolled Effects */
.site-header.scrolled {
  background: rgba(255, 255, 255, .99);
  border-bottom: 1px solid rgba(72, 152, 141, .12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.site-header.scrolled .site-nav {
  min-height: 64px;
}

.site-header.scrolled .site-logo img {
  height: 40px;
}

.site-header.scrolled .nav-link {
  color: var(--color-base07) !important;
  padding-top: 1.15rem !important;
  padding-bottom: 1.15rem !important;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--color-base01) !important;
}

.site-header.scrolled .nav-menu:hover .nav-link.active:not(:hover) {
  color: var(--color-base07) !important;
}

.site-header.scrolled .nav-link::before {
  bottom: 0.45rem;
}

.site-header.scrolled .mega-menu {
  top: 64px;
}

.site-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: min-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-logo img {
  height: 54px;
  display: block;
  transition: height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu {
  display: flex;
  align-items: stretch;
  gap: .25rem;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  color: #fff !important;
  font-weight: 900 !important;
  position: relative;
  padding-top: 1.85rem !important;
  padding-bottom: 1.85rem !important;
  padding-left: 1.1rem !important;
  padding-right: 1.1rem !important;
  transition: padding-top 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    padding-bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-base01) !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.15rem;
  height: 3px;
  background: var(--color-base01);
  opacity: 0;
  transform: scaleX(.5);
  transition: opacity 0.2s ease, transform 0.2s ease, bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-menu:hover .nav-link.active:not(:hover) {
  color: #fff !important;
}

.nav-menu:hover .nav-link.active:not(:hover)::before {
  opacity: 0;
  transform: scaleX(.5);
}

.has-mega>.nav-link {
  padding-right: 1.7rem !important;
}

.has-mega>.nav-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: .75rem;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: all .2s ease;
}

.has-mega:hover>.nav-link::after {
  transform: translateY(-35%) rotate(225deg);
}

.mega-menu {
  position: fixed;
  top: 86px;
  left: 50%;
  right: auto;
  width: calc(100% - 1.5rem);
  max-width: 1320px;
  background: linear-gradient(45deg, #eef7f4 0%, #ffffff 78%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 156, 90, .16);
  border-radius: .9rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .05);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    visibility 0.3s,
    top 0.3s ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-menu .mega-inner {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 1.4rem;
  align-items: stretch;
  box-sizing: border-box;
  padding-left: 2rem !important;
  padding-right: 2.75rem !important;
  padding-top: 1.35rem !important;
  padding-bottom: 1.35rem !important;
}

.mega-feature {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.65rem;
  align-items: center;
  width: 360px;
  padding: .35rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: all .3s ease;
}

.mega-feature:hover {
  background: transparent;
}

.mega-feature img {
  width: 120px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: .4rem;
  transition: transform .4s ease;
}

.mega-visual {
  display: block;
  width: 120px;
  aspect-ratio: 3 / 2;
  border-radius: .4rem;
  background: center / cover no-repeat url("project-intro-room.jpg");
  transition: transform .4s ease;
}

.mega-visual-project {
  background-image: url("project-intro-aerial.jpg");
}

.mega-visual-medical {
  background-image: url("medical-rounds.jpg");
}

.mega-visual-smartcare {
  background-image: url("smart-care-hero.jpg");
}

.mega-visual-services {
  background-image: url("featured-services-hero.jpg");
}

.mega-visual-standard {
  background-image: url("project-intro-corridor.jpg");
}

.mega-visual-holistic {
  background-image: url("project-intro-room.jpg");
}

.mega-visual-updates {
  background-image: url("news01.jpg");
}

.mega-visual-contact {
  background-image: url("menu6.jpg");
}

.mega-visual-institute {
  background-image: url("news02.jpg");
}

.mega-feature:hover img,
.mega-feature:hover .mega-visual {
  transform: scale(1.03);
}

.mega-inner h5,
.footer-main h5 {
  color: #111;
  font-weight: 700;
}

.mega-inner h5 {
  margin-bottom: .35rem;
  position: relative;
  padding-left: .9rem;
}

.mega-inner h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: .25rem;
  bottom: .25rem;
  width: 4px;
  border-radius: 5px;
  background: var(--color-base03);
}

.mega-inner p {
  color: var(--color-base07);
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.65;
}

.mega-feature .mega-kicker {
  display: block;
  margin-bottom: .22rem;
  color: var(--color-base01);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.mega-feature .mega-copy {
  max-width: 230px;
  color: #202a28;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.42;
  white-space: pre-line;
}

.mega-links {
  display: flex;
  flex-wrap: wrap;
  gap: .18rem 1.15rem;
  align-content: center;
  align-items: start;
  padding-left: 1.1rem;
  border-left: 1px solid #ededed;
}

.mega-links-title {
  flex: 0 0 100%;
  margin: 0 0 .2rem;
  padding-left: 1.25rem !important;
  color: #202a28;
  font-size: 17px;
  line-height: 1.3;
}

.mega-links-title::before {
  left: .25rem;
  top: .12rem;
  bottom: .12rem;
  width: 3px;
}

.mega-links a {
  color: #333 !important;
  font-weight: 500;
  position: relative;
  width: auto;
  padding: .36rem 0 .36rem 1.25rem !important;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: color .2s ease;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.35;
}

.mega-links a::before {
  content: '';
  position: absolute;
  left: .25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-base03);
  opacity: 1;
  transition: transform .2s ease;
}

.mega-links a::after {
  display: none !important;
}

.mega-links a:hover {
  color: var(--color-base03) !important;
  background: transparent !important;
  transform: none;
}

.mega-links a.active {
  color: var(--color-base03) !important;
  background: transparent !important;
}

.nav-toggle,
.nav-toggle-btn {
  display: none;
}

@media (min-width: 993px) {
  .site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(221, 227, 225, .88);
    box-shadow: 0 10px 26px rgba(32, 36, 36, .035);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background .28s ease, box-shadow .28s ease, border-color .28s ease;
  }

  .site-header.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 8px 22px rgba(32, 36, 36, .055);
  }

  .site-nav {
    min-height: 94px;
    gap: 18px;
    transition: min-height .34s cubic-bezier(.22, .61, .36, 1), gap .34s cubic-bezier(.22, .61, .36, 1);
  }

  .site-logo {
    flex: 0 0 auto;
  }

  .site-logo img {
    height: 54px;
    transition: height .34s cubic-bezier(.22, .61, .36, 1);
  }

  .site-header.scrolled .site-nav {
    min-height: 64px;
    gap: 16px;
  }

  .site-header.scrolled .site-logo img {
    height: 40px;
  }

  .nav-menu {
    flex: 0 1 auto;
    align-self: stretch;
    align-items: stretch;
    gap: 18px;
    min-width: 0;
    max-width: calc(100% - 270px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    transition: gap .34s cubic-bezier(.22, .61, .36, 1), max-width .34s cubic-bezier(.22, .61, .36, 1);
  }

  .site-header.scrolled .nav-menu {
    gap: 16px;
    max-width: calc(100% - 210px);
  }

  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .nav-link,
  .site-header.scrolled .nav-link {
    display: flex !important;
    align-items: center;
    min-height: 50px;
    padding: 0 !important;
    border-radius: 999px;
    color: #394240 !important;
    font-size: 16px;
    font-weight: 750 !important;
    line-height: 1;
    white-space: nowrap;
    overflow: visible;
    transition: min-height .34s cubic-bezier(.22, .61, .36, 1), padding .34s cubic-bezier(.22, .61, .36, 1), font-size .34s cubic-bezier(.22, .61, .36, 1), color .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .site-header.scrolled .nav-link {
    min-height: 36px;
    font-size: 13.5px;
  }

  .nav-link:hover {
    color: var(--color-base01) !important;
    background: transparent;
    box-shadow: none;
  }

  .nav-link.active,
  .nav-link.active:hover,
  .site-header.scrolled .nav-link.active,
  .site-header.scrolled .nav-link.active:hover,
  .nav-menu:hover .nav-link.active:not(:hover),
  .site-header.scrolled .nav-menu:hover .nav-link.active:not(:hover) {
    color: #fff !important;
    background: var(--color-base01);
    box-shadow: 0 8px 18px rgba(72, 152, 141, .16);
    min-height: 42px;
    padding: 0 17px !important;
  }

  .site-header.scrolled .nav-link.active,
  .site-header.scrolled .nav-menu:hover .nav-link.active:not(:hover) {
    min-height: 36px;
    padding: 0 15px !important;
  }

  /* 迷你模式下再次经过当前栏目时保持原尺寸，不重复放大。 */
  .site-header.scrolled .nav-link.active:hover {
    min-height: 36px;
    padding: 0 15px !important;
  }

  .nav-link::before {
    display: none;
  }

  .has-mega>.nav-link {
    padding-right: 18px !important;
  }

  .site-header.scrolled .has-mega>.nav-link {
    padding-right: 16px !important;
  }

  .has-mega>.nav-link::after {
    right: 0;
    width: 6px;
    height: 6px;
    border-width: 1.5px;
    transition: right .34s cubic-bezier(.22, .61, .36, 1), transform .2s ease;
  }

  .has-mega>.nav-link.active {
    padding-right: 29px !important;
  }

  .nav-menu:hover .has-mega>.nav-link.active:not(:hover) {
    padding-right: 29px !important;
  }

  .site-header.scrolled .has-mega>.nav-link.active {
    padding-right: 29px !important;
  }

  .site-header.scrolled .nav-menu:hover .has-mega>.nav-link.active:not(:hover) {
    padding-right: 29px !important;
  }

  .has-mega>.nav-link.active::after {
    right: 16px;
  }

  .site-header.scrolled .has-mega>.nav-link.active::after {
    right: 13px;
  }

  .mega-menu {
    top: 94px;
  }
}

.homeSwiper {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.homeSwiper .swiper-slide {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* 首页 Hero 左侧以白色自然过渡到画面中部，文字层保持在遮罩之上。 */
.homeSwiper .swiper-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(13, 91, 56, .78) 0%, rgba(13, 91, 56, .18) 25%, rgba(255, 255, 255, .2) 46%, rgba(255, 255, 255, 0) 68%);
  content: "";
  pointer-events: none;
}

.homeSwiper .swiper-slide>.container {
  position: relative;
  z-index: 2;
}

.homeSwiper .swiper-slide video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homeSwiper .swiper-slide.lb-video::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, .28);
}

.hero-video-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .25) !important;
  border-radius: 50px !important;
  padding: .75rem 1.6rem !important;
  background: #A14E98 !important;
  /* backdrop-filter: blur(6px); */
  transition: all .2s ease;
}

.hero-video-btn:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .95) !important;
  background: rgba(72, 152, 141, .72) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  transform: translateY(-2px);
}

.homeSwiper .swiper-slide.lb01 {
  background-image: url(../images/home01.jpg);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.homeSwiper .swiper-button-next,
.homeSwiper .swiper-button-prev,
.homeSwiper .swiper-pagination {
  z-index: 3;
}

.homeSwiper .swiper-pagination {
  display: flex !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 50px !important;
}

.homeSwiper .swiper-pagination span {
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #fff !important;
  border-radius: 50px !important;
  background: transparent !important;
  margin: 0 5px !important;
  cursor: pointer !important;
  opacity: .7 !important;
  transition: all .3s ease !important;
}

.homeSwiper .swiper-pagination span.swiper-pagination-bullet-active {
  width: 50px !important;
  background: #fff !important;
  border: 2px solid #fff !important;
}

.service-list {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.service-list img {
  transition: all .3s ease;
}

.service-list>div {
  position: absolute !important;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  color: #fff;
  position: relative;
  transition: all .3s ease;
}

.service-list>div>div {
  position: absolute;
  transition: all .3s ease-in-out;
  transition-delay: .1s;
  opacity: 0;
  margin-top: 2rem;
}

.service-list:hover img {
  transform: scale(1.05, 1.05) translateY(-10px);
}

.service-list:hover>div {
  padding: 3rem 1.5rem 7rem 1.5rem;
}

.service-list:hover>div>div {
  margin-top: 1rem;
  opacity: 1;
  display: flex;
}

.service-list>div a {
  color: #fff;
}

.service-list.s01>div {
  background: linear-gradient(180deg, rgba(211, 233, 124, 0), rgba(153, 178, 58, 1) 50%);
}

.service-list.s02>div {
  background: linear-gradient(180deg, rgba(135, 228, 220, 0), rgba(72, 152, 141, 1) 50%);
}

.service-list.s03>div {
  background: linear-gradient(180deg, rgba(249, 135, 125, 0), rgba(226, 65, 55, 1) 50%);
}

.pt-list h4 sup {
  font-size: 14px;
  padding-left: 5px;
}

.serviceSwiper {
  width: 100%;
  overflow: hidden;
}

.serviceSwiper .swiper-slide {
  position: relative;
  padding-bottom: 60px;
}

.serviceSwiper .swiper-slide>div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.serviceSwiper .swiper-slide>div>a img {
  width: 200px;
}

.serviceSwiper .swiper-slide::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 8px;
  border-radius: 5px;
  transition: all .3s ease;
}

.serviceSwiper .swiper-slide:hover::after {
  width: 70px;
}

.serviceSwiper .swiper-slide:nth-child(1)::after {
  background-color: var(--color-base06);
}

.serviceSwiper .swiper-slide:nth-child(2)::after {
  background-color: var(--color-base02);
}

.serviceSwiper .swiper-slide:nth-child(3)::after {
  background-color: var(--color-base04);
}

.serviceSwiper .swiper-slide:nth-child(4)::after {
  background-color: var(--color-base03);
}

.serviceSwiper .swiper-slide:nth-child(5)::after {
  background-color: var(--color-base01);
}

.serviceSwiper .swiper-slide:nth-child(6)::after {
  background-color: var(--color-base06);
}

.serviceSwiper .swiper-slide:nth-child(7)::after {
  background-color: var(--color-base06);
}

.box01 {
  height: 70vh;
  display: flex;
}

.box01 .box-list {
  flex-grow: 1;
  background-size: auto 100%;
  background-position: top center;
  transition: all .2s;
  position: relative;
}

.box01 .box-list:hover {
  flex-grow: 2;
}

.box01 .box-list::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: all .2s;
}

.box01 .box-list:hover::after {
  opacity: 0;
}

.box01 .box-list>div {
  position: absolute;
  z-index: 2;
  left: 0;
  padding-left: 30px;
  right: 0;
  bottom: 0;
  top: 0;
  color: #fff;
  transition: all .2s;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 2rem;
}

.box01 .box-list>div span {
  transition: all .2s;
  transform: translateY(1rem);
  opacity: 0;
}

.box01 .box-list:hover>div span {
  opacity: 1;
  transform: translateY(0);
}

.box01 .box-list:hover>div {
  background: linear-gradient(180deg, rgba(135, 228, 229, 0) 50%, rgba(72, 152, 141, 1) 100%);
}


.box01 .box-list:nth-child(1) {
  background-image: url(img04.jpg);
}

.box01 .box-list:nth-child(2) {
  background-image: url(img05.jpg);
}

.box01 .box-list:nth-child(3) {
  background-image: url(img06.jpg);
}

.box01 .box-list:nth-child(4) {
  background-image: url(img07.jpg);
}

.box01 .box-list:nth-child(5) {
  background-image: url(img08.jpg);
}

.box01 .box-list:nth-child(6) {
  background-image: url(img09.jpg);
}

.newsSwiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 4rem;
}

.newsSwiper .swiper-slide a {
  opacity: .3;
  transform: scale(0.8);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsSwiper .swiper-slide-next a {
  opacity: 1;
  transform: scale(1);
}

.news-list h5 {
  padding: 0 1.25rem;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.news-list small {
  padding: 0 1.25rem;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.newsSwiper .swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  background-color: #fff !important;
  border: 2px solid #DEDEDE !important;
  opacity: .5 !important;
}

.newsSwiper .swiper-pagination-bullet-active {
  background-color: #DEDEDE !important;
  border: 2px solid #DEDEDE !important;
  opacity: 1 !important;
}

.box02 {
  background: linear-gradient(90deg, #ECF8F4, #B3F3E3);
}

.footer-appointment {
  padding: 58px 0 62px;
  background: linear-gradient(105deg, #effaf7 0%, #d8f7ee 58%, #baf0e1 100%);
}

.footer-appointment-inner {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.38fr);
  gap: 78px;
  align-items: center;
}

.footer-appointment-copy strong {
  display: block;
  margin-bottom: 7px;
  color: var(--color-base03);
  font-size: 16px;
  font-weight: 700;
}

.footer-appointment-copy h3 {
  margin: 0 0 9px;
  color: #243b37;
  font-family: 'en', sans-serif;
  font-size: 30px;
  line-height: 1.15;
}

.footer-appointment-copy p {
  margin: 0;
  color: #55716b;
  font-size: 14px;
  line-height: 1.8;
}

.footer-appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.footer-appointment-form input:not([type="hidden"]) {
  width: 100%;
  height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(72, 152, 141, .1);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, .94);
  color: #34423f;
  font: inherit;
  box-shadow: 0 4px 14px rgba(50, 116, 105, .05);
}

.footer-appointment-form input:not([type="hidden"]):focus {
  border-color: rgba(72, 152, 141, .42);
  box-shadow: 0 0 0 3px rgba(72, 152, 141, .1);
}

.footer-appointment-form button {
  grid-column: 1 / -1;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--color-base01);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.footer-appointment-form button:hover {
  background: #3e887e;
  transform: translateY(-1px);
}

.site-footer {
  background: #f7f7f7;
  color: var(--color-base07);
  padding-top: 4rem;
  font-size: 14px;
}

.footer-main {
  padding-bottom: 3.5rem;
}

.footer-main h5 {
  font-size: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2.5rem 2rem;
}

.footer-menu h5 {
  margin: 0;
}

.footer-menu h5 a {
  color: #111;
  font-weight: 700;
}

.footer-submenu a {
  display: block;
  color: var(--color-base07);
  font-weight: 600;
  margin-top: 1rem;
}

.footer-menu a:hover,
.footer-menu.active h5 a {
  color: var(--color-base01);
}

.footer-copy {
  border-top: 1px solid #e5e5e5;
  text-align: center;
  padding: 1.4rem 0;
  font-size: 12px;
  font-weight: 600;
  color: #777;
}

/* 全站页脚：二维码、主栏目导航与联系信息三列布局。 */
.site-footer {
  padding: 4.25rem 0 0;
  color: var(--color-base07);
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.5rem;
  padding-bottom: 3.25rem;
}

.footer-layout h2 {
  margin: 0 0 .85rem;
  color: #202a28;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: .02em;
}

.footer-layout p {
  margin: 0;
  color: #71807c;
  line-height: 1.8;
}

.footer-qr-grid {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.35rem;
}

.footer-qr-grid figure {
  margin: 0;
  text-align: center;
}

.footer-qr-grid img {
  display: block;
  width: 112px;
  height: 112px;
  padding: .45rem;
  border: 1px solid rgba(72, 152, 141, .14);
  border-radius: .8rem;
  background: #fff;
  object-fit: contain;
}

.footer-qr-grid figcaption {
  margin-top: .55rem;
  color: #71807c;
  font-size: 12px;
}

.footer-quick .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 2rem;
}

.footer-quick .footer-menu h5 {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

.footer-quick .footer-menu h5 a {
  color: #3f4b48;
  font-weight: 650;
  transition: color .2s ease;
}

.footer-quick .footer-menu h5 a:hover {
  color: var(--color-base01);
}

.footer-meta-lead {
  max-width: 280px;
}

.footer-meta address {
  display: grid;
  gap: .5rem;
  margin: 1.25rem 0 1.35rem;
  color: #71807c;
  font-style: normal;
  line-height: 1.7;
}

.footer-meta address a {
  color: #3f4b48;
  font-weight: 650;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--color-base01);
  font-weight: 700;
}

.footer-contact-link i {
  transition: transform .2s ease;
}

.footer-contact-link:hover i {
  transform: translateX(3px);
}

.site-footer .footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 2rem;
  border-top-color: rgba(72, 152, 141, .14);
}

@media (max-width: 991px) {
  .footer-appointment-inner {
    grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
    gap: 38px;
  }

  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.75rem 2rem;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-appointment {
    padding: 44px 0 48px;
  }

  .footer-appointment-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-appointment-copy h3 {
    font-size: 27px;
  }

  .site-footer {
    padding-top: 3.25rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.75rem;
  }

  .footer-meta {
    grid-column: auto;
  }

  .footer-quick .footer-links {
    gap: .9rem 1.25rem;
  }

  .site-footer .footer-copy {
    justify-content: flex-start;
    gap: .35rem 1rem;
    line-height: 1.7;
  }
}

.banner {
  width: 100%;
  aspect-ratio: 1920 / 360;
  background-color: #EBF2F6;
  display: flex;
  align-items: center;
  justify-content: start;
}

.rounded-img {
  border-top-left-radius: var(--rounded);
  border-bottom-right-radius: var(--rounded);
}

.wenhua div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right;
  padding-left: 2rem;
  padding-bottom: 1rem;
  float: left;
}

.wenhua div:nth-child(1) {
  background-image: url(../images/img11.jpg);
  background-color: #ECF5DC;
  width: 40%;
  height: 570px;
  border-top-left-radius: var(--rounded);
}

.wenhua div:nth-child(2) {
  background-image: url(../images/img12.jpg);
  background-color: #DCEFF5;
  width: 60%;
  height: 285px;
}

.wenhua div:nth-child(3) {
  background-image: url(../images/img13.jpg);
  background-color: #FFFBEB;
  width: 30%;
  height: 285px;
}

.wenhua div:nth-child(4) {
  background-image: url(../images/img14.jpg);
  background-color: #F5DCDD;
  width: 30%;
  height: 285px;
  border-bottom-right-radius: var(--rounded);
}

.togal-link strong {
  display: flex;
  gap: .5rem;
  align-items: center;
  cursor: pointer;
  transition: all .3s ease;
}

.togal-link strong.on,
.togal-link strong:hover {
  color: var(--color-base03);
}

.togal-img img,
.togal-text p {
  display: none;
}

.togal-img img.on,
.togal-text p.on {
  display: block;
}

.bg-normal {
  background: #EBF2F6
}



@media (max-width: 1180px) {
  .site-header {
    position: sticky;
    background: rgba(255, 255, 255, .99);
    border-bottom: 1px solid rgba(72, 152, 141, .08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  }

  .site-nav {
    min-height: 70px;
  }

  .site-logo img {
    height: 44px;
  }

  .nav-toggle-btn {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--color-base01);
    font-size: 24px;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
  }

  .nav-toggle:checked~.nav-menu {
    display: flex;
  }

  .nav-item {
    display: block;
    border-top: 1px solid #eef2f1;
  }

  .nav-link {
    color: var(--color-base07) !important;
    height: auto !important;
    display: block !important;
    padding: 1rem !important;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link.active {
    color: var(--color-base01) !important;
    background: rgba(72, 152, 141, .08);
    border-left: 4px solid var(--color-base01);
    padding-left: calc(1rem - 4px) !important;
  }

  .nav-menu:hover .nav-link.active:not(:hover) {
    color: var(--color-base01) !important;
  }

  .nav-item.open>.nav-link {
    color: var(--color-base01) !important;
  }

  .nav-item.open>.nav-link::after {
    transform: translateY(-35%) rotate(225deg);
  }

  .mega-menu {
    position: static;
    left: auto;
    right: auto;
    width: auto;
    max-width: none;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    background: #f8f8f8;
    transition: none;
  }

  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu {
    transform: none;
  }

  .nav-item.open .mega-menu {
    display: block;
  }

  .mega-menu .mega-inner {
    display: block;
    padding: 0 1.25rem 1rem !important;
  }

  .mega-feature {
    display: block;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .mega-feature img,
  .mega-feature .mega-visual,
  .mega-feature p {
    display: none;
  }

  .mega-feature h5 {
    display: none;
  }

  /* 移动端只保留二级栏目链接，不重复显示父栏目标题。 */
  .mega-feature,
  .mega-links-title {
    display: none;
  }

  .mega-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: .15rem;
    padding-left: 0;
    border-left: 0;
  }

  .mega-links a {
    width: auto;
    min-width: 0;
    padding: .65rem 1.4rem .65rem 1.2rem !important;
    font-size: 15px;
  }

  .footer-main {
    padding-bottom: 2.5rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }

  .footer-submenu a {
    margin-top: .8rem;
  }
}

@media (max-width: 768px) {
  .homeSwiper {
    height: 60vh;
  }

  .rounded-img {
    border-top-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
  }

  .homeSwiper .swiper-slide {
    aspect-ratio: 4 / 3;
  }

  .homeSwiper .swiper-pagination {
    bottom: 30px !important;
  }

  .homeSwiper .swiper-pagination span {
    width: 15px !important;
    height: 15px !important;
  }

  .homeSwiper .swiper-pagination span.swiper-pagination-bullet-active {
    width: 30px !important;
  }

  .box01 {
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  .box01 .box-list {
    width: calc(100% / 2 - 5px);
    height: 200px;
    background-size: cover;
  }

  .box01 .box-list:hover {
    width: calc(100% / 2 - 5px);
  }

  .box01 .box-list>div {
    padding: 1rem;
    background: linear-gradient(180deg, rgba(135, 228, 229, 0) 50%, rgba(72, 152, 141, 1) 100%);
  }

  .box01 .box-list::after {
    display: none;
  }

  .box01 .box-list>div span {
    display: none;
  }

  .wenhua div {
    padding-left: 1rem;
  }

  .wenhua div:nth-child(1) {
    width: 100%;
    height: 30vh;
    border-top-left-radius: 0;
  }

  .wenhua div:nth-child(2) {
    width: 50%;
    height: 30vh;
    background-size: 250%;
    background-position: bottom;
    justify-content: start;
    padding-top: 2rem;
  }

  .wenhua div:nth-child(3) {
    width: 50%;
    height: 30vh;
    background-size: 130%;
    background-position: -15vw bottom;
    justify-content: start;
    padding-top: 2rem;
  }

  .wenhua div:nth-child(4) {
    width: 100%;
    height: 30vh;
    padding-top: 2rem;
    justify-content: start;
    border-bottom-right-radius: 0;
  }



}

/* Project introduction page */
:root {
  --ink: #202424;
  --muted: #626b69;
  --line: #dde3e1;
  --green: #48988d;
  --green-dark: #2f746c;
  --mint: #edf8f5;
  --cream: #fff5dd;
  --peach: #fff0e9;
  --lavender: #f3f0fa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.care-page {
  margin: 0;
  padding-top: 94px;
  /* 仅裁切横向溢出，不把单页 main 变成第二个纵向滚动容器 */
  overflow-x: clip;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

.care-page a {
  color: inherit;
}

.k-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.k-section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.copy-emphasis {
  color: #334b47;
  font-weight: 700;
}


.care-hero {
  padding: 96px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 82px;
  align-items: center;
  min-height: 470px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  color: #181b1a;
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -.055em;
}

.hero-copy p {
  max-width: 510px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

/* 首屏 hero 左侧内容按小标题、标题、文案、按钮自然分层进入。 */
.hero-copy-staggered>*,
.article-head.hero-copy-staggered>* {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: hero-staggered-in .7s cubic-bezier(.25, .46, .45, .94) both;
  animation-delay: var(--hero-delay, 0ms);
}

@keyframes hero-staggered-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-copy-staggered>*,
  .article-head.hero-copy-staggered>* {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.medical-subnav .subnav-link {
  border-color: #b9d6d0;
  background: rgba(255, 255, 255, .72);
  color: #356b63 !important;
}

.smart-subnav .subnav-link {
  border-color: #b9d6d0;
  background: rgba(255, 255, 255, .72);
  color: #356b63 !important;
}

.smart-subnav .subnav-link:hover,
.smart-subnav .subnav-link.active {
  border-color: #4da098;
  background: #4da098;
  color: #fff !important;
  box-shadow: 0 9px 20px rgba(72, 152, 141, .18);
}

.six-subnav {
  max-width: 650px;
}

.six-subnav .subnav-link {
  border-color: #b9d6d0;
  background: rgba(255, 255, 255, .72);
  color: #356b63 !important;
}

.six-subnav .subnav-link:hover,
.six-subnav .subnav-link.active {
  border-color: #4da098;
  background: #4da098;
  color: #fff !important;
  box-shadow: 0 9px 20px rgba(72, 152, 141, .18);
}

.medical-subnav .subnav-link:hover,
.medical-subnav .subnav-link.active {
  border-color: #4da098;
  background: #4da098;
  color: #fff !important;
  box-shadow: 0 9px 20px rgba(72, 152, 141, .18);
}

.care-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--green-dark) !important;
  font-weight: 700;
  transition: .2s ease;
}

.care-btn.primary {
  color: #fff !important;
  background: var(--green);
}

.care-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 113, 104, .12);
}

.hero-visual {
  position: relative;
  padding: 34px 0 0 34px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0 44px 42px 0;
  border-radius: 50%;
  background: var(--mint);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 48% 48% 14px 48%;
}

.hero-badge {
  position: absolute;
  right: -26px;
  bottom: 8px;
  z-index: 2;
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 12px 14px rgba(49, 117, 108, .18));
}

.quick-section {
  padding: 0 0 102px;
}

.quick-section h2 {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.quick-intro {
  max-width: 850px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

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

.service-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: .2s ease;
}

.service-card:hover {
  border-color: rgba(72, 152, 141, .55);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.service-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card i:first-child {
  font-size: 28px;
}

.service-card:nth-child(1) i:first-child,
.service-card:nth-child(5) i:first-child {
  color: #6eb8f4;
}

.service-card:nth-child(2) i:first-child,
.service-card:nth-child(6) i:first-child {
  color: #62cba8;
}

.service-card:nth-child(3) i:first-child {
  color: #f2a990;
}

.service-card:nth-child(4) i:first-child {
  color: #d39bcf;
}

.service-card:nth-child(7) i:first-child {
  color: #e5b35f;
}

.service-card .fa-arrow-right {
  color: #555;
  font-size: 13px;
}

.quick-banner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 22px 36px;
  border-radius: 8px;
  background: var(--cream);
}

.quick-banner strong {
  font-size: 20px;
}

.quick-banner span {
  color: #6c6250;
  font-size: 14px;
}

.quick-banner a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 650;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: #f8f3ef;
}

.about-section .k-container {
  position: relative;
  z-index: 1;
}

.about-line-art {
  position: absolute;
  z-index: 0;
  right: -30px;
  bottom: -76px;
  width: min(920px, 72vw);
  height: auto;
  opacity: .9;
  pointer-events: none;
}

.about-intro {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.about-intro h2 {
  margin: 0;
  color: #1d2221;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.about-label {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

/* Inner-page section headings follow the Project introduction standard. */
.section-head h2,
.about-intro h2,
.project-section-heading h2,
.smart-detail-heading h2,
.service-story-aside h2,
.clinical-source-heading h2,
.hospital-section-title h2,
.hospital-alliance-copy h2,
.international-source-copy h2,
.research-mission h2,
.research-path-copy h2,
.contact-panel-head h2,
.booking-aside h2 {
  margin: 0;
  color: #1d2927;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.about-copy p {
  margin: 0;
  color: #5d6563;
  font-size: 16px;
  line-height: 2;
}

.about-copy p+p {
  margin-top: 16px;
}

.stat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.stat-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(64, 48, 38, .10);
}

.stat-card span {
  color: #777;
  font-size: 14px;
}

.stat-card strong {
  display: block;
  margin-top: 50px;
  color: var(--green-dark);
  font: 34px/1.15 'en', sans-serif;
}

.stat-card small {
  display: block;
  margin-top: 10px;
  color: #707775;
  font-size: 14px;
}

.swiper.space-swiper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.space-swiper .swiper-slide {
  width: min(72vw, 760px);
}

.space-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: start;
}

.space-layout.single {
  grid-template-columns: 1fr;
}

.space-layout:has(> .space-photo:only-child) {
  grid-template-columns: 1fr;
}

.space-photo {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 10px;
}

.space-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.space-photo:hover img {
  transform: scale(1.025);
}

.space-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 20px rgba(24, 39, 36, .14);
  font-size: 22px;
  cursor: pointer;
  transform: translateY(-50%);
}

.space-prev {
  left: 18px;
}

.space-next {
  right: 18px;
}

.floor-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.floor-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.floor-card em {
  display: block;
  margin: 0;
  color: var(--green);
  font-family: 'en', sans-serif;
  font-style: normal;
}

.floor-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.floor-card p {
  margin: 4px 0 0;
  color: #747b79;
  font-size: 13px;
  line-height: 1.65;
}

.innovation-section {
  border-top: 1px solid #edf1f0;
  background: #fff;
}

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

.innovation-card {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  padding: 38px 40px;
  border-radius: 10px;
}

.innovation-card:nth-child(1) {
  background: #eef8f5;
  --card-accent: #3f897e;
}

.innovation-card:nth-child(2) {
  background: #fff2ec;
  --card-accent: #cf7860;
}

.innovation-card:nth-child(3) {
  background: #f3f0fa;
  --card-accent: #8170ae;
}

.innovation-card:nth-child(4) {
  background: #fff7df;
  --card-accent: #b98c32;
}

.innovation-photo {
  width: calc(100% + 80px);
  height: 220px;
  display: block;
  margin: -38px -40px 30px;
  object-fit: cover;
}

.innovation-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.innovation-card em {
  color: var(--card-accent);
  font: 22px/1 'en', sans-serif;
  font-style: normal;
}

.innovation-card .card-top i {
  color: var(--card-accent);
  opacity: .34;
  font-size: 38px;
}

.innovation-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 750;
}

.innovation-card p {
  margin: 0;
  color: #5e6664;
  font-size: 15px;
  line-height: 1.95;
}

.innovation-card p+p {
  margin-top: 10px;
}

.innovation-card .detail-block {
  margin-top: 20px;
}

.innovation-card .detail-block h4 {
  margin: 0 0 7px;
  color: #303735;
  font-size: 16px;
  font-weight: 750;
}

.appointment {
  padding: 0 0 96px;
}

.appointment-panel {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 42px;
  border-radius: 10px;
  background: var(--cream);
}

.appointment-panel small {
  color: #8e784b;
  font-weight: 700;
}

.appointment-panel h2 {
  margin: 7px 0 0;
  font: 32px/1.2 'en', sans-serif;
}

.appointment-panel p {
  margin: 7px 0 0;
  color: #766d5d;
  font-size: 14px;
}

.medical-page .medical-hero {
  padding-bottom: 96px;
}

.medical-foundation {
  padding-bottom: 96px;
}

.medical-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.medical-stat-grid article {
  min-height: 182px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: .2s ease;
}

.medical-stat-grid article:hover {
  border-color: rgba(72, 152, 141, .48);
  transform: translateY(-3px);
}

.medical-stat-grid span {
  color: #707775;
  font-size: 14px;
  font-weight: 650;
}

.medical-stat-grid strong {
  color: var(--green-dark);
  font: 32px/1.15 'en', sans-serif;
}

.medical-stat-grid small {
  color: #707775;
  font-size: 13px;
  line-height: 1.6;
}

.medical-platform {
  background: #f8fbfa;
}

.medical-split {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 72px;
  align-items: center;
}

.medical-image-stack {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 16px;
  align-items: end;
}

.medical-image-stack img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.medical-image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.medical-image-stack img:last-child {
  aspect-ratio: 3 / 4;
  margin-bottom: 44px;
}

.medical-copy h2 {
  margin: 0;
  color: #1d2221;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.medical-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.medical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.medical-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.departments-section {
  background: #f8f3ef;
}

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

.department-card.main {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.department-grid article {
  min-height: 214px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
}

.department-card.main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.department-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}

.department-grid i {
  color: var(--green);
  font-size: 26px;
}

.department-grid h3,
.department-grid strong {
  display: block;
  margin: 16px 0 8px;
  color: #232827;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.45;
}

.department-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.specialty-grid article {
  min-height: 334px;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border-radius: 10px;
  background: #eef8f5;
}

.specialty-grid article:nth-child(2) {
  background: #fff7df;
}

.specialty-grid article:nth-child(3) {
  background: #fff2ec;
}

.specialty-grid article:nth-child(4) {
  background: #f3f0fa;
}

.specialty-grid em {
  color: var(--green-dark);
  font: 20px/1 'en', sans-serif;
  font-style: normal;
}

.specialty-grid i {
  margin-top: 40px;
  color: var(--green);
  font-size: 34px;
}

.specialty-grid h3 {
  margin: 24px 0 12px;
  font-size: 21px;
  font-weight: 750;
}

.specialty-grid p {
  margin: 0;
  color: #5e6664;
  font-size: 15px;
  line-height: 1.85;
}

/* Smart care page */
.smart-care-page .smart-hero {
  background: linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
}

.smart-overview {
  padding-bottom: 96px;
}

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

.smart-overview-grid a {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: .2s ease;
}

.smart-overview-grid a:hover {
  border-color: rgba(72, 152, 141, .5);
  transform: translateY(-3px);
}

.smart-overview-grid em {
  color: var(--green);
  font: 18px/1 'en', sans-serif;
  font-style: normal;
}

.smart-overview-grid i {
  color: #8dc2ba;
  font-size: 30px;
}

.smart-overview-grid div {
  grid-column: 1 / -1;
  align-self: end;
}

.smart-overview-grid h3 {
  margin: 0 0 7px;
  font-size: 21px;
  font-weight: 750;
}

.smart-overview-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.smart-overview-grid .fa-arrow-right {
  grid-column: 2;
  color: #69716f;
  font-size: 13px;
}

.smart-space-section {
  background: #f8f3ef;
}

.smart-space-layout {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 58px;
  align-items: center;
}

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

.smart-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.smart-photo-grid .smart-photo-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.smart-feature-list {
  display: grid;
}

.smart-feature-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 21px 0;
  border-bottom: 1px solid #e2ded9;
}

.smart-feature-list article:first-child {
  padding-top: 0;
}

.smart-feature-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.smart-feature-list span {
  color: var(--green);
  font: 16px/1.5 'en', sans-serif;
}

.smart-feature-list h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 750;
}

.smart-feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.smart-rehab-section {
  background: #fff;
}

.smart-rehab-gallery {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 14px;
}

.smart-rehab-gallery>img,
.smart-rehab-gallery div img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.smart-rehab-gallery>img {
  height: 480px;
}

.smart-rehab-gallery div {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.smart-rehab-gallery div img {
  height: 233px;
}

.rehab-content {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: start;
  margin-top: 42px;
}

.rehab-content h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 750;
  line-height: 1.4;
}

.rehab-content p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.rehab-device-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rehab-device-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 7px;
  color: #40504d;
  background: #f5f8f7;
  font-size: 14px;
  line-height: 1.5;
}

.research-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 38px;
  padding: 28px 32px;
  border-radius: 10px;
  background: var(--cream);
}

.research-banner i {
  color: #b98c32;
  font-size: 32px;
}

.research-banner strong {
  font-size: 18px;
}

.research-banner p {
  margin: 7px 0 0;
  color: #756d5e;
  font-size: 14px;
  line-height: 1.75;
}

.age-friendly-section {
  background: #eef8f5;
}

.age-friendly-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.age-friendly-copy h2 {
  margin: 0;
  color: #1d2221;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.age-friendly-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.age-friendly-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.age-friendly-points span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.age-friendly-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.age-friendly-gallery img {
  width: 100%;
  height: 218px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.age-friendly-gallery img:first-child {
  grid-column: 1 / -1;
  height: 330px;
}

/* Smart care detail pages */
.smart-detail-hero .hero-photo {
  aspect-ratio: 4 / 3;
}

.smart-detail-intro {
  background: #fff;
}

.smart-detail-split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.smart-detail-heading h2 {
  margin: 0;
  color: #1d2927;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: -.035em;
}

.smart-detail-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.smart-detail-copy p:last-child {
  margin-bottom: 0;
}

.smart-detail-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 52px;
  margin-top: 58px;
  border-top: 1px solid #e3e9e7;
  border-bottom: 1px solid #e3e9e7;
}

.smart-detail-feature-list article,
.smart-detail-feature-list article:first-child,
.smart-detail-feature-list article:last-child {
  padding: 27px 0;
  border-bottom: 1px solid #e3e9e7;
}

.smart-detail-feature-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.smart-detail-gallery-section {
  background: #f5f9f8;
}

.smart-detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.smart-detail-gallery img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.smart-detail-gallery img.wide {
  grid-column: span 2;
}

.smart-rehab-detail-content {
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid #e3e9e7;
}

.age-friendly-detail-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 58px;
  padding-top: 38px;
  border-top: 1px solid #e3e9e7;
}

.age-friendly-detail-points article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
}

.age-friendly-detail-points i {
  color: var(--green);
  font-size: 24px;
}

.age-friendly-detail-points h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 750;
}

.age-friendly-detail-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.age-friendly-note {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #dbe6e3;
}

.age-friendly-note span {
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 750;
}

.age-friendly-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

/* International standards page */
.international-page .international-hero {
  background: linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
}

.international-source-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.international-source-section {
  background: #fff;
}

.international-source-section.is-technology {
  /* 第二板块沿用国际标准页面的绿色体系，避免暖色背景与正文色彩冲突。 */
  background: #eef7f5;
}

.international-source-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 88px;
  align-items: start;
}

.international-source-index {
  padding-top: 4px;
  border-top: 1px solid #dce5e2;
}

.international-source-index span {
  display: block;
  margin-top: 20px;
  color: var(--green);
  font: 52px/1 'en', sans-serif;
}

.international-source-index small {
  display: block;
  margin-top: 16px;
  color: #6f7b79;
  font-size: 14px;
}

.international-source-copy {
  max-width: 790px;
}

.international-source-copy h2 {
  margin: 0;
  color: #1d2927;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: -.035em;
}

.international-source-copy p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2.05;
}

.international-source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.international-source-section:not(.is-technology) .international-source-tags span {
  background: #eef7f5;
}

@media (max-width: 991px) {
  .international-source-row {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 46px;
  }
}

@media (max-width: 640px) {
  .international-source-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .international-source-index {
    display: flex;
    align-items: baseline;
    gap: 14px;
  }

  .international-source-index span,
  .international-source-index small {
    margin-top: 16px;
  }

  .international-source-index span {
    font-size: 38px;
  }

  .international-source-copy h2 {
    font-size: 28px;
  }

  .international-source-copy p {
    font-size: 15px;
  }
}

/* Featured services page */
.featured-services-page .featured-services-hero {
  background: linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
}

.featured-service-index {
  padding-bottom: 96px;
}

.featured-index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.featured-index-grid a {
  min-height: 166px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: .2s ease;
}

.featured-index-grid a:hover {
  border-color: rgba(72, 152, 141, .5);
  transform: translateY(-3px);
}

.featured-index-grid em {
  color: var(--green);
  font: 17px/1 'en', sans-serif;
  font-style: normal;
}

.featured-index-grid i {
  color: #8dc2ba;
  font-size: 27px;
}

.featured-index-grid strong {
  grid-column: 1 / -1;
  align-self: end;
  font-size: 17px;
  line-height: 1.5;
}

.feature-detail-section {
  scroll-margin-top: 90px;
  border-top: 1px solid #edf1f0;
}

.feature-detail-section.feature-soft {
  background: #f8f3ef;
}

.feature-detail-section.feature-warm {
  background: #fff8e8;
}

.feature-detail-section.feature-anti-aging {
  background: #eef8f5;
}

.feature-detail-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.feature-detail-layout.is-reverse {
  grid-template-columns: 1.12fr .88fr;
}

.feature-detail-layout.is-reverse .feature-detail-media {
  order: 2;
}

.feature-detail-layout.is-reverse .feature-detail-copy {
  order: 1;
}

.feature-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.feature-number {
  display: block;
  margin-bottom: 15px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.feature-detail-copy h2 {
  margin: 0;
  color: #1d2221;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.feature-detail-copy>p {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.feature-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 25px;
}

.feature-guarantee-grid span {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 7px;
  color: var(--green-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.feature-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.feature-tag-list span {
  padding: 8px 12px;
  border: 1px solid rgba(72, 152, 141, .16);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 650;
}

.feature-system-list {
  margin-top: 28px;
}

.feature-system-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #e2ded9;
}

.feature-system-list article:last-child {
  border-bottom: 0;
}

.feature-system-list em {
  color: var(--green);
  font: 15px/1.5 'en', sans-serif;
  font-style: normal;
}

.feature-system-list h3,
.lifecycle-pillar-list h3 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 750;
}

.feature-system-list p,
.lifecycle-pillar-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.lifecycle-pillar-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.lifecycle-pillar-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.lifecycle-pillar-list i {
  color: var(--green);
  font-size: 23px;
}


@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    max-width: 620px;
  }

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

  .about-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-line-art {
    right: -160px;
    bottom: -20px;
    width: 980px;
    opacity: .16;
  }

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

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

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

  .medical-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .department-card.main {
    grid-column: span 2;
  }

  .smart-space-layout,
  .rehab-content,
  .age-friendly-layout,
  .smart-detail-split,
  .feature-detail-layout,
  .feature-detail-layout.is-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .smart-detail-feature-list,
  .age-friendly-detail-points {
    grid-template-columns: 1fr;
  }

  .smart-detail-feature-list article:nth-last-child(2) {
    border-bottom: 1px solid #e3e9e7;
  }

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

  .feature-detail-layout.is-reverse .feature-detail-media,
  .feature-detail-layout.is-reverse .feature-detail-copy {
    order: initial;
  }

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

}

@media (max-width: 640px) {
  .k-container {
    width: min(100% - 32px, 1120px);
  }

  .smart-detail-gallery {
    grid-template-columns: 1fr;
  }

  .smart-detail-feature-list,
  .age-friendly-detail-points,
  .smart-rehab-detail-content {
    margin-top: 40px;
  }

  .k-section {
    padding: 68px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .section-head p {
    margin-top: 14px;
    font-size: 15px;
  }

  .care-hero {
    padding: 58px 0 72px;
  }

  .hero-grid {
    min-height: 0;
    gap: 42px;
  }

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

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

  .hero-visual {
    padding: 20px 10px 0 20px;
  }

  .hero-badge {
    right: -8px;
    width: 72px;
    height: 72px;
  }

  .quick-section {
    padding-bottom: 72px;
  }

  .quick-section h2 {
    font-size: 28px;
  }

  .project-section-heading h2 {
    font-size: 28px;
  }

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

  .service-card {
    min-height: 150px;
  }

  .quick-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .about-intro h2 {
    font-size: 28px;
  }

  .stat-grid {
    gap: 12px;
    margin-top: 36px;
  }

  .stat-card {
    min-height: 168px;
    padding: 22px 18px;
  }

  .stat-card strong {
    margin-top: 34px;
    font-size: 27px;
  }

  .space-photo {
    height: 300px;
  }

  .space-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .space-photo:last-child {
    height: 300px;
  }

  .space-swiper .swiper-slide {
    width: 86vw;
  }

  .floor-cards {
    grid-template-columns: 1fr;
  }

  .floor-card {
    min-height: 0;
  }

  .medical-stat-grid,
  .specialty-grid,
  .department-grid,
  .department-card.main {
    grid-template-columns: 1fr;
  }

  .department-card.main {
    grid-column: auto;
  }

  .medical-image-stack {
    grid-template-columns: 1fr;
  }

  .medical-image-stack img:last-child {
    margin-bottom: 0;
  }

  .smart-overview-grid,
  .smart-rehab-gallery,
  .rehab-device-list {
    grid-template-columns: 1fr;
  }

  .featured-index-grid {
    grid-template-columns: 1fr;
  }

  .featured-index-grid a {
    min-height: 145px;
  }

  .feature-detail-media img {
    aspect-ratio: 4 / 3;
  }

  .feature-detail-copy h2 {
    font-size: 28px;
  }

  .feature-detail-copy>p {
    font-size: 15px;
  }

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

  .smart-overview-grid a {
    min-height: 170px;
  }

  .smart-rehab-gallery>img,
  .smart-rehab-gallery div img {
    height: 260px;
  }

  .age-friendly-copy h2 {
    font-size: 28px;
  }

  .smart-detail-heading h2 {
    font-size: 28px;
  }

  .age-friendly-gallery,
  .smart-photo-grid {
    grid-template-columns: 1fr;
  }

  .age-friendly-gallery img:first-child,
  .smart-photo-grid .smart-photo-main {
    grid-column: auto;
  }

  .age-friendly-gallery img,
  .age-friendly-gallery img:first-child {
    height: 250px;
  }

  .research-banner {
    padding: 24px;
  }

  .smart-detail-gallery img,
  .smart-detail-gallery img.wide {
    grid-column: auto;
    height: 240px;
  }

  .age-friendly-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .innovation-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .innovation-photo {
    width: calc(100% + 48px);
    height: 190px;
    margin: -30px -24px 24px;
  }

  .appointment {
    padding-bottom: 68px;
  }

  .appointment-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
  }

  .appointment-panel .care-btn {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .care-page {
    padding-top: 0;
  }
}

/* Featured services channel and detail pages */
.service-channel-section {
  padding: 92px 0 112px;
}

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

.service-channel-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid #e4ece9;
  border-radius: 22px;
  background: #fff;
  color: #33413f;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-channel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(41, 73, 67, .12);
  color: #33413f;
}

.service-channel-card:first-child {
  grid-column: span 2;
}

.service-channel-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-channel-card:first-child img {
  height: 360px;
}

.service-channel-card .card-copy {
  position: relative;
  padding: 26px 28px 30px;
}

.service-channel-card em {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #9ab7b1;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
}

.service-channel-card h3 {
  max-width: calc(100% - 72px);
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 700;
}

.service-channel-card p {
  max-width: 560px;
  margin: 0;
  color: #71807d;
  font-size: 15px;
  line-height: 1.9;
}

.service-channel-card .card-arrow {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 22px;
  border-radius: 50%;
  background: #eef7f5;
  color: #4da098;
}

.service-detail-hero {
  padding: 72px 0 86px;
  background: linear-gradient(180deg, #f7fbfa 0%, #fff 100%);
}

.service-detail-hero .hero-grid {
  align-items: center;
  min-height: 500px;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #8b9895;
  font-size: 14px;
}

.service-breadcrumb a {
  color: #4da098;
}

.service-detail-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: 1.16;
  letter-spacing: -.04em;
}

.service-detail-hero .hero-copy>p {
  max-width: 620px;
  color: #61706d;
  font-size: 18px;
  line-height: 2;
}

.service-detail-hero .hero-visual {
  padding: 0;
}

.service-detail-hero .hero-photo {
  width: 100%;
  height: 500px;
  border-radius: 28px 28px 90px 28px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(38, 70, 65, .13);
}

.service-detail-hero .hero-badge {
  right: -18px;
  bottom: 36px;
}

/* 六位一体子页面的 Hero 与栏目主页面统一为弧形图片构图。 */
.six-detail-page .service-detail-hero .hero-visual {
  padding: 34px 0 0 34px;
}

.six-detail-page .service-detail-hero .hero-photo {
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 48% 48% 14px 48%;
  box-shadow: none;
}

.six-detail-page .service-detail-hero .hero-badge {
  right: -26px;
  bottom: 8px;
}

.service-story-section {
  padding: 104px 0;
}

.service-story-layout {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.6fr);
  gap: 96px;
  align-items: start;
}

.service-story-aside {
  position: sticky;
  top: 112px;
}

.service-story-aside small,
.service-story-aside .about-label {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: normal;
}

.service-story-copy>p {
  margin: 0 0 22px;
  color: #596865;
  font-size: 17px;
  line-height: 2.08;
}

.service-point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0;
}

.service-point-grid article {
  min-height: 150px;
  padding: 25px;
  border: 1px solid #e3ece9;
  border-radius: 18px;
  background: #f8fbfa;
}

.service-point-grid i {
  margin-bottom: 22px;
  color: #4da098;
  font-size: 23px;
}

.service-point-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.service-point-grid p {
  margin: 0;
  color: #74817f;
  font-size: 14px;
  line-height: 1.8;
}

.service-fact {
  margin: 34px 0;
  padding: 30px 34px;
  border-radius: 20px;
  background: #edf7f4;
  color: #34524d;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.8;
}

.service-gallery-section {
  padding: 0 0 112px;
}

.service-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.service-gallery-head h2 {
  margin: 0;
  font-size: 36px;
}

.service-gallery-head p {
  margin: 0;
  color: #7a8885;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-gallery figure {
  grid-column: span 4;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: #eef4f2;
}

.service-gallery figure:first-child {
  grid-column: span 8;
}

.service-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-gallery figure:first-child img {
  height: 420px;
}

.service-gallery figure:hover img {
  transform: scale(1.025);
}

.service-gallery figcaption {
  padding: 14px 17px 17px;
  color: #65736f;
  font-size: 13px;
}

.service-sibling-section {
  padding: 0 0 100px;
}

.service-sibling-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #dfe8e5;
  border-bottom: 1px solid #dfe8e5;
}

.service-sibling-nav a {
  padding: 28px 4px;
  color: #33413f;
}

.service-sibling-nav a:last-child {
  text-align: right;
}

.service-sibling-nav small {
  display: block;
  margin-bottom: 7px;
  color: #8a9895;
}

.service-sibling-nav strong {
  font-size: 17px;
}

@media (max-width: 900px) {
  .service-channel-grid {
    grid-template-columns: 1fr;
  }

  .service-channel-card:first-child {
    grid-column: auto;
  }

  .service-channel-card:first-child img {
    height: 260px;
  }

  .service-detail-hero .hero-photo {
    height: 410px;
  }

  .service-story-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-story-aside {
    position: static;
  }

  .service-gallery figure,
  .service-gallery figure:first-child {
    grid-column: span 6;
  }

  .service-gallery figure:first-child img {
    height: 320px;
  }
}

@media (max-width: 640px) {

  .service-channel-section,
  .service-story-section {
    padding: 68px 0;
  }

  .service-channel-card,
  .service-channel-card:first-child {
    min-height: 0;
  }

  .service-channel-card img,
  .service-channel-card:first-child img {
    height: 220px;
  }

  .service-channel-card .card-copy {
    padding: 23px;
  }

  .service-detail-hero {
    padding: 54px 0 68px;
  }

  .service-detail-hero .hero-grid {
    min-height: 0;
  }

  .service-detail-hero h1 {
    font-size: 40px;
  }

  .service-detail-hero .hero-photo {
    height: 320px;
    border-radius: 22px 22px 58px 22px;
  }

  .service-story-aside h2,
  .service-gallery-head h2 {
    font-size: 28px;
  }

  .service-point-grid {
    grid-template-columns: 1fr;
  }

  .service-gallery-head {
    display: block;
  }

  .service-gallery-head p {
    margin-top: 10px;
  }

  .service-gallery figure,
  .service-gallery figure:first-child {
    grid-column: span 12;
  }

  .service-gallery img,
  .service-gallery figure:first-child img {
    height: 250px;
  }

  .service-sibling-nav {
    grid-template-columns: 1fr;
  }

  .service-sibling-nav a:last-child {
    border-top: 1px solid #dfe8e5;
    text-align: left;
  }
}

/* Six-in-one service page */
.six-hero {
  overflow: hidden;
  padding: 78px 0 96px;
  background: linear-gradient(180deg, #f6fbf9 0%, #fff 100%);
}

.six-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: 72px;
  align-items: center;
  min-height: 610px;
}

.six-hero-copy .hero-kicker {
  display: inline-block;
  margin-bottom: 24px;
}

.six-hero-copy h1 {
  margin: 0 0 26px;
  color: #303d3a;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.13;
  letter-spacing: -.045em;
}

.six-hero-copy p {
  max-width: 610px;
  margin: 0;
  color: #667572;
  font-size: 18px;
  line-height: 2;
}

.six-hero-copy .hero-actions {
  margin-top: 34px;
}

.six-fusion {
  position: relative;
  width: min(100%, 580px);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 160, 152, .09) 0 23%, transparent 23.5% 47%, rgba(77, 160, 152, .08) 47.5% 48%, transparent 48.5%);
}

.six-fusion::before {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(77, 160, 152, .12);
  border-radius: 50%;
}

.six-fusion-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  padding: 28px;
  border: 12px solid #eef7f4;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 48px rgba(48, 91, 82, .13);
  transform: translate(-50%, -50%);
  text-align: center;
}

.six-fusion-core img {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}

.six-fusion-core strong {
  display: block;
  color: #31534d;
  font-size: 17px;
  line-height: 1.4;
}

.six-fusion-node {
  --node-color: #4da098;
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 142px;
  padding: 13px 18px 13px 13px;
  border: 1px solid rgba(77, 160, 152, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(44, 82, 75, .08);
  color: #34423f;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.six-fusion-node:hover,
.six-fusion-node.is-active {
  border-color: var(--node-color);
  box-shadow: 0 14px 34px rgba(44, 82, 75, .13);
  transform: translateY(-3px);
}

.six-fusion-node b {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--node-color) 13%, white);
  color: var(--node-color);
  font-size: 19px;
}

.six-fusion-node span {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.six-fusion-node:nth-of-type(1) {
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.six-fusion-node:nth-of-type(1):hover,
.six-fusion-node:nth-of-type(1).is-active {
  transform: translateX(-50%) translateY(-3px);
}

.six-fusion-node:nth-of-type(2) {
  top: 24%;
  right: -1%;
  --node-color: #5b91b6;
}

.six-fusion-node:nth-of-type(3) {
  right: 2%;
  bottom: 19%;
  --node-color: #c49763;
}

.six-fusion-node:nth-of-type(4) {
  bottom: 3%;
  left: 50%;
  --node-color: #7da46c;
  transform: translateX(-50%);
}

.six-fusion-node:nth-of-type(4):hover,
.six-fusion-node:nth-of-type(4).is-active {
  transform: translateX(-50%) translateY(-3px);
}

.six-fusion-node:nth-of-type(5) {
  bottom: 19%;
  left: 1%;
  --node-color: #b9879f;
}

.six-fusion-node:nth-of-type(6) {
  top: 24%;
  left: -2%;
  --node-color: #8e87b4;
}

.six-fusion-section {
  overflow: hidden;
  padding: 92px 0 112px;
  background: #f8faf9;
}

.six-fusion-layout>.six-fusion {
  margin: 38px auto 0;
}

.six-principle {
  padding: 88px 0;
}

.six-principle-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
  padding: 52px 58px;
  border-radius: 26px;
  background: #f5f9f7;
}

.six-principle-panel h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.42;
}

.six-principle-panel p {
  margin: 0;
  color: #65736f;
  font-size: 17px;
  line-height: 2.05;
}

.six-experience {
  overflow: hidden;
  padding: 102px 0 116px;
  background: #f8faf9;
}

.six-experience .section-head {
  margin-bottom: 38px;
}

.six-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 48px;
  padding: 7px;
  border: 1px solid #e2ebe8;
  border-radius: 16px;
  background: #fff;
}

.six-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 9px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #64716f;
  cursor: pointer;
  font-weight: 600;
  transition: background .22s ease, color .22s ease;
}

.six-tab em {
  color: #a3afac;
  font-size: 11px;
  font-style: normal;
}

.six-tab.is-active {
  background: #4da098;
  color: #fff;
}

.six-tab.is-active em {
  color: rgba(255, 255, 255, .72);
}

.six-service-panel[hidden] {
  display: none !important;
}

.six-panel-head {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}

.six-panel-title small {
  display: block;
  margin-bottom: 12px;
  color: #4da098;
  font-weight: 700;
  letter-spacing: .12em;
}

.six-panel-title h3 {
  margin: 0;
  font-size: 38px;
}

.six-panel-copy {
  color: #687673;
  font-size: 16px;
  line-height: 1.95;
}

.six-swiper-wrap {
  position: relative;
}

.six-service-swiper {
  overflow: visible;
}

.six-service-swiper .swiper-slide {
  width: min(72vw, 760px);
}

.six-service-swiper img {
  display: block;
  width: 100%;
  height: 480px;
  border-radius: 20px;
  object-fit: cover;
}

.six-swiper-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.six-swiper-pagination {
  position: static !important;
  width: auto !important;
  color: #61706d;
  font-size: 13px;
}

.six-swiper-arrows {
  display: flex;
  gap: 10px;
}

.six-swiper-prev,
.six-swiper-next {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #dce7e3;
  border-radius: 50%;
  background: #fff;
  color: #40514d;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.six-swiper-prev:hover,
.six-swiper-next:hover {
  background: #4da098;
  color: #fff;
}

.six-swiper-prev.swiper-button-disabled,
.six-swiper-next.swiper-button-disabled {
  opacity: .35;
  cursor: default;
}

@media (max-width: 1000px) {
  .six-hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .six-fusion {
    margin: auto;
  }

  .six-principle-panel,
  .six-panel-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

@media (max-width: 640px) {
  .six-hero {
    padding: 56px 0 74px;
  }

  .six-hero-grid {
    min-height: 0;
  }

  .six-hero-copy h1 {
    font-size: 42px;
  }

  .six-fusion {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    aspect-ratio: auto;
    padding: 18px;
    border-radius: 22px;
    background: #eef7f4;
  }

  .six-fusion::before {
    display: none;
  }

  .six-fusion-core {
    position: static;
    grid-column: span 2;
    width: 130px;
    height: 130px;
    margin: 0 auto 8px;
    padding: 20px;
    border-width: 8px;
    transform: none;
  }

  .six-fusion-core img {
    width: 44px;
    height: 44px;
  }

  .six-fusion-node,
  .six-fusion-node:nth-of-type(n) {
    position: static;
    min-width: 0;
    padding: 11px;
    transform: none;
  }

  .six-fusion-node:hover,
  .six-fusion-node.is-active,
  .six-fusion-node:nth-of-type(1):hover,
  .six-fusion-node:nth-of-type(1).is-active,
  .six-fusion-node:nth-of-type(4):hover,
  .six-fusion-node:nth-of-type(4).is-active {
    transform: none;
  }

  .six-principle {
    padding: 64px 0;
  }

  .six-principle-panel {
    padding: 30px 25px;
  }

  .six-principle-panel h2 {
    font-size: 28px;
  }

  .six-experience {
    padding: 68px 0 82px;
  }

  .six-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 36px;
  }

  .six-panel-title h3 {
    font-size: 30px;
  }

  .six-service-swiper .swiper-slide {
    width: 86vw;
  }

  .six-service-swiper img {
    height: 300px;
    border-radius: 16px;
  }
}

/* News center and article pages */
.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: #8a9794;
  font-size: 13px;
}

.news-meta span {
  color: #4da098;
  font-weight: 700;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: #40514d;
  font-size: 14px;
  font-weight: 700;
}

.news-read-more i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #edf6f3;
  color: #4da098;
}

.news-list-section {
  padding: 92px 0 112px;
}

.news-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.news-toolbar h2 {
  margin: 0;
  font-size: 36px;
}

.news-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-filter {
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid #dfe8e5;
  border-radius: 999px;
  background: #fff;
  color: #6b7976;
  cursor: pointer;
  font-size: 14px;
}

.news-filter.is-active {
  border-color: #4da098;
  background: #4da098;
  color: #fff;
}

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

.news-card {
  overflow: hidden;
  border: 1px solid #e3ebe8;
  border-radius: 20px;
  background: #fff;
  color: #33413f;
  transition: transform .28s ease, box-shadow .28s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(44, 76, 70, .1);
  color: #33413f;
}

.news-card[hidden] {
  display: none !important;
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.news-card-copy {
  padding: 25px 25px 28px;
}

.news-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 13px;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #74817e;
  font-size: 14px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card .news-read-more {
  margin-top: 24px;
}

.news-empty {
  display: none;
  padding: 70px 0;
  color: #83908d;
  text-align: center;
}

/* 新闻列表分页：去掉旧 Bootstrap 蓝色，统一为项目绿色系。 */
.news-page .pagination {
  gap: 5px;
  margin-bottom: 0;
}

.news-page .pagination .page-link {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #dbe8e4;
  border-radius: 10px !important;
  background: #fff;
  color: #4c6762;
  font-size: 15px;
  line-height: 1;
  box-shadow: none;
}

.news-page .pagination .page-link:hover {
  border-color: var(--green);
  background: #edf7f4;
  color: var(--green-dark);
}

.news-page .pagination .page-item.active .page-link {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.news-page .pagination .page-item.disabled .page-link {
  border-color: #e6eeeb;
  background: #f4f8f6;
  color: #9aaba6;
}

.news-page .pagination .page-link img {
  width: 15px;
  height: 15px;
  opacity: .72;
}

.news-grid:empty+.news-empty {
  display: block;
}

.article-hero {
  padding: 78px 0 58px;
  background: #f6faf8;
}

.article-head {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.article-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: #8a9794;
  font-size: 14px;
}

.article-breadcrumb a {
  color: #4da098;
}

.article-head h1 {
  margin: 0 0 26px;
  color: #303d3a;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.35;
  letter-spacing: -.035em;
}

.article-head .news-meta {
  justify-content: center;
  margin: 0;
}

.article-cover {
  padding: 0 0 86px;
  background: linear-gradient(180deg, #f6faf8 0 32%, #fff 32%);
}

.article-cover img {
  display: block;
  width: 100%;
  height: min(55vw, 650px);
  border-radius: 28px;
  object-fit: cover;
}

.article-content-section {
  padding: 0 0 108px;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.article-body .article-lead {
  margin: 0 0 36px;
  color: #3f514d;
  font-size: 21px;
  font-weight: 600;
  line-height: 2;
}

.article-body p {
  margin: 0 0 24px;
  color: #596865;
  font-size: 17px;
  line-height: 2.1;
}

.article-body h2 {
  margin: 62px 0 23px;
  color: #303d3a;
  font-size: 30px;
  line-height: 1.5;
}

.article-body figure {
  margin: 44px 0;
}

.article-body figure img {
  width: 100%;
  max-height: 560px;
  border-radius: 20px;
  object-fit: cover;
}

.article-body figcaption {
  margin-top: 12px;
  color: #8b9794;
  font-size: 13px;
  text-align: center;
}

.article-body img{
  max-width: 100%;
  border-radius: 15px;
}

.article-quote {
  margin: 42px 0;
  padding: 30px 34px;
  border-left: 4px solid #4da098;
  border-radius: 0 18px 18px 0;
  background: #edf7f4;
  color: #34524d;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.85;
}

.article-tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid #e2eae7;
}

.article-tags span {
  padding: 7px 13px;
  border-radius: 999px;
  background: #f1f5f4;
  color: #6e7b78;
  font-size: 13px;
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid #dfe8e5;
  border-bottom: 1px solid #dfe8e5;
}

.article-nav > div {
  min-width: 0;
  padding: 28px 4px;
  color: #34423f;
}

.article-nav > div:last-child {
  text-align: right;
}

.article-nav small {
  display: block;
  margin-bottom: 8px;
  color: #8a9794;
}

.article-nav strong {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-nav strong a {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-news {
  padding: 102px 0 112px;
  background: #f7faf9;
}

.related-news .section-head {
  margin-bottom: 34px;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-list-section {
    padding: 68px 0 78px;
  }

  .news-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-toolbar h2 {
    font-size: 28px;
  }

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

  .news-card img {
    height: 220px;
  }

  .article-hero {
    padding: 58px 0 45px;
  }

  .article-head h1 {
    font-size: 35px;
  }

  .article-cover {
    padding-bottom: 64px;
  }

  .article-cover img {
    height: 300px;
    border-radius: 20px;
  }

  .article-content-section {
    padding-bottom: 76px;
  }

  .article-body .article-lead {
    font-size: 18px;
  }

  .article-body p {
    font-size: 16px;
  }

  .article-body h2 {
    margin-top: 48px;
    font-size: 26px;
  }

  .article-quote {
    padding: 24px;
    font-size: 18px;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav > div:last-child {
    border-top: 1px solid #dfe8e5;
    text-align: left;
  }

  .related-news {
    padding: 72px 0 78px;
  }
}

/* Research institute and documents */
.institute-page .care-hero {
  padding-bottom: 58px;
}

.institute-page .research-mission {
  padding-top: 58px;
}

.research-hero {
  overflow: hidden;
  padding: 78px 0 96px;
  background: #f5faf8;
}

.research-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 76px;
  align-items: center;
  min-height: 570px;
}

.research-hero-copy h1 {
  margin: 22px 0 26px;
  color: #303d3a;
  font-size: clamp(46px, 4.8vw, 68px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.research-hero-copy p {
  max-width: 600px;
  margin: 0;
  color: #65736f;
  font-size: 18px;
  line-height: 2;
}

.research-hero-copy .hero-actions {
  margin-top: 34px;
}

.research-hero-visual {
  position: relative;
  padding: 30px 24px 0 46px;
}

.research-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 14% 16%;
  border-radius: 50% 50% 18px 50%;
  background: #e5f2ee;
}

.research-hero-visual>img:first-child {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  border-radius: 24px 24px 90px 24px;
  object-fit: cover;
  box-shadow: 0 22px 56px rgba(44, 75, 69, .14);
}

.research-hero-visual .hero-badge {
  right: 0;
  bottom: 42px;
}

.research-mission {
  padding: 102px 0;
}

.research-mission-grid {
  display: grid;
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1.26fr);
  gap: 96px;
  align-items: start;
}

.research-mission-copy p {
  margin: 0 0 22px;
  color: #5d6b68;
  font-size: 17px;
  line-height: 2.08;
}

.research-direction-section {
  padding: 100px 0 110px;
  background: #f7faf9;
}

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

.research-direction-card {
  position: relative;
  min-height: 260px;
  padding: 34px 34px 30px;
  border: 1px solid #e1eae7;
  border-radius: 22px;
  background: #fff;
}

.research-direction-card em {
  position: absolute;
  top: 30px;
  right: 32px;
  color: #aac0bb;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .14em;
}

.research-direction-card i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 15px;
  background: #edf6f3;
  color: #4da098;
  font-size: 22px;
}

.research-direction-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
}

.research-direction-card p {
  margin: 0;
  color: #71807d;
  font-size: 15px;
  line-height: 1.9;
}

.research-path {
  padding: 108px 0;
}

.research-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 78px;
  align-items: center;
}

.research-path-photo {
  width: 100%;
  height: 520px;
  border-radius: 24px 24px 70px 24px;
  object-fit: cover;
}

.research-path-copy h2 {
  margin-bottom: 22px;
}

.research-path-copy>p {
  margin: 0 0 30px;
  color: #687673;
  font-size: 16px;
  line-height: 2;
}

.research-step-list {
  display: grid;
  gap: 16px;
}

.research-step-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  align-items: start;
  padding-top: 17px;
  border-top: 1px solid #e1e9e6;
}

.research-step-list em {
  color: #4da098;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.research-step-list h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.research-step-list p {
  margin: 0;
  color: #74817e;
  font-size: 14px;
  line-height: 1.8;
}

.research-document-cta {
  padding: 0 0 112px;
}

.research-document-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 48px;
  border-radius: 24px;
  background: #eaf5f2;
}

.research-document-panel small {
  color: #4da098;
  font-weight: 700;
  letter-spacing: .12em;
}

.research-document-panel h2 {
  margin: 9px 0 0;
  font-size: 30px;
}

@media (max-width: 900px) {

  .research-hero-grid,
  .research-mission-grid,
  .research-path-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .research-hero-visual {
    max-width: 680px;
    margin: auto;
  }

  .research-direction-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .research-hero {
    padding: 58px 0 70px;
  }

  .research-hero-grid {
    min-height: 0;
  }

  .research-hero-copy h1 {
    font-size: 41px;
  }

  .research-hero-visual {
    padding: 20px 10px 0 20px;
  }

  .research-hero-visual>img:first-child {
    height: 340px;
    border-radius: 20px 20px 58px 20px;
  }

  .research-mission,
  .research-direction-section,
  .research-path {
    padding: 70px 0;
  }

  .research-mission h2,
  .research-path-copy h2 {
    font-size: 29px;
  }

  .research-direction-card {
    min-height: 0;
    padding: 28px 25px;
  }

  .research-path-photo {
    height: 330px;
  }

  .research-document-cta {
    padding-bottom: 78px;
  }

  .research-document-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 25px;
  }

  .research-document-panel .care-btn {
    width: 100%;
  }
}

/* Appointment, consultation and contact */
.contact-hero {
  padding: 78px 0 92px;
  background: linear-gradient(180deg, #f5faf8 0%, #fff 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(450px, 1.08fr);
  gap: 74px;
  align-items: center;
  min-height: 500px;
}

.contact-hero-copy h1 {
  margin: 20px 0 25px;
  color: #303d3a;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.contact-hero-copy p {
  max-width: 600px;
  margin: 0;
  color: #65736f;
  font-size: 18px;
  line-height: 2;
}

.contact-hero-photo {
  position: relative;
  padding: 24px 18px 0 38px;
}

.contact-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 0 16% 15%;
  border-radius: 50% 50% 20px 50%;
  background: #e6f3ef;
}

.contact-hero-photo>img:first-child {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 430px;
  border-radius: 24px 24px 76px 24px;
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(45, 75, 69, .13);
}

.contact-hero-photo .hero-badge {
  right: -2px;
  bottom: 38px;
}

.contact-channel {
  padding: 0 0 112px;
}

.contact-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
  margin: 0 auto 62px;
  padding: 7px;
  border: 1px solid #e0e9e6;
  border-radius: 16px;
  background: #f7faf9;
}

.contact-tab {
  min-height: 56px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #687673;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.contact-tab.is-active {
  background: #4da098;
  color: #fff;
  box-shadow: 0 8px 20px rgba(77, 160, 152, .2);
}

.contact-panel[hidden] {
  display: none !important;
}

.contact-panel-head {
  max-width: 720px;
  margin-bottom: 38px;
}

.contact-panel-head small {
  display: block;
  margin-bottom: 12px;
  color: #4da098;
  font-weight: 700;
  letter-spacing: .12em;
}

.contact-panel-head h2 {
  margin-bottom: 15px;
}

.contact-panel-head p {
  margin: 0;
  color: #6d7a77;
  font-size: 16px;
  line-height: 1.95;
}

.contact-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 24px;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 44px;
  border-radius: 24px;
  background: #315f57;
  color: #fff;
}

.contact-info-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, .04), 0 0 0 108px rgba(255, 255, 255, .025);
}

.contact-info-card small {
  color: #abd2ca;
  font-weight: 700;
  letter-spacing: .12em;
}

.contact-info-card h3 {
  position: relative;
  z-index: 1;
  margin: 72px 0 16px;
  font-size: clamp(34px, 4vw, 50px);
}

.contact-info-card h3 a {
  color: #fff;
}

.contact-info-card address {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  font-style: normal;
  line-height: 1.9;
}

.contact-info-card .care-btn {
  position: relative;
  z-index: 1;
  margin-top: 35px;
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.contact-info-card .care-btn.is-active,
.contact-info-card .care-btn.is-active:hover {
  background: #fff;
  border-color: #fff;
  color: #315f57 !important;
  box-shadow: 0 8px 20px rgba(19, 68, 59, .12);
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-qr-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 460px;
  padding: 28px 22px;
  border: 1px solid #e0e9e6;
  border-radius: 22px;
  background: #fff;
  text-align: center;
}

.contact-qr-card img {
  width: min(100%, 190px);
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(44, 75, 69, .09);
}

.contact-qr-card h3 {
  margin: 24px 0 7px;
  font-size: 19px;
}

.contact-qr-card p {
  margin: 0;
  color: #81908c;
  font-size: 13px;
  line-height: 1.7;
}

.contact-location {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 26px;
  align-items: center;
  margin-top: 26px;
  padding: 28px;
  border-radius: 22px;
  background: #f5f9f7;
}

.contact-location img {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  object-fit: cover;
}

.contact-location h3 {
  margin: 0 0 14px;
  font-size: 25px;
}

.contact-location p {
  margin: 0 0 9px;
  color: #6f7d79;
  line-height: 1.8;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.booking-aside {
  position: sticky;
  top: 110px;
}

.booking-aside h2 {
  margin-bottom: 20px;
}

.booking-aside p {
  margin: 0;
  color: #6d7b78;
  font-size: 16px;
  line-height: 2;
}

.booking-aside .booking-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 0;
  color: #365750;
}

.booking-phone-icon {
  display: grid;
  place-items: center;
  align-self: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 18px;
}

.booking-phone-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-phone-copy small {
  color: #6d8580;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

.booking-phone-copy strong {
  color: #365750;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: .02em;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 38px;
  border: 1px solid #e0e9e6;
  border-radius: 24px;
  background: #f8faf9;
}

.booking-field {
  display: grid;
  gap: 9px;
}

.booking-field.full {
  grid-column: span 2;
}

.booking-field label {
  color: #52615e;
  font-size: 14px;
  font-weight: 700;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid #dce6e2;
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: #34423f;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.booking-field input,
.booking-field select {
  height: 54px;
  padding: 0 15px;
}

.booking-field textarea {
  min-height: 140px;
  padding: 15px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #4da098;
  box-shadow: 0 0 0 3px rgba(77, 160, 152, .12);
}

.booking-field[hidden] {
  display: none !important;
}

.booking-consent {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #75827f;
  font-size: 13px;
  line-height: 1.7;
}

.booking-consent input {
  margin-top: 4px;
  accent-color: #4da098;
}

.booking-submit {
  grid-column: span 2;
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: #4da098;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.booking-submit:hover {
  background: #438f88;
}

.booking-feedback {
  grid-column: span 2;
  margin: 0;
  padding: 12px 15px;
  border-radius: 10px;
  background: #edf6f3;
  color: #4b6963;
  font-size: 13px;
}

.booking-feedback[hidden] {
  display: none !important;
}

@media (max-width: 900px) {

  .contact-hero-grid,
  .contact-info-layout,
  .contact-location,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-hero-photo {
    max-width: 680px;
    margin: auto;
  }

  .booking-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 58px 0 70px;
  }

  .contact-hero-grid {
    min-height: 0;
  }

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

  .contact-hero-photo {
    padding: 18px 8px 0 18px;
  }

  .contact-hero-photo>img:first-child {
    height: 300px;
    border-radius: 20px 20px 54px 20px;
  }

  .contact-channel {
    padding-bottom: 78px;
  }

  .contact-tabs {
    margin-bottom: 44px;
  }

  .contact-panel-head h2,
  .booking-aside h2 {
    font-size: 29px;
  }

  .contact-info-card {
    min-height: 390px;
    padding: 30px 25px;
  }

  .contact-qr-grid {
    grid-template-columns: 1fr;
  }

  .contact-qr-card {
    min-height: 360px;
  }

  .contact-location {
    padding: 20px;
  }

  .contact-location img {
    height: 230px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .booking-field.full,
  .booking-consent,
  .booking-submit,
  .booking-feedback {
    grid-column: auto;
  }
}

/* Primary navigation action entries */
@media (min-width: 1181px) {
  .nav-consult {
    margin-left: 8px;
    transition: margin-left .34s cubic-bezier(.22, .61, .36, 1);
  }

  .nav-action .nav-action-link,
  .site-header.scrolled .nav-action .nav-action-link {
    gap: 8px;
    min-height: 42px;
    padding: 0 14px !important;
    border: 1px solid transparent;
    transition: min-height .34s cubic-bezier(.22, .61, .36, 1), padding .34s cubic-bezier(.22, .61, .36, 1), background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  }

  .nav-action .nav-action-link i {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    transition: width .34s cubic-bezier(.22, .61, .36, 1), height .34s cubic-bezier(.22, .61, .36, 1), background .2s ease, color .2s ease;
  }

  .nav-action .nav-action-link::before {
    display: none;
  }

  .nav-consult .nav-action-link,
  .nav-consult .nav-action-link.active,
  .nav-consult .nav-action-link.active:hover,
  .site-header.scrolled .nav-consult .nav-action-link,
  .site-header.scrolled .nav-consult .nav-action-link.active,
  .nav-menu:hover .nav-consult .nav-action-link.active:not(:hover),
  .site-header.scrolled .nav-menu:hover .nav-consult .nav-action-link.active:not(:hover) {
    border-color: #4da098;
    background: #4da098;
    color: #fff !important;
    box-shadow: 0 9px 20px rgba(72, 152, 141, .2);
  }

  .nav-consult .nav-action-link:hover {
    border-color: #438f88;
    background: #438f88;
    color: #fff !important;
  }

  .nav-consult .nav-action-link i {
    background: rgba(255, 255, 255, .18);
    color: #fff;
  }

  .nav-consult.has-mega>.nav-action-link,
  .nav-consult.has-mega>.nav-action-link.active,
  .nav-menu:hover .nav-consult.has-mega>.nav-action-link.active:not(:hover) {
    padding: 0 37px 0 13px !important;
  }

  .nav-consult.has-mega>.nav-action-link::after,
  .nav-consult.has-mega>.nav-action-link.active::after {
    right: 15px;
  }

  .site-header.scrolled .nav-action .nav-action-link {
    min-height: 36px;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .site-header.scrolled .nav-action .nav-action-link i {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 10px;
  }

  .site-header.scrolled .nav-consult.has-mega>.nav-action-link,
  .site-header.scrolled .nav-consult.has-mega>.nav-action-link.active,
  .site-header.scrolled .nav-menu:hover .nav-consult.has-mega>.nav-action-link.active:not(:hover) {
    padding: 0 32px 0 10px !important;
  }

  .site-header.scrolled .nav-consult.has-mega>.nav-action-link::after,
  .site-header.scrolled .nav-consult.has-mega>.nav-action-link.active::after {
    right: 12px;
  }
}

/* Project introduction film */
.project-film-section {
  padding: 96px 0;
  background: #f7faf9;
}

.project-film-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #17201e;
  box-shadow: 0 24px 58px rgba(34, 54, 50, .13);
}

.project-film-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #17201e;
  object-fit: cover;
}

.project-film-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px 0;
  color: #72807d;
  font-size: 13px;
}

.project-film-caption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-film-caption i {
  color: #4da098;
}

@media (max-width: 640px) {
  .project-film-section {
    padding: 68px 0;
  }

  .project-film-frame {
    border-radius: 16px;
  }

  .project-film-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 1180px) {
  .nav-action {
    padding: 7px 12px;
  }

  .nav-action .nav-action-link,
  .site-header.scrolled .nav-action .nav-action-link {
    display: flex !important;
    align-items: center;
    gap: 11px;
    min-height: 48px;
    padding: 0 14px !important;
    border: 1px solid #dfe8e5;
    border-radius: 11px;
  }

  .nav-action .nav-action-link i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e5f2ee;
    color: #4da098;
    font-size: 12px;
  }

  .nav-action .nav-action-link::before {
    display: none;
  }

  .nav-consult .nav-action-link,
  .nav-consult .nav-action-link.active,
  .nav-consult .nav-action-link.active:hover,
  .nav-menu:hover .nav-consult .nav-action-link.active:not(:hover) {
    border: 0;
    background: #4da098;
    color: #fff !important;
    padding: 0 42px 0 14px !important;
  }

  .nav-consult .nav-action-link i {
    background: rgba(255, 255, 255, .18);
    color: #fff;
  }

  .nav-consult.has-mega>.nav-action-link::after {
    right: 18px;
  }
}

/* Contact entry is styled from its CMS fold class; other menu artwork stays CSS-owned. */
@media (min-width: 1181px) {
  :is(.nav-contact, .nav-contacts) {
    margin-left: 8px;
  }

  :is(.nav-contact, .nav-contacts) .nav-link,
  .site-header.scrolled :is(.nav-contact, .nav-contacts) .nav-link,
  .nav-menu:hover :is(.nav-contact, .nav-contacts) .nav-link.active:not(:hover) {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    min-height: 42px;
    padding: 0 14px !important;
    box-sizing: border-box;
    border-radius: 999px;
    background: #a14e98;
    color: #fff !important;
    box-shadow: 0 9px 20px rgba(161, 78, 152, .22);
  }

  :is(.nav-contact, .nav-contacts) .nav-link:hover {
    background: #8e4087;
    color: #fff !important;
  }

  :is(.nav-contact, .nav-contacts) .nav-link::before {
    content: '\f590';
    position: static;
    display: grid;
    place-items: center;
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    border-radius: 0;
    background: transparent;
    font-family: 'Font Awesome 6 Pro';
    font-size: 13px;
    font-weight: 900;
    opacity: 1;
    transform: none;
  }

  /* 联系入口带二级栏目时，为箭头保留独立空间，并覆盖 active 失焦规则，保持客服图标可见。 */
  :is(.nav-contact, .nav-contacts).has-mega>.nav-link,
  :is(.nav-contact, .nav-contacts).has-mega>.nav-link.active,
  .nav-menu:hover :is(.nav-contact, .nav-contacts).has-mega>.nav-link.active:not(:hover) {
    padding: 0 37px 0 14px !important;
  }

  :is(.nav-contact, .nav-contacts).has-mega>.nav-link::after {
    right: 15px;
  }

  .nav-menu:hover :is(.nav-contact, .nav-contacts) .nav-link.active:not(:hover)::before,
  :is(.nav-contact, .nav-contacts) .nav-link:hover::before {
    content: '\f590';
    position: static;
    display: grid;
    place-items: center;
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    opacity: 1;
    transform: none;
    background: transparent;
    font-family: 'Font Awesome 6 Pro';
    font-size: 13px;
    font-weight: 900;
  }

  .site-header.scrolled :is(.nav-contact, .nav-contacts) .nav-link,
  .site-header.scrolled :is(.nav-contact, .nav-contacts).has-mega>.nav-link,
  .site-header.scrolled .nav-menu:hover :is(.nav-contact, .nav-contacts).has-mega>.nav-link.active:not(:hover) {
    height: 36px;
    min-height: 36px;
    padding: 0 10px !important;
    gap: 6px;
  }

  .site-header.scrolled :is(.nav-contact, .nav-contacts).has-mega>.nav-link,
  .site-header.scrolled :is(.nav-contact, .nav-contacts).has-mega>.nav-link.active,
  .site-header.scrolled .nav-menu:hover :is(.nav-contact, .nav-contacts).has-mega>.nav-link.active:not(:hover) {
    padding: 0 29px 0 10px !important;
  }

  .site-header.scrolled :is(.nav-contact, .nav-contacts).has-mega>.nav-link::after {
    right: 12px;
  }

  .site-header.scrolled :is(.nav-contact, .nav-contacts) .nav-link::before {
    width: 1em;
    height: 1em;
    flex-basis: 1em;
    font-size: 12px;
  }

  .site-header.scrolled .nav-menu:hover :is(.nav-contact, .nav-contacts) .nav-link.active:not(:hover)::before,
  .site-header.scrolled :is(.nav-contact, .nav-contacts) .nav-link:hover::before {
    content: '\f590';
    display: grid;
    opacity: 1;
    transform: none;
    background: transparent;
  }
}

@media (max-width: 1180px) {
  :is(.nav-contact, .nav-contacts) {
    padding: 7px 12px;
  }

  :is(.nav-contact, .nav-contacts) .nav-link,
  :is(.nav-contact, .nav-contacts) .nav-link.active,
  .nav-menu:hover :is(.nav-contact, .nav-contacts) .nav-link.active:not(:hover) {
    display: flex !important;
    align-items: center;
    gap: 11px;
    min-height: 48px;
    padding: 0 14px !important;
    border: 0;
    border-radius: 11px;
    background: #a14e98;
    color: #fff !important;
  }

  :is(.nav-contact, .nav-contacts) .nav-link::before {
    content: '\f590';
    position: static;
    display: grid;
    place-items: center;
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    border-radius: 0;
    background: transparent;
    font-family: 'Font Awesome 6 Pro';
    font-size: 12px;
    font-weight: 900;
    opacity: 1;
    transform: none;
  }
}

/* Medical integration channel */
.medical-channel-section {
  padding: 96px 0;
  background: #f7faf9;
}

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

.medical-channel-card {
  overflow: hidden;
  border: 1px solid #e1e9e6;
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 13px 34px rgba(38, 63, 58, .06);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.medical-channel-card:hover {
  transform: translateY(-6px);
  border-color: #bcd8d1;
  color: inherit;
  box-shadow: 0 20px 46px rgba(38, 63, 58, .11);
}

.medical-channel-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55 / 1;
  background: #eaf2ef;
}

.medical-channel-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(18, 39, 35, .28));
  content: "";
}

.medical-channel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.medical-channel-card:hover .medical-channel-image img {
  transform: scale(1.035);
}

.medical-channel-image span {
  position: absolute;
  right: 20px;
  bottom: 15px;
  z-index: 1;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
}

.medical-channel-copy {
  padding: 27px 27px 29px;
}

.medical-channel-copy small {
  color: #4da098;
  font-weight: 700;
  letter-spacing: .08em;
}

.medical-channel-copy h3 {
  margin: 10px 0 13px;
  color: #25322f;
  font-size: 24px;
  font-weight: 750;
  line-height: 1.45;
}

.medical-channel-copy p {
  min-height: 58px;
  margin: 0 0 23px;
  color: #72807d;
  font-size: 15px;
  line-height: 1.85;
}

.medical-channel-copy b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #edf1f0;
  color: #364541;
  font-size: 14px;
  font-weight: 600;
}

.medical-channel-copy b i {
  color: #4da098;
  transition: transform .25s ease;
}

.medical-channel-card:hover .medical-channel-copy b i {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .medical-channel-section {
    padding: 84px 0 92px;
  }

  .medical-channel-grid {
    grid-template-columns: 1fr;
  }

  .medical-channel-card {
    display: grid;
    grid-template-columns: minmax(220px, .86fr) minmax(0, 1.14fr);
  }

  .medical-channel-image {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 640px) {
  .medical-channel-section {
    padding: 68px 0 76px;
  }

  .medical-channel-card {
    display: block;
  }

  .medical-channel-image {
    aspect-ratio: 1.55 / 1;
  }

  .medical-channel-copy {
    padding: 23px 22px 25px;
  }

  .medical-channel-copy p {
    min-height: 0;
  }
}

/* Clinical departments — source-led single page */
.clinical-page .medical-hero {
  padding-bottom: 94px;
}

.clinical-page .hero-photo {
  object-position: center;
}

.clinical-source-section {
  padding: 106px 0 114px;
  background: #f7faf9;
}

.clinical-source-head {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 88px;
  align-items: end;
  margin-bottom: 46px;
}

.clinical-source-heading h2 {
  margin: 0;
  color: #1d2221;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.clinical-source-lead {
  margin: 0;
  color: #5f6d69;
  font-size: 17px;
  line-height: 2.05;
}

.clinical-groups {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.clinical-groups article {
  min-height: 292px;
  padding: 32px;
  border: 1px solid #e0e9e6;
  border-radius: 18px;
  background: #fff;
}

.clinical-group-title {
  display: flex;
  align-items: flex-start;
}

.clinical-group-title small {
  display: block;
  margin-bottom: 5px;
  color: #81908c;
  font-size: 12px;
  letter-spacing: .06em;
}

.clinical-group-title h3 {
  margin: 0;
  color: #273431;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.45;
}

.clinical-groups ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.clinical-groups li {
  position: relative;
  padding: 12px 14px 12px 31px;
  border-radius: 10px;
  background: #f3f7f6;
  color: #45534f;
  font-size: 14px;
  font-weight: 600;
}

.clinical-groups li::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #69aaa2;
  content: "";
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .clinical-source-section {
    padding: 84px 0 92px;
  }

  .clinical-source-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .clinical-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .clinical-page .medical-hero {
    padding-bottom: 72px;
  }

  .clinical-source-section {
    padding: 68px 0 76px;
  }

  .clinical-source-heading h2 {
    font-size: 28px;
  }

  .clinical-source-lead {
    font-size: 15px;
    line-height: 1.95;
  }

  .clinical-groups article {
    min-height: 0;
    padding: 24px 21px;
  }

  .clinical-groups ul {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
}

/* Shengding hospital detail */
.hospital-page .medical-hero {
  padding-bottom: 96px;
}

.hospital-page .hero-photo {
  object-position: center;
}

.hospital-profile-section,
.hospital-alliance-section {
  padding: 108px 0;
}

.hospital-discipline-section,
.hospital-specialties-section {
  padding: 108px 0 116px;
  background: #f7faf9;
}

.hospital-profile-grid {
  display: grid;
  grid-template-columns: minmax(290px, .76fr) minmax(0, 1.24fr);
  gap: 88px;
  align-items: start;
}

.hospital-section-title h2,
.hospital-alliance-copy h2 {
  margin: 0;
  color: #1d2221;
  font-size: 34px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.hospital-profile-copy p,
.hospital-alliance-copy p {
  margin: 0;
  color: #63716e;
  font-size: 16px;
  line-height: 2;
}

.hospital-profile-copy p+p,
.hospital-alliance-copy p+p {
  margin-top: 18px;
}

.hospital-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 54px;
}

.hospital-stat-grid article {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid #e0e9e6;
  border-radius: 14px;
  background: #fff;
}

.hospital-official-link {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.hospital-stat-grid small {
  color: #7d8986;
  font-size: 13px;
  font-weight: 750;
}

.hospital-stat-grid strong {
  color: #316f68;
  font: 31px/1.2 'en', sans-serif;
}

.hospital-stat-grid span {
  color: #6f7c79;
  font-size: 13px;
  line-height: 1.6;
}

.hospital-alliance-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 78px;
  align-items: stretch;
}

.hospital-alliance-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 18px 18px 70px 18px;
  background: #edf3f1;
}

.hospital-alliance-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hospital-alliance-copy h2 {
  margin-bottom: 26px;
}

.hospital-specialties-section {
  background: #f8f4ef;
}

.hospital-simple-layout {
  align-items: start;
}

.hospital-simple-layout .hospital-alliance-media {
  width: 100%;
  height: 560px;
  min-height: 0;
}

.hospital-simple-copy>p {
  margin-bottom: 30px;
}

.hospital-simple-blocks,
.hospital-simple-specialties {
  display: grid;
  gap: 28px;
}

.hospital-simple-blocks h3,
.hospital-simple-specialties h3 {
  margin: 0 0 9px;
  color: #283632;
  font-size: 21px;
}

.hospital-simple-blocks article p,
.hospital-simple-specialties article p {
  margin: 0;
  color: #65736f;
  font-size: 15px;
  line-height: 1.95;
}

.hospital-simple-specialty-title {
  margin-bottom: 13px;
}

.hospital-simple-specialty-title small {
  display: block;
  margin-bottom: 4px;
  color: #4da098;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
}

.hospital-simple-specialty-title h3 {
  margin-bottom: 3px;
}

.hospital-simple-specialty-title strong {
  color: #75817e;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 900px) {

  .hospital-profile-section,
  .hospital-alliance-section,
  .hospital-discipline-section,
  .hospital-specialties-section {
    padding: 84px 0 92px;
  }

  .hospital-profile-grid,
  .hospital-alliance-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .hospital-alliance-media {
    min-height: 420px;
  }

  .hospital-simple-layout .hospital-alliance-media {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .hospital-page .medical-hero {
    padding-bottom: 72px;
  }

  .hospital-profile-section,
  .hospital-alliance-section,
  .hospital-discipline-section,
  .hospital-specialties-section {
    padding: 68px 0 76px;
  }

  .hospital-section-title h2,
  .hospital-alliance-copy h2 {
    font-size: 28px;
  }

  .hospital-profile-copy p,
  .hospital-alliance-copy p {
    font-size: 15px;
    line-height: 1.95;
  }

  .hospital-stat-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hospital-stat-grid article {
    min-height: 150px;
  }

  .hospital-alliance-media {
    min-height: 280px;
  }

  .hospital-simple-layout .hospital-alliance-media {
    height: 280px;
  }

  .hospital-simple-blocks,
  .hospital-simple-specialties {
    gap: 24px;
  }
}

/* 移动端 hero 使用独立的图片卡片构图，不沿用桌面端弧形裁切。 */
@media (max-width: 640px) {
  .care-hero .hero-visual,
  .service-detail-hero .hero-visual {
    padding: 0;
  }

  .care-hero .hero-visual::before,
  .service-detail-hero .hero-visual::before {
    display: none;
  }

  .care-hero .hero-photo,
  .service-detail-hero .hero-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(39, 92, 84, .14);
  }

  .care-hero .hero-badge,
  .service-detail-hero .hero-badge {
    right: -6px;
    bottom: -12px;
    width: 68px;
    height: 68px;
  }

  .six-detail-page .service-detail-hero .hero-visual {
    padding: 0;
  }

  .six-detail-page .service-detail-hero .hero-visual::before {
    display: none;
  }

  .six-detail-page .service-detail-hero .hero-photo {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(39, 92, 84, .14);
  }

  .six-detail-page .service-detail-hero .hero-badge {
    right: -6px;
    bottom: -12px;
    width: 68px;
    height: 68px;
  }
}
