:root {
  --color-primary: #0fa5a0;
  --color-primary-deep: #0b6b80;
  --color-accent: #f59b2f;
  --color-dark: #102538;
  --color-text: #273445;
  --color-muted: #64748b;
  --color-line: #dbe6ec;
  --color-surface: #ffffff;
  --color-surface-soft: #f5f9fb;
  --shadow-soft: 0 22px 60px rgba(16, 37, 56, 0.08);
  --shadow-card: 0 14px 32px rgba(16, 37, 56, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.75;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--color-surface-soft);
}

.section-deep {
  background: linear-gradient(135deg, #0ea5a4 0%, #0b6c81 100%);
  color: #ffffff;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-deep .section-kicker,
.footer-cta .section-kicker,
.hero .section-kicker,
.inner-hero .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  margin-bottom: 36px;
}

.section-head.center {
  text-align: center;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--color-dark);
}

.section-deep .section-title {
  color: #ffffff;
}

.section-subtitle {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--color-muted);
}

.page-home .section-title {
  font-size: clamp(24px, 3vw, 34px);
}

.page-home .section-copy .section-title,
.page-home .section-head .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.page-home .section-copy .section-title::after,
.page-home .section-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #59d3ce 100%);
}

.page-home .section-head.center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-deep .section-subtitle,
.footer-cta p,
.hero p,
.inner-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 230, 236, 0.9);
  backdrop-filter: blur(14px);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 94px;
}

.brand img,
.footer-brand img {
  height: 56px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  font-weight: 600;
  color: #1f2937;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), #3dd6cf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.header-cta,
.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(245, 155, 47, 0.22);
}

.header-cta {
  min-width: 126px;
  cursor: pointer;
  font: inherit;
  appearance: none;
}

.header-cta-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-cta-icon {
  display: inline-flex;
  width: 1.15em;
  height: 1.15em;
  align-items: center;
  justify-content: center;
  opacity: 1;
  flex-shrink: 0;
  line-height: 1;
}

.header-cta-icon svg {
  width: 1.15em;
  height: 1.15em;
}

.header-cta.is-active {
  background: #ef8f19;
}

.header-cta-qrcode {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: 196px;
  padding: 16px;
  border: 1px solid rgba(219, 230, 236, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.header-cta-qrcode::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 32px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(219, 230, 236, 0.96);
  border-left: 1px solid rgba(219, 230, 236, 0.96);
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(45deg);
}

.header-cta-qrcode::after {
  content: "";
  position: absolute;
  top: -16px;
  right: 0;
  width: 100%;
  height: 16px;
}

.header-cta-group:hover .header-cta-qrcode,
.header-cta-group:focus-within .header-cta-qrcode {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-cta-qrcode p {
  margin: 0 0 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-dark);
}

.header-cta-qrcode img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  background: var(--color-surface-soft);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
  background: transparent;
}

.btn-outline {
  border-color: rgba(15, 165, 160, 0.26);
  color: var(--color-primary-deep);
  background: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: var(--color-primary-deep);
}

.btn.block {
  width: 100%;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--color-surface-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-dark);
}

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  overflow: hidden;
}

.hero-track,
.hero-slide {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
}

.hero-slide {
  display: none;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.hero-slide.is-active {
  display: flex;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 31, 53, 0.58) 0%, rgba(10, 31, 53, 0.4) 36%, rgba(10, 31, 53, 0.16) 100%),
    linear-gradient(180deg, rgba(15, 165, 160, 0.1) 0%, rgba(15, 165, 160, 0) 100%);
}

.hero-content,
.inner-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 0;
  color: #ffffff;
  transform: translateY(-24px);
}

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

.inner-hero .container {
  text-align: center;
}

.hero h1,
.inner-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.12;
  color: #ffffff;
}

.inner-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(15px, 2vw, 23px);
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
}

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

.hero-actions .btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
}

.hero-actions .btn-primary {
  border-color: transparent;
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(245, 155, 47, 0.22);
}

.hero-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.92);
  background: #ffffff;
  color: var(--color-primary-deep);
  box-shadow: 0 14px 26px rgba(16, 37, 56, 0.12);
}

.hero-actions.is-swap-active .btn-primary {
  border-color: rgba(255, 255, 255, 0.92);
  background: #ffffff;
  color: var(--color-primary-deep);
  box-shadow: 0 14px 26px rgba(16, 37, 56, 0.12);
}

.hero-actions.is-swap-active .btn-secondary {
  border-color: transparent;
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(245, 155, 47, 0.22);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
  z-index: 2;
  transform: translateX(-50%);
}

.hero-dot {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--color-accent);
  padding: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16, 37, 56, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: #ffffff;
}

.hero-dot:hover,
.hero-dot.is-active {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(245, 155, 47, 0.18), 0 10px 24px rgba(16, 37, 56, 0.2);
}

.inner-hero {
  position: relative;
  padding: 120px 0 86px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 37, 56, 0.86), rgba(11, 108, 129, 0.72));
}

.inner-hero-building {
  background-image: url("../images/hero-building.jpg");
}

.inner-hero-about {
  background-image: url("../images/about-hero.jpg");
}

.column-hero {
  min-height: clamp(260px, 30vw, 420px);
  padding: 0;
  display: flex;
  align-items: center;
  background-color: #0f9ea3;
  background-size: cover;
  background-position: center;
}

.column-hero p {
  max-width: 720px;
  margin: 16px auto 0;
}

.column-hero p:empty {
  display: none;
}

.inner-hero-feedback {
  background-image: url("../images/feedback-hero.jpg");
}

.inner-hero-gradient {
  background-image: linear-gradient(135deg, #0fa5a0 0%, #0b6b80 100%);
}

.inner-hero-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fa 100%);
  color: var(--color-text);
}

.inner-hero-soft::before {
  background: linear-gradient(180deg, rgba(15, 165, 160, 0.02), rgba(15, 165, 160, 0));
}

.inner-hero-soft .section-kicker {
  color: var(--color-primary);
}

.inner-hero-soft h1 {
  color: var(--color-dark);
}

.inner-hero-soft p,
.inner-hero-soft .breadcrumb {
  color: var(--color-muted);
}

.page-about .section-copy .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  margin-bottom: 26px;
}

.page-about .section-copy .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #59d3ce 100%);
}

.breadcrumb {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.visual-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.visual-card img,
.detail-cover img,
.honor-card img,
.profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.honor-card,
.profile-card,
.mode-card,
.flow-card,
.metric-card,
.contact-panel,
.timeline-card,
.footer-cta-box,
.concept-panel {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.card,
.metric-card,
.contact-panel,
.concept-panel {
  padding: 28px;
}

.business-card,
.advantage-card,
.service-card,
.culture-card {
  position: relative;
  overflow: hidden;
}

.business-card::before,
.service-card::before,
.culture-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), #70e8dd);
}

.card h3,
.honor-card h3,
.profile-card h3,
.mode-card h3,
.flow-card h3,
.concept-panel h2,
.contact-panel h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-dark);
}

.card p,
.honor-card p,
.profile-body p,
.mode-card p,
.flow-card p,
.contact-panel p,
.timeline-card p,
.rich-text p {
  margin: 0;
  color: var(--color-muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--color-primary);
  font-weight: 700;
}

.business-showcase {
  background: #ffffff;
}

.business-showcase-head {
  margin-bottom: 38px;
}

.business-showcase-head .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.business-showcase-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #59d3ce 100%);
}

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

.business-showcase-card {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(227, 236, 240, 0.96);
  box-shadow: 0 20px 42px rgba(16, 37, 56, 0.08);
}

.business-showcase-media {
  position: relative;
  display: block;
  min-height: 364px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 37, 56, 0.04) 0%, rgba(16, 37, 56, 0.16) 58%, rgba(16, 37, 56, 0.72) 100%),
    var(--business-cover),
    linear-gradient(135deg, #bfe9ec 0%, #4db8b4 52%, #0f959a 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.business-showcase-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%, rgba(16, 37, 56, 0.18) 100%);
  opacity: 1;
}

