:root {
  --orange: #e87722;
  --orange-hover: #d56a1a;
  --orange-dark: #c45f10;
  --cta-red: #e02020;
  --ink: #2c2c2c;
  --muted: #666;
  --bg: #f5f5f5;
  --card-bg: #ffffff;
  --footer-bg: #1e1e1e;
  --wrap: 1200px;
  --radius: 2px;
  --section-pad: 64px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--card-bg);
  line-height: 1.65;
  font-size: 15px;
}

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0 10px; gap: 20px;
}

.brand img { display: block; height: 42px; width: auto; }

.header-top-right {
  display: flex; align-items: center; gap: 16px 24px;
  flex-wrap: wrap; justify-content: flex-end;
}

.badges { display: flex; gap: 16px; align-items: center; color: #333; font-size: 0.78rem; line-height: 1.25; }
.badge-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.badge-item img { width: 34px; height: auto; flex: 0 0 auto; }
.hotline-label { font-size: 0.82rem; color: #333; margin-right: -16px; }

.hotline {
  font-size: 1.35rem; font-weight: 700; color: var(--orange);
  white-space: nowrap; letter-spacing: 0.02em;
}

.main-nav {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 6px 8px;
  padding: 12px 20px 16px;
  border-top: 1px solid #eaeaea;
}

.main-nav a {
  color: #333;
  font-size: 0.92rem;
  padding: 6px 8px;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav a:hover { color: var(--orange); text-decoration: none; }
.main-nav .nav-cta { color: #fff; background: var(--cta-red); font-weight: 600; }
.main-nav .nav-cta:hover { background: #c91818; color: #fff; }

.hero { width: 100%; background: #fff; padding: 0; margin: 0; overflow: hidden; }
.hero-stage { position: relative; width: 100%; min-height: 0; background: #fff; }
.hero-slides { position: relative; width: 100%; }
.hero-slide { display: none; width: 100%; }
.hero-slide.is-active { display: block; }
.hero-slide img { width: 100%; height: auto; display: block; }

.hero-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 6; display: flex; gap: 10px;
}

.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent; padding: 0; cursor: pointer; opacity: 0.75;
}

.hero-dots button.is-active { background: #fff; opacity: 1; transform: scale(1.08); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

.hero-arrow::after {
  content: ""; display: block; width: 10px; height: 10px; margin: auto;
  border: 2px solid #444; border-width: 0 0 2px 2px;
}
.hero-arrow--prev::after { transform: rotate(45deg); margin-left: 14px; }
.hero-arrow--next::after { transform: rotate(-135deg); margin-right: 14px; }

.section { padding: var(--section-pad) 0; }
.dept-section, .doctors-section, .reputation-section, .news-section, .partners-section { background: var(--card-bg); }
.section-head { text-align: center; margin-bottom: 16px; }
.section-head--on-dark { margin-bottom: 28px; }

.section-title {
  margin: 0 0 12px; font-size: 1.65rem; font-weight: 700;
  color: var(--ink); letter-spacing: 0.06em;
}
.section-title--on-dark { color: #fff; }
.section-title-deco {
  width: 56px; height: 4px; margin: 0 auto; background: var(--orange); border-radius: 2px;
}
.section-title-deco--light { background: linear-gradient(90deg, #ffb366, var(--orange)); }
.section-subtitle {
  margin: 10px auto 0;
  max-width: 44em;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.65;
}

.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dept-card {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08); transition: 0.2s; border: 1px solid #f0f0f0;
}
.dept-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12); }
.dept-card img { width: 100%; height: auto; display: block; }
.dept-card span {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 10px 12px;
  color: #fff; background: rgba(232, 119, 34, 0.82);
  font-size: 1.02rem; font-weight: 600; letter-spacing: 0.02em;
}
.dept-card--lead span { display: none; }

.dept-icons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 16px;
  width: min(100%, 800px);
  margin: 40px auto 0; padding: 28px 8px 8px; border-top: 1px solid #e8e8e8;
}
.dept-icon-item { flex: 1 1 calc(14.28% - 16px); min-width: 88px; max-width: 128px; text-align: center; }
.dept-icon-item img { height: 44px; width: auto; margin-bottom: 10px; display: inline-block; }
.dept-icon-item span { display: block; font-size: 0.78rem; color: #555; line-height: 1.35; }

.guarantees-section {
  position: relative; padding: 32px 0 40px; color: #fff; overflow: hidden;
}

.guarantees-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #161616 url("../images/zj%200yibaodingdian.png") center center / cover no-repeat;
}

.guarantees-shell {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 52px; align-items: center;
}

.guarantees-showcase {
  display: flex; min-width: 0;
}

.guarantees-visual {
  position: relative; width: 100%;
}

.guarantees-visual img {
  width: 100%; height: auto; display: block;
}

.guarantees-copy {
  position: absolute; left: 24px; right: 24px; bottom: 18px;
  padding: 14px 16px;
  background: rgba(232, 119, 34, 0.9);
}

.guarantees-showcase-desc {
  margin: 0; color: #fff; font-size: 0.9rem; line-height: 1.7;
}

.guarantees-aside {
  display: flex; flex-direction: column; justify-content: flex-start;
  padding-top: 2px;
}

.guarantees-kicker {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 700;
}
.guarantees-heading {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 1.65rem;
  line-height: 1.35;
}

.guarantee-tab-list {
  display: flex; flex-direction: column; gap: 6px;
}

.guarantee-tab {
  width: 100%; padding: 14px 18px; text-align: center; font-size: 1rem; font-weight: 500;
  color: #1e1e1e; background: rgba(255, 255, 255, 0.96); border: none;
  border-top: 4px solid transparent; cursor: pointer; transition: 0.18s ease;
}
.guarantee-tab:hover { transform: translateX(4px); box-shadow: 0 8px 20px rgba(0,0,0,0.16); }
.guarantee-tab.is-active { border-top-color: var(--orange); box-shadow: 0 10px 24px rgba(0,0,0,0.2); color: #111; }

.doctor-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.doctor-slides { position: relative; height: clamp(500px, 42vw, 540px); overflow: hidden; }

.doctor-slide {
  position: absolute; top: 50%; left: 50%; width: min(1080px, 86vw);
  margin: 0; opacity: 0; pointer-events: none;
  transform: translate(-50%, -50%) scale(0.88);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.doctor-slide.is-active,
.doctor-slide.is-prev,
.doctor-slide.is-next { opacity: 1; }

.doctor-slide.is-active { z-index: 3; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.doctor-slide.is-prev { z-index: 2; transform: translate(-86%, -50%) scale(0.82); opacity: 0.18; }
.doctor-slide.is-next { z-index: 2; transform: translate(-14%, -50%) scale(0.82); opacity: 0.18; }

.doctor-slide-link,
.doctor-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.doctor-slide-link:hover,
.doctor-link-card:hover {
  text-decoration: none;
}

.doctor-visual-card {
  position: relative; width: 100%; aspect-ratio: 1100 / 560;
  background-position: center center; background-repeat: no-repeat; background-size: contain;
  --doctor-frame-left: 6.52%;
  --doctor-frame-top: 17.09%;
  --doctor-frame-right: 6.68%;
  --doctor-frame-bottom: 3.14%;
}

.doctor-content {
  position: absolute;
  top: calc(var(--doctor-frame-top) + 11.4%);
  right: calc(var(--doctor-frame-right) + 4.4%);
  left: calc(var(--doctor-frame-left) + 45.6%);
  max-height: calc(100% - var(--doctor-frame-top) - var(--doctor-frame-bottom) - 16%);
  overflow: hidden;
  color: #666; line-height: 1.65;
}

.doctor-name {
  margin: 0 0 14px; color: #e87722; font-size: 1.14rem; line-height: 1.35;
}
.doctor-points { margin: 0; padding-left: 1.25em; font-size: 0.86rem; line-height: 1.6; }
.doctor-points li::marker { color: var(--orange); }
.doctor-specialty { margin: 10px 0 0; font-size: 0.84rem; color: #666; line-height: 1.6; }
.doctor-specialty strong { color: var(--orange); }

.doc-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid #2a2a2a;
  background: rgba(255,255,255,0.9); cursor: pointer; transition: 0.15s;
  transform: translateY(-50%);
}
.doc-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.04); }
.doc-arrow::after {
  content: ""; display: block; width: 10px; height: 10px; margin: auto;
  border: 2px solid #333; border-width: 0 0 2px 2px;
}
.doc-arrow--prev::after { transform: rotate(45deg); margin-left: 15px; }
.doc-arrow--next::after { transform: rotate(-135deg); margin-right: 15px; }
.doc-arrow--prev { left: calc(50% - min(540px, 43vw) - 22px); }
.doc-arrow--next { right: calc(50% - min(540px, 43vw) - 22px); }

.doc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.doc-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: #ccc; cursor: pointer; padding: 0; }
.doc-dots button.is-active { background: var(--orange); width: 22px; border-radius: 5px; }

.reputation-marquee {
  overflow: hidden;
  padding: 4px 0 12px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.reputation-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reputation-scroll 42s linear infinite;
}
.reputation-marquee:hover .reputation-track { animation-play-state: paused; }
.reputation-track figure {
  margin: 0;
  width: min(22vw, 280px);
  min-width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.reputation-track img { width: 100%; height: auto; display: block; }

@keyframes reputation-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.brand-section {
  background: #fff;
  color: var(--ink);
  padding-bottom: 56px;
}
.brand-section-head { margin-bottom: 28px; }
.brand-section-subtitle {
  margin: 16px auto 0;
  max-width: 36em;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}
.brand-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 10px 12px;
  margin-bottom: 32px;
}
.brand-tab {
  min-width: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 10px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #444;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}
.brand-tab:hover { border-color: #bbb; color: var(--ink); }
.brand-tab:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.brand-tab.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.brand-tab-inner {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 6px;
  max-width: 100%;
}
.brand-tab-sep { opacity: 0.85; font-weight: 500; }
.brand-tab-en {
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-tab.is-active .brand-tab-sep { opacity: 0.95; }
.brand-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 48px;
  align-items: center;
  margin-bottom: 8px;
}
.brand-panel.is-active { display: grid; }
.brand-panel-lead {
  margin: 0 0 14px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.4;
}
.brand-text-col p {
  margin: 0 0 20px;
  line-height: 1.85;
  color: var(--ink);
  font-size: 0.98rem;
}
.btn-orange {
  display: inline-block; padding: 10px 28px; background: var(--orange); color: #fff !important;
  font-size: 0.92rem; font-weight: 600; border-radius: 4px; text-decoration: none !important;
}
.brand-map-col {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  background: #fafafa;
  width: min(100%, 760px);
  justify-self: center;
}
.brand-map-col img { width: 100%; height: auto; display: block; }

.news-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 36px; align-items: start; }
.news-feature {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1); background: #111; aspect-ratio: 16 / 10;
}
.news-feature img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.95; }
.news-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.95);
  background: rgba(232,119,34,0.92); color: #fff; font-size: 1.4rem; padding-left: 6px; cursor: pointer;
}
.news-list { list-style: none; margin: 0; padding: 0; }
.news-list li { border-bottom: 1px solid #eaeaea; padding: 16px 0; }
.news-list li:first-child { padding-top: 0; }
.news-list a { display: block; color: inherit; text-decoration: none; }
.news-item-title { display: block; font-weight: 700; color: var(--ink); font-size: 1rem; margin-bottom: 6px; }
.news-item-desc { display: block; font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; line-height: 1.5; }
.news-item-date { font-size: 0.82rem; color: #999; }

.partners-lead {
  margin: 0 auto 24px;
  max-width: 42em;
  padding: 0 8px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.partners-section { background: #fff; }

.partners-strip {
  padding: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
}

.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partners-marquee__track {
  display: flex;
  width: max-content;
  animation: partners-marquee-scroll 50s linear infinite;
}

.partners-marquee:hover .partners-marquee__track { animation-play-state: paused; }

.partners-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  padding: 22px clamp(16px, 3vw, 32px);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 210px;
  height: 86px;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.partner-logo img {
  display: block;
  max-height: 56px;
  width: auto;
  max-width: min(160px, 28vw);
  object-fit: contain;
}

@keyframes partners-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee__track {
    animation: none;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .partners-marquee__group[aria-hidden="true"] { display: none; }
  .partners-marquee__group {
    flex-wrap: wrap;
    justify-content: center;
  }
  .reputation-track {
    animation: none;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.site-footer {
  position: relative;
  color: #c8c8c8;
  padding: 52px 0 28px;
  background-color: #12141a;
  background-image: linear-gradient(180deg, rgba(30, 34, 44, 0.92) 0%, rgba(14, 16, 22, 0.96) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(220px, 300px);
  gap: 40px 36px;
  align-items: start;
}
.footer-branches .branch-list { margin: 0; }
.branch-list { list-style: none; margin: 0; padding: 0; font-size: 0.86rem; line-height: 1.6; }
.branch-list li { margin-bottom: 18px; }
.branch-list strong { color: #fff; font-weight: 700; }
.footer-brand {
  text-align: center;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo { max-height: 64px; width: auto; margin-bottom: 18px; }
.footer-qr {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 18px;
}
.footer-qr figure { margin: 0; }
.footer-qr img {
  display: block;
  width: 108px;
  height: auto;
  max-width: 100%;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
}
.footer-qr figcaption { margin-top: 8px; font-size: 0.78rem; color: #d0d0d0; }
.footer-hotline {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-hotline a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-hotline a:hover { color: var(--orange); text-decoration: none; }
.footer-disclaimer {
  margin: 16px 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 280px;
}
.footer-copy {
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.section-more {
  margin: 22px 0 0;
  text-align: center;
}

.route-section {
  background: #fff;
  padding-top: 0;
}

.route-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.route-card {
  margin-top: 42px;
}

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

.route-grid div {
  padding: 16px 18px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.route-grid strong {
  display: block;
  color: var(--orange);
  margin-bottom: 6px;
  font-size: 1rem;
}

.route-grid span {
  display: block;
  color: #555;
  line-height: 1.6;
  font-size: 0.88rem;
}

.sub-page {
  background: #fff;
}

.sub-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-feature {
  position: relative;
  display: block;
  margin: 0 0 28px;
  border: 1px solid #ececec;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.doctor-feature:hover {
  text-decoration: none;
}

.doctor-feature img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-feature-copy {
  position: absolute;
  top: 26%;
  right: 8%;
  width: 40%;
  color: #333;
}

.doctor-feature-copy h1 {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.doctor-feature-copy h1 span {
  color: #333;
  font-size: 0.55em;
  font-weight: 500;
}

.doctor-feature-copy p {
  margin: 0 0 12px;
  line-height: 1.8;
  font-size: 1rem;
}

.doctor-feature-copy strong { color: var(--orange); }

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

.doctor-team-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.doctor-team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  text-decoration: none;
}

.doctor-team-card img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-team-card h2 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1.4;
}

.doctor-team-card h2 span {
  color: #333;
  font-size: 0.86em;
  font-weight: 500;
}

.doctor-team-card ul {
  margin: 0 0 14px;
  padding-left: 1.2em;
  color: #333;
  line-height: 1.75;
  font-size: 0.92rem;
}

.doctor-team-card li::marker { color: var(--orange); }

.doctor-team-card p {
  margin: 0;
  color: #555;
  line-height: 1.75;
  font-size: 0.92rem;
}

.doctor-team-card strong { color: var(--orange); }

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

.story-intro p {
  margin: 0;
  color: #444;
  line-height: 2;
  font-size: 1rem;
}

.story-intro img,
.story-era-grid img,
.story-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.story-timeline-section {
  background: #f7f7f7;
}

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

.story-era-grid article,
.story-gallery article {
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.story-era-grid h3 {
  margin: 18px 22px 10px;
  color: var(--orange);
  font-size: 1.12rem;
}

.story-era-grid p {
  margin: 0 22px 10px;
  color: #444;
  line-height: 1.75;
  font-size: 0.92rem;
}

.story-era-grid p:last-child { margin-bottom: 22px; }

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

.story-gallery h2 {
  margin: 0;
  padding: 16px 18px;
  color: var(--orange);
  font-size: 1.05rem;
  text-align: center;
}
.footer-copy p { margin: 0; }
.footer-copy p + p { margin-top: 8px; }

.footer-record {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-record a {
  color: inherit;
  text-decoration: none;
}

.footer-record a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 960px) {
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .dept-icon-item { flex: 1 1 calc(33.33% - 12px); }
  .guarantees-shell { grid-template-columns: 1fr; }
  .guarantees-aside { order: -1; }
  .doctor-carousel { grid-template-columns: 48px minmax(0, 1fr) 48px; gap: 10px; }
  .doctor-slides { height: clamp(360px, 56vw, 500px); }
  .doctor-slide { width: 98%; }
  .doctor-slide.is-active { transform: translate(-50%, -50%) scale(1); }
  .doctor-slide.is-prev { transform: translate(-88%, -50%) scale(0.82); }
  .doctor-slide.is-next { transform: translate(-12%, -50%) scale(0.82); }
  .doctor-visual-card { aspect-ratio: 1100 / 560; }
  .doctor-content { top: 18%; right: 7%; width: 37%; }
  .doc-arrow--prev { left: 12px; }
  .doc-arrow--next { right: 12px; }
  .news-layout, .footer-grid, .route-grid { grid-template-columns: 1fr; }
  .doctor-card-grid, .story-era-grid, .story-gallery, .story-intro { grid-template-columns: 1fr; }
  .doctor-team-card { grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr); }
  .doctor-feature-copy { top: 18%; right: 6%; width: 42%; }
  .doctor-feature-copy p { font-size: 0.86rem; line-height: 1.65; }
  .footer-disclaimer { max-width: 42em; margin-inline: auto; }
  .brand-panel.is-active { grid-template-columns: 1fr; }
  .main-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .badges, .hotline-label { display: none; }
  .brand-tabs { gap: 8px 8px; }
  .brand-tab { padding: 10px 6px; font-size: 0.82rem; }
  .brand-tab-en { letter-spacing: 0.03em; }
}

@media (max-width: 600px) {
  .main-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 10px 16px 14px; gap: 6px; }
  .main-nav a { font-size: 0.78rem; padding: 6px 4px; }
  .dept-grid { grid-template-columns: 1fr; }
  .dept-card span { min-height: 46px; font-size: 0.95rem; }
  .hero-arrow--prev { left: 8px; }
  .hero-arrow--next { right: 8px; }
  .guarantees-copy { left: 16px; right: 16px; bottom: 12px; }
  .guarantees-showcase-desc { font-size: 0.88rem; line-height: 1.65; }
  .guarantee-tab { padding: 12px 14px; font-size: 0.94rem; }
  .doctor-carousel { grid-template-columns: 40px minmax(0, 1fr) 40px; gap: 8px; }
  .doctor-slides { height: 360px; }
  .doctor-slide { width: 100%; }
  .doctor-slide.is-prev, .doctor-slide.is-next { opacity: 0.16; }
  .doctor-visual-card { aspect-ratio: 4 / 3; background-position: 28% center; }
  .doctor-content {
    position: absolute; left: 46%; right: 4%; top: 14%; width: auto;
    font-size: 0.82rem; line-height: 1.65;
  }
  .doctor-name { font-size: 0.96rem; margin-bottom: 10px; }
  .doctor-points { font-size: 0.78rem; line-height: 1.6; }
  .doctor-specialty { font-size: 0.76rem; line-height: 1.55; margin-top: 8px; }
  .reputation-track figure { width: 72vw; min-width: 72vw; }
  .brand-tabs { gap: 6px 6px; }
  .brand-tab { padding: 8px 4px; font-size: 0.68rem; }
  .brand-tab-en { font-size: 0.72em; letter-spacing: 0.02em; }
  .brand-tab-inner { flex-direction: column; align-items: center; gap: 2px; }
  .brand-tab-sep { display: none; }
  .doctor-team-card { grid-template-columns: 1fr; padding: 18px; }
  .doctor-feature-copy {
    position: static;
    width: auto;
    padding: 18px;
    background: #fff;
  }
}

.profile-page {
  background: linear-gradient(180deg, #fff 0%, #fcf7f2 100%);
}

.profile-hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(circle at left top, rgba(232, 119, 34, 0.16), transparent 32%),
    linear-gradient(135deg, #fff7f0 0%, #ffffff 55%, #f7f7f7 100%);
}

.profile-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px 40px;
  align-items: center;
}

.profile-eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.profile-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: #1f1f1f;
}

.profile-summary {
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.profile-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 119, 34, 0.1);
  color: #9f4c0c;
  font-size: 0.88rem;
  font-weight: 600;
}

.profile-hero__visual {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 240, 0.96));
  box-shadow: 0 22px 44px rgba(43, 31, 18, 0.12);
}

.profile-hero__visual img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.profile-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.profile-section--alt {
  background: rgba(255, 255, 255, 0.82);
}

.profile-section-head {
  margin-bottom: 28px;
}

.profile-section-head--left {
  text-align: left;
}

.profile-section-head--left .section-title-deco {
  margin-left: 0;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.profile-info-card,
.profile-copy-card,
.culture-card,
.timeline-item {
  background: #fff;
  border: 1px solid rgba(232, 119, 34, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.profile-info-card {
  min-height: 148px;
  padding: 24px 22px;
}

.profile-info-card__label,
.culture-card__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.profile-info-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1f1f1f;
}

.profile-section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.profile-section-intro p {
  margin: 0;
  max-width: 32em;
  color: #666;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, rgba(232, 119, 34, 0.4), rgba(232, 119, 34, 0.1));
}

.timeline-item {
  position: relative;
  padding: 22px 24px 22px 58px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(232, 119, 34, 0.14);
}

.timeline-item__year {
  margin-bottom: 8px;
  color: #a54f11;
  font-size: 1rem;
  font-weight: 700;
}

.timeline-item p,
.profile-copy-card p,
.culture-card p {
  margin: 0;
  color: #444;
  line-height: 1.85;
}

.profile-two-col,
.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.profile-copy-card,
.culture-card {
  padding: 26px 24px;
}

.profile-copy-card h3 {
  margin: 0 0 12px;
  color: #1f1f1f;
  font-size: 1.18rem;
}

.culture-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-footer {
  margin-top: 8px;
}

.profile-footer__inner {
  text-align: center;
}

.profile-footer__lead {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.profile-footer__meta {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
}

.profile-footer__back {
  margin-top: 18px;
}

@media (max-width: 960px) {
  .profile-hero__grid,
  .profile-info-grid,
  .profile-two-col,
  .culture-grid {
    grid-template-columns: 1fr;
  }

  .profile-section-intro {
    display: block;
  }

  .profile-section-intro p {
    margin-top: 14px;
  }
}

@media (max-width: 600px) {
  .profile-hero {
    padding-top: 34px;
  }

  .profile-summary {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .profile-tags span {
    font-size: 0.8rem;
  }

  .profile-info-card,
  .profile-copy-card,
  .culture-card {
    padding: 22px 18px;
  }

  .timeline-item {
    padding: 20px 18px 20px 50px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-item::before {
    left: 10px;
  }
}


.profile-copy-card--wide {
  max-width: 100%;
}

.profile-copy-card--wide p {
  font-size: 1rem;
}

.founder-section {
  background:
    radial-gradient(circle at right top, rgba(232, 119, 34, 0.12), transparent 30%),
    linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}

.founder-section-head {
  margin-bottom: 34px;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: start;
}

.founder-summary-card {
  background: linear-gradient(180deg, #1f2229 0%, #12141a 100%);
  color: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 22px 46px rgba(18, 20, 26, 0.18);
}

.founder-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.founder-summary-card h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  color: #fff;
}

.founder-summary-card p {
  margin: 0;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
}

.founder-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.founder-highlight-list span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffe1c9;
  font-size: 0.84rem;
}

.founder-detail-stack {
  display: grid;
  gap: 20px;
}

.founder-card h3 {
  margin: 0 0 14px;
  color: #1f1f1f;
  font-size: 1.16rem;
}

.founder-timeline,
.founder-list {
  margin: 0;
  padding-left: 1.2em;
  color: #444;
  line-height: 1.85;
}

.founder-timeline li + li,
.founder-list li + li {
  margin-top: 10px;
}

.founder-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.special-page {
  background: #fff;
}

.main-nav a[aria-current="page"] {
  color: var(--orange);
  font-weight: 700;
}

.special-overview {
  background: #fff;
  overflow: hidden;
}

.special-overview-img {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.special-card-wrap {
  padding-top: 44px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}

.special-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 880px);
  margin: 0 auto;
}

.special-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 18px;
  border: 1px solid rgba(232, 119, 34, 0.26);
  background: #fff;
  color: #2c2c2c;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.special-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(232, 119, 34, 0.16);
  text-decoration: none;
}

.special-card img {
  display: block;
  width: 100%;
  aspect-ratio: 583 / 290;
  object-fit: cover;
}

.special-card strong {
  color: var(--orange-dark);
  font-size: 1.12rem;
  padding: 0 16px;
}

.special-card span {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.45;
  padding: 0 16px;
}

.special-detail-page main {
  background: #fff;
}

.special-service-hero {
  position: relative;
  background: #fff;
}

.special-service-hero img {
  display: block;
  width: 100%;
  max-width: 1872px;
  margin: 0 auto;
}

.special-detail-tools {
  padding: 18px 0;
}

.special-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 16px;
  border: 1px solid rgba(232, 119, 34, 0.36);
  color: var(--orange-dark);
  font-size: 0.92rem;
  text-decoration: none;
}

.special-back-link:hover {
  border-color: var(--orange);
  background: #fff8f2;
  text-decoration: none;
}

.special-sliced-page {
  background: #fff;
}

.special-sliced-page img {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.special-content-section {
  padding: 64px 0;
  background: #fff;
}

.special-content-section--soft {
  background: #f6f6f6;
}

.special-section-title {
  margin: 0 0 12px;
  color: #111;
  font-size: 2rem;
  line-height: 1.25;
  text-align: center;
}

.special-section-subtitle {
  margin: 0 auto 34px;
  max-width: 680px;
  color: #666;
  text-align: center;
  line-height: 1.8;
}

.special-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.special-copy h1,
.special-copy h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: 2rem;
  line-height: 1.25;
}

.special-copy p {
  margin: 0 0 16px;
  color: #444;
  font-size: 1rem;
  line-height: 1.95;
}

.special-media {
  display: block;
  width: 100%;
  border-radius: 2px;
}

.special-media--shadow {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

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

.special-feature {
  min-height: 178px;
  padding: 24px 20px;
  border-top: 4px solid var(--orange);
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.special-feature h3 {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 1.1rem;
}

.special-feature p {
  margin: 0;
  color: #555;
  line-height: 1.75;
}

.special-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.special-pill-list span {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(232, 119, 34, 0.28);
  background: #fff8f2;
  color: var(--orange-dark);
  font-weight: 600;
}

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

.special-compare-card {
  padding: 28px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.special-compare-card h3 {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 1.25rem;
}

.special-compare-card ul {
  margin: 0;
  padding-left: 1.2em;
  color: #444;
  line-height: 1.9;
}

@media (max-width: 960px) {
  .founder-grid,
  .founder-meta-grid {
    grid-template-columns: 1fr;
  }

  .special-card-wrap { padding-top: 28px; }
  .special-two-col,
  .special-feature-grid,
  .special-compare { grid-template-columns: 1fr; }
  .special-content-section { padding: 46px 0; }
}

@media (max-width: 600px) {
  .special-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .special-section-title,
  .special-copy h1,
  .special-copy h2 {
    font-size: 1.55rem;
  }

  .special-compare-card,
  .special-feature {
    padding: 22px 18px;
  }
}
