@import url("../assets/fonts/iconfont.css");

:root {
  --brand: #9d2322;
  --brand-hover: #8d1f1e;

  --navy: #061d3d;
  --navy-deep: #01193f;
  --navy-soft: #0b274a;
  --text: #13243d;
  --muted: #757f95;
  --line: #e9edf2;
  --white: #ffffff;

  --orange: var(--brand);
  --orange-dark: var(--brand-hover);
  --orange-soft: color-mix(in srgb, var(--brand) 11%, transparent);
  --orange-faint: color-mix(in srgb, var(--brand) 45%, transparent);
  --orange-muted: color-mix(in srgb, var(--brand) 50%, transparent);
  --orange-ring: color-mix(in srgb, var(--brand) 55%, transparent);
  --orange-overlay: color-mix(in srgb, var(--brand) 92%, transparent);
  --header-offset: 124px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Microsoft YaHei", "PingFang SC", Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}
li,ul{list-style:none;padding: 0px;margin: 0px}
button,
input {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}
a:hover{color: #B71514}
img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1176px, calc(100% - 88px));
  margin-inline: auto;
}

.section-pad {
  padding: 90px 0;
}

.topbar {
  position: relative;
  z-index: 110;
  height: 52px;
  /* border-bottom: 2px solid var(--orange); */
  color: rgba(255, 255, 255, 0.48);
  background: var(--navy-deep);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 13px;
}

.topbar__contact {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.topbar__contact span::first-letter {
  color: var(--orange);
}

.header-dock {
  position: relative;
  z-index: 200;
  top: 0;
  width: 100%;
  height: 100px;
  margin-bottom: -100px;
  background: transparent;
  transition: background-color 280ms ease, box-shadow 280ms ease, height 280ms ease;
}

.site-header.shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 100px;
  padding: 0 48px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.99);
  /* border-radius: 0 0 5px 5px; */
  box-shadow: 0 8px 20px rgba(3, 24, 52, 0.08);
  transition: height 280ms ease, border-radius 280ms ease, box-shadow 280ms ease, background-color 280ms ease;
}

.brand img {
  width: 370px;
  height: auto;
  transition: width 280ms ease;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  height: 100%;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  transition: all 500ms ease-in-out;
}

.main-nav a:hover {
  color: var(--orange);
}

.main-nav__home i {
  position: absolute;
  top: 3px;
  left: 50%;
  color: var(--orange);
  font-size: 14px;
  font-style: normal;
  transform: translateX(-50%) rotate(45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  overflow: visible;
}

.header-search,
.side-menu {
  position: relative;
}

.header-search summary,
.side-menu summary {
  display: grid;
  width: 34px;
  height: 52px;
  list-style: none;
  place-items: center;
  cursor: pointer;
  user-select: none;
}

.header-search summary::-webkit-details-marker,
.side-menu summary::-webkit-details-marker {
  display: none;
}

.header-search summary {
  font-size: 30px;
  line-height: 1;
}

.side-menu summary {
  font-size: 34px;
  line-height: 1;
}

.header-search__panel {
  position: absolute;
  top: calc(100% + 18px);
  right: -140px;
  width: 320px;
  padding: 20px;
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(3, 24, 52, 0.18);
}

.header-search__panel label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 700;
}

.header-search__panel input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  outline-color: var(--orange);
}

.side-menu nav {
  position: absolute;
  top: calc(100% + 18px);
  right: -16px;
  display: grid;
  width: 240px;
  padding: 14px;
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 18px 50px rgba(3, 24, 52, 0.25);
}

.side-menu nav a {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.consult-button,
.orange-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  font-weight: 700;
  cursor: pointer;
}

.consult-button:hover,
.orange-button:hover {
  background: var(--orange-dark);
}

.consult-button {
  min-width: 132px;
  height: 50px;
  padding: 0 20px;
  font-size: 15px;
}

.lang-switch {
  position: relative;
  z-index: 5;
}

.lang-switch__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 44px;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(19, 36, 61, 0.1);
  border-radius: 999px;
  color: var(--navy-deep);
  background: #f4f6fa;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.lang-switch__button:hover,