.business-showcase-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(16, 37, 56, 0) 0%, rgba(16, 37, 56, 0.22) 45%, rgba(16, 37, 56, 0.62) 100%);
}

.business-showcase-title {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.28;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(16, 37, 56, 0.32);
}

.business-showcase-body {
  padding: 28px 34px 30px;
}

.business-showcase-body p {
  min-height: 86px;
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: #5e6d7b;
}

.business-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #1eb6bd;
}

.business-showcase-link span:last-child {
  font-size: 22px;
  line-height: 1;
}

.card-index,
.advantage-icon,
.service-badge,
.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 800;
}

.card-index,
.service-badge {
  background: rgba(245, 155, 47, 0.12);
  color: var(--color-accent);
}

.advantage-icon {
  background: rgba(15, 165, 160, 0.12);
  color: var(--color-primary-deep);
}

.about-advantage-section {
  background: linear-gradient(180deg, #f7fbfc 0%, #eef4f6 100%);
}

.about-advantage-head {
  margin-bottom: 34px;
}

.about-advantage-head .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
}

.about-advantage-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #1fd0ca 100%);
}

.about-advantages-grid {
  gap: 28px;
  align-items: stretch;
}

.about-advantages-grid .advantage-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 24px 30px;
  border: 1px solid rgba(227, 236, 240, 0.94);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  box-shadow: 0 18px 34px rgba(16, 37, 56, 0.1);
}

.about-advantages-grid .advantage-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #16b8b1;
  box-shadow: 0 14px 28px rgba(22, 184, 177, 0.2);
}

.about-advantages-grid .advantage-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-advantages-grid .advantage-card:nth-child(1) .advantage-icon {
  background: #16b8b1;
  box-shadow: 0 14px 28px rgba(22, 184, 177, 0.2);
}

.about-advantages-grid .advantage-card:nth-child(1) .advantage-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='3.5' width='10' height='17' rx='2'/%3E%3Cpath d='M10 8h4M10 12h4M10 16h4'/%3E%3C/svg%3E");
}

.about-advantages-grid .advantage-card:nth-child(2) .advantage-icon {
  background: #f6a332;
  box-shadow: 0 14px 28px rgba(246, 163, 50, 0.22);
}

.about-advantages-grid .advantage-card:nth-child(2) .advantage-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='10' rx='2'/%3E%3Cpath d='M9 19h6M12 15v4M9 10l2 2 4-4'/%3E%3C/svg%3E");
}

.about-advantages-grid .advantage-card:nth-child(3) .advantage-icon {
  background: #46c561;
  box-shadow: 0 14px 28px rgba(70, 197, 97, 0.22);
}

.about-advantages-grid .advantage-card:nth-child(3) .advantage-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12a7 7 0 0 1 14 0'/%3E%3Crect x='4' y='12' width='3' height='6' rx='1.5'/%3E%3Crect x='17' y='12' width='3' height='6' rx='1.5'/%3E%3Cpath d='M7 18a5 5 0 0 0 10 0'/%3E%3C/svg%3E");
}

.about-advantages-grid .advantage-card:nth-child(4) .advantage-icon {
  background: #9828d6;
  box-shadow: 0 14px 28px rgba(152, 40, 214, 0.22);
}

.about-advantages-grid .advantage-card:nth-child(4) .advantage-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='10' r='4'/%3E%3Cpath d='M10 13.5v5l2-1.4 2 1.4v-5M9 4.5 12 7l3-2.5'/%3E%3C/svg%3E");
}

.about-advantages-grid .advantage-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.45;
  color: #1f2937;
}

.about-advantages-grid .advantage-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #5f6d79;
}

.honor-card,
.profile-card,
.mode-card {
  overflow: hidden;
}

.honor-card-media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.honor-card img,
.profile-media,
.mode-media {
  aspect-ratio: 1.45 / 1;
}

.honor-card-media img {
  width: 100%;
  transition: transform 0.28s ease;
}

.honor-card-media:hover img {
  transform: scale(1.04);
}

.profile-media img {
  height: 100%;
}

.profile-media {
  position: relative;
}

.profile-media-overlay {
  position: absolute;
  inset: auto 18px 16px 18px;
  z-index: 1;
  color: #ffffff;
}

.profile-media-overlay strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 37, 56, 0) 38%, rgba(16, 37, 56, 0.82) 100%);
}

.profile-body,
.honor-body,
.mode-body {
  padding: 24px;
}

.team-profile-card {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(16, 37, 56, 0.08);
}

.team-profile-card .profile-media {
  aspect-ratio: 1.18 / 1;
}

.team-profile-card .profile-body {
  padding-top: 18px;
}

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

.team-showcase-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(16, 37, 56, 0.09);
}

.team-showcase-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 37, 56, 0.04) 0%, rgba(16, 37, 56, 0.18) 54%, rgba(16, 37, 56, 0.72) 100%);
}

.team-showcase-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-showcase-card:hover .team-showcase-media img {
  transform: scale(1.04);
}

.team-showcase-title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.team-showcase-body {
  padding: 24px 24px 26px;
}

.team-showcase-body p {
  min-height: 122px;
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #5e6d7b;
}

.team-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #16b7bd;
}

.team-showcase-link span:last-child {
  font-size: 22px;
  line-height: 1;
}

.team-teach-panel {
  margin-top: 42px;
  padding: 40px 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, #14beb4 0%, #13a9ba 42%, #245f95 100%);
  box-shadow: 0 24px 44px rgba(18, 79, 116, 0.22);
  text-align: center;
}

.team-teach-panel h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.25;
}

.team-teach-panel p {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.96);
  font-size: 17px;
  line-height: 1.9;
}

.team-teach-section .team-teach-panel {
  margin-top: 0;
}

.team-core-head {
  margin-bottom: 34px;
  text-align: center;
}

.team-core-head .section-title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 16px;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.18;
}

.team-core-head .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #1fd0ca 100%);
  transform: translateX(-50%);
}

.team-core-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: stretch;
}

.team-core-card {
  display: flex;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid rgba(223, 232, 239, 0.92);
  box-shadow: 0 16px 30px rgba(16, 37, 56, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.team-core-card:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 186, 191, 0.3);
  box-shadow: 0 22px 42px rgba(16, 37, 56, 0.14);
}

.team-core-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(180deg, #eff5f8 0%, #dde8ee 100%);
}

.team-core-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 37, 56, 0.02) 0%, rgba(16, 37, 56, 0.08) 38%, rgba(16, 37, 56, 0.72) 100%);
}

.team-core-media img {
  width: 100%;
  aspect-ratio: 0.82 / 1.06;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.team-core-card:hover .team-core-media img {
  transform: scale(1.05);
}

.team-core-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: #ffffff;
}

.team-core-overlay strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0.01em;
}

.team-core-role {
  display: inline-flex;
  align-items: center;
  margin-top: 7px;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
}

.team-core-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 14px 16px;
}

.team-core-points-source {
  display: none;
}

.team-core-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-core-points li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.75;
  color: #5f6d7a;
}

.team-core-points li + li {
  margin-top: 6px;
}

.team-core-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #1daeb0;
}

.team-core-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.team-core-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(35, 198, 202, 0.08);
  box-shadow: inset 0 0 0 1px rgba(35, 198, 202, 0.12);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  color: #1daeb0;
}

.team-more-section {
  padding-top: 76px;
  padding-bottom: 92px;
  background: #ffffff;
}

.team-more-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0;
  text-align: center;
}

.team-more-box h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  color: #182433;
}

.team-more-box p {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 16px;
  line-height: 2;
  color: #596877;
}

.team-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  margin-top: 26px;
  padding: 0 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, #14beb4 0%, #149fb5 100%);
  box-shadow: 0 14px 28px rgba(20, 159, 181, 0.22);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.team-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(20, 159, 181, 0.28);
}

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


@media (max-width: 1280px) {
  .team-core-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}

@media (max-width: 640px) {
  .team-core-card {
    flex-basis: 100%;
  }

  .team-core-overlay strong {
    font-size: 18px;
  }
}

