:root {
  --orange: #f19601;
  --text: #333333;
  --muted: #666666;
  --line: #efefef;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  background: rgba(0, 0, 0, 0.78);
  transition: background-color 0.25s ease;
}

body[data-page="home"] .site-header.at-top {
  background: rgba(255, 255, 255, 0);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.logo {
  flex: 0 0 auto;
  width: 122px;
}

.logo img {
  width: 122px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 148px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

.desktop-nav .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--orange);
}

.desktop-nav .split {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-weight: 400;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  width: 160px;
  padding: 7px 0;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -26px;
  height: 26px;
}

.desktop-nav .nav-dropdown a {
  display: block;
  padding: 9px 14px;
  color: #1f2d3d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.desktop-nav .nav-dropdown a:hover {
  color: var(--orange);
}

.desktop-nav .has-children:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.search-button {
  width: 32px;
  height: 32px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.search-button svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  margin-left: auto;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #aaa;
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 76px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.92);
  padding: 8px 24px 18px;
  transform: translateY(-130%);
  transition: transform 0.25s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero {
  position: relative;
  height: min(42.708vw, 820px);
  min-height: 620px;
  overflow: hidden;
  background: #f4f4f4;
}

.hero-track {
  height: 100%;
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s ease;
  will-change: transform;
}

.home-hero.dragging .hero-track {
  transition: none;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
}

.hero-slide.active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 27px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 13px;
  height: 4px;
  border-radius: 3px;
  background: #333;
  opacity: 1;
}

.hero-dot.active {
  width: 27px;
  background: #777;
}

.home-hero {
  cursor: grab;
  touch-action: pan-y;
}

.home-hero.dragging {
  cursor: grabbing;
}

.section {
  background: #fff;
  padding: 38px 0 14px;
}

.section-heading {
  position: relative;
  margin: 0;
  text-align: center;
  color: #30343b;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(50% + 72px);
  top: -13px;
  width: 49px;
  height: 43px;
  border-radius: 0 0 23px 23px;
  background: var(--orange);
}

.section-heading span {
  position: relative;
  z-index: 1;
}

.services {
  padding-top: 91px;
  padding-bottom: 109px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 46px;
  margin-top: 54px;
}

.service-card {
  min-height: 194px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f6f6f6;
  overflow: hidden;
}

.service-text {
  padding: 64px 22px 22px;
}

.service-text h3 {
  margin: 0 0 14px;
  color: #1e2936;
  font-size: 22px;
  line-height: 1.35;
}

.service-text p {
  margin: 0;
  color: #5e6874;
  font-size: 16px;
  line-height: 1.7;
}

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

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 0.68s ease,
    transform 0.68s cubic-bezier(0.18, 0.74, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.home-band {
  padding: 82px 0 70px;
}

.home-band.alt {
  background: #faf9f5;
}

.intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.intro-copy h2,
.compact-title {
  margin: 0 0 24px;
  font-size: 38px;
  line-height: 1.25;
}

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

.team-preview,
.news-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.team-preview img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.04);
}

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

.news-preview-card {
  background: #fff;
  min-height: 150px;
  padding: 28px 24px;
  transition: box-shadow 0.2s ease;
}