.lang-switch.is-open .lang-switch__button {
  background: #ffffff;
  border-color: color-mix(in srgb, var(--brand) 35%, #e4eaf1);
  box-shadow: 0 8px 20px rgba(3, 24, 52, 0.08);
}

.lang-switch__flag {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(19, 36, 61, 0.12);
}

.lang-switch__label {
  line-height: 1;
}

.lang-switch__button .myfont {
  margin-left: 2px;
  color: #8a93a3;
  font-size: 10px;
  transition: transform 220ms ease, color 200ms ease;
}

.lang-switch.is-open .lang-switch__button .myfont {
  color: var(--orange);
  transform: rotate(180deg);
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 240;
  min-width: 176px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(19, 36, 61, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(3, 24, 52, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.lang-switch.is-open .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  color: var(--navy-deep);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.lang-switch__option img {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(19, 36, 61, 0.12);
}

.lang-switch__option:hover {
  color: var(--orange);
  background: color-mix(in srgb, var(--brand) 8%, #ffffff);
}

.lang-switch__option.is-active {
  color: var(--orange);
  background: color-mix(in srgb, var(--brand) 10%, #ffffff);
}

.lang-switch__option.is-active::after {
  margin-left: auto;
  color: var(--orange);
  font-size: 12px;
  content: "✓";
}

.orange-button {
  min-width: 138px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

.hero {
  position: relative;
  z-index: 1;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy-deep);
}

.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-track__rail {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.hero-slide {
  position: relative;
  inset: auto;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 100%;
  visibility: visible;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}

.hero-slide.is-active {
  pointer-events: auto;
}

.hero-slide__content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-left: 60px;
  padding-bottom: 48px;
}

.hero__eyebrow {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  line-height: 1.15;
  letter-spacing: 0.025em;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero__description {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.9;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  margin-top: 31px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 128px;
  height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-weight: 700;
}

.hero__button--primary {
  border-color: var(--orange);
  background: var(--orange);
}

.hero__button--ghost {
  background: rgba(4, 28, 58, 0.5);
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-arrow__icon {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.slider-arrow--left .slider-arrow__icon {
  margin-left: 5px;
  transform: rotate(-135deg);
}

.slider-arrow--right .slider-arrow__icon {
  margin-right: 5px;
  transform: rotate(45deg);
}

.slider-arrow:hover {
  background: var(--orange);
}

.slider-arrow--left {
  left: 40px;
}

.slider-arrow--right {
  right: 40px;
}

.feature-area {
  position: relative;
  padding: 88px 0 92px;
  color: var(--navy-deep);
  background: #f6f7fa;
}

.feature-intro {
  margin-bottom: 56px;
}

.feature-intro .section-kicker {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 20px;
}

.feature-intro h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.24;
}

.feature-intro h2 em {
  color: var(--orange);
  font-style: normal;
}

/* .feature-intro h2::after {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 20px;
  background: var(--orange);
  content: "";
} */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-card {
  position: relative;
  min-height: 0;
  padding: 28px 36px 28px 0;
  overflow: visible;
  border: 0;
  border-right: 1px solid #e6ebf1;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), background-color 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.feature-card:first-child {
  padding-left: 0;
}

.feature-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-card:nth-child(n + 2) {
  padding-left: 36px;
}

.feature-card::before {
  position: absolute;
  z-index: -1;
  inset: 12px 12px 12px 8px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(3, 24, 52, 0.08);
  opacity: 0;
  content: "";
  transition: opacity 280ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:first-child::before {
  left: -12px;
}

.feature-card:last-child::before {
  right: -12px;
}

.feature-card__icon {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--orange);
  background: none;
  box-shadow: none;
  font-size: 68px !important;
  line-height: 1;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), color 280ms ease;
}

.feature-card h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 280ms ease;
}

.feature-card h2::after {
  display: block;
  width: 32px;
  height: 3px;
  margin: 18px 0 18px;
  background: var(--orange);
  content: "";
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  transition: color 280ms ease;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 608px;
}
/* 
.about-visual::after {
  position: absolute;
  z-index: -1;
  inset: 36px -18px -18px 18px;
  border: 4px solid var(--orange);
  content: "";
} */

.about-visual__accent {
  position: absolute;
  z-index: -1;
  top: 58px;
  bottom: 30px;
  left: -27px;
  width: 60px;
  background: var(--orange);
  transform: rotate(-4deg);
}

.about-visual > img {
  width: 100%;
  height: 608px;
  object-fit: cover;
}

.about-visual__badge {
  position: absolute;
  bottom: 24px;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 12px;
  
  padding: 12px 18px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(3, 24, 52, 0.15);
}

.about-visual__badge > span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 3px solid var(--orange);
  color: var(--orange);
  font-size: 36px;
}

.about-visual__badge strong {
  display: grid;
  font-size: 17px;
}

.about-visual__badge small {
  margin-top: 6px;
  font-size: 14px;
}

.about-visual{position: relative}
.about-visual::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  width: 100px;
  height: 100px;
  background:#BD2524;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: -1
}
.about-visual::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 100px;
  height: 100px;
  background:#BD2524;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: -1
}
.about-visual__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 14px 20px 14px 20px;
  background: #fff;
  border: 2px solid #BD2524;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.about-visual__badge-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}
.about-visual__badge-icon img {
  width: 45px;
  height: 45px;
}
.about-visual__badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.about-visual__badge-text strong {
  font-size: 20px;
  font-weight: 700;
  color: #FB5A0F;
}
.about-visual__badge-text span {
  font-size: 12px;
  color: #666;
}

.section-kicker {
  margin: 0 0 11px;
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0.18em;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.28;
}

.section-heading h2 em,
.about-copy h2 em {
  color: var(--orange);
  font-style: normal;
}

.about-copy__lead {
  margin: 24px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-copy ul {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-weight: 600;
}

.about-copy li::before {
  margin-right: 10px;
  color: var(--orange);
  font-family: "myfont", sans-serif;
  content: "\e74d";
}

.section-heading--center {
  text-align: center;
}

.section-heading--light h2 {
  color: #ffffff;
}

.heading-mark {
  position: relative;
  display: block;
  width: 90px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--orange) 0 42%, transparent 42% 50%, var(--orange) 50% 100%);
}

.service-area {
  position: relative;
  color: var(--text);
  background: linear-gradient(180deg, #f8f5f1 0%, #f4f0ea 100%);
}

.service-area .section-heading {
  margin-bottom: 44px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 32px 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(19, 36, 61, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 280ms ease, background-color 280ms ease;
}

.service-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-item__index {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-variant-numeric: tabular-nums;
  transition: letter-spacing 280ms ease;
}

.service-item__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-item__icon {
  display: grid;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin: 0;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand) 38%, #e4dcd2);
  border-radius: 50%;
  color: var(--orange);
  background: transparent;
  font-size: 22px;
  transition: color 280ms ease, background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-item h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 280ms ease;
}

.service-item p {
  flex: 1;
  min-height: 0;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  transition: color 280ms ease;
}

.service-item .orange-button {
  align-self: center;
  min-width: 0;
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
}

.project-area {
  padding: 104px 0;
  background: #f7f8fa;
}

.project-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.project-heading .section-heading {
  margin: 0;
  text-align: left;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  background: transparent;
}

.case-tabs button {
  min-width: 0;
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--navy-deep);
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.case-tabs button:hover {
  color: var(--orange);
  background: color-mix(in srgb, var(--brand) 8%, #ffffff);
}

.case-tabs .is-active,
.case-tabs .is-active:hover {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--brand) 28%, transparent);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.article-grid[hidden] {
  display: none !important;
}

.article-card {
  padding: 20px 20px 22px;
  overflow: visible;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(3, 24, 52, 0.075);
  transition: box-shadow 320ms ease, transform 320ms ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(3, 24, 52, 0.16);
}

.article-card__image-wrap {
  height: 177px;
  overflow: hidden;
}

.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.article-card:hover .article-card__image {
  transform: scale(1.055);
}

.article-card__meta {
  display: flex;
  gap: 13px;
  padding: 16px 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
}

.article-card__meta span::first-letter {
  color: var(--orange);
}

.article-card h3 {
  display: -webkit-box;
  min-height: 58px;
  margin: 15px 0 21px;
  overflow: hidden;
  color: var(--text);
  font-size: 19px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-card .orange-button {
  display: flex;
  min-width: 0;
  max-width: 120px;
  min-height: 34px;
  margin: 0 auto;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
}

.project-area .article-card {
  padding: 16px 16px 20px;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(3, 24, 52, 0.08);
}

.project-area .article-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 44px rgba(3, 24, 52, 0.14);
}

.project-area .article-card__image-wrap {
  height: 172px;
  border-radius: 6px;
}

.project-area .article-card__meta {
  padding: 14px 0 12px;
  color: var(--text);
}

.project-area .article-card__meta i {
  color: var(--orange);
}

.project-area .article-card__meta span::first-letter {
  color: inherit;
}

.project-area .article-card__meta,
.project-area .article-card h3 {
  padding-right: 0;
  padding-left: 0;
}

.project-area .article-card h3 {
  color: var(--navy-deep);
}

.project-area .article-card .orange-button {
  display: flex;
  width: fit-content;
  max-width: none;
  min-width: 0;
  min-height: 34px;
  margin: 0 auto;
  padding: 0 14px;
  font-size: 12px;
}

.counter-area {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  color: #ffffff;
	 background:
    linear-gradient(var(--orange-overlay), var(--orange-overlay)),
    url("../assets/images/bg-full-01.png") center / cover no-repeat,
    var(--orange);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.counter-item {
  display: grid;
  place-items: center;
  text-align: center;
}

.counter-item__icon {
  display: grid;
  width: 110px;
  height: 110px;
  margin-top: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: url("../assets/icons/counter-frame.svg") center / contain no-repeat;
}

.counter-item__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.counter-item strong {
  margin-top: 12px;
  font-size: 54px;
  line-height: 1;
}

.counter-item p {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.process-area {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(90% 70% at 8% -10%, color-mix(in srgb, var(--brand) 26%, transparent), transparent 56%),
    radial-gradient(70% 60% at 100% 110%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 50%),
    linear-gradient(180deg, rgba(11, 23, 48, 0.55) 0%, rgba(1, 25, 63, 0.95) 52%, rgba(7, 18, 34, 0.55) 100%),
    url("../assets/bg/9.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.process-area .section-kicker {
  color: color-mix(in srgb, var(--brand) 70%, #ffffff);
}

.process-area .section-heading h2 {
  color: #ffffff;
}

.process-copy__lead {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.process-timeline::before {
  display: none;
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 32px 26px 28px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text);
  text-align: left;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  cursor: default;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.process-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--brand);
  content: "";
}

.process-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(100% + 10px);
  width: 38px;
  height: 16px;
  background: #ffffff;
  clip-path: polygon(0 36%, 58% 36%, 58% 0, 100% 50%, 58% 100%, 58% 64%, 0 64%);
  opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  transform: translateY(-50%);
  content: "";
}

.process-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.process-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-size: 24px !important;
  line-height: 1;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand) 10%, #ffffff), 0 10px 22px color-mix(in srgb, var(--brand) 28%, transparent);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.process-card__number {
  color: transparent;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  -webkit-text-stroke: 1.4px color-mix(in srgb, var(--brand) 28%, #cfcfcf);
  transition: -webkit-text-stroke-color 280ms ease;
}

.process-card h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 280ms ease;
}

.process-card p {
  margin: 0;
  color: #6a7386;
  font-size: 16px;
  line-height: 1.85;
  transition: color 280ms ease;
}

.faq-area {
  color: var(--navy-deep);
  background: #ffffff;
}

.faq-area .section-heading {
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.faq-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 12px;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 20px 20px 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(19, 36, 61, 0.08);
  border-radius: 4px;
  color: var(--navy-deep);
  background: #f7f9fc;
  text-decoration: none;
  box-shadow: none;
  transition: color 280ms ease, background 280ms ease, border-color 280ms ease, box-shadow 280ms ease, padding 280ms ease;
}

.faq-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
  transition: height 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:hover {
  padding-left: 24px;
  color: var(--navy-deep);
  background: linear-gradient(90deg, var(--orange-soft), transparent 78%);
  border-color: color-mix(in srgb, var(--brand) 35%, #e8edf2);
}

.faq-item:hover::before {
  height: 48%;
}

.faq-item__index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, #e4dcd2);
  border-radius: 50%;
  color: var(--orange);
  background: color-mix(in srgb, var(--brand) 10%, #ffffff);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  transition: color 280ms ease, background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.faq-item:hover .faq-item__index {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 6px 14px color-mix(in srgb, var(--brand) 24%, transparent);
}

.faq-item__question {
  color: inherit;
font-weight: bold!important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  transition: color 280ms ease, letter-spacing 280ms ease;
}

.faq-item:hover .faq-item__question {
  color: var(--orange);
  letter-spacing: 0.04em;
}

.faq-item__arrow {
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid #9aa3af;
  border-right: 1.5px solid #9aa3af;
  transform: rotate(45deg);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease;
}

.faq-item:hover .faq-item__arrow {
  border-color: var(--orange);
  transform: rotate(45deg) translate(6px, -6px);
}

.encyclopedia-area {
  padding: 110px 0;
background-image: url(../assets/images/bg.png);
background-size: cover;

}

.encyclopedia-area .section-heading,
.news-area .section-heading {
  margin-bottom: 56px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 40px;
}

.carousel-dots i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.carousel-dots i:last-child {
  background: var(--orange);
}

.news-area {
  padding: 107px 0;
  background: #ffffff;
}

.partner-brands {
  padding: 48px 0 40px;
  overflow: hidden;
  background: #ffffff;
}

.partner-brands__title {
  margin: 0 0 22px;
  color: #1a1a1a;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.partner-brands__viewport {
  display: grid;
  gap: 8px;
}

.partner-brands__row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partner-brands__track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding-inline: 14px;
  animation: partner-marquee 36s linear infinite;
}

.partner-brands__row.is-reverse .partner-brands__track {
  animation-direction: reverse;
  animation-duration: 42s;
}

.partner-brands__row:hover .partner-brands__track {
  animation-play-state: paused;
}

.partner-brands__logo {
  display: grid;
  flex: 0 0 auto;
  width: 118px;
  height: 52px;
  place-items: center;
  align-content: center;
  gap: 2px;
}

.partner-brands__logo strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.partner-brands__logo span {
  color: #9aa3af;
  font-size: 10px;
  letter-spacing: 0.06em;
}

@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.friend-links {
  padding: 32px 0 36px;
  background: #f7f8fa;
}

.friend-links__inner {
  display: grid;
  gap: 16px;
}

.friend-links__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 800;
}

.friend-links__title::before {
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.friend-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.friend-links__list a,
.friend-links__list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #e4eaf1;
  border-radius: 999px;
  color: #5d6a80;
  background: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.friend-links__list a:hover,
.friend-links__list span:hover {
  color: var(--orange);
  background: color-mix(in srgb, var(--brand) 8%, #ffffff);
  border-color: color-mix(in srgb, var(--brand) 38%, #e4eaf1);
  box-shadow: 0 8px 18px rgba(3, 24, 52, 0.08);
  transform: translateY(-2px);
}

.footer {
  margin-top: 0;
  color: var(--navy-deep);
  background: color-mix(in srgb, var(--brand) 5%, #f8f6f5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.66fr 0.78fr 1.05fr;
  gap: 45px;
  padding-top: 105px;
  padding-bottom: 87px;
}

.footer-brand__identity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-brand__identity img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
}

.footer-brand__identity strong {
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.footer-brand > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.footer-brand ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-brand li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4e5a70;
  font-size: 14px;
  line-height: 1.65;
}

.footer-brand li span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1;
  color: #ffffff;
  background: var(--orange);
  line-height: 1;
}

.footer-brand li span .myfont {
  display: block;
  font-size: 15px;
  line-height: 1;
}

.footer h3 {
  position: relative;
  margin: 4px 0 34px;
  padding-bottom: 20px;
  color: var(--navy-deep);
  font-size: 19px;
  font-weight: 500;
}

.footer h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0 35%, #e6e0de 35% 100%);
  content: "";
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  margin-bottom: 15px;
  color: #5d6a80;
  font-size: 14px;
}

.footer-links a::first-letter {
  color: var(--orange);
}

.footer-contact__wechat {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 13px;
  align-items: start;
  margin-bottom: 16px;
}

.footer-contact__wechat p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact__wechat img {
  width: 96px;
  height: 96px;
}

.footer-contact label {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.footer-contact input {
  width: 100%;
  height: 44px;
  margin-bottom: 14px;
  padding: 0 16px;
  border: 0;
  color: var(--text);
  background: #ffffff;
  outline-color: var(--orange);
}

.footer-contact .orange-button {
  min-width: 120px;
  min-height: 45px;
}

.footer-bottom {
  position: relative;
  overflow: hidden;
  min-height: 84px;
  border-top: 1px solid color-mix(in srgb, var(--brand) 12%, #e8e4e3);
  border-bottom: 0;
  background: color-mix(in srgb, var(--brand) 8%, #f4f1f0);
}

/* .footer-bottom::before,
.footer-bottom::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 145px;
  background: var(--orange);
  content: "";
} */

/* .footer-bottom::before {
  left: -30px;
  transform: skewX(30deg);
}

.footer-bottom::after {
  right: -30px;
  transform: skewX(-30deg);
} */

.footer-bottom__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #6a7386;
  font-size: 13px;
}

.mobile-contact-bar,
.mobile-phone-float {
  display: none;
}

/* 原站交互与动画校准 */
/* 页头滚动吸顶 */
.header-dock.is-scrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  overflow: visible;
  background: transparent;
  animation: header-slide-down 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-dock.is-scrolled .site-header {
  height: 100px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 20px rgba(3, 24, 52, 0.08);
}

.header-dock.is-scrolled .brand img {
  width: 350px;
}

.main-nav a > .myfont {
  margin-left: 5px;
  font-size: 12px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  perspective: 600px;
}

.nav-dropdown > a {
  height: 100%;
}

.nav-dropdown__menu {
  position: absolute;
  z-index: 150;
  top: 80%;
  left: -24px;
  display: grid;
  visibility: hidden;
  width: 220px;
  padding: 12px 0;
  border-top: 3px solid var(--orange);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(3, 24, 52, 0.14);
  opacity: 0;
  transform: rotateX(-75deg);
  transform-origin: 0 0;
  transition: all 300ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  transform: rotateX(0);
}

.nav-dropdown__menu a {
  position: relative;
  display: block;
  height: auto;
  min-height: 40px;
  padding: 9px 25px;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}

.nav-dropdown__menu a::before {
  margin-right: 7px;
  color: var(--orange);
  content: "➔";
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}

.nav-dropdown__menu a:hover {
  padding-left: 32px;
  color: var(--orange);
}

.nav-dropdown__menu a:hover::before {
  opacity: 1;
}

.main-nav__home i img {
  width: 24px;
  height: 24px;
}

.header-actions {
  position: relative;
  overflow: visible;
}

.header-action-button {
  display: grid;
  width: 36px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 0;
  color: var(--navy-deep);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.header-action-button .myfont {
  font-size: 24px;
}

.header-action-button__mobile-icon {
  display: none;
}

.header-search-panel,
.header-menu-panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 18px);
  right: -16px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 280ms ease, visibility 280ms ease, transform 280ms ease;
}

.header-search-panel.is-open,
.header-menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-search-panel {
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  gap: 12px;
  width: 392px;
  height: auto;
  padding: 18px 18px 16px;
  overflow: visible;
  border: 1px solid rgba(19, 36, 61, 0.07);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(3, 24, 52, 0.14);
}

.header-search-panel::before {
  position: absolute;
  top: -6px;
  right: 15px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(19, 36, 61, 0.07);
  border-left: 1px solid rgba(19, 36, 61, 0.07);
  background: #ffffff;
  transform: rotate(45deg);
  content: "";
}

.header-search-panel__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 800;
}

.header-search-panel__title::before {
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.header-search-panel__field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 5px 5px 5px 16px;
  border: 1px solid #e4eaf1;
  border-radius: 999px;
  background: #f6f7fa;
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.header-search-panel__field:focus-within {
  border-color: color-mix(in srgb, var(--brand) 42%, #e4eaf1);
  background: #ffffff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 10%, transparent);
}

.header-search-panel input {
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 0;
  border: 0;
  color: var(--navy-deep);
  background: transparent;
  font-size: 14px;
  outline: none;
}

.header-search-panel input::placeholder {
  color: #8b95a8;
}

.header-search-panel input[type="search"]::-webkit-search-decoration,
.header-search-panel input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.header-search-panel button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 86px;
  height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.header-search-panel button:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--brand) 28%, transparent);
}

.header-search-panel button .btn-arrow {
  width: 9px;
  height: 9px;
}

.header-menu-panel {
  width: 250px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--navy-deep);
  box-shadow: 0 18px 50px rgba(3, 24, 52, 0.25);
}

.header-menu-item__row {
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  min-height: 43px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-menu-item__row > a {
  display: flex;
  min-height: 43px;
  align-items: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.header-menu-item__row > button {
  height: 38px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.header-menu-item__row > button i {
  display: inline-block;
  transition: transform 300ms ease;
}

.header-menu-item__row > button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.header-submenu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  transition: max-height 450ms ease;
}

.header-submenu.is-open {
  max-height: 340px;
}

.header-submenu a {
  display: flex;
  min-height: 34px;
  align-items: center;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.header-menu-backdrop {
  position: fixed;
  z-index: 990;
  inset: 0;
  visibility: hidden;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease-in-out, visibility 500ms ease-in-out;
}

.header-dock:has(.header-menu-panel.is-open),
.header-dock:has(.header-search-panel.is-open) {
  z-index: 1000;
  animation: none;
}

.header-menu-backdrop.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.header-menu-panel {
  position: fixed;
  z-index: 991;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 450px;
  padding: 38px 40px;
  overflow-y: auto;
  color: var(--navy-deep);
  background: #ffffff;
  box-shadow: -12px 0 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 500ms ease-in-out, visibility 500ms ease-in-out, transform 500ms ease-in-out;
}

.header-menu-panel.is-open {
  opacity: 1;
  transform: translateX(0);
}

.header-menu-panel__mobile {
  display: none;
}

.header-menu-panel__close {
  position: absolute;
  top: 42px;
  right: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0 0 2px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.header-menu-panel__logo {
  width: 340px;
  max-width: calc(100% - 44px);
  margin-bottom: 36px;
}

.header-menu-panel__sidebar h2 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 24px;
  font-weight: 500;
}

.header-menu-panel__sidebar p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.header-menu-panel__sidebar dl {
  margin: 0 0 25px;
}

.header-menu-panel__sidebar dt {
  margin-top: 13px;
  font-size: 15px;
  font-weight: 800;
}

.header-menu-panel__sidebar dd {
  margin: 5px 0 0;
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 600;
}

.header-menu-panel__sidebar dd i {
  margin-right: 7px;
  color: var(--orange);
}

.header-menu-panel__wechat {
  width: 180px;
}

.hero-track {
  position: relative;
}

.hero-slide {
  position: relative;
  inset: auto;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  visibility: visible;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}

.hero-slide.is-active {
  pointer-events: auto;
}

.hero-slide .hero__eyebrow,
.hero-slide h1,
.hero-slide .hero__description,
.hero-slide .hero__buttons {
  opacity: 0;
}

.hero-slide.is-active .hero__eyebrow {
  animation: fade-in-up 1s 250ms ease both;
}

.hero-slide.is-active h1 {
  animation: fade-in-right 1s 500ms ease both;
}

.hero-slide.is-active .hero__description {
  animation: fade-in-left 1s 750ms ease both;
}

.hero-slide.is-active .hero__buttons {
  animation: fade-in-up 1s 1s ease both;
}

.hero__button,
.slider-arrow {
  transition: all 500ms ease-in-out;
}

.hero__button--primary:hover {
  color: #ffffff;
  border-color: var(--orange);
  background: var(--orange);
}

.hero__button--ghost {
  color: var(--orange);
  border-color: #ffffff;
  background: #ffffff;
}

.hero__button--ghost:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--brand) 0%, #c4453c 52%, var(--brand) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 10px 28px color-mix(in srgb, var(--brand) 42%, transparent);
  transform: translateY(-2px);
}

.slider-arrow:hover {
  color: var(--orange);
  background: #ffffff;
}

.feature-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover .feature-card__icon {
  color: var(--brand);
  background: none;
  box-shadow: none;
  transform: translateY(-6px) scale(1.08);
}

.feature-card:hover h2 {
  color: var(--brand);
}

.feature-card:hover h2::after {
  width: 72px;
}

.feature-card:hover p {
  color: #4a5568;
}

.about-copy li::before {
  font-family: myfont;
  content: "\e74d";
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--brand) 40%, #e4dcd2);
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(3, 24, 52, 0.08);
}

.service-item:hover::before {
  width: 100%;
}

.service-item:hover .service-item__index {
  letter-spacing: 0.28em;
}

.service-item:hover .service-item__icon {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--brand) 28%, transparent), 0 0 0 6px color-mix(in srgb, var(--brand) 12%, transparent);
  transform: scale(1.08);
}