@media (max-width: 820px) {
  .team-core-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .team-core-head {
    margin-bottom: 28px;
  }

  .team-core-head .section-title {
    font-size: 34px;
  }

  .team-core-body {
    padding: 14px 14px 15px;
  }

  .team-core-media img {
    aspect-ratio: 0.84 / 1.06;
  }

  .team-more-section {
    padding-top: 62px;
    padding-bottom: 74px;
  }

  .team-more-box h2 {
    font-size: 28px;
  }

  .team-more-box p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.9;
  }

  .team-more-btn {
    min-width: 144px;
    height: 46px;
    margin-top: 22px;
    font-size: 14px;
  }

  .team-teach-panel {
    padding: 32px 24px;
  }

  .team-teach-panel p {
    font-size: 16px;
  }
}


.feedback-metrics-section {
  padding: 26px 0 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
}

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

.feedback-metric-card {
  padding: 26px 18px 18px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(232, 238, 242, 0.9);
  box-shadow: 0 14px 26px rgba(16, 37, 56, 0.08);
  text-align: center;
}

.feedback-metric-card strong,
.feedback-metric-card span {
  display: block;
}

.feedback-metric-card strong {
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
  font-weight: 800;
}

.feedback-metric-card span {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #4f5d69;
}

.feedback-metric-card:nth-child(1) strong {
  color: #14b6b4;
}

.feedback-metric-card:nth-child(2) strong {
  color: #f39a2a;
}

.feedback-metric-card:nth-child(3) strong {
  color: #52b24f;
}

.feedback-metric-card:nth-child(4) strong {
  color: #9f19b8;
}

@media (max-width: 1180px) {
  .feedback-metrics-grid {
    gap: 18px;
  }

  .feedback-metric-card {
    padding: 24px 16px 17px;
  }
}

@media (max-width: 820px) {
  .feedback-metrics-section {
    padding: 20px 0 2px;
  }

  .feedback-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .feedback-metric-card {
    padding: 20px 14px 16px;
  }

  .feedback-metric-card strong {
    font-size: 32px;
  }

  .feedback-metric-card span {
    margin-top: 8px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .feedback-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.feedback-voice-section {
  padding-bottom: 56px;
  background: #ffffff;
}

.feedback-more-section {
  background: linear-gradient(180deg, #f6fbfd 0%, #f3fafe 100%);
}

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

.feedback-block-head .section-title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 16px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  color: #182433;
}

.feedback-block-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f39a2a 0%, #f7b35b 100%);
}

.feedback-voice-shell {
  position: relative;
  padding: 0 44px;
}

.feedback-voice-viewport {
  overflow: hidden;
}

.feedback-voice-track {
  display: flex;
  transition: transform 0.34s ease;
  will-change: transform;
}

.feedback-voice-card {
  flex: 0 0 100%;
  padding: 32px 36px 30px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(232, 238, 242, 0.94);
  box-shadow: 0 14px 30px rgba(16, 37, 56, 0.08);
}

.feedback-card-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #748291;
}

.feedback-card-stars {
  color: #f5a623;
  letter-spacing: 0.18em;
  font-size: 16px;
  line-height: 1;
}

.feedback-voice-quote {
  margin: 22px 0 24px;
  font-size: 17px;
  line-height: 2;
  color: #4a5662;
}

.feedback-card-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feedback-card-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #566475;
  font-size: 18px;
  font-weight: 800;
}

.feedback-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback-card-avatar.is-fallback {
  background: linear-gradient(135deg, rgba(15, 165, 160, 0.12), rgba(89, 211, 206, 0.28));
  color: var(--color-primary-deep);
}

.feedback-card-meta strong,
.feedback-card-meta span {
  display: block;
}

.feedback-card-meta strong {
  font-size: 16px;
  color: #1b2736;
}

.feedback-card-meta span {
  margin-top: 4px;
  font-size: 12px;
  color: #8b96a2;
}

.feedback-voice-nav {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #18b7b5;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(16, 37, 56, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}

.feedback-voice-nav.is-prev {
  left: 0;
}

.feedback-voice-nav.is-next {
  right: 0;
}

.feedback-voice-nav.is-disabled {
  opacity: 0.42;
  cursor: default;
}

.feedback-voice-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.feedback-voice-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d0d7de;
  cursor: pointer;
}

.feedback-voice-dot.is-active {
  width: 10px;
  height: 10px;
  background: #18b7b5;
}

.feedback-more-head {
  margin-bottom: 30px;
}

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

.feedback-more-card {
  padding: 20px 24px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(230, 236, 240, 0.9);
  box-shadow: 0 12px 28px rgba(16, 37, 56, 0.07);
}

.feedback-more-quote {
  min-height: 64px;
  margin: 14px 0 12px;
  font-size: 15px;
  line-height: 1.88;
  color: #4c5967;
}

.feedback-more-card .feedback-card-person {
  gap: 12px;
}

.feedback-more-card .feedback-card-meta span {
  margin-top: 2px;
}

.feedback-more-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.feedback-more-page {
  min-width: 48px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid #dbe4e8;
  background: #ffffff;
  font-size: 14px;
  color: #5f6d79;
}

.feedback-more-page + .feedback-more-page {
  margin-left: -1px;
}

.feedback-more-page.is-active {
  background: #18b7b5;
  border-color: #18b7b5;
  color: #ffffff;
}

.feedback-more-page.is-nav {
  min-width: 84px;
}

.feedback-more-page:disabled {
  color: #a8b1ba;
  background: #f7fafb;
  cursor: default;
}

@media (max-width: 1180px) {
  .feedback-voice-shell {
    padding: 0 34px;
  }

  .feedback-more-grid {
    gap: 20px;
  }

  .feedback-more-quote {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .feedback-voice-section {
    padding-bottom: 44px;
  }

  .feedback-block-head {
    margin-bottom: 22px;
  }

  .feedback-block-head .section-title {
    font-size: 32px;
  }

  .feedback-voice-shell {
    padding: 0 30px;
  }

  .feedback-voice-card {
    padding: 24px 20px 22px;
  }

  .feedback-voice-quote {
    margin: 18px 0 20px;
    font-size: 15px;
    line-height: 1.9;
  }

  .feedback-voice-nav {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .feedback-more-grid {
    grid-template-columns: 1fr;
  }

  .feedback-more-card {
    padding: 18px 18px 16px;
  }

  .feedback-more-quote {
    min-height: 0;
    margin: 12px 0 12px;
    font-size: 14px;
    line-height: 1.82;
  }

  .feedback-more-page {
    min-width: 42px;
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .feedback-more-page.is-nav {
    min-width: 72px;
  }
}


.feedback-case-cta {
  max-width: 760px;
  margin: 72px auto 0;
  text-align: center;
}

.feedback-case-cta h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  color: #182433;
}

.feedback-case-cta p {
  margin: 22px auto 0;
  font-size: 16px;
  line-height: 2;
  color: #596675;
}

.feedback-case-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 50px;
  margin-top: 28px;
  padding: 0 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #11b2ad 0%, #1ac7be 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(24, 183, 181, 0.24);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.feedback-case-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(24, 183, 181, 0.28);
}

@media (max-width: 820px) {
  .feedback-case-cta {
    margin-top: 50px;
  }

  .feedback-case-cta p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.86;
  }

  .feedback-case-btn {
    min-width: 152px;
    height: 46px;
    margin-top: 22px;
    font-size: 14px;
  }
}

.feedback-showcase {
  background: #ffffff;
}

.feedback-showcase-head {
  margin-bottom: 30px;
}

.feedback-showcase-head .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.feedback-showcase-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #59d3ce 100%);
}

.feedback-slider-shell {
  position: relative;
  padding: 0 30px;
}

.feedback-slider-viewport {
  overflow: hidden;
}

.feedback-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.32s ease;
  will-change: transform;
}

.feedback-showcase-card {
  flex: 0 0 calc((100% - 48px) / 3);
  padding: 26px 28px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(228, 237, 240, 0.92);
  box-shadow: 0 16px 34px rgba(16, 37, 56, 0.08);
}