.news-preview-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.news-preview-card h3 {
  margin: 0 0 22px;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.news-preview-card time {
  color: #888;
  font-size: 14px;
}

.inner-hero {
  position: relative;
  height: 402px;
  background-image: var(--hero-desktop);
  background-position: center center;
  background-size: cover;
}

.inner-hero-text {
  position: absolute;
  top: 142px;
  left: calc((100vw - min(var(--max), calc(100vw - 40px))) / 2 + 255px);
  color: #fff;
}

.inner-hero-text h1 {
  margin: 0 0 6px;
  color: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 2px;
  word-spacing: 12px;
  white-space: nowrap;
  display: block;
}

.inner-hero-text p {
  margin: 12px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.6;
}

.inner-hero-text::after {
  content: "";
  display: block;
  width: 55px;
  height: 2px;
  margin-top: 8px;
  background: #fff;
}

.breadcrumb {
  height: 42px;
  border-bottom: 1px solid #efefef;
  background: #f8f8f8;
  color: #333;
  font-size: 14px;
}

.breadcrumb .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.breadcrumb a:last-child {
  color: var(--orange);
}

.page-title-band {
  padding: 48px 0 42px;
  background: #fff;
}

.page-title-band h2 {
  margin: 0;
  text-align: center;
  color: #2f3640;
  font-size: 32px;
  line-height: 1.4;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  padding-bottom: 80px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #eee7f1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(67, 36, 78, 0.07);
  transition:
    transform 0.42s cubic-bezier(0.2, 0.72, 0.25, 1),
    box-shadow 0.42s ease,
    border-color 0.42s ease;
}

.team-card-booking {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: top center;
  box-shadow: 0 0 0 1px #f2f2f2;
  transition:
    transform 0.6s cubic-bezier(0.18, 0.72, 0.2, 1),
    filter 0.45s ease;
}

.team-card-booking-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(67, 28, 78, 0) 72%, rgba(123, 58, 142, 0.025) 84%, rgba(72, 25, 87, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.38s ease;
}

.team-card-booking-overlay::before {
  content: "";
  position: absolute;
  top: -35%;
  left: -65%;
  width: 42%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: rotate(18deg);
  transition: left 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.team-card-booking-button {
  position: relative;
  z-index: 1;
  min-width: 138px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 10px 24px rgba(49, 15, 62, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  backdrop-filter: blur(16px) saturate(1.18);
  transform: translateY(20px) scale(0.95);
  transition:
    transform 0.42s cubic-bezier(0.18, 0.82, 0.24, 1),
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.team-card-booking-button strong {
  color: #8c43b5;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

@media (hover: hover) and (pointer: fine) {
  .team-card:hover,
  .team-card:focus-within {
    z-index: 2;
    transform: translateY(-8px);
    border-color: rgba(160, 84, 198, 0.4);
    box-shadow: 0 24px 50px rgba(73, 35, 88, 0.2);
  }

  .team-card-booking:hover img,
  .team-card-booking:focus-visible img {
    transform: scale(1.035);
    filter: saturate(1.04) brightness(0.92);
  }

  .team-card-booking:hover .team-card-booking-overlay,
  .team-card-booking:focus-visible .team-card-booking-overlay {
    opacity: 1;
  }

  .team-card-booking:hover .team-card-booking-overlay::before,
  .team-card-booking:focus-visible .team-card-booking-overlay::before {
    left: 125%;
  }

  .team-card-booking:hover .team-card-booking-button,
  .team-card-booking:focus-visible .team-card-booking-button {
    transform: translateY(0) scale(1);
    background: rgba(255, 255, 255, 0.62);
    box-shadow:
      0 14px 30px rgba(49, 15, 62, 0.19),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }
}

.team-card-booking:focus-visible {
  outline: 3px solid rgba(155, 79, 198, 0.42);
  outline-offset: -3px;
}

.about-copy {
  padding-bottom: 42px;
}

.lead {
  margin: 0 0 18px;
  color: #4b4b4b;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.about-copy p:not(.lead) {
  margin: 0 0 17px;
  color: #666;
  font-size: 15px;
  line-height: 2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  text-align: center;
}

.stat {
  border-right: 1px solid #f2f2f2;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--orange);
  font-size: 68px;
  line-height: 1;
  font-weight: 300;
}

.stat span {
  color: var(--orange);
  font-size: 16px;
}

.stat p {
  margin: 8px 0 0;
  color: #333;
  font-size: 16px;
}

.about-image {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #f2f2f2;
}

.about-image img {
  width: 100%;
}

.page-title-band:has(.category-tabs) {
  padding: 34px 0 32px;
}

.category-tabs {
  width: min(620px, 100%);
  min-height: 54px;
  margin: 0 auto;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid #eceff3;
  border-radius: 8px;
  background: #f7f8fa;
  box-shadow: 0 12px 28px rgba(31, 45, 61, 0.06);
}

.category-tabs a {
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #56616f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-tabs a.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(241, 150, 1, 0.22);
}

.category-tabs a:hover {
  border-color: rgba(241, 150, 1, 0.32);
  background: #fff;
  color: var(--orange);
}

.category-tabs a.active:hover {
  background: var(--orange);
  color: #fff;
}

.category-tabs i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.category-tabs a.active i {
  opacity: 1;
}

.article-list {
  padding-bottom: 70px;
}

.article-card {
  position: relative;
  display: block;
  min-height: 118px;
  padding: 16px 190px 18px 10px;
  border: 1px solid #e7e7e7;
  margin-bottom: 18px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.article-card:hover {
  border-color: #f1b24a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.article-card h3 {
  margin: 0 0 18px;
  color: #24354a;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

.article-card p {
  margin: 0;
  color: #566677;
  font-size: 14px;
  line-height: 1.7;
  max-width: 1180px;
}

.article-card time {
  position: absolute;
  top: 21px;
  right: 40px;
  color: #8c96a0;
  font-size: 14px;
}

.article-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 9px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  color: #8994a0;
  font-size: 13px;
}

.article-detail-section {
  padding: 58px 0 82px;
}

.article-detail {
  max-width: 980px;
  color: #26384a;
}

.article-detail-meta {
  display: flex;
  gap: 10px;
  color: #9099a3;
  font-size: 14px;
  margin-bottom: 18px;
}

.article-detail-meta a,
.article-back {
  color: var(--orange);
}

.article-detail h1 {
  margin: 0 0 16px;
  color: #172c43;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
}

.article-detail time {
  display: block;
  color: #8d98a4;
  margin-bottom: 28px;
}

.article-detail-body {
  border-top: 1px solid #ececec;
  padding-top: 28px;
}

.article-detail-body p {
  margin: 0 0 18px;
  color: #405166;
  font-size: 16px;
  line-height: 2;
}

.article-back {
  display: inline-block;
  margin-top: 18px;
  font-size: 15px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding-bottom: 78px;
}

.contact-box {
  min-height: 240px;
  padding: 34px;
  background: #f8f8f8;
}

.contact-box h3 {
  margin: 0 0 20px;
  color: #222;
  font-size: 24px;
}

.contact-box p,
.contact-box label {
  display: block;
  margin: 0 0 13px;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid #e1e1e1;
  font: inherit;
}

.contact-box button {
  padding: 10px 28px;
  border: 0;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
}

.float-chat,
.back-top {
  position: fixed;
  z-index: 900;
  right: 29px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.float-chat {
  top: 52.5%;
  width: 52px;
  height: 52px;
  background: #4385f5;
  box-shadow: 0 8px 26px rgba(67, 133, 245, 0.28);
}

.chat-bubble {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 22px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.chat-bubble i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4385f5;
}

.back-top {
  bottom: 42px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  font-size: 0;
  position: fixed;
  transform: translateY(90px);
  transition: transform 0.25s ease;
}

.back-top::before,
.back-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 4px;
  border-radius: 4px;
  background: #fff;
  transform-origin: center;
}

.back-top::before {
  transform: translate(-82%, -50%) rotate(-45deg);
}

.back-top::after {
  transform: translate(-18%, -50%) rotate(45deg);
}

.back-top.show {
  transform: translateY(0);
}

.site-footer {
  background: var(--orange);
  color: #fff;
  padding: 50px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.footer-links h4 {
  margin: 0 0 22px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-time,
.footer-phone {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.8;
}

.footer-phone strong {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 32px;
}

.copyright {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

@media (max-width: 1380px) {
  .desktop-nav {
    gap: 22px;
    margin-left: 110px;
  }

  .desktop-nav .split {
    font-size: 16px;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .search-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    background: rgba(0, 0, 0, 0.82) !important;
  }

  .home-hero {
    min-height: 470px;
    height: 55vw;
  }

  .service-grid,
  .team-grid,
  .team-preview,
  .news-preview,
  .contact-panel,
  .intro-row {
    grid-template-columns: 1fr 1fr;
  }

  .inner-hero-text {
    left: 11vw;
  }
}

@media (max-width: 768px) {
  .container,
  .header-inner {
    width: calc(100% - 28px);
  }

  .site-header {
    height: 58px;
  }

  .logo,
  .logo img {
    width: 96px;
  }

  .mobile-menu {
    top: 58px;
  }

  .home-hero {
    min-height: 360px;
    height: 72vw;
  }

  .home-hero .hero-slide {
    background-position: 20% top;
  }

  .section {
    padding-top: 32px;
  }

  .section-heading {
    font-size: 32px;
  }

  .section-heading::after {
    left: calc(50% + 50px);
    width: 36px;
    height: 32px;
  }

  .service-grid,
  .team-grid,
  .team-preview,
  .news-preview,
  .contact-panel,
  .intro-row,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .service-text {
    padding: 30px 22px;
  }

  .inner-hero {
    height: 270px;
  }

  .inner-hero-text {
    top: 118px;
    left: 34px;
  }

  .inner-hero-text h1 {
    font-size: 36px;
  }

  .inner-hero-text p {
    font-size: 20px;
  }

  .page-title-band {
    padding: 32px 0 28px;
  }

  .article-card {
    padding: 18px 14px 54px;
  }

  .article-card time {
    position: static;
    display: block;
    margin-bottom: 12px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid #f2f2f2;
    padding: 20px 0;
  }

  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .float-chat {
    right: 18px;
  }
}

.inner-hero-text h1 {
  display: block;
  max-width: 760px;
  white-space: nowrap;
  line-height: 1.08;
}

.inner-hero-text h1.multi-line {
  white-space: normal;
  word-spacing: 2px;
}

.zixun-section {
  background: #fff;
  padding: 56px 0 58px;
}

.zixun-section:nth-of-type(2n + 4) {
  background: #f7f7f7;
}

.zixun-heading {
  text-align: center;
  margin: 0 auto 36px;
}

.zixun-heading h2 {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 0;
  color: #000;
  font-size: 36px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
}

.zixun-heading h2::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 2px;
  width: 170px;
  height: 17px;
  transform: translateX(-50%);
  background: #f8b500;
}

.zixun-heading p {
  margin: 4px 0 0;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.zixun-lead {
  max-width: 1080px;
  margin: 0 auto;
  color: #222;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

.zixun-what {
  padding-top: 92px;
  padding-bottom: 58px;
}

.zixun-assessment {
  padding-top: 58px;
  padding-bottom: 64px;
}

.assessment-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 46px auto 38px;
}

.assessment-unit {
  display: flex;
  align-items: center;
}

.assessment-step {
  position: relative;
  width: 162px;
  height: 162px;
  flex: 0 0 162px;
}

.assessment-step img {
  display: block;
  width: 162px;
  height: 162px;
  object-fit: contain;
  transition: transform 0.85s ease;
}

.assessment-step:hover img {
  transform: rotateY(360deg);
}

.assessment-step span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 37px;
  color: #333;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.assessment-arrow {
  width: 66px;
  height: auto;
  margin: 0 11px;
  opacity: 0.8;
}

.zixun-note {
  max-width: 1040px;
}

.zixun-providers {
  background: #f7f7f7;
  padding-top: 58px;
  padding-bottom: 58px;
}

.zixun-providers .providers-grid,
.zixun-service-category .service-grid,
.zixun-process-grid,
.zixun-online .online-grid {
  margin-top: 0;
}

.zixun-service-category {
  padding-top: 58px;
  padding-bottom: 62px;
}

.zixun-service-category .service-grid {
  gap: 34px 46px;
}

.zixun-service-category .service-card {
  min-height: 176px;
}

.zixun-service-category .service-card img {
  min-height: 176px;
}

.zixun-service-category .service-text {
  padding-top: 46px;
}

.zixun-process {
  padding-top: 58px;
  padding-bottom: 62px;
}

.zixun-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.zixun-process-card {
  min-height: 138px;
  background: #fff;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  text-align: center;
}

.zixun-process-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 16px;
}

.zixun-process-card h3 {
  margin: 0;
  color: #333;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.zixun-online {
  padding-top: 58px;
  padding-bottom: 62px;
}

.zixun-environment {
  padding-top: 58px;
  padding-bottom: 74px;
}

.message-section {
  background: #fff;
  padding: 62px 0 64px;
}

.message-section .container {
  width: min(1460px, calc(100% - 48px));
}

.message-section:nth-of-type(2n + 3) {
  background: #f7f7f7;
}

.message-contact {
  background: #f7f7f7;
  padding-top: 60px;
  padding-bottom: 70px;
}

.message-contact .online-contact {
  margin-top: 0;
}

.message-entry {
  padding-top: 54px;
  padding-bottom: 56px;
  background: #faf9f5;
}

.plain-section-title {
  margin: 0 0 28px;
  color: #222;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
}

.message-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.message-entry .message-icon-grid {
  width: calc(100% + 28px);
  margin-left: -14px;
}

.message-icon-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1080px;
  margin: 42px auto 0;
  width: auto;
}

.message-plain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin: 34px 0 42px;
}

.message-plain-grid > div {
  min-height: 76px;
  border: 1px solid #e6e6e6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.message-plain-grid > div::before,
.message-flow-grid > div::before {
  content: none !important;
  display: none !important;
}

.message-mode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin: 34px 0 42px;
}

.message-mode-card {
  min-height: 76px;
  border: 1px solid #e6e6e6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #333;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}

.message-mode-card img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.message-icon-card {
  min-height: 158px;
  margin: 0 14px;
  padding: 21px 22px 18px;
  border: 0;
  background: #fff;
  appearance: none;
  font: inherit;
  text-align: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.message-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.message-icon-card img {
  display: block;
  width: 82px;
  height: 82px;
  margin: 0 auto;
  object-fit: contain;
}

.message-icon-card h3 {
  margin: 10px 0 0;
  color: #323232;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.service-subtitle {
  width: 100%;
  margin: 58px 0 26px;
}

.service-subtitle h3 {
  margin: 0;
  color: #263241;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 800;
}

.service-subtitle i {
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 14px;
  background: var(--orange);
}

.message-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 62px;
}

.message-flow-grid > div,
.message-category-grid > div {
  min-height: 104px;
  border: 1px solid #e7e7e7;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  color: #333;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
}

.message-flow-grid > div {
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
}

.message-flow-grid > div strong {
  color: #b3b3b3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.message-flow-grid > div span {
  color: #333;
  font-size: 16px;
}

.message-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 34px;
  margin-bottom: 58px;
}

.message-category-grid > div {
  justify-content: flex-start;
  gap: 18px;
  min-height: 108px;
  padding-left: 32px;
  font-size: 20px;
  font-weight: 800;
}

.message-category-grid > div img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.activity-grid span {
  content: "+";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.message-paragraph {
  margin: 0 0 24px;
  color: #333;
  font-size: 16px;
  line-height: 1.95;
}

.message-paragraph:last-child {
  margin-bottom: 0;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 92px;
  max-width: 980px;
}

.activity-grid p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: #333;
  font-size: 17px;
  line-height: 1.6;
}

.culture-section,
.contact-reference,
.video-section,
.honor-section {
  background: #fff;
  padding: 74px 0 86px;
}

.culture-list {
  display: grid;
  gap: 28px;
}

.culture-card {
  padding: 32px 36px;
  border: 1px solid #ececec;
  background: #fff;
}

.culture-card h2,
.contact-title h2,
.honor-empty h2 {
  margin: 0;
  color: #263241;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}

.culture-card h2::after,
.contact-title h2::after,
.honor-empty h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 12px;
  background: var(--orange);
}

.culture-en,
.contact-title p {
  margin: 12px 0 16px;
  color: #999;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.culture-card p:last-child {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 2;
}

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

.contact-reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.contact-title {
  text-align: center;
}

.contact-title h2 {
  display: inline-block;
}

.contact-title h2::after {
  display: none;
}

.contact-reference-card {
  position: relative;
  z-index: 1;
  min-height: 205px;
  overflow: hidden;
  padding: 40px 34px 30px;
  border: 1px solid rgba(89, 86, 232, 0.15);
  border-radius: 7px;
  background: #fff;
  transition: background-color 0.24s ease, border-color 0.24s ease;
}

.contact-reference-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 24px;
  top: 22px;
  width: 132px;
  height: 132px;
  opacity: 0.035;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact-reference-card[data-icon="pin"]::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232c2c2c' d='M32 3c-11 0-20 9-20 20 0 15 20 38 20 38s20-23 20-38C52 12 43 3 32 3Zm0 28a8 8 0 1 1 0-16 8 8 0 0 1 0 16Z'/%3E%3C/svg%3E");
}

.contact-reference-card[data-icon="phone"]::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232c2c2c' d='M46 60C24 57 7 40 4 18c-.3-2 .8-4 2.6-4.9l8-4c2-1 4.4-.3 5.5 1.6l5 8.3c1 1.7.8 3.9-.6 5.3l-3 3c3.7 7 9.2 12.5 16.2 16.2l3-3c1.4-1.4 3.6-1.6 5.3-.6l8.3 5c1.9 1.1 2.6 3.5 1.6 5.5l-4 8C51 59.2 48 60.3 46 60Z'/%3E%3C/svg%3E");
}

.contact-reference-card[data-icon="mail"]::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232c2c2c' d='M8 14h48c3 0 5 2 5 5v30c0 3-2 5-5 5H8c-3 0-5-2-5-5V19c0-3 2-5 5-5Zm24 24 21-16H11l21 16Zm-3 5L9 28v20h46V28L35 43c-2 1.5-4 1.5-6 0Z'/%3E%3C/svg%3E");
}

.contact-reference-card[data-icon="user"]::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232c2c2c' d='M32 34c9 0 16-7 16-16S41 2 32 2 16 9 16 18s7 16 16 16Zm0 6C18 40 7 49 7 60v2h50v-2c0-11-11-20-25-20Z'/%3E%3C/svg%3E");
}

.contact-reference-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.24s ease;
}