.service-item:hover h3 {
  color: var(--orange);
}

.service-item:hover p {
  color: #5c6576;
}

.service-item:hover .orange-button {
  transform: translateY(-2px);
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--brand) 22%, #ffffff);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.24);
}

.process-card:hover .process-card__icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand) 16%, #ffffff), 0 14px 28px color-mix(in srgb, var(--brand) 36%, transparent);
}

.process-card:hover .process-card__number {
  -webkit-text-stroke-color: var(--brand);
}

.process-card:hover h3 {
  color: var(--orange);
}

.process-card:hover p {
  color: #5c6576;
}

.service-item,
.service-item__icon,
.process-card__number {
  transition: all 280ms ease-in-out;
}

.article-card,
.article-card h3,
.article-card .orange-button {
  transition: all 500ms ease-in-out;
}

.article-card__image {
  transition: transform 300ms ease-out;
}

.article-card:hover .article-card__image {
  transform: scale(1.1);
}

.article-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.article-card__meta i {
  color: var(--orange);
}

.counter-item {
  position: relative;
  z-index: 1;
}

.counter-item__icon img {
  width: 44px;
  height: 44px;
}

.counter-item strong {
  font-size: 50px;
  letter-spacing: 2px;
}

.counter-item p {
  font-size: 20px;
}