.feedback-showcase-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #7a8592;
}

.feedback-showcase-stars {
  color: #f3ae2b;
  letter-spacing: 0.18em;
}

.feedback-showcase-quote {
  min-height: 110px;
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: #485564;
}

.feedback-showcase-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.feedback-showcase-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 165, 160, 0.1), rgba(89, 211, 206, 0.26));
  color: var(--color-primary-deep);
  font-size: 17px;
  font-weight: 800;
}

.feedback-showcase-meta strong,
.feedback-showcase-meta span {
  display: block;
}

.feedback-showcase-meta strong {
  font-size: 17px;
  color: var(--color-dark);
}

.feedback-showcase-meta span {
  margin-top: 4px;
  font-size: 13px;
  color: #8b95a1;
}

.feedback-slider-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #14b6c5;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(16, 37, 56, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
}

.feedback-slider-nav.is-prev {
  left: 0;
}

.feedback-slider-nav.is-next {
  right: 0;
}

.feedback-slider-nav.is-disabled {
  opacity: 0.42;
  cursor: default;
}

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

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

.honor-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 16px 34px rgba(16, 37, 56, 0.12);
  cursor: pointer;
}

.honor-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 37, 56, 0.36);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.honor-gallery-item::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.honor-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.honor-gallery-item:hover::before,
.honor-gallery-item:hover::after {
  opacity: 1;
}

.honor-gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.honor-gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.78;
}

.about-honor-section {
  background: #ffffff;
}

.about-honor-head {
  margin-bottom: 32px;
}

.about-honor-head .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  margin: 0;
}

.about-honor-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #1fd0ca 100%);
}

.about-honor-slider-shell {
  padding: 0 38px;
}

.about-honor-track {
  gap: 24px;
}

.about-honor-item {
  flex: 0 0 calc((100% - 48px) / 3);
  border-radius: 22px;
}

.about-honor-item img {
  aspect-ratio: 4 / 2.8;
}

.about-business-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5fafb 100%);
}

.about-business-head {
  margin-bottom: 34px;
}

.about-business-head .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  margin: 0;
}

.about-business-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #1fd0ca 100%);
}

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

.about-business-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  border: 1px solid rgba(228, 237, 240, 0.96);
  box-shadow: 0 18px 34px rgba(16, 37, 56, 0.1);
}

.about-business-media {
  min-height: 100%;
}

.about-business-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.about-business-body {
  padding: 26px 28px 24px;
}

.about-business-body h3 {
  margin: 0 0 16px;
  color: var(--color-dark);
  font-size: 24px;
  line-height: 1.35;
}

.about-business-body p {
  margin: 0;
  color: #5f6d79;
  font-size: 15px;
  line-height: 1.95;
}

@media (max-width: 980px) {
  .about-business-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .about-business-card {
    grid-template-columns: 1fr;
  }

  .about-business-media img {
    aspect-ratio: 16 / 10;
  }

  .about-business-body {
    padding: 22px 20px 24px;
  }

  .about-business-body h3 {
    font-size: 21px;
  }
}

.about-timeline-head {
  margin-bottom: 32px;
}

.about-timeline-head .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  margin: 0;
}

.about-timeline-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #1fd0ca 100%);
}

.about-culture-head {
  margin-bottom: 32px;
}

.about-culture-head .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  margin: 0;
}

.about-culture-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #1fd0ca 100%);
}
.about-culture-grid {
  gap: 24px;
}

.about-culture-card {
  padding: 36px 28px 30px;
  border: 1px solid rgba(227, 236, 240, 0.94);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfefe 100%);
  box-shadow: 0 16px 34px rgba(16, 37, 56, 0.08);
  text-align: center;
}

.about-culture-card::before {
  display: none;
}

.about-culture-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(16, 37, 56, 0.1);
}

.about-culture-icon::before {
  content: "";
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-culture-card:nth-child(1) .about-culture-icon {
  background: #18bbb3;
}

.about-culture-card:nth-child(1) .about-culture-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='7.25'/%3E%3Ccircle cx='12' cy='12' r='3.4'/%3E%3Ccircle cx='12' cy='12' r='0.9' fill='%23fff'/%3E%3C/svg%3E");
}

.about-culture-card:nth-child(2) .about-culture-icon {
  background: #f5a33a;
}

.about-culture-card:nth-child(2) .about-culture-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.75 12s3.45-5.25 9.25-5.25S21.25 12 21.25 12s-3.45 5.25-9.25 5.25S2.75 12 2.75 12Z'/%3E%3Ccircle cx='12' cy='12' r='2.6'/%3E%3C/svg%3E");
}

.about-culture-card:nth-child(3) .about-culture-icon {
  background: #46c55d;
}

.about-culture-card:nth-child(3) .about-culture-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 20.2 4.82 13.56a4.64 4.64 0 0 1 6.37-6.74L12 7.56l.81-.74a4.64 4.64 0 0 1 6.37 6.74Z'/%3E%3C/svg%3E");
}

.about-culture-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-dark);
}

.about-culture-card p {
  margin: 0 auto;
  max-width: 250px;
  color: #5d6a76;
  font-size: 15px;
  line-height: 1.9;
}

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

@media (max-width: 760px) {
  .about-culture-grid {
    grid-template-columns: 1fr;
  }

  .about-culture-card {
    padding: 32px 22px 26px;
  }

  .about-culture-icon {
    width: 56px;
    height: 56px;
  }
}

body.honor-preview-open {
  overflow: hidden;
}

.honor-preview {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.honor-preview.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.honor-preview-dialog {
  position: relative;
  max-width: min(1180px, calc(100vw - 72px));
  max-height: calc(100vh - 72px);
}

.honor-preview img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 72px);
  border-radius: 16px;
  background: #000000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.honor-preview-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

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

.profile-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 165, 160, 0.1);
  color: var(--color-primary-deep);
  font-size: 12px;
  font-weight: 700;
}

.profile-role,
.testimonial-role {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}

.flow-grid .flow-card {
  padding: 24px 20px;
  text-align: center;
}

.flow-step {
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.section-deep .flow-card {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-deep .flow-card h3,
.section-deep .flow-card p {
  color: #ffffff;
}

.testimonial-card .stars {
  margin-bottom: 18px;
  color: #f4b93c;
  letter-spacing: 0.2em;
}

.testimonial-text {
  min-height: 96px;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--color-muted);
}

.testimonial-card.large .testimonial-text {
  min-height: 0;
}

.case-card .profile-media {
  aspect-ratio: 1.4 / 0.86;
}

.feedback-highlight {
  padding: 34px 38px;
  border-radius: 26px;
  background: linear-gradient(135deg, #0fa5a0, #0b6b80);
  color: #ffffff;
  box-shadow: var(--shadow-card);
}

.feedback-highlight .stars {
  margin-bottom: 16px;
  color: #ffe58c;
  letter-spacing: 0.2em;
}

.feedback-highlight p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

.mode-panel .mode-media {
  aspect-ratio: 1.36 / 0.72;
}

.mode-panel .mode-body {
  padding: 26px 28px 28px;
}

.mode-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mode-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-muted);
}

.mode-list li + li {
  margin-top: 10px;
}

.mode-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-primary);
}

.mode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mode-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 165, 160, 0.1);
  color: var(--color-primary-deep);
  font-size: 13px;
  font-weight: 700;
}




.admission-service-section {
  padding-top: 42px;
  background: #ffffff;
}

.admission-service-head {
  margin-bottom: 30px;
  text-align: center;
}

.admission-service-head .section-title {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  color: #182433;
}

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

.admission-service-card {
  padding: 26px 20px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(229, 236, 240, 0.9);
  box-shadow: 0 14px 30px rgba(16, 37, 56, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.admission-service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 22px 38px rgba(16, 37, 56, 0.14);
}

.admission-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18, 189, 181, 0.12), rgba(50, 211, 202, 0.24));
}

.admission-service-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.admission-service-card:nth-child(1) .admission-service-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312bdb5' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 20h12'/%3E%3Cpath d='M9 16V8'/%3E%3Cpath d='M15 16V4'/%3E%3Cpath d='M9 8h6'/%3E%3C/svg%3E");
}