.contact-reference-icon::before {
  content: "";
  width: 27px;
  height: 27px;
  background: currentColor;
  mask: var(--contact-icon) center / contain no-repeat;
  -webkit-mask: var(--contact-icon) center / contain no-repeat;
}

.contact-reference-card[data-icon="pin"] .contact-reference-icon {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 3c-11 0-20 9-20 20 0 15 20 38 20 38s20-23 20-38C52 12 43 3 32 3Zm0 28a8 8 0 1 1 0-16 8 8 0 0 1 0 16Z'/%3E%3C/svg%3E");
}

.contact-reference-card[data-icon="phone"] .contact-reference-icon {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M46 60C24 57 7 40 4 18c-.3-2 .8-4 2.6-4.9l8-4c2-1 4.4-.3 5.5 1.6l5 8.3c1 1.7.8 3.9-.6 5.3l-3 3c3.7 7 9.2 12.5 16.2 16.2l3-3c1.4-1.4 3.6-1.6 5.3-.6l8.3 5c1.9 1.1 2.6 3.5 1.6 5.5l-4 8C51 59.2 48 60.3 46 60Z'/%3E%3C/svg%3E");
}

.contact-reference-card[data-icon="mail"] .contact-reference-icon {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 14h48c3 0 5 2 5 5v30c0 3-2 5-5 5H8c-3 0-5-2-5-5V19c0-3 2-5 5-5Zm24 24 21-16H11l21 16Zm-3 5L9 28v20h46V28L35 43c-2 1.5-4 1.5-6 0Z'/%3E%3C/svg%3E");
}

.contact-reference-card[data-icon="user"] .contact-reference-icon {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 34c9 0 16-7 16-16S41 2 32 2 16 9 16 18s7 16 16 16Zm0 6C18 40 7 49 7 60v2h50v-2c0-11-11-20-25-20Z'/%3E%3C/svg%3E");
}

.contact-reference-card h3 {
  margin: 20px 0 5px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  transition: color 0.24s ease;
}

.contact-reference-card p {
  margin: 0;
  color: #808285;
  font-size: 16px;
  line-height: 1.8;
  transition: color 0.24s ease;
}

.contact-reference-card:hover {
  border-color: transparent;
  background: var(--orange);
}

.contact-reference-card:hover .contact-reference-icon {
  border-color: #fff;
}

.contact-reference-card:hover h3,
.contact-reference-card:hover p {
  color: #fff;
}

.contact-reference-map {
  position: relative;
  min-height: 432px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #eef0e9;
}

.tencent-map-canvas,
.tencent-map-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tencent-map-canvas {
  z-index: 2;
}

.tencent-map-fallback {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.contact-reference-map.use-map-fallback .tencent-map-canvas {
  display: none;
}

.contact-reference-map.use-map-fallback .tencent-map-fallback {
  opacity: 1;
  pointer-events: auto;
}

.tencent-map-open {
  position: absolute;
  z-index: 4;
  left: 8px;
  bottom: 6px;
  padding: 2px 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.88);
  color: #47627a;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
}

.contact-map-info {
  min-width: 205px;
  color: #51606a;
  font-size: 14px;
  line-height: 1.55;
}

.contact-map-info strong {
  color: #53616b;
  font-weight: 600;
}

.map-roads,
.map-water,
.map-marker {
  display: none;
}

.video-card {
  position: relative;
  width: 360px;
  max-width: 100%;
}

.video-card > a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #f1f1f1;
  background-position: center;
  background-size: cover;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #111;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(249, 151, 0, 0.92);
}

.video-play::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.video-card h2 {
  margin: 14px 0 0;
  color: #333;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.video-card p {
  margin: 8px 0 0;
  color: #66717f;
  font-size: 14px;
  line-height: 1.7;
}

.honor-empty {
  min-height: 220px;
}

.search-wrap {
  position: relative;
  margin-left: auto;
}

.search-wrap .search-button {
  margin-left: 0;
}

.search-panel {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 18px);
  right: 0;
  width: 240px;
  height: 48px;
  padding: 8px 10px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: 1fr 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.search-wrap.open .search-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-panel::before {
  content: "";
  position: absolute;
  right: 14px;
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.search-panel input {
  min-width: 0;
  height: 32px;
  border: 1px solid #ececec;
  border-right: 0;
  padding: 0 14px;
  color: #666;
  font-size: 13px;
  outline: 0;
}

.search-panel input::placeholder {
  color: #b8b8b8;
}

.search-panel button[type="submit"] {
  width: 48px;
  height: 32px;
  border: 0;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.search-panel button[type="submit"] svg {
  width: 18px;
  height: 18px;
}

.float-service {
  position: fixed;
  z-index: 1300;
  right: 20px;
  top: 48.2%;
  --customer-rise-y: 560px;
}

.float-service .float-chat {
  position: relative;
  top: auto;
  right: auto;
  overflow: visible;
  isolation: isolate;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.18s ease, transform 0.28s ease;
}

.float-service.open .float-chat,
.float-service.leave-open .float-chat {
  opacity: 0;
  pointer-events: none;
  transform: translateY(var(--customer-rise-y)) scale(0.82);
}

.float-service.rising .float-chat {
  animation: customerServiceRise 1.55s cubic-bezier(0.42, 0, 0.22, 1) both;
}

.float-service .float-chat::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -14px;
  border-radius: 50%;
  background: rgba(47, 116, 226, 0.42);
  box-shadow: 0 0 26px rgba(47, 116, 226, 0.5);
  animation: chatPulse 1.8s ease-out infinite;
}

.float-service .float-chat::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -12px;
  border-radius: 50%;
  border: 8px solid rgba(47, 116, 226, 0.32);
  animation: chatPulse 1.8s ease-out infinite 0.45s;
}

@keyframes chatPulse {
  0% {
    opacity: 0.85;
    transform: scale(0.72);
  }
  70% {
    opacity: 0.18;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.26);
  }
}