.article-carousel,
.article-carousel__viewport {
  overflow: hidden;
}

.article-carousel__track {
  display: flex;
  gap: 30px;
  transition: transform 250ms ease;
  will-change: transform;
}

.article-carousel__item {
  flex: 0 0 var(--item-basis);
  min-width: 0;
}

.article-carousel__item .article-card {
  height: 100%;
}

.carousel-dots {
  align-items: center;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 500ms ease-in-out;
}

.carousel-dots button.is-active {
  background: var(--orange);
}

.news-area .article-grid > div {
  min-width: 0;
}

.news-area .article-grid > div .article-card {
  height: 100%;
}

.motion-ready [data-reveal] {
  visibility: hidden;
  opacity: 0;
}

.motion-ready [data-reveal].is-revealed {
  visibility: visible;
  opacity: 1;
  animation-duration: 1s;
  animation-delay: var(--reveal-delay, 0s);
  animation-fill-mode: backwards;
}

[data-reveal-delay="1"] {
  --reveal-delay: 0.25s;
}

[data-reveal-delay="2"] {
  --reveal-delay: 0.5s;
}

[data-reveal-delay="3"] {
  --reveal-delay: 0.75s;
}

[data-reveal-delay="4"] {
  --reveal-delay: 1s;
}

.consult-button,
.orange-button,
.hero__button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  transform: none;
  transition: color 420ms ease, background 420ms ease, border-color 420ms ease, box-shadow 420ms ease, transform 420ms ease;
}