.admission-service-card:nth-child(2) .admission-service-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312bdb5' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0'/%3E%3Crect x='3.5' y='11' width='4' height='7' rx='2'/%3E%3Crect x='16.5' y='11' width='4' height='7' rx='2'/%3E%3C/svg%3E");
}

.admission-service-card:nth-child(3) .admission-service-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312bdb5' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 11.5a8.5 8.5 0 0 1-15.44 4.93L3 21l4.76-2.34A8.5 8.5 0 1 1 20 11.5Z'/%3E%3C/svg%3E");
}

.admission-service-card:nth-child(4) .admission-service-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312bdb5' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 18V6'/%3E%3Cpath d='M4 18h16'/%3E%3Cpath d='m8 14 3-3 3 2 4-5'/%3E%3C/svg%3E");
}

.admission-service-card:nth-child(5) .admission-service-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312bdb5' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h14v16H5z'/%3E%3Cpath d='M9 4v16'/%3E%3C/svg%3E");
}

.admission-service-card:nth-child(6) .admission-service-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312bdb5' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='11' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E");
}

.admission-service-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #1c2836;
}

.admission-service-card p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #5f6c79;
}

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

@media (max-width: 820px) {
  .admission-service-section {
    padding-top: 30px;
  }

  .admission-service-grid {
    gap: 16px;
  }

  .admission-service-card {
    padding: 22px 16px 18px;
  }

  .admission-service-card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .admission-service-card h3 {
    font-size: 16px;
  }

  .admission-service-card p {
    font-size: 13px;
    line-height: 1.84;
  }
}

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


.admission-cta-section {
  padding-top: 34px;
  padding-bottom: 64px;
  background: #ffffff;
}

.admission-cta-box {
  padding: 56px 40px 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0aa69b 0%, #0f95a5 52%, #1f6db8 100%);
  box-shadow: 0 22px 42px rgba(14, 93, 128, 0.22);
  text-align: center;
  color: #ffffff;
}

.admission-cta-box h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.18;
  color: #ffffff;
}

.admission-cta-box p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
}

.admission-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 50px;
  margin-top: 28px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f9997;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 26px rgba(7, 63, 92, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.admission-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(7, 63, 92, 0.22);
  background: #f4fffe;
}

@media (max-width: 820px) {
  .admission-cta-section {
    padding-top: 26px;
    padding-bottom: 52px;
  }

  .admission-cta-box {
    padding: 38px 22px 34px;
    border-radius: 16px;
  }

  .admission-cta-box p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.9;
  }

  .admission-cta-btn {
    min-width: 126px;
    min-height: 46px;
    margin-top: 22px;
    padding: 0 24px;
    font-size: 15px;
  }
}

.admission-flow-section {
  padding-top: 44px;
  background: #ffffff;
}

.admission-flow-head {
  margin-bottom: 30px;
  text-align: center;
}

.admission-flow-head .section-title {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  color: #182433;
}

.admission-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.admission-flow-grid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 78px;
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 184, 176, 0.22), rgba(17, 184, 176, 0.38), rgba(17, 184, 176, 0.22));
}

.admission-flow-card {
  position: relative;
  z-index: 1;
  padding: 26px 18px 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(228, 236, 240, 0.9);
  box-shadow: 0 14px 28px rgba(16, 37, 56, 0.1);
  text-align: center;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.admission-flow-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 22px 38px rgba(16, 37, 56, 0.16);
}

.admission-flow-badge {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #11b8b0 0%, #24cdc4 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 12px 24px rgba(17, 184, 176, 0.22);
}

.admission-flow-icon,
.admission-flow-icon::before {
  display: none;
}

.admission-flow-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.admission-flow-num {
  position: static;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.admission-flow-card:nth-child(1) .admission-flow-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.5 8.5 0 0 1-15.44 4.93L3 21l4.76-2.34A8.5 8.5 0 1 1 21 11.5Z'/%3E%3C/svg%3E");
}

.admission-flow-card:nth-child(2) .admission-flow-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7' r='3'/%3E%3Cpath d='M4 19a5 5 0 0 1 10 0'/%3E%3Cpath d='m16 11 2 2 4-4'/%3E%3C/svg%3E");
}

.admission-flow-card:nth-child(3) .admission-flow-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9 12 4l10 5-10 5Z'/%3E%3Cpath d='M6 11.5V16l6 3 6-3v-4.5'/%3E%3C/svg%3E");
}

.admission-flow-card:nth-child(4) .admission-flow-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='4' width='12' height='16' rx='2'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h4'/%3E%3C/svg%3E");
}

.admission-flow-card:nth-child(5) .admission-flow-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='11' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E");
}

.admission-flow-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #1c2836;
}

.admission-flow-card p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.92;
  color: #5f6b78;
}

@media (max-width: 1180px) {
  .admission-flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admission-flow-grid::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .admission-flow-section {
    padding-top: 30px;
  }

  .admission-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .admission-flow-card {
    padding: 22px 14px 18px;
  }

  .admission-flow-card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .admission-flow-badge {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
  }

  .admission-flow-num {
    font-size: 22px;
  }

  .admission-flow-card h3 {
    font-size: 16px;
  }

  .admission-flow-card p {
    font-size: 13px;
    line-height: 1.84;
  }
}

@media (max-width: 560px) {
  .admission-flow-grid {
    grid-template-columns: 1fr;
  }
}

.admission-mode-section {
  padding-top: 54px;
  background: #ffffff;
}

.admission-mode-head {
  margin-bottom: 34px;
  text-align: center;
}

.admission-mode-head .section-title {
  margin: 0;
  font-size: clamp(32px, 3.1vw, 42px);
  line-height: 1.18;
  color: #182433;
}

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

.admission-mode-card {
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(228, 236, 240, 0.9);
  box-shadow: 0 18px 36px rgba(16, 37, 56, 0.1);
}

.admission-mode-media-wrap {
  position: relative;
}

.admission-mode-media {
  aspect-ratio: 1.42 / 0.74;
  overflow: hidden;
  background: #edf3f5;
}

.admission-mode-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admission-mode-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(16, 37, 56, 0.16);
}

.admission-mode-badge::before {
  content: "";
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.admission-mode-card:nth-child(odd) .admission-mode-badge {
  background: linear-gradient(135deg, #14b8b1 0%, #23c9bf 100%);
}

.admission-mode-card:nth-child(odd) .admission-mode-badge::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='11' rx='2'/%3E%3Cpath d='M8 19h8M12 16v3'/%3E%3C/svg%3E");
}

.admission-mode-card:nth-child(even) .admission-mode-badge {
  background: linear-gradient(135deg, #f39a2a 0%, #ffb548 100%);
}

.admission-mode-card:nth-child(even) .admission-mode-badge::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9.5' cy='7' r='3'/%3E%3Cpath d='M20 8v6M17 11h6'/%3E%3C/svg%3E");
}

.admission-mode-body {
  padding: 20px 22px 22px;
}

.admission-mode-body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #182433;
}

.admission-mode-desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #5d6a77;
}

.admission-mode-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.admission-mode-points li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  line-height: 1.92;
  color: #53616d;
}

.admission-mode-points li + li {
  margin-top: 10px;
}

.admission-mode-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #15b7b1 0%, #37d0c7 100%);
  box-shadow: 0 8px 16px rgba(21, 183, 177, 0.18);
}

.admission-mode-points li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.admission-mode-points strong {
  font-weight: 700;
  color: #243445;
}

.admission-mode-label {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #253547;
}

.admission-mode-tags,
.admission-mode-mix-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admission-mode-tags {
  margin-top: 12px;
}

.admission-mode-tag,
.admission-mode-mix-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 184, 177, 0.1);
  color: #149f98;
  font-size: 12px;
  font-weight: 700;
}

.admission-mode-mix {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
  padding: 28px 34px;
  border: 1px solid rgba(227, 235, 239, 0.9);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 16px 30px rgba(16, 37, 56, 0.08);
}