@keyframes customerServiceRise {
  0% {
    opacity: 0;
    transform: translateY(var(--customer-rise-y)) scale(0.82);
  }
  18% {
    opacity: 1;
  }
  84% {
    opacity: 1;
    transform: translateY(-7px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.float-service-panel {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 596px;
  height: 676px;
  max-width: calc(100vw - 122px);
  max-height: calc(100vh - 20px);
  border-radius: 16px;
  background: #fff;
  color: #333;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translateX(18px) scale(0.98);
  transform-origin: right bottom;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.float-service.open .float-service-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.float-service.open ~ .back-top,
.float-service.leave-open ~ .back-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
}

.chat-window-head {
  height: 78px;
  padding: 0 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 16px;
}

.chat-window-head strong {
  flex: 1;
  color: #1d2733;
  font-size: 16px;
}

.human-service {
  height: 32px;
  border: 0;
  border-radius: 4px;
  padding: 0 12px;
  background: #edf4ff;
  color: #4285f4;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.human-service svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-close {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.chat-window-body {
  height: calc(100% - 168px);
  padding: 20px 24px;
  background: #f7f7f7;
  overflow-y: auto;
}

.history-link {
  display: block;
  width: max-content;
  margin: 0 auto 20px;
  color: #7da9ee;
  font-size: 14px;
}

.service-status {
  margin: 0 0 24px;
  text-align: center;
  color: #c5c5c5;
  font-size: 14px;
}

.service-visitor {
  margin: -4px 0 12px;
  text-align: center;
  color: #c5c5c5;
  font-size: 14px;
}

.service-message {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
}

.service-avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #e5e5e5;
  color: #fff;
  display: grid;
  place-items: center;
}

.bot-avatar svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #aaa;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bot-avatar svg rect {
  fill: #f5f5f5;
  stroke: #b7b7b7;
}

.bot-avatar svg circle:not(:last-of-type) {
  fill: #b7b7b7;
  stroke: none;
}

.service-name {
  color: #aaa;
  font-size: 13px;
}

.message-bubble {
  width: 348px;
  max-width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff;
  color: #303030;
  font-size: 14px;
  line-height: 1.45;
  word-break: break-all;
}

.service-message time {
  display: block;
  margin-top: 8px;
  color: #a7adb5;
  font-size: 12px;
}

.service-message.user-message {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 18px 0 0 auto;
}

.service-message.user-message .message-bubble {
  width: auto;
  max-width: 348px;
  margin-top: 0;
  background: #4d82ee;
  color: #fff;
  border-radius: 9px;
  padding: 13px 15px;
}

.service-message.user-message time {
  margin-top: 7px;
  margin-right: 47px;
}

.user-message-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3eadb;
  display: grid;
  place-items: center;
  color: #c39566;
}

.user-avatar svg {
  width: 27px;
  height: 27px;
}

.bot-reply {
  margin-top: 18px;
}

.chat-window-foot {
  height: 90px;
  padding: 0;
  background: #fff;
  position: relative;
  border-top: 1px solid #f0f0f0;
}