.btn-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: rotate(45deg);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.consult-button::before,
.orange-button::before,
.hero__button::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  transform: translateX(-160%) skewX(-20deg);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.consult-button:hover,
.orange-button:hover {
  color: #ffffff;
  background: linear-gradient(120deg, #01193f 0%, #16325c 48%, #01193f 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 10px 28px rgba(1, 25, 63, 0.28), 0 0 22px color-mix(in srgb, var(--brand) 32%, transparent);
  transform: translateY(-2px);
}

.consult-button:hover::before,
.orange-button:hover::before,
.hero__button:hover::before {
  transform: translateX(240%) skewX(-20deg);
}

.consult-button:hover .btn-arrow,
.orange-button:hover .btn-arrow,
.hero__button:hover .btn-arrow {
  transform: rotate(45deg) translate(3px, -3px);
}

.heading-mark {
  height: 4px;
  overflow: hidden;
  background: var(--orange);
}

/* .heading-mark::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 15px;
  height: 6px;
  background: #ffffff;
  content: "";
  animation: heading-mark-slide 5s linear infinite;
} */

.encyclopedia-area .heading-mark::after,
.news-area .heading-mark::after {
  background: #ffffff;
}

.footer-links a {
  transition: all 500ms ease-in-out;
}

.footer-links a:hover {
  padding-left: 10px;
  color: var(--orange);
}

.desktop-fixbar {
  position: fixed;
  z-index: 490;
  right: 20px;
  bottom: 92px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.desktop-fixbar a,
.desktop-fixbar__button {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--orange);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(3, 24, 52, 0.1);
  font-size: 24px;
  cursor: pointer;
  transition: all 200ms ease;
}

.desktop-fixbar a:hover,
.desktop-fixbar__button:hover,
.desktop-fixbar__wechat:hover .desktop-fixbar__button {
  color: #ffffff;
  background: var(--orange);
}

.desktop-fixbar a > i,
.desktop-fixbar__button > i {
  font-size: 24px;
  line-height: 1;
  animation: none;
}

.desktop-fixbar a:hover > i,
.desktop-fixbar__button:hover > i,
.desktop-fixbar__wechat:hover .desktop-fixbar__button > i {
  animation: icon-shake 1.2s linear infinite;
}

.desktop-fixbar a > span {
  position: absolute;
  right: 58px;
  visibility: hidden;
  width: max-content;
  min-width: 88px;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--navy-deep);
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 200ms ease;
}