.admission-mode-mix-icon {
  flex: 0 0 116px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(21, 183, 177, 0.12), rgba(53, 213, 204, 0.22));
  position: relative;
}

.admission-mode-mix-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315b7b1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 0 1 15.3-6.36L21 8'/%3E%3Cpath d='M21 3v5h-5'/%3E%3Cpath d='M21 12a9 9 0 0 1-15.3 6.36L3 16'/%3E%3Cpath d='M8 16H3v5'/%3E%3C/svg%3E") no-repeat center/contain;
}

.admission-mode-mix-body {
  flex: 1;
}

.admission-mode-mix-body h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.28;
  color: #182433;
}

.admission-mode-mix-body p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.95;
  color: #5b6774;
}

.admission-mode-mix-tags {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .admission-mode-grid {
    gap: 22px;
  }

  .admission-mode-mix {
    padding: 24px 26px;
  }
}

@media (max-width: 820px) {
  .admission-mode-section {
    padding-top: 40px;
  }

  .admission-mode-grid {
    grid-template-columns: 1fr;
  }

  .admission-mode-body {
    padding: 18px 16px 20px;
  }

  .admission-mode-badge {
    top: 14px;
    right: 14px;
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .admission-mode-mix {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 18px;
  }

  .admission-mode-mix-icon {
    width: 92px;
    height: 92px;
    flex-basis: 92px;
  }

  .admission-mode-mix-body h3 {
    font-size: 24px;
  }

  .admission-mode-mix-body p {
    font-size: 14px;
    line-height: 1.86;
  }
}


.admission-mode-grid {
  gap: 24px;
  align-items: start;
}

.admission-mode-card {
  display: flex;
  flex-direction: column;
  overflow: visible;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.admission-mode-media-wrap {
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.admission-mode-media {
  aspect-ratio: 2.42 / 1;
}

.admission-mode-badge {
  top: 14px;
  right: 16px;
  min-height: 32px;
  padding: 0 13px;
  font-size: 12px;
}

.admission-mode-body {
  position: relative;
  margin: 10px 0 0;
  padding: 24px 22px 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 36px rgba(16, 37, 56, 0.12);
}

.admission-mode-body h3 {
  font-size: 18px;
}

.admission-mode-desc {
  margin: 8px 0 18px;
  color: #687581;
}

.admission-mode-points-source,
.admission-mode-tags-source {
  display: none;
}

.admission-mode-points strong {
  display: block;
  margin-bottom: 2px;
}

.admission-mode-point-copy {
  display: block;
  font-size: 13px;
  line-height: 1.88;
  color: #66727e;
}

.admission-mode-label {
  margin-top: 20px;
  font-size: 15px;
}

.admission-mode-tags {
  margin-top: 12px;
}

.admission-mode-tag {
  background: rgba(20, 184, 177, 0.08);
  color: #19a79e;
}

@media (max-width: 820px) {
  .admission-mode-grid {
    gap: 18px;
  }

  .admission-mode-body {
    margin: 8px 0 0;
    padding: 20px 16px 18px;
  }

  .admission-mode-label {
    margin-top: 18px;
    font-size: 14px;
  }
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(15, 165, 160, 0.28), rgba(15, 165, 160, 0.05));
}

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

.timeline-dot {
  position: absolute;
  left: 9px;
  top: 30px;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(15, 165, 160, 0.14);
}

.timeline-card {
  padding: 26px 28px;
}

.about-timeline-section {
  background: linear-gradient(180deg, #fbfeff 0%, #f3f9fb 100%);
}

.about-timeline-section .timeline {
  position: relative;
  display: grid;
  gap: 34px;
  padding: 18px 0 12px;
}

.about-timeline-section .timeline::before {
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #19c3b7 0%, #10a7a7 100%);
  transform: translateX(-50%);
}

.about-timeline-section .timeline-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  min-height: 132px;
  padding-left: 0;
  column-gap: 36px;
}

.about-timeline-section .timeline-item:nth-child(odd) .timeline-card {
  grid-column: 1;
  justify-self: end;
  margin-right: 18px;
  transform-origin: right center;
}

.about-timeline-section .timeline-item:nth-child(even) .timeline-card {
  grid-column: 2;
  justify-self: start;
  margin-left: 18px;
  transform-origin: left center;
}

.about-timeline-section .timeline-dot {
  left: 50%;
  top: 28px;
  width: 22px;
  height: 22px;
  border: 3px solid #f3a63a;
  background: #ffffff;
  transform: translate(-50%, 0);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.96);
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  z-index: 2;
}

.about-timeline-section .timeline-card {
  width: min(100%, 420px);
  padding: 22px 24px 20px;
  border: 1px solid rgba(227, 236, 240, 0.92);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(16, 37, 56, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-timeline-section .timeline-card h3 {
  margin: 0 0 14px;
  color: var(--color-dark);
  font-size: 18px;
  line-height: 1.4;
}

.about-timeline-section .timeline-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #5c6976;
}

.about-timeline-section .timeline-item:hover .timeline-dot {
  background: #18b9aa;
  border-color: #18b9aa;
  transform: translate(-50%, 0) scale(1.12);
  box-shadow: 0 0 0 10px rgba(24, 185, 170, 0.18);
}

.about-timeline-section .timeline-item:hover .timeline-card {
  transform: scale(1.025);
  border-color: rgba(24, 185, 170, 0.24);
  box-shadow: 0 26px 44px rgba(16, 37, 56, 0.16);
}

@media (max-width: 900px) {
  .about-timeline-section .timeline {
    gap: 22px;
    padding: 6px 0 0;
  }

  .about-timeline-section .timeline::before {
    left: 14px;
    transform: none;
  }

  .about-timeline-section .timeline-item {
    display: block;
    min-height: 0;
    padding-left: 42px;
  }

  .about-timeline-section .timeline-dot {
    left: 14px;
    top: 32px;
    width: 20px;
    height: 20px;
    border-width: 3px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.96);
  }

  .about-timeline-section .timeline-item:nth-child(odd) .timeline-card,
  .about-timeline-section .timeline-item:nth-child(even) .timeline-card {
    width: 100%;
    justify-self: auto;
  }

  .about-timeline-section .timeline-card {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    transform-origin: center center;
  }
}

@media (max-width: 680px) {
  .about-timeline-section .timeline-card {
    padding: 20px 18px 18px;
  }

  .about-timeline-section .timeline-card h3 {
    font-size: 17px;
  }

  .about-timeline-section .timeline-card p {
    font-size: 14px;
    line-height: 1.78;
  }
}

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

.metric-card {
  text-align: center;
}

.metric-card strong {
  display: block;
  font-size: 40px;
  color: var(--color-primary);
}

.metric-card:nth-child(2) strong {
  color: #f59b2f;
}

.metric-card:nth-child(3) strong {
  color: #6ac17a;
}

.metric-card:nth-child(4) strong {
  color: #b047df;
}

.metric-card span {
  color: var(--color-muted);
}

.concept-panel {
  text-align: center;
  background: linear-gradient(135deg, #0fa5a0, #0b6b80);
  color: #ffffff;
}

.concept-panel h2,
.concept-panel p {
  color: #ffffff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 30px;
  align-items: start;
}

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

.office-card {
  padding: 30px 28px 32px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(16, 37, 56, 0.08);
}

.office-card-head {
  text-align: center;
}

.office-card h3 {
  margin: 16px 0 22px;
  font-size: 24px;
  color: var(--color-dark);
}

.office-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 165, 160, 0.2);
}

.office-icon svg {
  width: 36px;
  height: 36px;
}

.office-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5f6d79;
}

.office-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.72;
}

.office-list-item + .office-list-item {
  margin-top: 14px;
}

.office-list-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #10a2a7;
}

.office-list-icon svg {
  width: 100%;
  height: 100%;
}

.office-list-text {
  flex: 1 1 auto;
}


.page-admission .inner-hero p:empty {
  display: none;
}