.chat-window-foot button {
  width: 32px;
  height: 32px;
  border: 1px solid #ececec;
  border-radius: 50%;
  background: #fff;
  color: #9b9b9b;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.emoji-toggle,
.transfer-toggle {
  position: absolute;
  top: -44px;
  z-index: 3;
}

.emoji-toggle {
  left: 22px;
}

.transfer-toggle {
  left: 62px;
}

.emoji-toggle svg,
.transfer-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.transfer-toggle span {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: max-content;
  padding: 7px 10px;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.transfer-toggle:hover span,
.transfer-toggle:focus-visible span,
.transfer-toggle.show-tip span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.chat-input {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  resize: none;
  outline: 0;
  padding: 20px 58px 14px 20px;
  color: #333;
  font: inherit;
}

.chat-input::placeholder {
  color: #c3c3c3;
}

.emoji-panel {
  position: absolute;
  left: 58px;
  bottom: 76px;
  z-index: 5;
  width: 322px;
  min-height: 160px;
  padding: 12px 14px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.17);
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.emoji-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.emoji-panel button {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  font-size: 20px;
  line-height: 24px;
}

.emoji-panel button:hover {
  background: #f2f4f8;
}

.chat-window-foot .send-mark {
  position: absolute;
  right: 14px;
  bottom: 13px;
  width: 30px;
  height: 30px;
  border: 0;
  background: #a8c7fb;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.18s ease, transform 0.18s ease;
}

.chat-window-foot .send-mark.active {
  background: #5b84ea;
  transform: translateY(-1px);
}

.float-leave-panel {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 320px;
  height: 590px;
  max-height: calc(100vh - 20px);
  border-radius: 12px;
  background: #fff;
  color: #30343b;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translateX(18px) scale(0.98);
  transform-origin: right bottom;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.float-service.leave-open .float-leave-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.leave-head {
  height: 48px;
  padding: 0 16px 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eef0f4;
}

.leave-head strong {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #20242a;
  font-size: 16px;
  line-height: 48px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leave-close {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #9aa0a6;
  font-size: 30px;
  line-height: 26px;
  cursor: pointer;
}

.leave-body {
  height: calc(100% - 48px);
  overflow-y: auto;
  scrollbar-color: #9e9e9e transparent;
  scrollbar-width: thin;
}

.leave-body::-webkit-scrollbar {
  width: 6px;
}

.leave-body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #9e9e9e;
}

.leave-form {
  min-height: 565px;
  padding: 0 12px 0;
}

.leave-card {
  min-height: 460px;
  padding: 0 16px 14px;
  border-radius: 10px;
  background: #f6f6f6;
}

.leave-tip {
  height: 43px;
  margin: 0 0 18px;
  border-bottom: 1px solid #dfe5ff;
  color: #30343b;
  font-size: 14px;
  line-height: 43px;
}

.leave-field {
  position: relative;
  display: block;
  width: 264px;
  height: 48px;
  margin: 0 auto 26px;
  background: #fff;
}

.leave-field input,
.leave-field textarea {
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 3px;
  background: #fff;
  padding: 13px 16px 8px;
  color: #333;
  font: inherit;
  outline: 0;
}

.leave-field textarea {
  resize: none;
}

.leave-field span {
  position: absolute;
  left: 16px;
  top: 50%;
  color: #c7c7c7;
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 0.16s ease, font-size 0.16s ease, top 0.16s ease;
}

.leave-field:focus-within input,
.leave-field:focus-within textarea {
  border-color: #356bff;
}

.leave-field:focus-within span,
.leave-field input:not(:placeholder-shown) + span,
.leave-field textarea:not(:placeholder-shown) + span {
  top: -1px;
  padding: 0 3px;
  background: #fff;
  color: #356bff;
  font-size: 14px;
}

.leave-area {
  height: 88px;
  margin-bottom: 15px;
}

.leave-bottom {
  width: 264px;
  min-height: 105px;
  margin: 0 auto;
  padding-top: 16px;
}

.leave-agree {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #57606a;
  font-size: 14px;
  line-height: 19px;
}

.leave-agree input {
  width: 14px;
  height: 14px;
  margin: 0 4px 0 0;
}

.leave-agree a {
  color: #2468ff;
}

.leave-submit {
  display: block;
  width: 100px;
  height: 44px;
  margin: 10px 0 0 auto;
  border: 0;
  border-radius: 3px;
  background: #356bff;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.leave-submit:disabled {
  background: #d9d9d9;
  color: #999;
  cursor: not-allowed;
}

.leave-message {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.leave-message[data-type="error"] {
  color: #d93025;
}

.leave-message[data-type="success"] {
  color: #178a31;
}

.back-top {
  right: 31px;
  bottom: 42px;
  z-index: 920;
}

.article-card {
  scroll-margin-top: 92px;
}

.article-list {
  scroll-margin-top: 92px;
}

.article-card:target {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(241, 150, 1, 0.12);
}

.search-result-note {
  margin: 0 0 18px;
  color: #333;
  font-size: 16px;
}

.article-card.empty {
  min-height: 110px;
}

.home-news-card {
  display: block;
}

@media (max-width: 768px) {
  .inner-hero-text h1 {
    max-width: calc(100vw - 68px);
    font-size: 31px;
  }

  .search-panel {
    right: -44px;
    width: min(240px, calc(100vw - 30px));
  }

  .float-service {
    right: 18px;
  }

  .float-service-panel {
    right: 60px;
    width: 210px;
  }
}

.home-section {
  background: #fff;
  padding: 94px 0;
}

.providers-section {
  background: #f7f7f7;
  padding-top: 70px;
  padding-bottom: 66px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
}

.provider-card {
  height: 230px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.provider-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.provider-card h3 {
  margin: 14px 0 0;
  color: #333;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.process-section {
  padding-top: 70px;
  padding-bottom: 132px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.process-card {
  min-height: 178px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 18px 24px 22px;
  text-align: center;
}

.process-card strong {
  display: block;
  color: #adadad;
  font-family: Arial, sans-serif;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
}

.process-card p {
  margin: 8px auto 0;
  max-width: 205px;
  color: #333;
  font-size: 20px;
  line-height: 1.35;
}

.story-section {
  padding-top: 86px;
  padding-bottom: 60px;
}

.story-layout {
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: center;
  margin-top: 54px;
}

.story-art img {
  width: 100%;
  max-width: 760px;
}

.story-copy {
  padding-left: 26px;
}

.quote-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 42px;
}

.quote-line img {
  width: 26px;
  height: auto;
  margin-top: 7px;
}

.quote-line strong {
  color: var(--orange);
  font-size: 28px;
  line-height: 1.3;
  font-style: italic;
}

.story-text {
  margin: 0 0 38px;
  color: #666;
  font-size: 15px;
  line-height: 1.85;
}

.story-points {
  display: grid;
  gap: 30px;
  margin-left: -6px;
}

.story-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.story-point > img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  box-shadow: none;
}

.story-point h3 {
  margin: 2px 0 8px;
  color: #333;
  font-size: 20px;
}

.story-point p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.more-pill {
  width: 160px;
  height: 50px;
  margin-top: 46px;
  border-radius: 25px;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 8px;
  font-size: 16px;
  font-weight: 700;
}

.more-pill b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.advantages-section {
  background: #fbfaf7;
  padding-top: 170px;
  padding-bottom: 100px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 66px;
}

.advantage-card {
  height: 346px;
  background: #fff;
  padding: 60px 35px 34px;
  text-align: center;
  box-shadow: 0 7px 15px rgba(74, 46, 0, 0.1);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.advantage-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin: 0 auto;
}

.advantage-card h3 {
  margin: 34px 0 0;
  color: #333;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
}

.advantage-card i {
  display: block;
  width: 20px;
  height: 1px;
  margin: 14px auto;
  background: var(--orange);
}

.advantage-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.65;
}

.advantage-card:hover {
  background: var(--orange);
}

.advantage-card:hover h3,
.advantage-card:hover p {
  color: #fff;
}

.advantage-card:hover img {
  filter: brightness(0) invert(1);
}

.advantage-card:hover i {
  background: #fff;
}

.online-section {
  background: #faf9f5;
  padding-top: 100px;
  padding-bottom: 21px;
}

.online-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.online-card {
  height: 160px;
  border: 1px solid #e7e7e7;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.online-card img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.online-card h3 {
  margin: 20px 0 0;
  color: #333;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.online-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  background: #fff;
  min-height: 484px;
  padding: 0;
}

.contact-info {
  padding: 80px 0 0 68px;
}

.contact-info h3 {
  margin: 0 0 6px;
  color: #333;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 800;
}

.contact-lead {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.contact-rule {
  width: 86.4%;
  height: 1px;
  margin: 13px 0 30px;
  background: #f2f2f2;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: #222;
  font-size: 18px;
}

.contact-line.phone {
  font-size: 22px;
}

.contact-line strong {
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 5px;
}

.contact-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contact-icon.blue {
  background: #0b98ea;
}

.contact-icon.green {
  background: #82c949;
}

.contact-icon.pink {
  background: #f72076;
}

.home-form {
  box-sizing: border-box;
  margin: 7px 49px 0 18px;
  padding: 30px 20px 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row + .form-row {
  margin-top: 20px;
}

.home-form input,
.home-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #dcdcdc;
  background: transparent;
  padding: 9px 1px;
  color: #333;
  font: inherit;
  outline: 0;
}

.home-form input {
  height: 44px;
  line-height: 44px;
}

.home-form input::placeholder,
.home-form textarea::placeholder {
  color: #999;
}

.home-form textarea {
  height: 100px;
  margin-top: 20px;
  resize: none;
}

.captcha-row {
  display: grid;
  grid-template-columns: 400px 121px;
  gap: 10px;
  align-items: end;
  margin-top: 20px;
}

.captcha-img {
  width: 121px;
  height: 44px;
  margin-bottom: 0;
  background: linear-gradient(135deg, #f4f7fb, #e7eef6);
  color: #3b5d86;
  display: grid;
  place-items: center;
  font: italic 700 24px/1 Georgia, serif;
  letter-spacing: 6px;
}

.home-form .captcha-img {
  width: 121px;
  max-width: none;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #f4f7fb, #e7eef6);
  color: #3b5d86;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  font: italic 700 24px/1 Georgia, serif;
  letter-spacing: 6px;
  cursor: pointer;
}

.home-form .captcha-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-form .captcha-img.loading::after {
  content: "...";
  color: #8c9bb1;
  font: 700 16px/1 Arial, sans-serif;
  letter-spacing: 1px;
}

.agree {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 22px;
  color: #555;
  font-size: 14px;
}

.agree input {
  width: 14px;
  height: 14px;
  padding: 0;
}

.home-form button {
  width: 530px;
  max-width: 100%;
  height: 44px;
  border: 0;
  border-radius: 24px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.home-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.form-message {
  min-height: 20px;
  margin: 10px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.form-message[data-type="error"] {
  color: #d93025;
}

.form-message[data-type="success"] {
  color: #178a31;
}

.home-team-section {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 84px;
}

.home-team-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 48px;
}

.home-team-card {
  overflow: hidden;
  text-align: center;
}

.home-team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: top center;
}

.home-team-card p {
  margin: 14px 0 0;
  color: #333;
  font-size: 18px;
  font-weight: 700;
}

.team-more {
  display: flex;
  margin: 42px auto 0;
}

.environment-section {
  background: #fff;
  padding-top: 94px;
  padding-bottom: 76px;
}

.gallery {
  margin-top: 42px;
}

.gallery-row {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

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

.gallery-row.small-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-row img {
  width: 100%;
  height: 100%;
  min-height: 212px;
  object-fit: cover;
}

.top-row img {
  aspect-ratio: 455 / 285;
}

.small-row img {
  aspect-ratio: 322 / 212;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(170, 170, 170, 0.68);
  color: transparent;
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform-origin: center;
}

.gallery-arrow.left::before {
  transform: translate(-42%, -50%) rotate(-135deg);
}

.gallery-arrow.right::before {
  transform: translate(-58%, -50%) rotate(45deg);
}

.gallery-arrow.left {
  left: 10px;
}

.gallery-arrow.right {
  right: 10px;
}

@media (max-width: 1500px) {
  .gallery-arrow.left {
    left: 10px;
  }

  .gallery-arrow.right {
    right: 10px;
  }
}

.home-news-section {
  background: #fbfaf7;
  padding-top: 80px;
  padding-bottom: 74px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}

.home-news-card {
  padding: 10px 10px 38px;
  border-radius: 10px;
  transition: box-shadow 0.25s ease;
}

.home-news-card.highlight,
.home-news-card:hover {
  background: #fff;
  box-shadow: 0 7px 15px rgba(51, 32, 0, 0.1);
}

.home-news-card img {
  width: 100%;
  aspect-ratio: 439 / 244;
  border-radius: 10px;
  object-fit: cover;
}

.home-news-card time {
  display: block;
  margin: 29px 7% 0;
  color: #999;
  font-size: 14px;
}

.home-news-card h3 {
  margin: 10px 7% 0;
  color: #333;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
}

.home-news-card.highlight h3 {
  color: var(--orange);
}

.site-footer {
  background: var(--orange);
  color: #fff;
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: start;
  gap: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  gap: 44px;
  padding-top: 8px;
}

.footer-links h4 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
}

.footer-links a {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.72;
}

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

.footer-codes.reveal-on-scroll {
  transform: translate3d(0, 0, 0);
  transition: none;
}

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

.footer-codes figure.reveal-on-scroll {
  opacity: 0;
  transform: scale(0.18);
  transform-origin: center center;
  transition:
    opacity 0.58s ease,
    transform 0.72s cubic-bezier(0.2, 0.9, 0.24, 1);
  transition-delay: var(--footer-code-delay, 0ms);
}

.footer-codes figure.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: scale(1);
}

.footer-codes figure:nth-child(1) {
  --footer-code-delay: 40ms;
}

.footer-codes figure:nth-child(2) {
  --footer-code-delay: 220ms;
}

.footer-codes figure:nth-child(3) {
  --footer-code-delay: 400ms;
}

.footer-codes figure:nth-child(4) {
  --footer-code-delay: 580ms;
}

.footer-codes figure:nth-child(5) {
  --footer-code-delay: 760ms;
}

.footer-codes img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 0 auto;
  background: #fff;
}

.footer-codes figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-bottom {
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 38px;
}

.copyright {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.icp-link {
  color: inherit;
}

.icp-link:hover {
  color: #fff;
}

.copyright p,
.footer-time p {
  margin: 0 0 10px;
}

.footer-time {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.35;
}

.footer-phone {
  color: #fff;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}

.float-chat {
  overflow: visible;
}

.float-label {
  position: absolute;
  z-index: 2;
  right: 64px;
  top: 50%;
  white-space: nowrap;
  border-radius: 4px;
  background: #fff;
  color: #333;
  padding: 9px 12px;
  font-size: 14px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.float-chat:hover .float-label {
  opacity: 1;
  transform: translate(0, -50%);
}

@media (max-width: 1380px) {
  .providers-grid,
  .process-grid {
    gap: 18px;
  }

  .process-card p {
    font-size: 18px;
  }

  .online-grid {
    gap: 18px;
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 1120px) {
  .message-section .container {
    width: min(100% - 48px, var(--container));
  }

  .providers-grid,
  .process-grid,
  .advantage-grid,
  .online-grid,
  .message-icon-grid,
  .message-icon-grid.four,
  .message-mode-grid,
  .message-plain-grid,
  .message-flow-grid,
  .message-category-grid,
  .home-team-strip,
  .footer-codes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-layout,
  .online-contact,
  .contact-reference-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-left: 0;
  }

  .story-points {
    margin-left: 0;
  }

  .gallery-row.top-row,
  .gallery-row.small-row,
  .home-news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-arrow {
    display: none;
  }

  .footer-links {
    grid-template-columns: repeat(5, max-content);
  }
}

@media (max-width: 768px) {
  .home-section {
    padding: 54px 0;
  }

  .providers-grid,
  .process-grid,
  .advantage-grid,
  .online-grid,
  .message-icon-grid,
  .message-icon-grid.four,
  .message-mode-grid,
  .message-plain-grid,
  .message-flow-grid,
  .message-category-grid,
  .activity-grid,
  .contact-reference-list,
  .home-team-strip,
  .gallery-row.top-row,
  .gallery-row.small-row,
  .home-news-grid,
  .form-row,
  .captcha-row,
  .footer-codes {
    grid-template-columns: 1fr;
  }

  .providers-section {
    padding-top: 40px;
  }

  .provider-card {
    height: 210px;
  }

  .message-section,
  .culture-section,
  .contact-reference,
  .video-section,
  .honor-section {
    padding: 48px 0 54px;
  }

  .message-icon-card {
    min-height: 138px;
  }

  .service-subtitle {
    margin-top: 38px;
  }

  .process-card p {
    font-size: 18px;
  }

  .quote-line strong {
    font-size: 22px;
  }

  .online-contact {
    padding: 42px 22px;
    gap: 30px;
  }

  .contact-info h3 {
    font-size: 30px;
  }

  .contact-line,
  .contact-line.phone {
    align-items: flex-start;
    font-size: 17px;
    line-height: 1.45;
  }

  .footer-links {
    grid-template-columns: repeat(2, max-content);
    gap: 16px 34px;
  }

  .footer-codes img {
    width: 136px;
    height: 136px;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: clip;
  }

  .container,
  .header-inner,
  .message-section .container {
    width: calc(100% - 28px);
  }

  .site-header {
    height: 58px;
    background: rgba(0, 0, 0, 0.82) !important;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo,
  .logo img {
    width: 96px;
  }

  .desktop-nav,
  .search-wrap {
    display: none;
  }

  .menu-toggle {
    display: block;
    width: 42px;
    height: 42px;
    margin-left: 0;
  }

  .menu-toggle span {
    background: #d9d9d9;
  }

  .mobile-menu {
    top: 58px;
    max-height: calc(100vh - 58px);
    overflow-y: auto;
  }

  .home-hero {
    height: 76vw;
    min-height: 300px;
    max-height: 430px;
    margin-top: 58px;
  }

  .home-hero .hero-slide {
    background-position: left center;
  }

  .hero-dots {
    bottom: 22px;
  }

  .inner-hero {
    height: 210px;
    margin-top: 58px;
    background-position: left center;
  }

  .inner-hero-text {
    top: 78px;
    left: 22px;
    right: 22px;
  }

  .inner-hero-text h1 {
    max-width: 100%;
    white-space: normal;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: 0;
    word-spacing: 0;
  }

  .inner-hero-text p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.45;
  }

  .breadcrumb {
    height: auto;
    min-height: 42px;
    font-size: 14px;
  }

  .breadcrumb .container {
    padding: 10px 0;
    line-height: 1.6;
    flex-wrap: wrap;
  }

  .section,
  .services,
  .zixun-section,
  .message-section,
  .culture-section,
  .contact-reference,
  .video-section,
  .honor-section {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .section-heading {
    font-size: 32px;
    line-height: 1.25;
  }

  .zixun-heading {
    margin-bottom: 24px;
  }

  .zixun-heading h2,
  .plain-section-title,
  .page-title-band h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .zixun-heading h2::after {
    width: 120px;
    height: 13px;
  }

  .zixun-lead,
  .message-paragraph,
  .culture-card p:last-child,
  .article-detail-body p {
    font-size: 15px;
    line-height: 1.85;
    text-align: left;
  }

  .service-grid,
  .zixun-service-category .service-grid,
  .providers-grid,
  .process-grid,
  .zixun-process-grid,
  .advantage-grid,
  .online-grid,
  .zixun-online .online-grid,
  .message-icon-grid,
  .message-icon-grid.four,
  .message-mode-grid,
  .message-plain-grid,
  .message-flow-grid,
  .message-category-grid,
  .activity-grid,
  .contact-reference-list,
  .contact-reference-layout,
  .home-team-strip,
  .gallery-row.top-row,
  .gallery-row.small-row,
  .home-news-grid,
  .story-layout,
  .online-contact,
  .form-row,
  .captcha-row,
  .footer-top,
  .footer-codes {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .providers-grid,
  .process-grid,
  .zixun-process-grid,
  .advantage-grid,
  .online-grid,
  .message-mode-grid,
  .message-plain-grid,
  .message-flow-grid,
  .message-category-grid,
  .activity-grid,
  .contact-reference-list,
  .home-news-grid {
    gap: 16px;
  }

  .service-card,
  .zixun-service-category .service-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-card img,
  .zixun-service-category .service-card img {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .service-text,
  .zixun-service-category .service-text {
    padding: 26px 22px;
  }

  .assessment-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 28px auto 30px;
  }

  .assessment-unit {
    justify-content: center;
  }

  .assessment-step {
    width: 132px;
    height: 132px;
    flex-basis: 132px;
  }

  .assessment-step img {
    width: 132px;
    height: 132px;
  }

  .assessment-step span {
    bottom: 30px;
    font-size: 17px;
  }

  .assessment-arrow {
    display: none;
  }

  .message-entry .message-icon-grid {
    width: 100%;
    margin-left: 0;
  }

  .message-icon-card {
    min-height: 132px;
    margin: 0;
    padding: 20px 18px;
  }

  .message-icon-card img {
    width: 70px;
    height: 70px;
  }

  .message-flow-grid > div,
  .message-category-grid > div,
  .message-mode-card,
  .message-plain-grid > div {
    min-height: 84px;
    padding: 16px 18px;
    font-size: 16px;
  }

  .message-category-grid > div {
    justify-content: center;
    padding-left: 18px;
  }

  .online-contact {
    padding: 32px 20px;
  }

  .contact-info,
  .home-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }

  .contact-info {
    padding: 0;
  }

  .contact-rule {
    width: 100%;
  }

  .contact-info h3 {
    font-size: 26px;
  }

  .contact-line,
  .contact-line.phone {
    font-size: 15px;
    word-break: break-word;
  }

  .home-form {
    padding: 22px 18px;
  }

  .home-form input,
  .home-form textarea {
    font-size: 15px;
  }

  .captcha-img {
    width: 100%;
  }

  .contact-reference-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .contact-reference-map {
    min-height: 360px;
  }

  .contact-map-info {
    min-width: 0;
    max-width: 260px;
    font-size: 13px;
  }

  .article-card {
    min-height: 0;
    padding: 18px 16px;
  }

  .article-detail h1 {
    font-size: 24px;
    line-height: 1.35;
  }

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

  .footer-codes {
    gap: 18px;
  }

  .float-service {
    right: 18px;
    top: auto;
    bottom: 84px;
  }

  .float-service-panel,
  .float-leave-panel {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    height: min(640px, calc(100vh - 16px));
    max-width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 14px;
  }

  .chat-window-body,
  .leave-body {
    overflow-x: hidden;
  }

  .message-bubble {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .emoji-panel {
    width: min(316px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
  }

  .float-chat .float-label {
    display: none;
  }

  .back-top {
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .home-hero {
    height: 78vw;
    min-height: 260px;
  }

  .home-hero .hero-slide {
    background-position: left center;
  }

  .section-heading {
    font-size: 30px;
  }

  .zixun-heading h2,
  .plain-section-title,
  .page-title-band h2 {
    font-size: 26px;
  }

  .assessment-flow {
    grid-template-columns: 1fr 1fr;
  }

  .contact-reference-map {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 54px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .logo,
  .logo img {
    width: 88px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-menu {
    top: 54px;
  }

  .home-hero {
    height: clamp(174px, 48vw, 260px);
    min-height: 0;
    max-height: none;
    margin-top: 54px;
    background: #f6f6f6;
  }

  .home-hero .hero-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #f6f6f6;
  }

  .hero-dots {
    bottom: 10px;
  }

  .hero-dot {
    width: 24px;
    height: 5px;
  }

  .inner-hero {
    height: clamp(150px, 40vw, 210px);
    margin-top: 54px;
    background-size: cover;
    background-position: center center;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .breadcrumb .container {
    padding: 8px 0;
  }

  .section,
  .services,
  .home-section,
  .zixun-section,
  .message-section,
  .culture-section,
  .contact-reference,
  .video-section,
  .honor-section {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .section-heading,
  .zixun-heading h2,
  .plain-section-title,
  .page-title-band h2 {
    font-size: 24px;
    line-height: 1.32;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading::after {
    left: calc(50% + 40px);
    width: 30px;
    height: 26px;
  }

  .zixun-heading {
    margin-bottom: 18px;
  }

  .zixun-heading h2::after {
    width: 96px;
    height: 10px;
  }

  .zixun-heading p {
    font-size: 12px;
  }

  .service-grid,
  .zixun-service-category .service-grid,
  .providers-grid,
  .process-grid,
  .zixun-process-grid,
  .advantage-grid,
  .online-grid,
  .home-team-strip,
  .gallery-row.top-row,
  .gallery-row.small-row,
  .home-news-grid {
    margin-top: 24px;
    gap: 14px;
  }

  .service-text,
  .zixun-service-category .service-text {
    padding: 18px 18px 20px;
  }

  .service-text h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .service-text p,
  .zixun-lead,
  .message-paragraph,
  .article-detail-body p,
  .culture-card p:last-child {
    font-size: 14px;
    line-height: 1.72;
  }

  .service-card img,
  .zixun-service-category .service-card img {
    aspect-ratio: 2.2 / 1;
  }

  .provider-card {
    height: 168px;
  }

  .provider-card h3 {
    font-size: 18px;
  }

  .process-card,
  .zixun-process-card,
  .online-card,
  .message-icon-card,
  .message-flow-grid > div,
  .message-category-grid > div,
  .message-mode-card,
  .message-plain-grid > div {
    min-height: 96px;
    padding: 16px;
  }

  .online-card {
    height: auto;
  }

  .online-card img,
  .message-icon-card img {
    width: 58px;
    height: 58px;
  }

  .online-card h3,
  .message-icon-card h3 {
    margin-top: 12px;
    font-size: 17px;
  }

  .assessment-flow {
    gap: 12px;
    margin: 20px auto 22px;
  }

  .assessment-step {
    width: 112px;
    height: 112px;
    flex-basis: 112px;
  }

  .assessment-step img {
    width: 112px;
    height: 112px;
  }

  .assessment-step span {
    bottom: 25px;
    font-size: 15px;
  }

  .online-contact {
    min-height: 0;
    margin-top: 10px;
    padding: 24px 18px;
    gap: 22px;
  }

  .contact-info h3 {
    font-size: 23px;
  }

  .contact-lead,
  .contact-line,
  .contact-line.phone {
    font-size: 14px;
    line-height: 1.55;
  }

  .contact-line {
    margin: 14px 0;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .contact-icon img {
    width: 25px;
    height: 25px;
  }

  .home-form {
    padding: 16px 14px;
  }

  .home-form textarea {
    height: 82px;
  }

  .contact-reference-card {
    padding: 22px 20px;
  }

  .contact-reference-icon {
    width: 48px;
    height: 48px;
  }

  .contact-reference-card h3 {
    margin-top: 16px;
    font-size: 22px;
  }

  .contact-reference-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .contact-reference-map {
    min-height: 300px;
  }

  .footer-links {
    display: none;
  }

  .site-footer {
    padding: 28px 0 calc(28px + env(safe-area-inset-bottom));
  }

  .footer-top {
    display: block;
  }

  .footer-codes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 10px;
    max-width: 330px;
    margin: 0 auto;
  }

  .footer-codes figure:nth-child(-n + 3) {
    display: block;
  }

  .footer-codes figure,
  .footer-codes figure.reveal-on-scroll,
  .footer-codes figure.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .footer-codes img {
    width: 88px;
    height: 88px;
    object-fit: contain;
  }

  .footer-codes figcaption {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.86);
  }

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

  .footer-bottom-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .copyright {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
  }

  .copyright p,
  .footer-time p {
    margin-bottom: 4px;
  }

  .footer-time {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
  }

  .footer-phone {
    justify-self: center;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0;
  }

  .float-service {
    right: 16px;
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .float-service .float-chat,
  .float-chat,
  .back-top {
    width: 42px;
    height: 42px;
  }

  .back-top {
    bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .chat-bubble {
    width: 24px;
    height: 19px;
  }
}

@media (max-width: 480px) {
  .container,
  .message-section .container {
    width: calc(100% - 24px);
  }

  .home-hero {
    height: clamp(160px, 47vw, 220px);
  }

  .inner-hero {
    height: 150px;
  }

  .section-heading,
  .zixun-heading h2,
  .plain-section-title,
  .page-title-band h2 {
    font-size: 23px;
  }

  .assessment-step {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
  }

  .assessment-step img {
    width: 104px;
    height: 104px;
  }

  .contact-reference-map {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .providers-section,
  .advantages-section,
  .online-section {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .providers-grid,
  .advantage-grid,
  .online-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .provider-card,
  .advantage-card,
  .online-card {
    min-height: 0;
    height: auto;
    border: 1px solid #eeeeee;
    box-shadow: none;
    padding: 16px 10px;
  }

  .provider-card img {
    width: 72px;
    height: 72px;
  }

  .provider-card h3 {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.25;
  }

  .advantage-card {
    display: grid;
    align-content: start;
    justify-items: center;
    padding: 16px 10px 14px;
  }

  .advantage-card img {
    width: 46px;
    height: 46px;
  }

  .advantage-card h3 {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
  }

  .advantage-card i {
    margin: 8px auto;
  }

  .advantage-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .online-card {
    padding: 18px 10px 16px;
  }

  .online-card img {
    width: 44px;
    height: 44px;
  }

  .online-card h3 {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.25;
  }

  .section-heading {
    margin: 0 0 18px;
    font-size: 22px;
  }

  .section-heading::after {
    left: calc(50% + 34px);
    width: 24px;
    height: 22px;
  }

  .float-service {
    display: none;
  }

  .float-service .float-chat,
  .float-chat {
    width: 36px;
    height: 36px;
    opacity: 0.88;
  }

  .float-service .float-chat::before,
  .float-service .float-chat::after {
    inset: -8px;
    border-width: 5px;
  }

  .chat-bubble {
    width: 21px;
    height: 17px;
    border-radius: 7px;
  }

  .chat-bubble i {
    width: 3px;
    height: 3px;
  }

  .back-top {
    display: none;
  }
}

@media (max-width: 480px) {
  .providers-grid,
  .advantage-grid,
  .online-grid {
    gap: 8px;
  }

  .provider-card,
  .advantage-card,
  .online-card {
    padding-left: 8px;
    padding-right: 8px;
  }

  .advantage-card p {
    display: none;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 34px;
  }

  .team-card {
    background: #fff;
    border: 1px solid #eeeeee;
    overflow: hidden;
  }

  .team-card img {
    aspect-ratio: 2 / 3;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top center;
    box-shadow: none;
  }

  .team-card-booking-overlay {
    align-items: flex-end;
    justify-content: flex-end;
    padding: 10px;
    background: linear-gradient(180deg, transparent 76%, rgba(50, 22, 61, 0.2) 100%);
    opacity: 1;
  }

  .team-card-booking-overlay::before {
    display: none;
  }

  .team-card-booking-button {
    min-width: 92px;
    min-height: 32px;
    padding: 6px 13px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(49, 15, 62, 0.24);
    transform: none;
  }

  .team-card-booking-button strong {
    font-size: 12px;
    white-space: nowrap;
  }

  .message-entry {
    padding-top: 30px;
    padding-bottom: 32px;
  }

  .message-icon-grid,
  .message-icon-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin: 18px 0 0;
  }

  .message-icon-card {
    width: 100%;
    min-height: 104px;
    padding: 16px 8px 14px;
    border: 1px solid #eeeeee;
    box-shadow: none;
  }

  .message-icon-card img {
    width: 44px;
    height: 44px;
  }

  .message-icon-card h3 {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.25;
  }

  .message-mode-grid,
  .message-plain-grid,
  .message-flow-grid,
  .message-category-grid,
  .activity-grid,
  .zixun-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 26px;
  }

  .message-flow-grid > div,
  .message-category-grid > div,
  .message-mode-card,
  .message-plain-grid > div,
  .zixun-process-card {
    min-height: 88px;
    padding: 14px 10px;
    font-size: 14px;
  }

  .message-flow-grid > div strong {
    font-size: 28px;
  }

  .message-flow-grid > div span {
    font-size: 13px;
  }

  .message-category-grid > div {
    gap: 8px;
    padding-left: 10px;
    justify-content: center;
    font-size: 14px;
  }

  .message-category-grid > div img,
  .zixun-process-card img {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }

  .service-subtitle {
    margin: 30px 0 16px;
  }

  .service-subtitle h3 {
    font-size: 20px;
  }

  .zixun-service-category .service-grid,
  .service-grid {
    gap: 12px;
  }

  .service-card,
  .zixun-service-category .service-card {
    min-height: 0;
  }

  .service-card img,
  .zixun-service-category .service-card img {
    aspect-ratio: 2.8 / 1;
  }

  .service-text,
  .zixun-service-category .service-text {
    padding: 16px;
  }

  .service-text h3 {
    font-size: 17px;
  }

  .service-text p {
    font-size: 13px;
  }

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

  .contact-reference-card {
    padding: 16px 12px;
    min-height: 0;
  }

  .contact-reference-card::after {
    width: 76px;
    height: 76px;
    right: 8px;
    top: 10px;
  }

  .contact-reference-icon {
    width: 38px;
    height: 38px;
  }

  .contact-reference-icon::before {
    width: 20px;
    height: 20px;
  }

  .contact-reference-card h3 {
    margin-top: 12px;
    font-size: 17px;
  }

  .contact-reference-card p {
    font-size: 13px;
    line-height: 1.55;
    word-break: break-word;
  }

  .contact-reference-map {
    min-height: 260px;
  }

  .category-tabs {
    width: 100%;
    min-height: 50px;
    height: auto;
    padding: 5px;
    gap: 5px;
  }

  .category-tabs a {
    height: 40px;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    font-size: 14px;
  }

  .category-tabs i {
    width: 5px;
    height: 5px;
  }

  .article-list {
    padding-bottom: 34px;
  }

  .article-card {
    min-height: 0;
    padding: 14px;
    margin-bottom: 10px;
  }

  .article-card h3 {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.45;
  }

  .article-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .article-card time {
    position: static;
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
  }

  .article-tag {
    margin-top: 10px;
    font-size: 12px;
  }

  .culture-card {
    padding: 22px 18px;
  }

  .culture-card h2,
  .contact-title h2,
  .honor-empty h2 {
    font-size: 21px;
  }

  .video-card {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-card img,
  .team-card-booking-overlay,
  .team-card-booking-overlay::before,
  .team-card-booking-button {
    transition: none;
  }
}

@media (max-width: 480px) {
  .team-grid,
  .message-icon-grid,
  .message-icon-grid.four,
  .message-mode-grid,
  .message-plain-grid,
  .message-flow-grid,
  .message-category-grid,
  .activity-grid,
  .zixun-process-grid,
  .contact-reference-list {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    height: clamp(190px, 58vw, 230px);
    background-image: var(--hero-mobile, var(--hero-desktop));
    background-size: cover;
    background-position: center center;
  }

  .inner-hero-text {
    top: 50%;
    left: 24px;
    right: 24px;
    transform: translateY(-50%);
    text-align: center;
  }

  .inner-hero-text h1 {
    display: inline-block;
    max-width: 100%;
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.14;
    letter-spacing: 0;
    word-spacing: 0;
    white-space: nowrap;
  }

  .inner-hero-text p {
    font-size: 15px;
  }

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

/* Portal booking */
.web-booking-section {
  padding: 72px 0 92px;
  background:
    radial-gradient(circle at 10% 0%, rgba(171, 104, 211, .11), transparent 34%),
    linear-gradient(180deg, #faf8fc 0%, #f5f2f7 100%);
}

.web-booking-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.web-booking-heading > span {
  color: #2aa69a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.web-booking-heading h2 {
  margin: 10px 0;
  color: #321f3d;
  font-size: 34px;
}

.web-booking-heading p {
  margin: 0;
  color: #756d79;
  font-size: 14px;
  line-height: 1.8;
}

.web-booking-app {
  width: min(1060px, 100%);
  min-height: 260px;
  margin: 0 auto;
}

.web-booking-loading,
.web-booking-load-error {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid #ece5ef;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  color: #756d79;
  box-shadow: 0 22px 55px rgba(60, 34, 72, .08);
}

.web-booking-loading i,
.web-booking-inline-loading i {
  width: 28px;
  height: 28px;
  display: inline-block;
  border: 3px solid #eadff0;
  border-top-color: #9b57c8;
  border-radius: 50%;
  animation: webBookingSpin .75s linear infinite;
}

@keyframes webBookingSpin {
  to { transform: rotate(360deg); }
}

.web-booking-load-error strong {
  color: #38263f;
  font-size: 20px;
}

.web-booking-load-error p {
  margin: 0;
  color: #877d8a;
}

.web-booking-load-error button,
.web-booking-success button {
  min-width: 128px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #a75fd3, #7d43a8);
  color: #fff;
  font-weight: 700;
}

.web-booking-form {
  display: grid;
  gap: 20px;
}

.web-booking-card {
  padding: 28px 30px;
  border: 1px solid #ebe4ee;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 45px rgba(59, 35, 70, .07);
}

.web-booking-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.web-booking-step > b {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #a962d5, #7f47aa);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 9px 22px rgba(130, 70, 173, .24);
}

.web-booking-step h3 {
  margin: 1px 0 5px;
  color: #34213e;
  font-size: 20px;
}

.web-booking-step p {
  margin: 0;
  color: #8a818d;
  font-size: 12px;
}

.web-booking-select-grid,
.web-booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.web-booking-select-grid label > span,
.web-booking-fields label > span {
  display: block;
  margin-bottom: 8px;
  color: #554b5a;
  font-size: 13px;
  font-weight: 700;
}

.web-booking-select-grid select,
.web-booking-fields input,
.web-booking-fields select,
.web-booking-fields textarea {
  width: 100%;
  border: 1px solid #ded5e2;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: #3c3340;
  font: inherit;
  transition: border-color .18s, box-shadow .18s;
}

.web-booking-select-grid select,
.web-booking-fields input,
.web-booking-fields select {
  height: 48px;
  padding: 0 13px;
}

.web-booking-fields textarea {
  min-height: 100px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.7;
}

.web-booking-select-grid select:focus,
.web-booking-fields input:focus,
.web-booking-fields select:focus,
.web-booking-fields textarea:focus {
  border-color: #a562ce;
  box-shadow: 0 0 0 4px rgba(165, 98, 206, .1);
}

.web-booking-select-grid label > small {
  display: block;
  margin-top: 7px;
  color: #968e99;
  font-size: 11px;
  line-height: 1.6;
}

.web-booking-fields .wide {
  grid-column: 1 / -1;
}

.web-booking-teacher {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 22px;
  padding: 15px;
  border: 1px solid #eee5f2;
  border-radius: 14px;
  background: linear-gradient(135deg, #fcf9fd, #f4faf8);
}

.web-booking-teacher img {
  width: 72px;
  height: 86px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

.web-booking-teacher > div {
  min-width: 0;
}

.web-booking-teacher > div > span {
  color: #2aa69a;
  font-size: 11px;
  font-weight: 700;
}

.web-booking-teacher h4 {
  margin: 5px 0 7px;
  color: #33223c;
  font-size: 18px;
}

.web-booking-teacher h4 small {
  margin-left: 8px;
  color: #9a58c4;
  font-size: 12px;
  font-weight: 600;
}

.web-booking-teacher p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #786f7b;
  font-size: 12px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.web-booking-dates {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.web-booking-dates button {
  min-width: 0;
  padding: 11px 4px;
  border: 1px solid #e2dbe5;
  border-radius: 11px;
  background: #fff;
  color: #675e6b;
}

.web-booking-dates button span,
.web-booking-dates button small {
  display: block;
  font-size: 11px;
}

.web-booking-dates button strong {
  display: block;
  margin: 5px 0;
  font-size: 18px;
}

.web-booking-dates button.active,
.web-booking-slots button.active {
  border-color: #9d58c8;
  background: linear-gradient(135deg, #aa64d5, #884bb4);
  color: #fff;
  box-shadow: 0 8px 20px rgba(137, 76, 181, .2);
}

.web-booking-slot-head {
  display: flex;
  justify-content: space-between;
  margin: 24px 0 13px;
  color: #5e5562;
  font-size: 13px;
  font-weight: 700;
}

.web-booking-slot-head small {
  color: #99909c;
  font-size: 11px;
  font-weight: 400;
}

.web-booking-slots {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  min-height: 46px;
}

.web-booking-slots button {
  height: 42px;
  border: 1px solid #ded6e2;
  border-radius: 9px;
  background: #fff;
  color: #5b515f;
}

.web-booking-inline-loading,
.web-booking-empty-slots {
  grid-column: 1 / -1;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: #faf8fb;
  color: #948b97;
  font-size: 12px;
}

.web-booking-inline-loading i {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.web-booking-consent {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 5px;
  margin: 20px 0 0;
  color: #756d78;
  font-size: 12px;
  line-height: 1.65;
}

.web-booking-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 0 5px 0 0;
  accent-color: #9250bd;
}

.web-booking-consent label {
  cursor: pointer;
}

.web-booking-consent button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(135, 68, 176, .35);
  background: none;
  color: #8644af;
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  cursor: pointer;
}

.web-booking-consent button:hover,
.web-booking-consent button:focus-visible {
  border-bottom-color: #8644af;
  color: #6d2f96;
}

.web-booking-policy-modal {
  position: fixed;
  z-index: 10050;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(35, 20, 41, .48);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.web-booking-policy-panel {
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 30px 80px rgba(34, 16, 42, .28);
  animation: web-booking-policy-in .28s cubic-bezier(.2, .75, .25, 1);
}

.web-booking-policy-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid #eee7f1;
  background: linear-gradient(135deg, rgba(251, 247, 253, .96), rgba(244, 235, 249, .9));
}

.web-booking-policy-panel > header span {
  color: #9b68b7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.web-booking-policy-panel > header h2 {
  margin: 5px 0 0;
  color: #23162a;
  font-size: 23px;
}

.web-booking-policy-close {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid #e5d9ea;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  color: #7b5c87;
  font-size: 24px;
  line-height: 1;
}

.web-booking-policy-content {
  padding: 24px 28px;
  overflow-y: auto;
}

.web-booking-policy-intro {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee7f1;
  color: #5f5563;
  font-size: 13px;
  line-height: 1.9;
  text-indent: 2em;
}

.web-booking-policy-section + .web-booking-policy-section {
  margin-top: 20px;
}

.web-booking-policy-section h3 {
  margin: 0 0 9px;
  color: #2f2135;
  font-size: 14px;
  line-height: 1.6;
}

.web-booking-policy-section p,
.web-booking-policy-section ol {
  margin: 0;
  color: #6f6673;
  font-size: 13px;
  line-height: 1.9;
}

.web-booking-policy-section ol {
  padding-left: 1.7em;
}

.web-booking-policy-section li {
  padding-left: .25em;
}

.web-booking-policy-section li + li {
  margin-top: 5px;
}

.web-booking-policy-section > p {
  text-indent: 2em;
}

.web-booking-policy-panel > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  border-top: 1px solid #eee7f1;
  background: #fcfafc;
}

.web-booking-policy-panel > footer p {
  margin: 0;
  color: #918794;
  font-size: 12px;
}

.web-booking-policy-panel > footer button {
  min-width: 118px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #a85fd2, #8044ab);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(126, 67, 168, .22);
}

@keyframes web-booking-policy-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.web-booking-error {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 9px;
  background: #fff1f2;
  color: #c24f62;
  font-size: 12px;
}

.web-booking-submit {
  width: 180px;
  height: 48px;
  display: block;
  margin: 22px 0 0 auto;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #aa62d4, #7d43a8);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(126, 67, 168, .25);
}

.web-booking-submit:disabled {
  cursor: wait;
  opacity: .65;
}

.web-booking-success {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 24px;
  border: 1px solid #e7dfeb;
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 22px 55px rgba(60, 34, 72, .09);
}

.web-booking-success-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 50%;
  background: #e9f8f4;
  color: #24a695;
  font-size: 30px;
  font-weight: 700;
}

.web-booking-success > span {
  color: #24a695;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.web-booking-success h2 {
  margin: 9px 0 8px;
  color: #34213e;
}

.web-booking-success p {
  margin: 0;
  color: #716875;
}

.web-booking-success-number {
  margin: 18px 0;
  padding: 10px 15px;
  border-radius: 9px;
  background: #f7f3f9;
  color: #79508e;
  font: 13px Consolas, monospace;
}

.web-booking-success .web-booking-success-tip {
  margin-bottom: 22px;
  color: #99909c;
  font-size: 12px;
}

@media (max-width: 900px) {
  .web-booking-dates {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .web-booking-slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .web-booking-section {
    padding: 42px 0 64px;
  }

  .web-booking-heading {
    margin-bottom: 24px;
  }

  .web-booking-heading h2 {
    font-size: 27px;
  }

  .web-booking-card {
    padding: 21px 16px;
    border-radius: 16px;
  }

  .web-booking-select-grid,
  .web-booking-fields {
    grid-template-columns: 1fr;
  }

  .web-booking-fields .wide {
    grid-column: auto;
  }

  .web-booking-dates {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
    scroll-snap-type: x mandatory;
  }

  .web-booking-dates button {
    min-width: 70px;
    scroll-snap-align: start;
  }

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

  .web-booking-submit {
    width: 100%;
  }

  .web-booking-policy-modal {
    align-items: end;
    padding: 12px;
  }

  .web-booking-policy-panel {
    max-height: calc(100vh - 24px);
    border-radius: 20px;
  }

  .web-booking-policy-panel > header {
    padding: 20px 20px 16px;
  }

  .web-booking-policy-panel > header h2 {
    font-size: 20px;
  }

  .web-booking-policy-content {
    padding: 20px;
  }

  .web-booking-policy-panel > footer {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px 20px;
  }

  .web-booking-policy-panel > footer button {
    width: 100%;
  }
}