.desktop-fixbar a:hover > span {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.desktop-fixbar__wechat {
  position: relative;
}

.desktop-fixbar__qr {
  position: absolute;
  top: 50%;
  right: 62px;
  display: grid;
  justify-items: center;
  visibility: hidden;
  width: 148px;
  padding: 14px 12px 12px;
  color: var(--navy-deep);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(3, 24, 52, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: all 200ms ease;
}

.desktop-fixbar__qr img {
  width: 120px;
  height: 120px;
}

.desktop-fixbar__qr::after {
  position: absolute;
  top: 0;
  right: -12px;
  width: 12px;
  height: 100%;
  content: "";
}

.desktop-fixbar__qr strong {
  margin-top: 8px;
  font-size: 13px;
}

.desktop-fixbar__qr p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.desktop-fixbar__wechat:hover .desktop-fixbar__qr,
.desktop-fixbar__wechat:focus-within .desktop-fixbar__qr {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.scroll-top {
  position: fixed;
  z-index: 489;
  right: 20px;
  bottom: -20px;
  display: grid;
  visibility: hidden;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--orange);
  font-size: 22px;
  opacity: 0;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}

.scroll-top .myfont {
  font-size: 22px;
  line-height: 1;
}

.scroll-top.is-active {
  bottom: 20px;
  visibility: visible;
  opacity: 1;
}

.motion-ready [data-reveal="fade-up"].is-revealed {
  animation-name: fade-in-up;
}

.motion-ready [data-reveal="fade-down"].is-revealed {
  animation-name: fade-in-down;
}

.motion-ready [data-reveal="fade-left"].is-revealed {
  animation-name: fade-in-left;
}

.motion-ready [data-reveal="fade-right"].is-revealed {
  animation-name: fade-in-right;
}

@keyframes header-slide-down {
  from {
    top: -100px;
  }

  to {
    top: 0;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shake-phone {
  0%, 17%, 33%, 50%, 100% {
    transform: rotate(0) scale(1);
  }

  4%, 13%, 38%, 46% {
    transform: rotate(20deg) scale(1.2);
  }
}

@keyframes heading-mark-slide {
  0%, 100% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(75px);
  }
}

@keyframes icon-shake {
  0%, 100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(0);
  }

  75% {
    transform: rotate(-15deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
  }

  .partner-brands__track {
    animation: none !important;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 32px;
    font-size: 15px;
  }

  .consult-button {
    min-width: 104px;
  }

  .lang-switch__button {
    min-height: 42px;
    padding: 0 12px 0 8px;
    font-size: 13px;
  }

  .article-card__meta {
    display: grid;
    gap: 5px;
  }
}

@media (max-width: 960px) {
  .desktop-fixbar,
  .scroll-top {
    display: none;
  }

  .shell {
    width: min(100% - 48px, 1176px);
  }

  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 28px;
  }

  .feature-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card,
  .feature-card:first-child,
  .feature-card:last-child,
  .feature-card:nth-child(n + 2) {
    padding: 0 28px 32px 0;
    border-right: 1px solid #e6ebf1;
    border-bottom: 1px solid #e6ebf1;
  }

  .feature-card:nth-child(2n) {
    padding-right: 0;
    padding-left: 28px;
    border-right: 0;
  }

  .feature-card:nth-child(n + 3) {
    padding-top: 32px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .feature-card::before,
  .feature-card:first-child::before,
  .feature-card:last-child::before {
    inset: 8px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }

  .process-timeline::before,
  .process-card:not(:last-child)::after {
    display: none;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand img,
  .header-dock.is-scrolled .brand img {
    width: min(220px, 42vw);
  }
}

@media (max-width: 680px) {
  :root {
    --header-offset: 76px;
  }

  .shell {
    width: min(100% - 24px, 1176px);
  }

  .section-pad {
    padding: 48px 0;
  }

  .topbar {
    display: none;
  }

  .header-dock {
    height: 56px;
    margin-bottom: -56px;
  }

  .site-header {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border-top: 3px solid var(--orange);
    border-radius: 0;
  }

  .brand img {
    width: 132px;
  }

  .consult-button {
    display: none;
  }

  .lang-switch__label {
    max-width: 4.5em;
  }

  .header-search {
    display: block;
  }

  .header-search summary,
  .side-menu summary {
    width: 34px;
    height: 56px;
  }

  .header-search__panel {
    top: 56px;
    right: -44px;
    width: min(340px, calc(100vw - 30px));
  }

  .side-menu summary {
    width: 34px;
  }

  .side-menu nav {
    top: 56px;
    right: 0;
    width: calc(100vw - 30px);
  }

  .hero {
    height: 100svh;
    min-height: 640px;
  }

  .hero-slide__content {
    display: flex;
    width: calc(100% - 36px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 72px;
    padding-left: 20px;
    padding-bottom: 96px;
    text-align: left;
  }

  .hero__eyebrow {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__description {
    max-width: 440px;
    font-size: 14px;
  }

  .hero__buttons {
    justify-content: flex-start;
  }

  .hero__button {
    min-width: 112px;
    height: 46px;
    padding: 0 17px;
    font-size: 14px;
  }

  .slider-arrow {
    top: auto;
    bottom: 24px;
    width: 65px;
    height: 65px;
  }

  .slider-arrow--left {
    right: 140px;
    left: auto;
  }

  .slider-arrow--right {
    right: 64px;
  }

  .hero__button--ghost {
    border-color: #ffffff;
    color: var(--orange);
    background: #ffffff;
  }

  .feature-area {
    padding: 64px 0 68px;
  }

  .feature-intro {
    margin-bottom: 36px;
    text-align: left;
  }

  .feature-intro h2::after {
    margin-left: 0;
    margin-right: auto;
  }

  .feature-grid,
  .article-grid,
  .service-grid,
  .process-timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card,
  .feature-card:first-child,
  .feature-card:last-child,
  .feature-card:nth-child(n + 2) {
    min-height: 0;
    height: auto;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid #e6ebf1;
  }

  .feature-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .feature-card::before,
  .feature-card:first-child::before,
  .feature-card:last-child::before {
    inset: 0 0 12px;
  }

  .feature-card:last-child::before {
    bottom: 0;
  }

  .feature-card__icon {
    margin-bottom: 18px;
    font-size: 56px !important;
  }

  .feature-card h2 {
    font-size: 24px;
  }

  .feature-card p {
    font-size: 15px;
  }

  .feature-grid {
    gap: 28px;
  }

  .about-grid {
    gap: 45px;
  }

  .about-visual {
    min-height: 370px;
  }

  .about-visual > img {
    height: 370px;
  }

  .about-visual__badge {
    left: -8px;
    min-width: 200px;
  }

  .about-copy h2,
  .section-heading h2 {
    font-size: 34px;
  }

  .about-copy__lead {
    margin: 16px 0 14px;
  }

  .about-copy ul {
    margin-bottom: 21px;
  }

  .service-item {
    min-height: 0;
  }

  .service-area .section-heading {
    margin-bottom: 32px;
  }

  .project-heading {
    display: grid;
    justify-items: center;
    gap: 20px;
    margin-bottom: 28px;
    text-align: center;
  }

  .project-heading .section-heading {
    text-align: center;
  }

  .case-tabs {
    justify-content: center;
  }

  .case-tabs button {
    min-width: auto;
    padding: 0 14px;
  }

  .article-card__image-wrap {
    height: 233px;
  }

  .article-card {
    padding-bottom: 17px;
  }

  .article-card h3 {
    margin: 10px 0 13px;
  }

  .counter-area {
    padding: 50px 0;
  }

  .counter-grid {
    row-gap: 40px;
  }

  .counter-item {
    min-height: 227px;
  }

  .counter-item__icon {
    width: 76px;
    height: 76px;
    margin-top: 0;
  }

  .counter-item__icon img {
    width: 30px;
    height: 30px;
  }

  .counter-item strong {
    font-size: 36px;
    letter-spacing: 1px;
  }

  .counter-item p {
    font-size: 14px;
  }

  .process-card {
    min-height: 0;
    padding: 24px 20px 22px;
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .process-card__number {
    font-size: 36px;
  }

  .faq-area {
    padding: 58px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .faq-item {
    min-height: 72px;
    padding: 16px 16px 16px 14px;
  }

  .faq-item__question {
    font-size: 15px;
  }

  .process-card {
    padding: 22px 18px 20px;
  }

  .process-card__icon {
    width: 50px;
    height: 50px;
    font-size: 22px !important;
  }

  .process-card__number {
    margin-bottom: 0;
    font-size: 34px;
  }

  .encyclopedia-area .article-card:not(:first-child) {
    display: none;
  }

  .encyclopedia-area .carousel-dots {
    margin-top: 69px;
  }

  .news-area .section-heading {
    margin-bottom: 78px;
  }

  .friend-links {
    padding: 24px 0 28px;
  }

  .partner-brands {
    padding: 36px 0 28px;
  }

  .partner-brands__title {
    margin-bottom: 16px;
  }

  .partner-brands__logo {
    width: 100px;
    height: 46px;
  }

  .partner-brands__logo strong {
    font-size: 13px;
  }

  .footer-grid {
    gap: 44px;
    padding-top: 48px;
    padding-bottom: 45px;
  }

  .footer {
    margin-top: 0;
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .footer-links,
  .footer-contact {
    display: none;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    width: 72px;
  }

  .footer-bottom__inner {
    min-height: 96px;
    padding: 22px 0 28px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 501;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 62px 62px minmax(0, 1fr);
    gap: 0;
    align-items: center;
    height: 67px;
    padding: 8px 16px 9px 0;
    color: var(--navy-deep);
    background: #ffffff;
    box-shadow: 0 -6px 20px rgba(3, 24, 52, 0.13);
  }

  .mobile-contact-bar > a {
    display: flex;
    height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.1;
  }

  .mobile-contact-bar > a > span {
    margin-bottom: 4px;
    color: var(--orange);
    font-size: 22px;
  }

  .mobile-contact-bar .mobile-contact-bar__consult {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 8px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--orange);
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-contact-bar .mobile-contact-bar__consult > span {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
  }

  .mobile-contact-bar__consult small {
    position: absolute;
    top: -8px;
    right: 18px;
    padding: 2px 8px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--navy-deep);
    font-size: 10px;
  }

  .mobile-phone-float {
    position: fixed;
    z-index: 500;
    top: 54%;
    right: 0;
    display: grid;
    width: 57px;
    height: 55px;
    place-items: center;
    border-radius: 28px 0 0 28px;
    color: #ffffff;
    background: var(--orange);
    box-shadow: 0 8px 22px rgba(3, 24, 52, 0.2);
    font-size: 23px;
  }
}

.not-found-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found-page strong {
  color: var(--orange);
  font-size: 72px;
  line-height: 1;
}

.not-found-page h1 {
  margin: 16px 0 10px;
  color: var(--navy-deep);
}

.not-found-page p {
  margin: 0 0 24px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .header-action-button__desktop-icon {
    display: none;
  }

  .header-action-button__mobile-icon {
    display: inline-block;
  }
}

@media (max-width: 680px) {
  .header-dock,
  .header-dock.is-scrolled {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 56px;
    margin: 0;
    border-top: 3px solid var(--orange);
    background: #ffffff;
    box-shadow: 0 3px 14px rgba(3, 24, 52, 0.1);
    animation: none;
  }

  .site-header,
  .header-dock.is-scrolled .site-header {
    width: 100%;
    height: 53px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-actions {
    gap: 2px;
  }

  .lang-switch__button {
    min-height: 36px;
    padding: 0 10px 0 8px;
    font-size: 12px;
  }

  .lang-switch__menu {
    right: -4px;
  }

  .header-action-button {
    width: 34px;
    height: 53px;
    font-size: 22px;
  }

  .header-action-button .myfont {
    font-size: 22px;
  }

  .header-search-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(392px, calc(100vw - 24px));
    height: auto;
    padding: 16px;
    transform: translateY(-8px);
  }

  .header-search-panel.is-open {
    top: calc(100% + 10px);
    transform: translateY(0);
  }

  .header-search-panel::before {
    right: 10px;
  }

  .header-menu-backdrop {
    display: none;
  }

  .header-menu-panel {
    position: fixed;
    top: 56px;
    right: 18px;
    bottom: auto;
    display: block;
    width: calc(100% - 36px);
    height: auto;
    max-height: calc(100vh - 70px);
    padding: 0;
    overflow-y: auto;
    color: var(--navy-deep);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(3, 24, 52, 0.18);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 500ms ease-in-out, visibility 500ms ease-in-out, transform 500ms ease-in-out;
  }

  .header-menu-panel.is-open {
    opacity: 1;
    transform: translateY(0);
  }

  .header-menu-panel__sidebar {
    display: none;
  }

  .header-menu-panel__mobile {
    display: block;
  }

  .header-menu-item__row {
    min-height: 42px;
    border-bottom-color: #edf0f4;
  }

  .header-menu-item__row > a {
    min-height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }

  .header-menu-item__row > button {
    color: var(--navy-deep);
  }

  .header-submenu {
    background: #f8f9fb;
  }

  .header-submenu a {
    min-height: 34px;
    padding: 0 24px;
    color: var(--muted);
    font-size: 13px;
  }

  .hero__eyebrow {
    font-size: 18px;
  }

  .hero__description {
    font-size: 15px;
    line-height: 2;
  }

  .hero__button {
    min-width: 120px;
    height: 46px;
  }

  .slider-arrow {
    bottom: 42px;
  }

  .slider-arrow--left {
    right: 120px;
  }

  .slider-arrow--right {
    right: 40px;
  }

  .about-copy h2,
  .section-heading h2 {
    font-size: 32px;
  }

  .orange-button {
    min-height: 46px;
  }

  .article-carousel__track {
    touch-action: pan-y;
  }

  .encyclopedia-area .carousel-dots {
    margin-top: 69px;
  }

  .mobile-contact-bar .mobile-contact-bar__consult {
    margin-left: 9px;
    flex-direction: row;
    gap: 0;
    color: #ffffff;
    background: #ec3b3b;
    line-height: 1;
  }

  .mobile-contact-bar__consult strong {
    font-size: 15px;
  }

  .mobile-contact-bar__consult em {
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    opacity: 0.86;
  }

  .mobile-contact-bar__consult small {
    background: #000000;
  }

  .mobile-phone-float {
    overflow: visible;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-phone-float > img:nth-child(2) {
    transform-origin: center;
    animation: shake-phone 4s linear infinite;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    display: none;
  }

  .consult-button:hover,
  .orange-button:hover {
    transform: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 20px rgba(1, 25, 63, 0.22);
  }
}

.page-banner {
  display: grid;
  min-height: 560px;
  padding: 200px 0 96px;
  place-items: center;
  color: #ffffff;
  background-color: var(--navy-deep);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.page-banner__content {
  max-width: 760px;
}

.page-banner h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0.06em;
}

html[lang="en"] .page-banner h1 {
  letter-spacing: 0.02em;
}

.page-banner__desc {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.9;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 700;
}

.breadcrumb > span[aria-hidden] {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.breadcrumb__tail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb__tail[hidden] {
  display: none;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb a.is-current {
  padding: 4px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 35%, transparent);
  pointer-events: none;
}
.list-breadcrumb a:last-child{
  padding: 4px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 35%, transparent);
  pointer-events: none;
}
.section-breadcrumb {
  padding: 18px 0;
  
  border-bottom: 1px solid #e6ebf1;
}
.section-breadcrumb .breadcrumb {
  justify-content: flex-start;
  color: #5f6b7a;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
}
.section-breadcrumb .breadcrumb > span[aria-hidden] {
  color: #b4bcc7;
}
.section-breadcrumb .breadcrumb a {
  color: #5f6b7a;
}
.section-breadcrumb .breadcrumb a:hover {
  color: var(--orange);
}
.section-breadcrumb .breadcrumb a.is-current {
  padding: 0;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  pointer-events: none;
}
.section-breadcrumb .breadcrumb a:last-child{color: #B71514}
.case-board {
  padding: 64px 0 88px;
  background: #f4f6f8;
}

.case-board__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.case-board__heading .section-heading {
  margin: 0;
  text-align: left;
}

.case-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.case-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--navy-deep);
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.case-filter a:hover {
  color: var(--orange);
  background: color-mix(in srgb, var(--brand) 8%, #ffffff);
}

.case-filter a.is-active,
.case-filter a.is-active:hover {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--brand) 28%, transparent);
}

.case-board__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 340px;
  gap: 36px;
  align-items: start;
}

.case-entry-list {
  display: grid;
  gap: 18px;
}

.case-entry {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(3, 24, 52, 0.06);
}

.case-entry__thumb {
  overflow: hidden;
  border-radius: 6px;
}

.case-entry__thumb img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.case-entry__body h3 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.case-entry__body h3 a:hover {
  color: var(--orange);
}

.case-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin: 0 0 12px;
  color: #8a93a4;
  font-size: 13px;
}

.case-entry__meta i {
  margin-right: 6px;
  color: var(--orange);
}

.case-entry__excerpt {
  margin: 0;
  color: #6a7386;
  font-size: 14px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.pager a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--navy-deep);
  font-size: 15px;
  font-weight: 700;
  transition: background-color 200ms ease, transform 200ms ease;
}

.pager a:hover,
.pager a.is-active {
  background: var(--brand);
}

.pager__arrow {
  font-size: 16px;
}

.case-sidebar {
  display: grid;
  gap: 20px;
}

.side-card {
  padding: 22px 20px 18px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(3, 24, 52, 0.06);
}

.side-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 800;
}

.side-card__title::before {
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.side-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 14px;
  border: 1px solid #e4eaf1;
  border-radius: 8px;
  background: #f7f8fa;
}

.side-search input {
  flex: 1;
  min-width: 0;
  height: 38px;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.side-search button {
  display: grid;
  width: 40px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--orange);
  font-size: 18px;
  cursor: pointer;
}

.side-news,
.side-qa,
.side-service {
  display: grid;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid #eef1f5;
}

.side-news {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.side-news img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 6px;
}

.side-news > span {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 76px;
  padding: 1px 0;
}

.side-news small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.side-news strong,
.side-qa p,
.side-service strong {
  display: block;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.side-news small,
.side-qa small,
.side-service small {
  color: #8a93a4;
  font-size: 12px;
}

.side-news i,
.side-qa i {
  margin-right: 4px;
  color: var(--orange);
}

.side-qa p {
  display: flex;
  gap: 8px;
  margin: 0;
}

.side-qa b {
  color: var(--orange);
  font-size: 18px;
  line-height: 1.2;
}

.side-service {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.side-service__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  font-size: 28px;
}

.side-service__icon .myfont {
  font-size: 28px !important;
}

.side-service__icon--0 { background: #2f6fed; }
.side-service__icon--1 { background: #7a5af8; }
.side-service__icon--2 { background: var(--brand); }
.side-service__icon--3 { background: #1f4e8c; }
.side-service__icon--4 { background:#0A6F0C; }

.page-cases .main-nav a.is-current,
.page-cases .nav-dropdown.is-current > a,
.page-cases .nav-dropdown__menu a.is-current,
.page-cases .header-submenu a.is-current {
  color: var(--orange);
}

@media (max-width: 960px) {
  .page-banner {
    min-height: 420px;
    padding: 140px 0 72px;
  }

  .page-banner__desc {
    font-size: 14px;
    line-height: 1.75;
  }

  .case-board__heading {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .case-board__heading .section-heading {
    text-align: center;
  }

  .case-filter {
    justify-content: center;
  }

  .case-board__layout {
    grid-template-columns: 1fr;
  }

  .case-entry {
    grid-template-columns: 1fr;
  }

  .case-entry__thumb img {
    height: 200px;
  }
}

@media (max-width: 680px) {
  .page-banner {
    min-height: 320px;
    padding: 88px 0 40px;
  }

  .page-banner h1 {
    margin-bottom: 10px;
    font-size: 26px;
    letter-spacing: 0.04em;
  }

  .page-banner__desc {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.7;
  }

  .breadcrumb {
    font-size: 14px;
  }

  .breadcrumb a.is-current {
    padding: 3px 10px;
  }

  .case-board {
    padding: 28px 0 88px;
  }

  .case-board__heading {
    gap: 16px;
    margin-bottom: 22px;
  }

  .case-filter {
    width: 100%;
    gap: 8px;
  }

  .case-filter a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .case-entry {
    gap: 14px;
    padding: 14px;
  }

  .case-entry__thumb img {
    height: 168px;
  }

  .case-entry__body h3 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .case-entry__excerpt {
    font-size: 13px;
    line-height: 1.75;
  }

  .pager {
    gap: 10px;
    margin-top: 24px;
  }

  .pager a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .side-card {
    padding: 18px 16px 14px;
  }
}

@media (max-width: 380px) {
  .lang-switch__label {
    display: none;
  }

  .brand img,
  .header-dock.is-scrolled .brand img {
    width: 132px;
  }

  .case-filter a {
    padding: 0 10px;
  }
}
/*index ad*/
.section-ad{padding-top:60px;padding-bottom:60px;position:relative;overflow:hidden;color:#ffffff;text-align:center;background:radial-gradient(90% 70% at 8% -10%,color-mix(in srgb,var(--brand) 26%,transparent),transparent 56%),radial-gradient(70% 60% at 100% 110%,color-mix(in srgb,var(--brand) 16%,transparent),transparent 50%),linear-gradient(180deg,rgba(11,23,48,0.55) 0%,rgba(1,25,63,0.55) 52%,rgba(7,18,34,0.55) 100%),url("../assets/bg/bg.jpg");background-size:cover;background-position:center;background-repeat:no-repeat}
.section-ad ul{display:flex;justify-content:space-between;flex-wrap:wrap}
.section-ad strong{color:#F43636}
.section-ad span{display:inline-block;margin-left:5px;margin-right:5px}
.section-ad p{line-height:1.8;padding-top:10px;font-size:15px}

/*show*/
.section-breadcrumb{padding-top: 90px;margin-bottom: 20px}  
.show-main{background-color:#FFFFFF;padding-left: 30px;padding-right: 30px;padding-bottom: 50px }
.show-info{display:flex;justify-content:space-between; flex-wrap:wrap;border-bottom: 1px solid #ddd;padding-bottom: 20px}
.show-info span{display: inline-block;margin-right: 10px}
.show-info i{display: inline-block;margin-right: 5px}
.show-content { text-align:justify;  font-size:16px; line-height:1.6;padding-top: 20px;padding-bottom: 30px}
.show-content p {margin-bottom:15px; }
.show-content img{ max-width:100%;}
.show-copyright {
  background: #F9F9F9;
  border: 1px solid #A31A19;
  padding: 24px 20px;
  margin: 20px 0;
  border-radius: 0;
  font-size: 14px
}
.show-copyright-title {
  position: relative;
  font-weight: bold;
  color: #A31A19;
  font-size: 18px;
	padding: 0px;
	margin: 0px
}
.show-copyright p{line-height: 1.6;color: #666}
.details-context {
  padding: 17px;
  background-color: #F9F9F9;
  margin-top: 20px;
  line-height: 24px;
  overflow: hidden;
  position: relative;
  font-size: 16px
}
.details-context li {
  line-height: 28px;
  width: 48%;
  float: left;
  display: inline
}
.details-context li:last-child {
  float: right
}
.details-context li a {
  display: inline;
  font-size: 16px	
}
.flex_space{display:flex;justify-content:space-between; flex-wrap:wrap;}
.side-card-info{}
@media screen and (max-width:768px) {
	.section-ad{padding-top: 40px;padding-bottom: 40px}
	.section-ad h1{font-size: 22px;line-height: 1.5}
	.section-ad span{display: none}
	.section-ad strong{display: block}
	.section-ad p{font-size: 13px;text-align: left;padding-left: 15px;padding-right: 15px; text-align:justify; }
	.hero-slide h1 span{display: block!important;}
	.hero-slide h1{letter-spacing:3px;line-height: 1.5}
	.details-context li{width: 100%;margin-top: 5px;margin-bottom: 5px}
}


/* about-lx 联系方式三列 */
.about-lx {
  margin-top: 48px;
}

.about-lx__head {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.about-lx__head .section-kicker {
  margin: 0 0 10px;
}

.about-lx__head h2 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-lx__head h2 em {
  font-style: normal;
  color: var(--orange);
}

.about-lx__intro {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.about-lx__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.lx-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(3, 24, 52, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.lx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(3, 24, 52, 0.12);
}

.lx-card__title {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 16px;
  color: var(--navy-deep);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lx-card__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0 60%, var(--orange-soft) 60% 100%);
  content: "";
}

.lx-card__list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.lx-card__row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.lx-card__row dt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.lx-card__row dt .myfont {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--orange);
  font-size: 12px;
  line-height: 1;
}

.lx-card__row dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  word-break: break-word;
}

@media (max-width: 960px) {
  .about-lx {
    margin-top: 36px;
  }

  .about-lx__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-lx {
    margin-top: 24px;
  }

  .about-lx__head {
    margin-bottom: 22px;
  }

  .about-lx__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lx-card {
    padding: 22px 18px 20px;
  }

  .lx-card__title {
    margin-bottom: 16px;
    padding-bottom: 12px;
    font-size: 18px;
  }

  .lx-card__list {
    gap: 12px;
  }

  .lx-card__row {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
  }

  .lx-card__row dd {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* about-map 高德地图 */
.about-map {
  margin-top: 56px;
}

.about-map__head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.about-map__head .section-kicker {
  margin: 0 0 10px;
}

.about-map__head h2 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-map__head h2 em {
  font-style: normal;
  color: var(--orange);
}

.about-map__intro {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.about-map__intro .myfont {
  color: var(--orange);
  font-size: 16px;
}

.about-map__canvas {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: #eef1f5;
  box-shadow: 0 12px 30px rgba(3, 24, 52, 0.08);
}

.about-map__loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
}

@media (max-width: 960px) {
  .about-map {
    margin-top: 44px;
  }
}

@media (max-width: 680px) {
  .about-map {
    margin-top: 32px;
  }

  .about-map__head {
    margin-bottom: 20px;
  }

  .about-map__canvas {
    height: 280px;
    border-radius: 8px;
  }

  .about-map__loading {
    font-size: 13px;
  }
}