.admission-section {
  background:
    radial-gradient(circle at top left, rgba(20, 182, 197, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fcfd 0%, #ffffff 100%);
}

.admission-shell {
  position: relative;
  padding: 52px 56px 56px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(223, 234, 239, 0.96);
  box-shadow: 0 24px 50px rgba(16, 37, 56, 0.08);
}

.admission-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  border-radius: 32px 32px 0 0;
  background: linear-gradient(90deg, #14b6c5 0%, #59d3ce 100%);
}

.admission-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.admission-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
}

.admission-head .section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.admission-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b6c5 0%, #59d3ce 100%);
}

.admission-head p {
  max-width: 720px;
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #5d6c79;
}

.admission-form {
  margin: 0;
}

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

.admission-field {
  display: block;
}

.admission-field > span {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #1b2736;
}

.admission-field em {
  font-style: normal;
  color: #eb7e69;
}

.admission-field input,
.admission-field select {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(214, 225, 230, 0.96);
  border-radius: 16px;
  background: #ffffff;
  font-size: 16px;
  color: #1b2736;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.admission-field input:focus,
.admission-field select:focus {
  border-color: rgba(20, 182, 197, 0.88);
  box-shadow: 0 0 0 4px rgba(20, 182, 197, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.admission-field input::placeholder {
  color: #a1adb8;
}

.admission-field--select {
  position: relative;
}

.admission-field--select::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(27, 39, 54, 0.55);
  border-bottom: 2px solid rgba(27, 39, 54, 0.55);
  transform: rotate(45deg);
  pointer-events: none;
}

.admission-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 50px;
}

.admission-captcha-row {
  margin-top: 28px;
}

.admission-field--captcha {
  max-width: 520px;
}

.admission-captcha-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 152px;
  gap: 14px;
}

.admission-captcha-box img {
  width: 100%;
  height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(214, 225, 230, 0.96);
  object-fit: cover;
  cursor: pointer;
  background: #f3f8fa;
}

.admission-actions {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.admission-submit {
  min-width: 248px;
  min-height: 56px;
  font-size: 18px;
  box-shadow: 0 18px 34px rgba(15, 165, 160, 0.22);
}

.notice-list-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
}

.notice-section-head {
  margin-bottom: 30px;
}

.notice-section-head .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.notice-section-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15b8b4 0%, #22d2c9 100%);
}

.notice-list-grid {
  display: grid;
  gap: 18px;
}

.notice-card {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(228, 236, 240, 0.94);
  box-shadow: 0 16px 30px rgba(16, 37, 56, 0.07);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.notice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(16, 37, 56, 0.1);
}

.notice-card-link {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  align-items: stretch;
  color: inherit;
}

.notice-card-date {
  padding: 18px 20px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(135deg, #0fa8a2 0%, #0f8fa3 55%, #1568b0 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.notice-card-date strong {
  display: block;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 800;
}

.notice-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
}

.notice-card-content {
  min-width: 0;
}

.notice-card-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  color: #1a2736;
}

.notice-card-body p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: #5f6d79;
}

.notice-card-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(21, 184, 180, 0.22);
  background: #f4fbfb;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.notice-card:hover .notice-card-more {
  transform: translateX(4px);
  background: rgba(21, 184, 180, 0.1);
  border-color: rgba(21, 184, 180, 0.34);
}

.notice-detail-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.notice-detail-layout {
  display: block;
}

.notice-detail-main {
  padding: 42px 56px 54px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(228, 236, 240, 0.94);
  box-shadow: 0 18px 36px rgba(16, 37, 56, 0.08);
}

.notice-back-link {
  display: flex;
  align-items: center;
  min-height: 38px;
  width: fit-content;
  margin: 34px 24px 0 auto;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 165, 160, 0.1);
  color: var(--color-primary-deep);
  font-size: 14px;
  font-weight: 700;
}

.notice-detail-head {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.notice-detail-head .section-title {
  margin: 0 auto;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.22;
}

.notice-detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 16px;
  font-size: 14px;
  color: #7a8692;
}

.notice-detail-summary {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.9;
  color: #5b6875;
}

.notice-detail-summary:empty {
  display: none;
}

.notice-rich-text {
  max-width: 920px;
  margin: 0 auto;
}

.notice-rich-text h3 {
  margin: 28px 0 12px;
  font-size: 24px;
  line-height: 1.4;
  color: #1b2736;
}

.notice-rich-text ul {
  margin: 16px 0 16px 22px;
  padding: 0;
  color: #5f6d79;
}

.notice-rich-text li {
  line-height: 1.9;
}

.notice-rich-text li + li {
  margin-top: 8px;
}

.notice-detail-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.notice-contact-panel,
.notice-side-panel {
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(228, 236, 240, 0.94);
  box-shadow: 0 18px 36px rgba(16, 37, 56, 0.08);
}

.notice-contact-panel h3,
.notice-side-panel h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.3;
  color: #1c2836;
}

.notice-side-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-side-list li + li {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(228, 236, 240, 0.94);
}

.notice-side-list a {
  display: block;
  color: #1c2836;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.notice-side-list time {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #7e8a96;
}

@media (max-width: 980px) {
  .admission-shell {
    padding: 42px 28px 46px;
  }

  .admission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .admission-captcha-box {
    grid-template-columns: minmax(0, 1fr) 140px;
  }

  .notice-card-link {
    grid-template-columns: 1fr;
  }

  .notice-card-date {
    padding: 18px 22px;
    border-radius: 22px 22px 0 0;
  }

  .notice-card-body {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 16px;
  }

  .notice-card-more {
    justify-self: flex-start;
  }

  .notice-detail-head {
    margin-bottom: 28px;
  }

  .notice-detail-main {
    padding: 34px 32px 40px;
  }
}

@media (max-width: 680px) {
  .admission-shell {
    padding: 34px 18px 38px;
    border-radius: 24px;
  }

  .admission-head {
    margin-bottom: 28px;
  }

  .admission-head .section-title {
    font-size: 30px;
  }

  .admission-head p {
    font-size: 15px;
    line-height: 1.8;
  }

  .admission-field > span {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .admission-field input,
  .admission-field select,
  .admission-captcha-box img {
    height: 54px;
    border-radius: 14px;
  }

  .admission-captcha-box {
    grid-template-columns: 1fr;
  }

  .admission-actions {
    margin-top: 30px;
  }

  .admission-submit {
    width: 100%;
    min-width: 0;
  }

  .notice-list-section {
    padding: 72px 0;
  }

  .notice-card-date {
    padding: 16px 18px;
  }

  .notice-card-date strong {
    font-size: 20px;
  }

  .notice-card-body {
    gap: 14px;
    padding: 18px 18px 20px;
  }

  .notice-card-body h3 {
    font-size: 20px;
  }

  .notice-card-body p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.72;
  }

  .notice-card-more {
    min-height: 38px;
    padding: 0 16px;
  }

  .notice-detail-main,
  .notice-contact-panel,
  .notice-side-panel {
    padding: 24px 18px 28px;
    border-radius: 18px;
  }

  .notice-detail-head {
    margin: 20px auto 24px;
  }

  .notice-back-link {
    min-height: 34px;
    margin: 24px 12px 0 auto;
    padding: 0 14px;
    font-size: 13px;
  }

  .notice-detail-head {
    margin: 0 auto 24px;
  }

  .notice-detail-head .section-title {
    font-size: 30px;
  }

  .notice-detail-summary {
    font-size: 15px;
    line-height: 1.84;
  }

  .notice-rich-text h3 {
    font-size: 21px;
  }

  .notice-side-list a {
    font-size: 15px;
  }
}

.page-payment {
  background: #272727;
  color: #ffffff;
}

.payment-shell {
  min-height: 100vh;
  background: #272727;
}

.payment-header {
  background: #2c2c2c;
}

.payment-brand-row {
  display: flex;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
}

.payment-brand img {
  height: 52px;
  width: auto;
}

.payment-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #565656;
}

.payment-nav a {
  min-width: 180px;
  padding: 18px 22px;
  text-align: center;
  color: #ffffff;
}

.payment-nav a.is-active {
  background: #b58c63;
}

.payment-main {
  background: #f7f7f5;
  color: var(--color-text);
}

.payment-container {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.payment-main h1 {
  margin: 0 0 34px;
  text-align: center;
  font-size: 42px;
  color: #1f1f1f;
}

.payment-list {
  max-width: 760px;
  margin: 0 auto;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 34px;
  background: #f0f0ef;
  color: #2e2e2e;
}

.payment-row time {
  color: #5d5d5d;
}

.payment-copy {
  max-width: 760px;
  margin: 28px auto 0;
  color: #5d5d5d;
}

.payment-footer {
  width: min(1160px, calc(100% - 40px));
  padding: 40px 0 46px;
  margin: 0 auto;
}

.payment-footer-top,
.payment-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.payment-footer-top {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.payment-footer-bottom {
  padding-top: 26px;
}

.payment-footer strong {
  display: block;
  margin-bottom: 10px;
}

.payment-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.detail-main {
  padding: 0 0 10px;
}

.detail-heading {
  margin-bottom: 28px;
}

.detail-heading .section-title {
  font-size: clamp(30px, 4vw, 42px);
}

.detail-heading .section-subtitle:empty {
  display: none;
}

.detail-cover {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}

.detail-side {
  position: sticky;
  top: 118px;
}

.single-intro {
  max-width: 900px;
}

.rich-text p + p {
  margin-top: 16px;
}

.site-footer {
  padding: 42px 0 26px;
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(180deg, #10979c 0%, #0f959a 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.05fr 0.72fr;
  gap: 56px;
  align-items: start;
}

.site-footer h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.footer-about {
  max-width: 360px;
}

.footer-summary {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links,
.footer-contact {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 16px;
}

.footer-links a,
.footer-contact a {
  color: inherit;
}

.footer-links li,
.footer-contact li {
  font-size: 17px;
  line-height: 1.7;
}

.footer-contact-item {
  position: relative;
  padding-left: 28px;
}

.footer-contact-item::before {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
}

.footer-contact-item.is-address::before {
  content: "";
  top: 6px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20.25s6-5.56 6-10.07a6 6 0 1 0-12 0c0 4.51 6 10.07 6 10.07Z' fill='%23ffffff'/%3E%3Ccircle cx='12' cy='10.25' r='2.35' fill='%230f9ea3'/%3E%3C/svg%3E") no-repeat center/contain;
}

.footer-contact-item.is-phone::before {
  content: "\260E";
}

.footer-contact-item.is-mail::before {
  content: "\2709";
}

.footer-contact-item.is-branch::before {
  content: "";
  top: 6px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20.25s6-5.56 6-10.07a6 6 0 1 0-12 0c0 4.51 6 10.07 6 10.07Z' fill='%23ffffff'/%3E%3Ccircle cx='12' cy='10.25' r='2.35' fill='%230f9ea3'/%3E%3C/svg%3E") no-repeat center/contain;
}

.footer-badge {
  overflow: hidden;
  width: 168px;
  padding: 4px;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.footer-badge img {
  width: 100%;
  height: auto;
}

.footer-qr-caption {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.footer-icp-link {
  color: inherit;
  text-decoration: none;
}

.footer-icp-link:hover {
  text-decoration: underline;
}

.floating-tools {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.floating-tool-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.floating-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.floating-tool-panel {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  min-width: 152px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(16, 37, 56, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
}

.floating-tool-panel::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-50%) rotate(45deg);
}

.floating-tool-group:hover .floating-tool-panel,
.floating-tool-group:focus-within .floating-tool-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.floating-tool-panel p {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
}

.floating-tool-panel--qr {
  width: 170px;
  text-align: center;
}

.floating-tool-panel--qr img {
  width: 132px;
  height: 132px;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: cover;
}

.floating-tool-panel--phone strong {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-primary-deep);
  white-space: nowrap;
}

.floating-tool svg {
  display: block;
  width: 20px;
  height: 20px;
}

.floating-tool--wechat svg {
  width: 22px;
  height: 22px;
}

.floating-tool--grid svg {
  width: 18px;
  height: 18px;
}

.floating-tool--wechat {
  background: var(--color-primary);
}

.floating-tool--phone {
  background: var(--color-accent);
}

.floating-tool--grid {
  background: #1aad19;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.notice-card[data-reveal].is-visible:hover {
  transform: translateY(-6px);
}

.admission-flow-card[data-reveal].is-visible:hover {
  transform: translateY(-8px) scale(1.04);
}

.admission-service-card[data-reveal].is-visible:hover {
  transform: translateY(-8px) scale(1.03);
}

@media (max-width: 820px) {
  .admission-flow-card[data-reveal].is-visible:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .admission-service-card[data-reveal].is-visible:hover {
    transform: translateY(-4px) scale(1.02);
  }
}

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

  .business-showcase-grid {
    gap: 24px;
  }

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

  .feedback-showcase-card {
    flex-basis: calc((100% - 24px) / 2);
  }

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

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

  .about-honor-item {
    flex-basis: calc((100% - 24px) / 2);
  }

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

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

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

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

  .team-showcase-grid {
    grid-template-columns: 1fr;
  }

  .team-showcase-body p {
    min-height: 0;
    font-size: 15px;
  }

  .team-showcase-link {
    font-size: 16px;
  }

  .feedback-slider-shell {
    padding: 0 18px;
  }

  .about-honor-item,
  .feedback-showcase-card {
    flex-basis: 100%;
  }

  .feedback-showcase-card {
    padding: 22px;
  }

  .feedback-page-grid {
    grid-template-columns: 1fr;
  }

  .feedback-showcase-quote {
    min-height: 0;
    font-size: 15px;
  }

  .feedback-slider-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .honor-preview {
    padding: 18px;
  }

  .honor-preview-dialog {
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - 36px);
  }

  .honor-preview img {
    max-height: calc(100vh - 36px);
  }

  .honor-preview-close {
    top: -14px;
    right: -6px;
  }

  .office-card {
    padding: 26px 22px 28px;
  }

  .office-icon {
    width: 80px;
    height: 80px;
  }

  .office-icon svg {
    width: 32px;
    height: 32px;
  }

  .office-card h3 {
    font-size: 22px;
  }

  .office-list-item {
    font-size: 14px;
    line-height: 1.68;
  }

  .business-showcase-media {
    min-height: 300px;
  }

  .business-showcase-title {
    left: 24px;
    right: 24px;
    bottom: 24px;
    font-size: 22px;
  }

  .business-showcase-body {
    padding: 24px;
  }

  .business-showcase-body p {
    min-height: 0;
    font-size: 15px;
  }

  .business-showcase-link {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .header-row {
    min-height: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 8px;
  }

  .header-cta-group {
    display: none;
  }

  .two-col,
  .detail-layout,
  .two-up,
  .three-up,
  .four-up,
  .five-up,
  .metrics-grid,
  .footer-grid,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-box,
  .footer-bottom,
  .payment-footer-top,
  .payment-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-nav {
    flex-wrap: wrap;
  }

  .payment-nav a {
    min-width: 50%;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .about-advantage-head .section-title::after {
    width: 64px;
  }

  .about-advantages-grid .advantage-card {
    padding: 28px 20px 24px;
  }

  .team-showcase-title {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 18px;
  }

  .team-showcase-body {
    padding: 20px;
  }

  .feedback-slider-shell {
    padding: 0;
  }

  .about-honor-slider-shell {
    padding: 0 8px;
  }

  .feedback-slider-nav.is-prev {
    left: -6px;
  }

  .feedback-slider-nav.is-next {
    right: -6px;
  }

  .floating-tool-panel {
    display: none;
  }

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

  .hero,
  .hero-track,
  .hero-slide {
    min-height: 560px;
  }

  .hero-content {
    padding: 0;
    transform: translateY(-12px);
  }

  .card,
  .metric-card,
  .contact-panel,
  .timeline-card,
  .profile-body,
  .mode-body {
    padding: 22px;
  }

  .footer-cta-box {
    padding: 32px 28px;
  }

  .floating-tools {
    right: 14px;
    bottom: 18px;
    top: auto;
    transform: none;
  }
}
