:root {
  --ink: #142320;
  --muted: #65756f;
  --line: #dce9e4;
  --paper: #f5faf7;
  --white: #ffffff;
  --navy: #071d1b;
  --green: #0f7f68;
  --green-2: #18b58e;
  --green-3: #dff6ee;
  --gold: #c08324;
  --gold-2: #f0b44f;
  --blue: #16a982;
  --red: #9f3d35;
  --shadow: 0 20px 54px rgba(15, 67, 56, 0.095);
  --shadow-soft: 0 12px 30px rgba(15, 67, 56, 0.07);
  --section-y: 48px;
  --section-y-lg: 56px;
  --h2: 32px;
  --h3: 22px;
  --body: 16px;
  --radius: 8px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(24, 181, 142, 0.12), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(15, 127, 104, 0.08), transparent 28%),
    linear-gradient(180deg, #f6fbf8 0, #ffffff 620px);
  font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border-bottom: 1px solid rgba(15, 127, 104, 0.1);
  box-shadow: 0 10px 38px rgba(15, 67, 56, 0.06);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
}

.brand-logo {
  width: 208px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: none;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nav-item {
  position: static;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 34px;
  display: none;
}

.nav-item:hover::after,
.nav-item:focus-within::after {
  display: block;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 78px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2b3f3a;
  font-size: 15px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.18s ease;
}

.nav-link:focus,
.nav-link:focus-visible {
  outline: none;
}

button.nav-link {
  appearance: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--green);
}

.nav-link.is-active {
  color: var(--green);
}

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

.nav:has(.nav-item:hover) .nav-link.is-active:not(:hover)::after,
.nav:has(.nav-item:focus-within) .nav-link.is-active:not(:focus)::after {
  transform: scaleX(0);
}

.nav:has(.nav-item:hover) .nav-link.is-active:not(:hover),
.nav:has(.nav-item:focus-within) .nav-link.is-active:not(:focus) {
  color: #2b3f3a;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  display: none;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 0 54px;
  padding: 28px max(40px, calc((100vw - var(--max)) / 2)) 32px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border-top: 1px solid rgba(22, 45, 70, 0.08);
  border-bottom: 1px solid rgba(22, 45, 70, 0.08);
  border-radius: 0;
  box-shadow: 0 22px 42px rgba(15, 67, 56, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-item:hover .mega,
.nav-item:focus-within .mega {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega a {
  min-height: 82px;
  padding: 12px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease;
}

.mega a:hover {
  color: var(--green);
  background: linear-gradient(90deg, rgba(22, 146, 115, 0.08), rgba(255, 255, 255, 0));
  box-shadow: none;
}

.mega strong {
  display: block;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 800;
}

.mega span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  margin-top: 7px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(15, 127, 104, 0.2);
  border-radius: 8px;
  color: #0d5f50;
  background: rgba(239, 250, 246, 0.82);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--green);
  border-color: rgba(15, 127, 104, 0.35);
  background: #fff;
}

.login-menu {
  position: relative;
  flex: 0 0 auto;
}

.login-trigger {
  min-width: 92px;
  color: #0d5f50;
  background: #fff;
  border-color: rgba(15, 127, 104, 0.22);
}

.login-trigger:hover,
.login-menu.is-open .login-trigger {
  color: var(--green);
  border-color: rgba(15, 127, 104, 0.4);
  background: rgba(239, 250, 246, 0.95);
}

.login-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  width: 232px;
  padding: 8px;
  border: 1px solid rgba(15, 127, 104, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(9, 45, 40, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.login-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 30px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(15, 127, 104, 0.14);
  border-top: 1px solid rgba(15, 127, 104, 0.14);
  transform: rotate(45deg);
}

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

.login-panel a {
  position: relative;
  display: block;
  padding: 12px 13px;
  border-radius: 8px;
  color: var(--ink);
}

.login-panel a:hover {
  background: rgba(15, 127, 104, 0.08);
}

.login-panel strong {
  display: block;
  font-size: 15px;
  font-weight: 650;
}

.login-panel span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(15, 127, 104, 0.14);
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #0d856c 0%, #18b58e 58%, #0f7f68 100%);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(15, 127, 104, 0.22);
}

.btn.gold {
  color: #2d1a04;
  background: linear-gradient(135deg, #f3c777, var(--gold-2));
  border-color: transparent;
}

.btn.ghost {
  color: var(--ink);
  background: transparent;
  border-color: rgba(24, 32, 41, 0.22);
}

.btn.outline {
  color: #0d5f50;
  background: #fff;
  border-color: rgba(15, 127, 104, 0.24);
  box-shadow: none;
}

.feature-band .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 0 0 50px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(24, 181, 142, 0.28), transparent 30%),
    radial-gradient(circle at 80% 16%, rgba(15, 136, 201, 0.18), transparent 28%),
    linear-gradient(135deg, #f3fbf7 0%, #e9f8f2 46%, #ffffff 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  background: linear-gradient(180deg, transparent, #fff);
  z-index: -1;
}

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

.hero-carousel {
  position: relative;
  width: 100%;
}

.hero-track {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 0.46s ease, transform 0.46s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 30%, rgba(24, 181, 142, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(245, 252, 248, 0.97) 0%, rgba(239, 250, 246, 0.92) 38%, rgba(239, 250, 246, 0.56) 64%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(15, 127, 104, 0.08));
}

.hero-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92));
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 66% center;
  transform: scale(1.01);
  filter: saturate(1.04);
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 72px 0 104px;
}

.hero-copy-panel {
  position: relative;
  z-index: 2;
  max-width: 920px;
  color: var(--ink);
}

.hero-mascot-card {
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  bottom: 54px;
  z-index: 3;
  width: clamp(138px, 16vw, 218px);
  aspect-ratio: 1.1;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 250, 246, 0.94));
  box-shadow: 0 24px 58px rgba(15, 67, 56, 0.18);
  overflow: hidden;
}

.hero-mascot-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  color: #0e5748;
  background: rgba(19, 123, 99, 0.1);
  border: 1px solid rgba(19, 123, 99, 0.18);
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
}

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  margin: 18px 0 18px;
  max-width: 760px;
  font-size: 40px;
  font-weight: 900;
}

.hero h1 {
  max-width: 920px;
  font-size: 40px;
  white-space: normal;
  color: #343b4f;
  text-shadow: none;
}

.hero-title-line {
  display: block;
  font-size: clamp(32px, 2.85vw, 44px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: 0;
  color: #343b4f;
  white-space: nowrap;
}

.hero-title-line.accent {
  margin-top: 10px;
  color: #0f8a70;
  font-size: clamp(38px, 3.3vw, 54px);
  font-weight: 720;
  line-height: 1.16;
}

.hero-copy {
  max-width: 780px;
  margin-top: 26px;
  font-size: 18px;
  color: #58635f;
  line-height: 1.82;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 640px);
  margin-top: 28px;
  padding: 12px;
  border: 1px solid rgba(15, 127, 104, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 249, 242, 0.82)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(15, 67, 56, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats span {
  color: #61736d;
  font-size: 14px;
  font-weight: 800;
}

.hero-stats strong {
  color: #0d705e;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.hero .tag {
  color: #0d705e;
  background: rgba(235, 250, 244, 0.9);
  border-color: rgba(15, 127, 104, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero .tag.gold {
  color: #fff5d9;
  background: rgba(192, 131, 36, 0.18);
  border-color: rgba(240, 180, 79, 0.32);
}

.hero .btn:not(.primary) {
  color: #0d5f50;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 127, 104, 0.24);
  backdrop-filter: blur(14px);
}

.hero .btn:not(.primary):hover {
  background: #fff;
  border-color: rgba(15, 127, 104, 0.36);
}

.hero-banner {
  min-height: 660px;
  padding-bottom: 0;
}

.hero-banner .hero-track {
  min-height: 660px;
  border-bottom: 0;
}

.hero-banner .hero-slide-inner {
  min-height: 660px;
  padding-bottom: 92px;
}

.home-product-tabs-section {
  padding: var(--section-y-lg) 0;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbf9 100%);
}

.home-product-tabs-head {
  margin-bottom: 42px;
  text-align: center;
}

.home-product-tabs-head h2 {
  margin: 0;
  color: #12231f;
  font-size: var(--h2);
  line-height: 1.25;
  font-weight: 900;
}

.home-product-tab-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-bottom: 70px;
  text-align: center;
}

.home-product-tab-button {
  position: relative;
  min-height: 62px;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 4px solid #d9e8e2;
  background: transparent;
  color: #202b36;
  font: inherit;
  font-size: 21px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.home-product-tab-button.is-active {
  color: var(--green);
  border-color: transparent;
  background:
    linear-gradient(#f7fbf9, #f7fbf9) padding-box,
    linear-gradient(90deg, #0f7f68, #18b58e, #0f7f68) border-box;
}

.home-product-tab-panels {
  min-height: 420px;
}

.home-product-tab-panel {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.home-product-tab-panel.is-active {
  display: grid;
}

.home-product-copy h3 {
  margin: 0 0 18px;
  color: #071342;
  font-size: 32px;
  font-weight: 900;
}

.home-product-copy strong {
  display: block;
  max-width: 600px;
  margin-bottom: 12px;
  color: #263342;
  font-size: 21px;
  line-height: 1.5;
}

.home-product-copy p {
  max-width: 640px;
  margin: 0 0 24px;
  color: #3f4d5c;
  font-size: 17px;
  line-height: 1.8;
}

.home-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.home-product-actions .btn {
  min-width: 150px;
  min-height: 52px;
  font-size: 16px;
}

.home-product-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid rgba(15, 127, 104, 0.11);
  background: #eef8f4;
  box-shadow: 0 26px 72px rgba(15, 67, 56, 0.12);
}

.home-product-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(6, 20, 47, 0.34));
}

.home-product-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.home-feature-section {
  padding: var(--section-y-lg) 0;
  background:
    radial-gradient(circle at 84% 0%, rgba(15, 136, 201, 0.08), transparent 30%),
    #fff;
}

.home-feature-head {
  display: block;
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-feature-head h2 {
  margin: 0;
  color: #12231f;
  font-size: var(--h2);
  line-height: 1.25;
  font-weight: 900;
}

.home-feature-head p {
  max-width: 660px;
  margin: 14px auto 0;
  color: #5f6d7a;
  font-size: 16px;
  line-height: 1.75;
}

.home-feature-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.home-feature-filter-button {
  min-width: 150px;
  min-height: 48px;
  padding: 10px 24px;
  border: 1px solid rgba(15, 127, 104, 0.13);
  border-radius: 999px;
  color: #263442;
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.home-feature-filter-button:hover,
.home-feature-filter-button.is-active {
  color: #0c5f51;
  border-color: rgba(15, 127, 104, 0.32);
  background: linear-gradient(135deg, #eaf8f3, #fff);
  box-shadow: inset 0 -3px 0 rgba(15, 127, 104, 0.26), 0 14px 34px rgba(15, 67, 56, 0.07);
}

.home-feature-panel {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-feature-panel.is-active {
  display: block;
}

.home-feature-panel-copy {
  display: none;
}

.home-feature-panel-copy span {
  width: fit-content;
  padding: 7px 10px;
  color: #0c5f51;
  background: #e6f4ef;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.home-feature-panel.gold .home-feature-panel-copy span {
  color: #6a4305;
  background: #fff1d5;
}

.home-feature-panel-copy h3 {
  margin: 0;
  color: #16202b;
  font-size: 28px;
  line-height: 1.32;
  font-weight: 900;
}

.home-feature-panel-copy p {
  margin: 0;
  color: #5f6d7a;
  font-size: 16px;
  line-height: 1.75;
}

.home-feature-carousel {
  position: relative;
}

.home-feature-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(255px, 1fr);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.home-feature-grid::-webkit-scrollbar {
  display: none;
}

.home-feature-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 127, 104, 0.22);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(15, 67, 56, 0.12);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-feature-arrow:hover {
  border-color: rgba(15, 127, 104, 0.38);
  box-shadow: 0 18px 42px rgba(15, 67, 56, 0.18);
}

.home-feature-arrow.prev {
  left: -22px;
}

.home-feature-arrow.next {
  right: -22px;
}

.home-feature-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(15, 127, 104, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 72%, rgba(24, 181, 142, 0.12), transparent 30%),
    linear-gradient(145deg, #f6fbff 0%, #edf7ff 46%, #f8fff9 100%);
  box-shadow: 0 16px 42px rgba(15, 67, 56, 0.045);
  scroll-snap-align: start;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-feature-card:nth-child(2n) {
  background:
    radial-gradient(circle at 82% 72%, rgba(15, 136, 201, 0.12), transparent 32%),
    linear-gradient(145deg, #f8fbff 0%, #eef4ff 48%, #fff 100%);
}

.home-feature-card:nth-child(3n) {
  background:
    radial-gradient(circle at 80% 72%, rgba(15, 127, 104, 0.12), transparent 32%),
    linear-gradient(145deg, #f9fffb 0%, #eefaf5 52%, #fff 100%);
}

.home-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 127, 104, 0.28);
  box-shadow: 0 24px 58px rgba(15, 67, 56, 0.11);
}

.home-feature-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.home-feature-card h4 {
  margin: 12px 0 12px;
  color: #182029;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.home-feature-card p {
  margin: 0 0 20px;
  color: #5f6d7a;
  font-size: 15px;
  line-height: 1.8;
}

.home-feature-card b {
  margin-top: auto;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.home-solution-section {
  padding: var(--section-y-lg) 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(24, 181, 142, 0.12), transparent 32%),
    linear-gradient(180deg, #f6fbf8 0%, #fff 100%);
}

.home-solution-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.home-solution-head span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.home-solution-head h2 {
  margin: 0;
  color: #12231f;
  font-size: var(--h2);
  line-height: 1.25;
  font-weight: 900;
}

.home-solution-head p {
  margin: 18px auto 0;
  color: #5f6d7a;
  font-size: 16px;
  line-height: 1.8;
}

.home-solution-selector {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.home-solution-list {
  display: grid;
  gap: 10px;
}

.home-solution-option {
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(15, 127, 104, 0.12);
  border-radius: 8px;
  color: #263442;
  background: rgba(255, 255, 255, 0.88);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.home-solution-option span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.home-solution-option strong {
  color: #17202b;
  font-size: 17px;
  line-height: 1.35;
}

.home-solution-option:hover,
.home-solution-option.is-active {
  transform: translateX(3px);
  border-color: rgba(15, 127, 104, 0.3);
  background:
    linear-gradient(135deg, rgba(232, 249, 242, 0.86), #fff 60%);
  box-shadow: 0 18px 42px rgba(15, 67, 56, 0.08);
}

.home-solution-option.gold span {
  color: var(--gold);
}

.home-solution-panels {
  min-width: 0;
}

.home-solution-card {
  display: none;
  min-height: 520px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(15, 127, 104, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 62px rgba(15, 67, 56, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-solution-card.is-active {
  display: grid;
}

.home-solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 127, 104, 0.26);
  box-shadow: 0 28px 78px rgba(15, 67, 56, 0.13);
}

.home-solution-media {
  position: relative;
  height: 100%;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #eef8f4;
}

.home-solution-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 47, 0.04), rgba(6, 20, 47, 0.38));
}

.home-solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-solution-card:hover .home-solution-media img {
  transform: scale(1.05);
}

.home-solution-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 46px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 181, 142, 0.08), transparent 38%),
    #fff;
}

.home-solution-copy > span {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.home-solution-card.gold .home-solution-copy > span {
  color: var(--gold);
}

.home-solution-copy h3 {
  margin: 0 0 16px;
  color: #17202b;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 900;
}

.home-solution-copy p {
  margin: 0 0 18px;
  color: #5f6d7a;
  font-size: 17px;
  line-height: 1.75;
}

.home-solution-copy strong {
  color: #263442;
  font-size: 16px;
  line-height: 1.7;
}

.home-solution-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.home-solution-copy li {
  padding: 8px 10px;
  color: #22564d;
  background: #eaf7f2;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.home-solution-card.gold .home-solution-copy li {
  color: #6a4305;
  background: #fff1d5;
}

.home-solution-copy .btn {
  margin-top: auto;
}

.home-why-section {
  overflow: hidden;
  padding: var(--section-y-lg) 0 58px;
  background:
    radial-gradient(circle at 12% 16%, rgba(21, 179, 145, 0.14), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(38, 132, 190, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, #f1f8f5 100%);
}

.home-why-head {
  max-width: 880px;
  margin: 0 auto 42px;
  text-align: center;
}

.home-why-head span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.home-why-head h2 {
  margin: 0;
  color: #12231f;
  font-size: var(--h2);
  line-height: 1.26;
  font-weight: 900;
}

.home-why-head p {
  max-width: 780px;
  margin: 18px auto 0;
  color: #5f6d7a;
  font-size: 16px;
  line-height: 1.8;
}

.home-why-tabs {
  margin: 38px auto 0;
}

.home-why-tab-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 34px;
  padding: 0;
}

.home-why-tab-list button {
  min-width: 94px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #202a35;
  font-size: 17px;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.home-why-tab-list .is-active {
  color: #0c4b42;
  background: linear-gradient(135deg, #dff6ee, #fff);
  box-shadow: inset 0 -1px 0 rgba(15, 127, 104, 0.08), 0 10px 28px rgba(15, 67, 56, 0.08);
}

.home-why-core-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 42px;
  align-items: stretch;
  min-height: 0;
  margin-top: 42px;
}

.home-why-core-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 470px;
  padding: 38px;
  border: 1px solid rgba(25, 139, 116, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(20, 87, 72, 0.08);
}

.home-why-proof {
  display: none;
}

.home-why-proof.is-active {
  display: flex;
  flex-direction: column;
}

.home-why-proof > span {
  display: inline-grid;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: #0c5f51;
  background: #dff4ed;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.home-why-core-copy h3 {
  margin: 0 0 20px;
  color: #17202b;
  font-size: clamp(26px, 2.05vw, 30px);
  line-height: 1.22;
  font-weight: 900;
  white-space: nowrap;
}

.home-why-core-copy p {
  margin: 0 0 26px;
  color: #24323f;
  font-size: 17px;
  line-height: 1.95;
}

.home-why-proof strong {
  display: block;
  margin-bottom: 16px;
  color: #263442;
  font-size: 16px;
  line-height: 1.75;
}

.home-why-proof ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.home-why-proof li {
  padding: 8px 10px;
  color: #2f5e55;
  background: #edf6f3;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.home-why-moat {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 34px;
  border: 1px solid rgba(17, 130, 110, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 249, 245, 0.86)),
    radial-gradient(circle at 86% 12%, rgba(30, 172, 144, 0.18), transparent 30%);
  box-shadow: 0 26px 80px rgba(23, 83, 72, 0.1);
}

.home-why-moat::before {
  position: absolute;
  inset: 26px;
  content: "";
  border: 1px dashed rgba(13, 127, 106, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.home-why-moat::after {
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 132, 112, 0.2), transparent 68%);
  pointer-events: none;
}

.home-why-moat-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.home-why-moat-head span {
  color: #0d7967;
  font-size: 14px;
  font-weight: 900;
}

.home-why-moat-head strong {
  color: #152430;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.home-why-moat-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.home-why-moat-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 6px 18px;
  min-height: 92px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0d7b68, #16b18f);
  box-shadow: 0 18px 42px rgba(12, 118, 99, 0.18);
}

.home-why-moat-card.layer-2 {
  margin-left: 24px;
  background: linear-gradient(135deg, #116e70, #2aa7a5);
}

.home-why-moat-card.layer-3 {
  margin-left: 48px;
  background: linear-gradient(135deg, #0f6378, #28a2c3);
}

.home-why-moat-card.layer-4 {
  margin-left: 72px;
  background: linear-gradient(135deg, #124b64, #16846f);
}

.home-why-moat-card b {
  grid-row: span 3;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 900;
}

.home-why-moat-card strong {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
}

.home-why-moat-card span {
  justify-self: start;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  white-space: normal;
}

.home-why-moat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.home-why-core-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.home-why-core-card {
  display: flex;
  min-height: 318px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #dce8e4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 58px rgba(15, 23, 42, 0.06);
}

.home-why-core-card b {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.home-why-core-card h3 {
  margin: 18px 0 12px;
  color: #17202b;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.home-why-core-card p {
  margin: 0;
  color: #5f6d7a;
  font-size: 15px;
  line-height: 1.75;
}

.home-why-core-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 20px 0 0;
  list-style: none;
}

.home-why-core-card li {
  padding: 7px 9px;
  color: #2f5e55;
  background: #edf6f3;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 88px rgba(6, 20, 47, 0.16);
  border: 1px solid rgba(24, 32, 41, 0.1);
  background: #fff;
}

.hero-art > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero-controls {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-controls-shell {
  position: relative;
  z-index: 4;
  min-height: 46px;
  margin-top: -94px;
  pointer-events: none;
}

.hero-controls-shell .hero-controls {
  pointer-events: auto;
}

.hero-arrow,
.hero-dots button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 20, 47, 0.62);
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  backdrop-filter: blur(12px);
}

.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 25px;
  line-height: 1;
}

.hero-arrow:hover {
  transform: translateY(-1px);
  background: rgba(19, 123, 99, 0.74);
  border-color: rgba(177, 232, 214, 0.42);
}

.hero-dots {
  display: inline-flex;
  gap: 8px;
}

.hero-dots button {
  width: 30px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
}

.hero-dots button.is-active {
  width: 46px;
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.product-route {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-route a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(6, 20, 47, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.product-route a:last-child {
  color: #2d1a04;
  background: rgba(245, 194, 101, 0.92);
}

.product-route span {
  font-size: 12px;
  opacity: 0.78;
}

.product-route strong {
  font-size: 16px;
  line-height: 1.25;
}

section {
  padding: var(--section-y) 0;
  scroll-margin-top: 92px;
}

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

.section-head h2 {
  margin: 0;
  color: #12231f;
  font-size: var(--h2);
  line-height: 1.25;
  font-weight: 900;
  max-width: 760px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.75;
  max-width: 470px;
}

.section-head.stacked {
  display: block;
}

.section-head.stacked p {
  margin-top: 10px;
  max-width: 720px;
}

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

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

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

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

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(15, 67, 56, 0.065);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 123, 99, 0.28);
  box-shadow: 0 22px 54px rgba(6, 20, 47, 0.1);
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.38;
}

.card-subtitle {
  display: block;
  margin: -2px 0 10px;
  color: var(--green);
  font-size: 14px;
}

.card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-audience-section {
  padding-bottom: 38px;
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.product-audience-section + section {
  padding-top: 36px;
}

.product-audience-stack {
  display: grid;
  gap: 28px;
}

.product-audience-block {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(19, 123, 99, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-audience-block.gold {
  border-color: rgba(192, 131, 36, 0.28);
}

.product-audience-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1fr);
  gap: 18px 34px;
  align-items: end;
}

.product-audience-head span {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.product-audience-block.gold .product-audience-head span {
  color: var(--gold);
}

.product-audience-head h2 {
  grid-column: 1;
  margin: 8px 0 0;
  font-size: 32px;
  line-height: 1.18;
}

.product-audience-head p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.product-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  gap: 14px;
}

.product-audience-card {
  min-width: 0;
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
}

.product-audience-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.product-audience-block.gold .product-audience-card span {
  color: var(--gold);
}

.product-audience-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.product-audience-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-audience-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.product-audience-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-2);
}

.product-audience-block.gold .product-audience-card li::before {
  background: var(--gold-2);
}

.system-price-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
}

.system-price-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1fr);
  gap: 28px 46px;
  align-items: end;
  margin-bottom: 30px;
}

.system-price-head span,
.system-price-group-head span,
.system-price-card-head span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.system-price-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: var(--h2);
  line-height: 1.16;
}

.system-price-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.system-price-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.system-price-platforms span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(19, 123, 99, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.system-price-groups {
  display: grid;
  gap: 30px;
}

.system-price-group {
  padding: 28px;
  border: 1px solid rgba(19, 123, 99, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.system-price-group-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 18px 28px;
  align-items: end;
  margin-bottom: 20px;
}

.system-price-group-head h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.system-price-group-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.system-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  align-items: start;
}

.system-price-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
}

.system-price-card.is-featured {
  border-color: rgba(19, 123, 99, 0.42);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 98, 79, 0.12);
}

.system-price-card-head strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.system-price-card-head p {
  min-height: 42px;
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.system-price-money {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.system-price-origin {
  color: var(--muted);
  font-size: 13px;
}

.system-price-origin del {
  color: #8d9a94;
}

.system-price-current {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  color: var(--green);
}

.system-price-current small,
.system-price-current em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.system-price-current strong {
  font-size: 34px;
  line-height: 1;
}

.system-price-features {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-price-features li {
  position: relative;
  min-width: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
  overflow-wrap: anywhere;
}

.system-price-features li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-2);
}

form.card {
  display: grid;
  gap: 14px;
}

form label {
  display: grid;
  gap: 7px;
  color: #31404d;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #9aa7b2;
  opacity: 1;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23142320' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
  cursor: pointer;
}

select option {
  color: var(--ink);
  background: #fff;
}

.appointment-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.form-required-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.form-required-label span {
  color: #e53935;
}

.category-field {
  display: none;
}

.category-field.is-visible {
  display: grid;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.location-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.form-note {
  display: block;
  margin-top: -4px;
  color: #d94134;
  font-size: 13px;
  line-height: 1.5;
}

.appointment-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.appointment-form .btn {
  width: 100%;
}

.floating-action-bar {
  position: fixed;
  right: max(14px, calc((100vw - var(--max)) / 2 - 74px));
  top: 50%;
  z-index: 90;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.floating-action {
  display: grid;
  place-items: center;
  width: 58px;
  min-height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 67, 56, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(15, 67, 56, 0.16);
}

.floating-action.consult {
  width: 62px;
  min-height: 126px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #18b58e 0%, #0f7f68 62%, #0b6e7a 100%);
}

.floating-action.apply {
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  background: linear-gradient(180deg, #18b58e 0%, #0f7f68 62%, #0b6e7a 100%);
}

.floating-action-vertical {
  display: block;
  margin-top: 6px;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 900;
  writing-mode: vertical-rl;
  letter-spacing: 1px;
}

.page-apply .floating-action-bar {
  display: none;
}

.floating-icon,
.floating-mascot {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-mascot {
  width: 50px;
  height: 50px;
  color: rgba(255, 255, 255, 0.9);
  stroke-width: 3;
}

.floating-mascot-image,
.online-chat-mascot-image {
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 26px rgba(6, 20, 47, 0.16);
}

.online-chat-mascot-image {
  width: 48px;
  height: 48px;
}

.floating-support {
  position: relative;
}

button.floating-action {
  appearance: none;
  cursor: pointer;
}

.support-popover {
  position: absolute;
  right: calc(100% + 26px);
  top: 50%;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  width: min(520px, calc(100vw - 132px));
  padding: 22px;
  border: 1px solid rgba(210, 225, 229, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 70px rgba(6, 20, 47, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(12px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.support-popover::after {
  position: absolute;
  right: -13px;
  top: 50%;
  width: 24px;
  height: 24px;
  content: "";
  background: #fff;
  border-top: 1px solid rgba(210, 225, 229, 0.9);
  border-right: 1px solid rgba(210, 225, 229, 0.9);
  transform: translateY(-50%) rotate(45deg);
}

.floating-support.is-open .support-popover,
.floating-support:focus-within .support-popover,
.floating-support:hover .support-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.support-qr {
  display: grid;
  align-content: start;
  gap: 10px;
  color: #637281;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.support-qr img {
  width: 112px;
  height: 112px;
  padding: 8px;
  border: 1px solid #dbe7e5;
  border-radius: 8px;
  background: #fff;
}

.support-copy h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #17202b;
  font-size: 22px;
  line-height: 1.25;
}

.support-copy h3 .floating-icon {
  color: #1287ff;
}

.support-copy p {
  margin: 0 0 16px;
  color: #8a8f94;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
}

.support-lines {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #d8dee4;
}

.support-lines span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.support-lines b {
  color: #697683;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.support-lines em {
  color: #1f2c3a;
  font-style: normal;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  white-space: nowrap;
}

.support-lines small {
  justify-self: end;
  color: #8b96a1;
  font-size: 12px;
  font-weight: 700;
}

.online-chat[hidden] {
  display: none;
}

.online-chat {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.online-chat.is-open {
  opacity: 1;
  pointer-events: auto;
}

.online-chat-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 27, 0.28);
  backdrop-filter: blur(8px);
}

.online-chat-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100vw - 44px));
  min-height: min(690px, calc(100vh - 52px));
  overflow: hidden;
  border: 1px solid rgba(194, 225, 216, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(6, 42, 35, 0.22);
  transform: translateY(16px) scale(0.985);
  transition: transform 0.18s ease;
}

.online-chat.is-open .online-chat-panel {
  transform: translateY(0) scale(1);
}

.online-chat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: #fff;
  background: linear-gradient(90deg, #08755f 0%, #18b58e 100%);
}

.online-chat-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.online-chat-avatar .floating-icon {
  width: 34px;
  height: 34px;
}

.online-chat-header strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}

.online-chat-header span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.92;
}

.online-chat-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.online-chat-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: calc(min(690px, calc(100vh - 52px)) - 90px);
}

.online-chat-main {
  display: grid;
  grid-template-rows: auto minmax(260px, 1fr) auto auto;
  min-width: 0;
  background: #f8fbfa;
}

.online-chat-meta {
  padding: 18px 26px 8px;
  color: #6a7a75;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.online-chat-messages {
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: auto;
  max-height: 390px;
  padding: 18px 30px 28px;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 78%;
}

.chat-message.visitor {
  justify-self: end;
}

.chat-message-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-weight: 900;
}

.chat-message-name {
  margin: 0 0 6px;
  color: #637281;
  font-size: 14px;
  font-weight: 900;
}

.chat-message p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 8px;
  color: #1e2a37;
  background: #eef7f3;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.chat-message.visitor p {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
}

.online-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 30px 18px;
}

.online-chat-quick button {
  padding: 9px 13px;
  border: 1px solid #d8e8e2;
  border-radius: 999px;
  color: #31574e;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.online-chat-input {
  border-top: 1px solid #dfece7;
  background: #fff;
}

.online-chat-input textarea {
  display: block;
  width: 100%;
  min-height: 96px;
  padding: 18px 22px;
  border: 0;
  color: #16202a;
  resize: vertical;
  outline: none;
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
}

.online-chat-input-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 0 22px 18px;
}

.online-chat-input-actions span {
  color: #7d8b99;
  font-size: 13px;
  font-weight: 800;
}

.online-chat-input-actions button {
  min-width: 96px;
  padding: 12px 22px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.online-chat-aside {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px 26px;
  border-left: 1px solid #dfece7;
  background: #fff;
}

.online-chat-aside h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.online-chat-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
}

.online-chat-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid #dbe9e4;
  border-radius: 8px;
  background: #f8fbfa;
}

.online-chat-card strong {
  color: var(--ink);
}

.online-chat-card span {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 800;
}

.online-chat-aside img {
  width: 132px;
  height: 132px;
  padding: 8px;
  border: 1px solid #dbe7e5;
  border-radius: 8px;
  background: #fff;
}

.online-chat-aside small {
  color: var(--muted);
  font-weight: 900;
}

.apply-page-section {
  overflow: hidden;
  padding: 52px 0 58px;
  background:
    radial-gradient(circle at 12% 18%, rgba(19, 123, 99, 0.09), transparent 28%),
    linear-gradient(180deg, #f7fbfa 0%, #fff 100%);
}

.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
  gap: 44px;
  align-items: start;
}

.apply-copy > span {
  color: var(--green);
  font-weight: 900;
  font-size: 15px;
}

.apply-copy h1 {
  max-width: 720px;
  margin: 16px 0 14px;
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: 0;
}

.apply-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #17202b;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 850;
}

.apply-copy > p {
  max-width: 720px;
  margin: 0;
  color: #5f6d7a;
  font-size: 16px;
  line-height: 1.82;
}

.apply-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 34px;
}

.apply-benefit {
  min-height: 136px;
  padding: 22px 20px;
  border: 1px solid #dbe7e5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(6, 20, 47, 0.045);
}

.apply-benefit strong {
  color: #17202b;
  font-size: 18px;
  line-height: 1.35;
}

.apply-benefit p {
  margin: 10px 0 0;
  color: #60707d;
  font-size: 15px;
  line-height: 1.72;
}

.apply-logo-wall h3 {
  margin: 0;
  color: #17202b;
  font-size: 24px;
  line-height: 1.25;
}

.apply-logo-wall p {
  margin: 8px 0 16px;
  color: #6b7884;
  font-size: 15px;
}

.apply-logo-wall-image {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(16, 72, 62, 0.08);
}

.apply-logo-wall-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .apply-logo-wall-image {
    overflow-x: auto;
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .apply-logo-wall-image img {
    width: max(760px, 100%);
  }
}

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

.apply-logo-item {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid #e3ecea;
  border-radius: 8px;
  background: #fff;
}

.apply-logo-item img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.apply-form-panel {
  position: sticky;
  top: 96px;
  padding: 30px;
  border: 1px solid rgba(19, 123, 99, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 56px rgba(6, 20, 47, 0.1);
}

.apply-form {
  display: grid;
  gap: 18px;
}

.apply-form label {
  display: grid;
  gap: 10px;
  color: #17202b;
  font-size: 17px;
  line-height: 1.38;
  font-weight: 900;
}

.apply-form input,
.apply-form textarea {
  min-height: 52px;
  border-color: #d9e5e4;
  color: #17202b;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
}

.apply-form textarea {
  min-height: 142px;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: #9aa7b2;
}

.apply-form .btn {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

input:focus,
textarea:focus {
  border-color: rgba(19, 123, 99, 0.62);
  box-shadow: 0 0 0 4px rgba(19, 123, 99, 0.12);
}

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edf2ef;
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 7px;
  color: #244038;
  background: #edf7f2;
  border: 1px solid #d6e8df;
  font-size: 12px;
  font-weight: 800;
}

.tag.gold {
  color: #5c3608;
  background: #fff5df;
  border-color: #f0ddac;
}

.feature-band {
  background:
    linear-gradient(135deg, rgba(6, 20, 47, 0.98), rgba(8, 45, 58, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 88px 88px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-band .section-head p,
.feature-band .card p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-band .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.66fr);
  gap: 38px;
  align-items: center;
}

.contact-panel {
  max-width: 760px;
}

.visual-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.home-answer-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 0.9fr);
  gap: 34px;
}

.home-answer-layout > div:first-child {
  max-width: 650px;
}

.home-answer-copy {
  max-width: 610px;
  padding: 0 0 0 18px;
  border-left: 4px solid var(--green);
}

.home-answer-copy p {
  margin: 0;
  color: #31404d;
  font-size: 16px;
}

.service-map-frame {
  border-color: rgba(19, 123, 99, 0.18);
  box-shadow: 0 28px 72px rgba(6, 20, 47, 0.14);
}

.service-map-frame img {
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: process;
  padding: 0;
  margin: 0;
}

.process li {
  list-style: none;
  min-height: 138px;
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: process;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(6, 20, 47, 0.06);
}

.process li::before {
  content: counter(process, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 32px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--green);
  border-radius: 7px;
  font-weight: 900;
  font-size: 13px;
}

.process.gold li::before {
  color: #321d03;
  background: var(--gold-2);
}

.service-guarantee-service {
  background: linear-gradient(180deg, #fff, #f7fbf9);
}

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

.service-flow-card,
.service-peak-card {
  position: relative;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(19, 123, 99, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(6, 20, 47, 0.08);
}

.service-flow-card::after,
.service-peak-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: rgba(19, 123, 99, 0.07);
}

.service-flow-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 38px;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0a6f82);
  border-radius: 8px;
  font-weight: 900;
}

.service-flow-card h3,
.service-peak-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 24px;
}

.service-item-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.service-item-list li {
  position: relative;
  list-style: none;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 750;
}

.service-item-list li::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.service-process-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(24, 181, 142, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(248, 252, 250, 0.92), rgba(255, 255, 255, 0.98));
}

.service-orbit {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(19, 123, 99, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 247, 0.86)),
    #fff;
  box-shadow: 0 22px 58px rgba(6, 20, 47, 0.08);
}

.service-orbit::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(19, 123, 99, 0.08);
  border-radius: 12px;
  pointer-events: none;
}

.service-orbit::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -170px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 181, 142, 0.12), transparent 66%);
  pointer-events: none;
}

.service-orbit-core {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  min-height: 410px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 117, 95, 0.96), rgba(24, 181, 142, 0.9)),
    var(--green);
  box-shadow: 0 20px 48px rgba(15, 127, 104, 0.18);
}

.service-orbit-core img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(6, 20, 47, 0.14);
}

.service-orbit-core strong {
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.service-orbit-core span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
}

.service-flow-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-flow-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(19, 123, 99, 0.18), transparent);
  pointer-events: none;
}

.service-orbit-step {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 126px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(19, 123, 99, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 251, 0.94));
  box-shadow: 0 12px 30px rgba(6, 20, 47, 0.055);
}

.service-orbit-step::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  opacity: 0.72;
}

.service-orbit-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 26px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(15, 127, 104, 0.09);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.service-orbit-step strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.32;
  font-weight: 900;
}

.service-orbit-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.service-orbit-step.step-1 {
  order: 1;
}

.service-orbit-step.step-2 {
  order: 2;
}

.service-orbit-step.step-3 {
  order: 3;
}

.service-orbit-step.step-4 {
  order: 4;
}

.service-orbit-step.step-5 {
  order: 5;
}

.service-orbit-step.step-6 {
  order: 6;
}

.service-peak-section {
  background: #fff;
}

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

.service-peak-card {
  min-height: 230px;
  border-color: rgba(192, 131, 36, 0.22);
}

.service-peak-card::after {
  background: rgba(192, 131, 36, 0.1);
}

.service-peak-card .service-item-list li::before {
  background: var(--gold-2);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison th,
.comparison td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.comparison th {
  background: #f1f5f2;
  font-size: 14px;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.breadcrumb-strip {
  position: relative;
  z-index: 2;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(24, 32, 41, 0.08);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--green);
}

.page-hero {
  position: relative;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  background: #f7faf7;
  border-bottom: 1px solid var(--line);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 250, 248, 0.97) 0%, rgba(248, 250, 248, 0.9) 34%, rgba(248, 250, 248, 0.42) 62%, rgba(248, 250, 248, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(251, 246, 235, 0.28));
}

.page-hero.gold::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.88) 34%, rgba(255, 250, 240, 0.4) 62%, rgba(255, 250, 240, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(244, 235, 215, 0.28));
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 74px 0;
}

.page-hero-copy {
  max-width: 650px;
}

.page-hero h1 {
  max-width: 720px;
  margin-top: 0;
  font-size: 44px;
  line-height: 1.16;
}

.page-hero p {
  max-width: 560px;
  color: #2d3945;
  font-size: 18px;
  line-height: 1.75;
}

.page-about .page-hero {
  min-height: 380px;
  background: #f6fbf8;
}

.page-about .page-hero::before {
  background:
    linear-gradient(90deg, rgba(246, 251, 248, 0.98), rgba(246, 251, 248, 0.78) 52%, rgba(246, 251, 248, 0.2)),
    radial-gradient(circle at 84% 16%, rgba(24, 181, 142, 0.14), transparent 30%);
}

.page-about .page-hero::after {
  height: 86px;
  background: linear-gradient(180deg, transparent, #fff);
}

.page-about .page-hero-content {
  min-height: 380px;
  padding: 66px 0;
}

.page-about .page-hero h1 {
  max-width: 760px;
  font-size: 40px;
  font-weight: 800;
}

.page-about .page-hero p {
  max-width: 600px;
  color: #516372;
  font-size: 17px;
  font-weight: 500;
}

.page-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(24, 32, 41, 0.1);
  box-shadow: 0 28px 80px rgba(6, 20, 47, 0.14);
}

.page-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 6px;
  z-index: 1;
  pointer-events: none;
}

.page-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: top center;
}

.answer-box {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.answer-box p {
  margin: 0 0 14px;
}

.answer-box p:last-child {
  margin-bottom: 0;
}

.media-section {
  padding-top: 18px;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.media-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(24, 32, 41, 0.1);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.media-card.large {
  grid-row: span 2;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.media-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  color: #fff;
  background: rgba(6, 20, 47, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.scene-gallery-section {
  padding-top: 34px;
  padding-bottom: 54px;
}

.scene-gallery-section .section-head {
  margin-bottom: 22px;
}

.scene-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 20px;
}

.scene-gallery-card,
.scene-gallery-card.primary {
  grid-row: auto;
  aspect-ratio: 1.42;
  border-color: rgba(11, 132, 111, 0.13);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(13, 61, 54, 0.1);
}

.scene-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(8, 27, 34, 0.46) 100%),
    linear-gradient(135deg, rgba(15, 150, 124, 0.06), rgba(20, 159, 205, 0.06));
  pointer-events: none;
}

.scene-gallery-card img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.scene-gallery-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.02);
}

.scene-gallery-card figcaption {
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  width: auto;
  max-width: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(9, 39, 48, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(5, 30, 34, 0.16);
}

.scene-gallery-card figcaption span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #dffbf2;
  background: rgba(18, 155, 127, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.scene-gallery-card figcaption strong {
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-showcase-card figcaption {
  width: auto;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
}

.product-showcase-card figcaption strong {
  font-size: 15px;
  line-height: 1.3;
}

.product-showcase-card figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-showcase-card .btn {
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.product-showcase-card .btn.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.article-section {
  padding-top: 26px;
}

.legacy-cases-section {
  padding: 88px 0 96px;
  background:
    linear-gradient(180deg, #f4f9fc 0%, #eef6fa 100%);
}

.legacy-logo-wall-section {
  padding-top: 44px;
}

.legacy-logo-wall-section .legacy-partner-wall {
  margin-top: 0;
}

.legacy-cases-heading {
  margin-bottom: 48px;
}

.legacy-cases-heading h2 {
  margin: 0;
  color: #1f2c3a;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.22;
  font-weight: 900;
}

.legacy-cases-heading span {
  display: block;
  width: 118px;
  height: 6px;
  margin-top: 34px;
  background: #169c82;
  border-radius: 999px;
}

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

.legacy-case-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 540px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(26, 48, 74, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.legacy-case-media {
  position: relative;
  overflow: hidden;
  background: #dce5ef;
}

.legacy-case-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.legacy-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(26, 48, 74, 0.13);
}

.legacy-case-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(22, 37, 55, 0.46), rgba(22, 37, 55, 0.58));
}

.legacy-case-overlay img {
  max-width: min(46%, 170px);
  max-height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.legacy-case-card:hover .legacy-case-photo {
  transform: scale(1.08);
}

.legacy-case-body {
  display: grid;
  align-content: start;
  padding: 30px 36px 36px;
  position: relative;
}

.legacy-case-body h3 {
  margin: 0 0 16px;
  color: #34405d;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 900;
}

.legacy-case-tags {
  min-height: 78px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 9px 10px;
  margin-bottom: 22px;
}

.legacy-case-tags span {
  padding: 7px 10px;
  color: #1685ff;
  background: #e6f4ff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.legacy-case-body p {
  margin: 0;
  color: #667286;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 650;
}

.legacy-case-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1%;
  height: 2px;
  opacity: 0;
  background: #e1e6f0;
  transition: width 0.5s ease, opacity 0.5s ease;
}

.legacy-case-card:hover .legacy-case-line {
  width: 100%;
  opacity: 1;
}

.legacy-home-business {
  padding: var(--section-y-lg) 0 68px;
  overflow: hidden;
  background: #f0f8fd var(--legacy-home-business-bg) top center / cover no-repeat;
}

.legacy-home-business-inner {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.legacy-home-business h2 {
  margin: 0 0 38px;
  color: #383f49;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.legacy-home-business-img {
  width: min(1088px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.legacy-home-business-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.legacy-home-help {
  height: 670px;
  overflow: hidden;
  color: #fff;
  background: #06153b url("/assets/legacy-home/index_bg_4-amZfWF9x.png") top center / cover no-repeat;
}

.legacy-home-help-main {
  width: min(1400px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legacy-home-help-left {
  width: 466px;
  margin-right: 40px;
}

.legacy-home-help-left h2 {
  margin: 0 0 40px;
  color: #fff;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 900;
}

.legacy-home-help-left p {
  margin: 0 0 92px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
}

.legacy-home-help-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.legacy-home-help-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.32);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  cursor: pointer;
}

.legacy-home-help-tabs button.is-active {
  color: #fff;
}

.legacy-home-help-tabs b {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.legacy-home-help-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-left: auto;
}

.legacy-home-help-controls strong {
  min-width: 46px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.legacy-home-help-controls button {
  width: 33px;
  height: 33px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.legacy-home-help-controls button::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-left: 2px solid rgba(255, 255, 255, 0.62);
  border-bottom: 2px solid rgba(255, 255, 255, 0.62);
  transform: rotate(45deg);
}

.legacy-home-help-controls button[data-home-case-next]::before {
  left: 9px;
  transform: rotate(225deg);
}

.legacy-home-help-controls button:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.48);
}

.legacy-home-help-right {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.legacy-home-help-track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  width: 100%;
}

.legacy-home-help-card {
  flex: 0 0 464px;
  height: 365px;
  overflow: hidden;
  background: #fff;
  color: #202632;
  border-radius: 8px;
}

.legacy-home-help-media {
  position: relative;
  width: 100%;
  height: 212px;
  overflow: hidden;
}

.legacy-home-help-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-home-help-logo {
  position: absolute;
  left: 22px;
  bottom: 0;
  min-width: 126px;
  min-height: 58px;
  padding: 10px 18px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 7px 7px 0 0;
}

.legacy-home-help-logo img {
  width: 90px;
  max-height: 38px;
  object-fit: contain;
}

.legacy-home-help-card p {
  margin: 0;
  padding: 25px 35px 46px;
  color: #202632;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
}

.legacy-partner-wall {
  width: min(1440px, calc(100% - 48px));
  margin: 58px auto 0;
}

.legacy-partner-wall h2 {
  margin: 0;
  color: #212121;
  font-size: var(--h2);
  line-height: 1.35;
  text-align: center;
  font-weight: 900;
}

.legacy-partner-wall p {
  display: none;
  margin: 2px 0 46px;
  color: #39485d;
  font-size: 16px;
  text-align: center;
}

.legacy-logo-marquee {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 34px;
  margin-top: 42px;
  padding: 44px 46px;
  border: 1px solid rgba(15, 127, 104, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 50%, rgba(15, 136, 201, 0.12), transparent 22%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 67, 56, 0.08);
}

.legacy-logo-wall-image {
  width: 100%;
  margin: 42px 0 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #f6fbf8;
  box-shadow: 0 24px 70px rgba(15, 67, 56, 0.08);
}

.legacy-logo-wall-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .legacy-logo-wall-image {
    margin-top: 28px;
    overflow-x: auto;
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .legacy-logo-wall-image img {
    width: max(760px, 100%);
  }
}

.legacy-logo-row {
  display: contents;
  width: auto;
  gap: 0;
  animation: none;
}

.legacy-logo-row.row-2 {
  transform: translateX(-108px);
  animation-duration: 0s;
}

.legacy-logo-row.row-3 {
  animation-duration: 0s;
}

.legacy-logo-marquee:hover .legacy-logo-row {
  animation-play-state: paused;
}

.legacy-logo-item {
  min-width: 0;
  height: 74px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.legacy-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.legacy-logo-item img {
  max-width: 160px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes legacy-logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.knowledge-directory-section {
  padding-top: 24px;
}

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

.knowledge-directory-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.knowledge-directory-card > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.knowledge-directory-card h3 {
  margin: 0;
  font-size: 24px;
}

.knowledge-directory-card p {
  margin: 0;
  color: var(--muted);
}

.knowledge-link-list {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.knowledge-link-list a {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: #f7faf8;
  border: 1px solid rgba(19, 123, 99, 0.08);
  border-radius: 7px;
}

.knowledge-link-list a:hover {
  border-color: rgba(19, 123, 99, 0.22);
  transform: translateY(-1px);
}

.knowledge-link-list strong {
  color: #182029;
  font-size: 15px;
}

.knowledge-link-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.news-center-section {
  padding: var(--section-y) 0;
  background: #f6f9fc;
}

.news-center-head {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.news-center-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.news-center-head h2 {
  margin: 0;
  color: #111a25;
  font-size: var(--h2);
  line-height: 1.24;
  font-weight: 900;
}

.news-center-head p {
  margin: 18px auto 0;
  color: #5f6d7a;
  font-size: 17px;
  line-height: 1.8;
}

.news-center-tab-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 34px;
  padding: 10px;
  border: 1px solid #dfe8e6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(10, 30, 45, 0.06);
}

.news-center-tab {
  min-width: 138px;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #5f6d7a;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.news-center-tab.is-active {
  background: var(--green);
  color: #fff;
}

.news-center-panel {
  display: none;
}

.news-center-panel.is-active {
  display: block;
}

.news-center-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.news-center-panel-head strong {
  color: #111a25;
  font-size: 28px;
  font-weight: 900;
}

.news-center-panel-head p {
  max-width: 560px;
  margin: 0;
  color: #667482;
  font-size: 15px;
  line-height: 1.7;
  text-align: right;
}

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

.news-center-feature,
.news-center-card {
  overflow: hidden;
  border: 1px solid #dfe8e6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(10, 30, 45, 0.07);
}

.news-center-feature a,
.news-center-card a {
  display: grid;
  height: 100%;
  color: inherit;
}

.news-center-feature .news-center-media {
  height: 210px;
}

.news-center-card .news-center-media {
  height: 176px;
}

.news-center-media {
  overflow: hidden;
  background: #eaf1ef;
}

.news-center-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.news-center-feature:hover .news-center-media img,
.news-center-card:hover .news-center-media img {
  transform: scale(1.04);
}

.news-center-copy {
  padding: 26px;
}

.news-center-feature .news-center-copy {
  padding: 32px;
}

.news-center-copy span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.news-center-copy h3 {
  margin: 12px 0 12px;
  color: #17202b;
  font-size: 22px;
  line-height: 1.36;
  font-weight: 900;
}

.news-center-feature .news-center-copy h3 {
  font-size: 30px;
}

.news-center-copy p {
  margin: 0 0 20px;
  color: #5f6d7a;
  font-size: 15px;
  line-height: 1.75;
}

.news-center-copy b {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.article-meta-section {
  padding: 22px 0 0;
}

.article-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.article-meta-grid div {
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  padding: 14px;
  background: #f7faf8;
  border-radius: 7px;
}

.article-meta-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-meta-grid strong {
  color: #182029;
  font-size: 15px;
  line-height: 1.45;
}

.article-stack {
  display: grid;
  gap: 22px;
}

.article-block {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 248, 0.96)),
    linear-gradient(90deg, rgba(19, 123, 99, 0.05) 1px, transparent 1px);
  background-size: auto, 34px 34px;
  border: 1px solid rgba(24, 32, 41, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.article-block.is-flipped {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 0.98fr);
}

.article-block.is-flipped .article-copy {
  order: 2;
}

.article-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.article-step {
  width: fit-content;
  min-width: 42px;
  padding: 5px 9px;
  color: #fff;
  background: var(--green);
  border-radius: 7px;
  font-weight: 900;
  font-size: 13px;
}

.article-block h3 {
  margin: 0;
  font-size: 30px;
}

.article-block p {
  margin: 0;
  color: #42505c;
}

.article-list {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding-left: 22px;
  color: #334454;
  font-weight: 700;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(19, 123, 99, 0.1);
}

.article-visual {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #edf2ef;
  border: 1px solid rgba(24, 32, 41, 0.1);
}

.article-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.article-visual figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  color: #fff;
  background: rgba(6, 20, 47, 0.76);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.article-block.gold .article-step,
.gold .article-step {
  color: #342106;
  background: var(--gold-2);
}

.about-overview-section {
  padding-top: 46px;
  background:
    radial-gradient(circle at 12% 14%, rgba(31, 181, 141, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fffc 0%, #fff 72%);
}

.about-moat-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(19, 123, 99, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 252, 248, 0.92)),
    #fff;
  box-shadow: 0 24px 70px rgba(9, 56, 48, 0.1);
}

.about-moat-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--green), #18b58e);
}

.about-moat-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 181, 142, 0.18), transparent 68%);
  pointer-events: none;
}

.about-moat-intro {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-bottom: 28px;
}

.about-moat-intro span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-moat-intro h2 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #10231f;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.18;
  font-weight: 800;
}

.about-moat-intro p,
.about-moat-core p,
.about-moat-card p,
.about-moat-footer p {
  margin: 0;
  color: #5d6e69;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 600;
}

.about-moat-core {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 24px 28px;
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 43, 47, 0.96), rgba(17, 142, 114, 0.94)),
    var(--green);
  box-shadow: 0 18px 44px rgba(11, 104, 85, 0.18);
}

.about-moat-core strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  font-weight: 850;
}

.about-moat-core p {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.82);
}

.about-moat-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.about-moat-card {
  min-height: 214px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(19, 123, 99, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(9, 56, 48, 0.06);
  backdrop-filter: blur(10px);
}

.about-moat-card b {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}

.about-moat-card h3 {
  margin: 0 0 10px;
  color: #152721;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.about-moat-card p {
  font-size: 14px;
  line-height: 1.72;
}

.about-moat-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 0.36fr)) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.about-moat-footer div,
.about-moat-footer p {
  border: 1px solid rgba(19, 123, 99, 0.14);
  border-radius: 10px;
  background: rgba(245, 252, 249, 0.86);
}

.about-moat-footer div {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 104px;
  padding: 18px 12px;
}

.about-moat-footer strong {
  color: var(--green);
  font-size: 30px;
  line-height: 1;
  font-weight: 850;
}

.about-moat-footer span {
  color: #65756f;
  font-size: 13px;
  font-weight: 700;
}

.about-moat-footer p {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.8;
}

.about-values-section {
  padding-top: 46px;
  background: #fff;
}

.about-values-section .section-head,
.about-timeline-section .section-head {
  text-align: center;
}

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

.about-value-card {
  position: relative;
  min-height: 188px;
  padding: 26px 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e3edf1;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 45, 68, 0.05);
}

.about-value-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 28px;
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #18b58e);
  border-radius: 999px;
}

.about-value-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: #b8c5cc;
  font-weight: 800;
  font-size: 18px;
}

.about-value-card h3 {
  margin: 0 0 10px;
  color: #1f2c3a;
  font-size: 22px;
  font-weight: 800;
}

.about-value-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5f6f7b;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
}

.about-timeline-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #edf4f1;
  border-bottom: 1px solid #edf4f1;
}

.about-timeline {
  display: grid;
  gap: 34px;
}

.about-timeline-years {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78px, 1fr);
  align-items: end;
  gap: 0;
  padding: 8px 0 22px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.about-timeline-years::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 1px;
  background: #cbdcd6;
}

.about-timeline-years button {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 78px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4d5654;
  font: inherit;
  cursor: pointer;
  transition: color 0.18s ease;
}

.about-timeline-years b {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-timeline-years i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #b8c9c3;
  transform: scale(0.75);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.about-timeline-years button:hover,
.about-timeline-years button.is-active {
  color: var(--green);
}

.about-timeline-years button.is-active i {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15, 127, 104, 0.12);
  transform: scale(1);
}

.about-timeline-details {
  display: grid;
  scroll-margin-top: 96px;
}

.about-address-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background:
    linear-gradient(180deg, #f7fbfc 0%, #fff 100%);
  border-bottom: 1px solid #edf4f1;
}

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

.about-address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.about-address-card {
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  color: #778793;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 250, 0.94));
  border: 1px solid #dbe8e4;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 45, 68, 0.05);
}

.about-address-card i {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 127, 104, 0.1);
}

.about-address-card i::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.about-address-card i::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.about-address-card div {
  min-width: 0;
}

.about-address-card span {
  display: block;
  margin-bottom: 8px;
  color: #1f2c3a;
  font-size: 18px;
  font-weight: 800;
}

.about-address-card strong {
  display: block;
  color: var(--green);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.timeline-card {
  position: relative;
  display: none;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
  min-height: 360px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  scroll-margin-top: 104px;
}

.timeline-card.is-active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.timeline-year {
  position: static;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  text-align: left;
}

.timeline-dot {
  display: none;
}

.timeline-visual {
  position: relative;
  min-height: 300px;
  margin: 0;
  padding: 24px;
}

.timeline-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 94px;
  height: 94px;
  background-image: radial-gradient(var(--green-2) 1.8px, transparent 1.8px);
  background-size: 15px 15px;
  opacity: 0.42;
}

.timeline-visual::after {
  content: "";
  position: absolute;
  inset: 44px 12px 12px 42px;
  border: 3px solid #bfc9c5;
  border-radius: 3px;
  pointer-events: none;
}

.timeline-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 18px 42px rgba(15, 67, 56, 0.12);
}

.timeline-content {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.timeline-content h3 {
  margin: 0 0 20px;
  color: #3a4541;
  font-size: 30px;
  line-height: 1.32;
  font-weight: 800;
}

.timeline-content .article-list {
  margin-top: 0;
  gap: 13px;
}

.timeline-content .article-list li {
  color: #273934;
  font-size: 17px;
  line-height: 1.78;
}

.timeline-content .article-list li::before {
  background: var(--green);
}

.answer-box.gold {
  border-left-color: var(--gold);
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.role-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.role-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-category-nav {
  position: sticky;
  top: 80px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.faq-category-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: #263744;
  background: #f7faf8;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.faq-category-nav a:hover {
  color: var(--green);
  background: #fff;
  border-color: rgba(19, 123, 99, 0.18);
}

.faq-category-nav span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 22px;
  padding: 0 7px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
}

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

.faq-category {
  scroll-margin-top: 118px;
  padding-top: 4px;
}

.faq-category-head {
  margin-bottom: 14px;
}

.faq-category-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.faq-category-head h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.faq-category-head p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 12px;
  color: var(--muted);
  line-height: 1.85;
}

.faq-answer p:last-child {
  padding-bottom: 20px;
}

.faq-source {
  display: inline-flex;
  margin: 0 20px 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.faq-source:hover {
  text-decoration: underline;
}

.faq-more {
  margin-top: 16px;
}

.faq-item.is-open .faq-question span:last-child {
  transform: rotate(45deg);
}

.quick-panel {
  margin-top: 20px;
  max-width: 680px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.quick-panel > strong {
  display: block;
  margin: 0 0 8px;
  color: #243443;
  font-size: 14px;
}

.quick-panel input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

.quick-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.quick-results a {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 7px;
  background: #f6faf7;
  border: 1px solid rgba(19, 123, 99, 0.08);
}

.quick-results span {
  color: var(--muted);
  font-size: 12px;
}

.industry-authority-section {
  padding: var(--section-y) 0 58px;
  background: #fff;
}

.industry-authority-head {
  max-width: 1180px;
  margin: 0 auto 48px;
  padding: 0;
  text-align: center;
}

.industry-authority-head h2 {
  margin: 0;
  color: #202a3a;
  font-size: var(--h2);
  line-height: 1.3;
}

.industry-authority-head p {
  max-width: 1120px;
  margin: 18px auto 0;
  color: #3f4652;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.industry-authority-tab-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  justify-content: center;
  gap: 44px;
  margin: 0 auto 34px;
}

.industry-authority-tab {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.industry-authority-tab:hover {
  border-color: rgba(64, 145, 210, 0.22);
  background: rgba(207, 231, 250, 0.34);
}

.industry-authority-tab.is-active {
  background: #cfe7fa;
  border-color: rgba(64, 145, 210, 0.2);
  box-shadow: 0 12px 28px rgba(69, 143, 205, 0.14);
  color: #1c2c3d;
}

.industry-authority-panel {
  display: none;
}

.industry-authority-panel.is-active {
  display: block;
}

.industry-authority-intro {
  max-width: 780px;
  margin: 0 auto 34px;
  color: #56616f;
  font-size: 15px;
  line-height: 1.75;
  text-align: center;
}

.industry-authority-logo-wall {
  max-width: 1180px;
  margin: 0 auto;
}

.industry-authority-logo-wall img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.industry-authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 230px));
  justify-content: center;
  gap: 46px 54px;
  padding: 0 8px;
}

.industry-authority-card {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
  min-width: 0;
}

.industry-authority-card figure {
  width: 100%;
  height: 170px;
  margin: 0;
  display: grid;
  place-items: center;
}

.industry-authority-card.is-text figure {
  width: 170px;
  border: 1px solid rgba(22, 124, 101, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fcfb 0%, #eef8f5 100%);
  box-shadow: 0 18px 36px rgba(19, 88, 75, 0.08);
}

.industry-authority-card.is-platform figure {
  width: 170px;
  border: 1px solid rgba(22, 124, 101, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfefd 0%, #eef8f5 100%);
  box-shadow: 0 18px 36px rgba(19, 88, 75, 0.08);
}

.industry-authority-card.is-platform img {
  max-width: 128px;
  max-height: 92px;
}

.industry-authority-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #137b63;
  font-size: 20px;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(22, 124, 101, 0.12);
}

.industry-authority-card img {
  max-width: 100%;
  max-height: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.industry-authority-card strong {
  color: #333;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.home-news-section {
  padding: var(--section-y) 0 48px;
  background: #fff;
}

.home-news-head {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.home-news-head span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
}

.home-news-head h2 {
  margin: 0;
  color: #07183a;
  font-size: var(--h2);
  line-height: 1.35;
  letter-spacing: 0;
}

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

.home-news-card {
  min-height: 220px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 24, 58, 0.08);
}

.home-news-card > span {
  color: #ff6b00;
  font-size: 15px;
  font-weight: 800;
}

.home-news-card h3 {
  margin: 30px 0 24px;
  color: #07183a;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0;
}

.home-news-card p {
  margin: 0 0 24px;
  color: #5f6d7a;
  font-size: 14px;
  line-height: 1.7;
}

.home-news-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}

.home-support-section {
  padding: 30px 0 18px;
  background: linear-gradient(180deg, #fff, #f7fafc);
}

.home-support-panel {
  position: relative;
  overflow: hidden;
  padding: 48px 46px 34px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(15, 127, 104, 0.92), rgba(24, 181, 142, 0.58)),
    linear-gradient(135deg, #08755f, #18b58e);
  box-shadow: 0 16px 40px rgba(15, 127, 104, 0.14);
}

.home-support-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(132deg, transparent 8%, rgba(255, 255, 255, 0.22) 9%, transparent 20%),
    linear-gradient(148deg, transparent 44%, rgba(255, 255, 255, 0.26) 45%, transparent 58%),
    linear-gradient(160deg, transparent 64%, rgba(255, 255, 255, 0.2) 65%, transparent 78%);
  opacity: 0.9;
  pointer-events: none;
}

.home-support-head {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.home-support-head span {
  display: none;
}

.home-support-head h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-support-cta {
  display: inline-grid;
  place-items: center;
  min-width: 188px;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 28px;
  border: 0;
  color: var(--green);
  background: #fff;
  border-radius: 7px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(3, 76, 63, 0.14);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-support-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(3, 76, 63, 0.18);
}

.home-support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.home-support-card {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.home-support-card::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.18);
}

body.has-modal {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 28px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 27, 0.58);
  backdrop-filter: blur(4px);
}

.contact-modal-panel {
  position: relative;
  width: min(100%, 1040px);
  max-height: calc(100vh - 56px);
  height: min(620px, calc(100vh - 56px));
  display: grid;
  align-items: center;
  padding: 56px 72px 48px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(19, 123, 99, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0.12) 70%),
    url("/assets/generated/contact-modal-bg.png") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(6, 20, 47, 0.3);
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.contact-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(19, 123, 99, 0.08), transparent 34%);
  pointer-events: none;
}

.contact-modal.is-open .contact-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: rgba(24, 32, 41, 0.72);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-close:hover {
  color: var(--green);
}

.contact-modal-copy,
.contact-modal-visual {
  position: relative;
  z-index: 1;
}

.contact-modal-copy {
  width: min(430px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-modal-tabs {
  width: 100%;
}

.contact-tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
  padding: 5px;
  border: 1px solid rgba(24, 32, 41, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-tab-button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #31404d;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.contact-tab-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0a6f82);
  box-shadow: 0 10px 24px rgba(19, 123, 99, 0.18);
}

.contact-tab-panel {
  display: none;
  min-height: 430px;
}

.contact-tab-panel.is-active {
  display: grid;
  align-content: center;
  justify-items: center;
}

.contact-qr {
  position: relative;
  width: min(288px, 72vw);
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(19, 123, 99, 0.18), rgba(192, 131, 36, 0.3)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 44px rgba(6, 20, 47, 0.11);
}

.contact-qr-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 6px;
}

.contact-modal-copy p {
  margin: 28px 0 8px;
  color: #31404d;
  font-size: 30px;
  font-weight: 700;
}

.contact-modal-copy strong {
  color: var(--navy);
  font-size: 40px;
  line-height: 1;
}

.appointment-form.in-modal {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(19, 123, 99, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(6, 20, 47, 0.08);
}

.site-footer {
  color: #9098a0;
  background: #f4f6f8;
  padding: 48px 0 34px;
  border-top: 1px solid #e5eaee;
}

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

.footer-logo {
  width: 166px;
  height: auto;
  margin-bottom: 14px;
}

.footer-grid strong {
  color: #5d6670;
  display: block;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #8f979f;
  font-size: 14px;
}

.fine-print {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #dfe5e9;
  color: #9aa1a8;
  font-size: 13px;
  line-height: 1.7;
}

.fine-print p {
  margin: 0;
}

.fine-print a {
  color: inherit;
  text-decoration: none;
}

.fine-print a:hover {
  color: var(--green);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Global visual polish: keep every page on one typography and spacing rhythm. */
.page-hero {
  min-height: 400px;
}

.page-hero-content {
  min-height: 400px;
  padding: 66px 0;
}

.page-hero h1 {
  font-size: 40px;
  line-height: 1.22;
  font-weight: 850;
  letter-spacing: 0;
}

.page-hero p {
  font-size: 16px;
  line-height: 1.82;
  color: #52635e;
}

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

.section-head h2,
.home-product-tabs-head h2,
.home-feature-head h2,
.home-solution-head h2,
.home-why-head h2,
.news-center-head h2,
.industry-authority-head h2,
.legacy-cases-heading h2,
.legacy-partner-wall h2 {
  font-size: var(--h2);
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: 0;
}

.section-head p,
.home-feature-head p,
.home-solution-head p,
.home-why-head p,
.news-center-head p,
.industry-authority-head p {
  font-size: 15px;
  line-height: 1.78;
}

.card-body,
.article-copy,
.news-center-copy,
.knowledge-directory-card,
.service-flow-card,
.service-peak-card {
  padding: 22px;
}

.card h3,
.news-center-copy h3,
.knowledge-directory-card h3,
.service-flow-card strong,
.service-peak-card strong {
  font-size: 20px;
  line-height: 1.38;
  font-weight: 850;
}

.card p,
.news-center-copy p,
.knowledge-directory-card p,
.article-copy p,
.service-flow-card p,
.service-peak-card p {
  font-size: 15px;
  line-height: 1.78;
}

.product-audience-section {
  padding-top: 38px;
  padding-bottom: 24px;
}

.product-audience-section + section {
  padding-top: 28px;
}

.product-audience-block {
  padding: 24px;
  gap: 20px;
}

.product-audience-head h2,
.system-price-head h2 {
  font-size: 30px;
  line-height: 1.24;
}

.product-audience-head p,
.system-price-head p {
  font-size: 15px;
  line-height: 1.78;
}

.product-audience-card {
  min-height: 160px;
  padding: 18px;
}

.product-audience-card strong,
.system-price-card strong {
  font-size: 19px;
  line-height: 1.32;
}

.system-price-section {
  padding-top: 36px;
}

.system-price-head {
  margin-bottom: 24px;
}

.system-price-group-head h3 {
  font-size: 26px;
  line-height: 1.3;
}

.home-product-tabs-section,
.home-feature-section,
.home-solution-section,
.home-why-section,
.news-center-section {
  padding-top: var(--section-y-lg);
  padding-bottom: var(--section-y-lg);
}

.home-product-tabs-head,
.home-feature-head,
.home-solution-head,
.home-why-head,
.news-center-head {
  margin-bottom: 28px;
}

.home-product-copy h3,
.home-solution-copy h3,
.home-feature-panel-copy h3,
.home-why-core-copy h3,
.article-block h3,
.news-center-feature .news-center-copy h3 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: 0;
}

.home-product-copy p,
.home-solution-copy p,
.home-feature-panel-copy p,
.home-why-core-copy p,
.article-block p {
  font-size: 15px;
  line-height: 1.82;
}

.home-product-tab-list,
.home-feature-filter,
.home-solution-selector,
.news-center-tab-list,
.home-why-tabs {
  margin-bottom: 30px;
}

.home-product-tab-button,
.home-feature-filter-button,
.home-solution-selector button,
.news-center-tab,
.home-why-tab-list button {
  font-size: 15px;
  font-weight: 800;
}

.about-overview-card h2 {
  font-size: 36px;
  line-height: 1.25;
}

.about-overview-card p,
.about-value-card p,
.timeline-content p {
  font-size: 15px;
  line-height: 1.78;
}

.about-values-section,
.about-timeline-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.about-timeline-years b {
  font-size: 24px;
}

.timeline-year {
  font-size: 36px;
}

.timeline-content h3 {
  font-size: 30px;
}

.industry-authority-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.home-news-section {
  padding-top: var(--section-y);
  padding-bottom: 38px;
}

.home-support-section {
  padding: 18px 0 16px;
}

section + section,
.about-timeline-section + section,
.legacy-cases-section + section {
  margin-top: 0;
}

@media (max-width: 980px) {
  .nav-shell {
    flex-wrap: wrap;
    min-height: 64px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 174px;
    height: 36px;
  }

  .industry-authority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .industry-authority-tab-row {
    gap: 24px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav {
    display: none;
    flex-basis: 100%;
    order: 3;
    padding: 0 0 14px;
  }

  .nav.is-open {
    display: grid;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    padding: 10px 12px;
  }

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

  .mega {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
    margin-bottom: 8px;
  }

  .mega::before {
    display: none;
  }

  .nav-item::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hero-slide,
  .article-block,
  .article-block.is-flipped,
  .split,
  .about-moat-grid,
  .about-moat-footer,
  .about-values-grid,
  .about-address-grid,
  .product-audience-head,
  .system-price-head,
  .system-price-group-head,
  .about-overview-layout,
  .about-timeline,
  .legacy-case-grid,
  .knowledge-directory-grid,
  .news-center-layout,
  .news-center-list,
  .article-meta-grid,
  .home-news-grid,
  .home-support-grid,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .legacy-case-grid {
    gap: 24px;
  }

  .legacy-case-card {
    grid-template-rows: 240px 1fr;
    min-height: auto;
  }

  .legacy-case-body {
    padding: 28px;
  }

  .legacy-case-body h3 {
    font-size: 26px;
  }

  .legacy-case-tags {
    min-height: auto;
  }

  .home-support-grid {
    gap: 18px;
  }

  .home-support-card {
    justify-content: flex-start;
    padding: 0;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-slide-inner {
    padding-top: 92px;
  }

  .hero-banner,
  .hero-banner .hero-track,
  .hero-banner .hero-slide-inner {
    min-height: 620px;
  }

  h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero h1 {
    font-size: 36px;
    white-space: normal;
  }

  .hero-title-line {
    font-size: 30px;
    font-weight: 500;
    white-space: normal;
  }

  .hero-title-line.accent {
    font-size: 38px;
    font-weight: 720;
  }

  .hero-stats {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-mascot-card {
    display: none;
  }

  .hero-stats div {
    min-height: 74px;
  }

  .hero-stats strong {
    font-size: 32px;
  }

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

  .product-audience-head h2,
  .product-audience-head p,
  .system-price-head h2,
  .system-price-head p {
    grid-column: auto;
  }

  .system-price-head h2 {
    font-size: 30px;
  }

  .system-price-group-head {
    align-items: start;
  }

  .home-news-head h2 {
    font-size: 30px;
  }

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

  .home-product-tabs-section {
    padding: 58px 0 64px;
  }

  .home-product-tabs-head h2 {
    font-size: 30px;
  }

  .home-product-tab-list {
    gap: 18px;
    margin-bottom: 42px;
  }

  .home-product-tab-button {
    min-height: 56px;
    font-size: 17px;
  }

  .home-product-tab-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-product-visual {
    min-height: 300px;
  }

  .home-product-visual img {
    min-height: 300px;
  }

  .home-feature-section {
    padding: 58px 0 70px;
  }

  .home-feature-head h2 {
    font-size: 30px;
  }

  .home-feature-head,
  .home-feature-panel,
  .home-solution-selector,
  .home-solution-card.is-active {
    grid-template-columns: 1fr;
  }

  .home-feature-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-solution-section {
    padding: 62px 0 74px;
  }

  .home-solution-head h2 {
    font-size: 30px;
  }

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

  .home-solution-card,
  .home-solution-media {
    min-height: auto;
  }

  .home-solution-media {
    height: 300px;
  }

  .news-center-section {
    padding: 62px 0 74px;
  }

  .news-center-head h2 {
    font-size: 30px;
  }

  .news-center-tab-list {
    flex-wrap: wrap;
  }

  .news-center-panel-head {
    display: grid;
    gap: 10px;
  }

  .news-center-panel-head p {
    max-width: none;
    text-align: left;
  }

  .home-why-section {
    padding: 64px 0 46px;
  }

  .home-why-head h2 {
    font-size: 30px;
  }

  .home-why-core-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
  }

  .home-why-core-copy {
    max-width: none;
    min-height: auto;
  }

  .home-why-moat {
    min-height: auto;
  }

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

  .hero-art {
    min-height: 420px;
  }

  .hero-art > img {
    min-height: 420px;
  }

  .hero-controls-shell {
    margin-top: -86px;
  }

  .page-visual {
    min-height: 360px;
  }

  .page-hero,
  .page-hero-content {
    min-height: 380px;
  }

  .page-hero-content {
    padding: 58px 0;
  }

  .page-hero-bg {
    background-position: 58% center;
  }

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

  .legacy-home-business {
    padding: 70px 0 50px;
  }

  .legacy-home-business h2 {
    font-size: 30px;
  }

  .legacy-home-help {
    height: auto;
    min-height: 720px;
    padding: 64px 0;
  }

  .legacy-home-help-main {
    width: min(100% - 40px, var(--max));
    display: grid;
    gap: 34px;
  }

  .legacy-home-help-left {
    width: 100%;
    margin: 0;
  }

  .legacy-home-help-left p {
    margin-bottom: 34px;
  }

  .legacy-home-help-controls {
    margin-left: 0;
  }

  .legacy-home-help-right {
    height: auto;
    width: 100%;
  }

  .legacy-home-help-track {
    overflow: hidden;
  }

  .legacy-home-help-card {
    flex-basis: min(464px, calc(100vw - 44px));
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .scene-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .scene-gallery-card,
  .scene-gallery-card.primary {
    aspect-ratio: 1.35;
  }

  .article-block.is-flipped .article-copy {
    order: 0;
  }

  .about-timeline::before {
    content: none;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 0;
  }

  .timeline-year {
    position: static;
    text-align: left;
    font-size: 30px;
  }

  .timeline-dot {
    left: 4px;
    top: 8px;
  }

  .media-card.large {
    grid-row: span 1;
  }

  .product-showcase-card figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-showcase-card figcaption span {
    justify-content: flex-start;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .faq-category-nav {
    position: static;
  }

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

  .service-flow-cards,
  .service-peak-grid {
    grid-template-columns: 1fr;
  }

  .floating-action-bar {
    right: 14px;
    gap: 14px;
  }

  .floating-action {
    width: 54px;
    min-height: 54px;
  }

  .floating-action.consult {
    width: 58px;
    min-height: 116px;
  }

  .floating-action-vertical {
    font-size: 19px;
  }

  .support-popover {
    right: calc(100% + 18px);
    grid-template-columns: 94px minmax(0, 1fr);
    width: min(470px, calc(100vw - 104px));
    gap: 16px;
    padding: 18px;
  }

  .support-qr img {
    width: 94px;
    height: 94px;
  }

  .support-copy h3 {
    font-size: 20px;
  }

  .support-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .support-lines em {
    font-size: 15px;
  }

  .online-chat-panel {
    width: min(920px, calc(100vw - 28px));
  }

  .online-chat-shell {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .online-chat-messages {
    max-height: 390px;
    padding-inline: 22px;
  }

  .online-chat-quick {
    padding-inline: 22px;
  }

  .apply-layout,
  .apply-benefit-grid {
    grid-template-columns: 1fr;
  }

  .apply-form-panel {
    position: static;
  }

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

  .service-orbit {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .service-orbit::before {
    display: none;
  }

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

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

  .service-orbit-core {
    min-height: 148px;
    border-radius: var(--radius);
  }
}

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

  .container,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .hero-copy-panel,
  .hero h1,
  .hero-copy,
  .hero-title-line,
  .apply-layout,
  .apply-copy,
  .apply-copy h1,
  .apply-copy h2,
  .apply-copy > p,
  .apply-benefit,
  .apply-benefit p,
  .apply-form-panel,
  .appointment-form,
  .apply-form {
    min-width: 0;
    max-width: 100%;
  }

  .hero-title-line,
  .hero-copy,
  .apply-copy h1,
  .apply-copy h2,
  .apply-copy > p,
  .apply-benefit p {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .contact-fields,
  .location-fields {
    grid-template-columns: 1fr;
  }

  .appointment-form,
  .apply-form {
    gap: 13px;
  }

  .appointment-form input,
  .appointment-form textarea,
  .appointment-form select,
  .apply-form input,
  .apply-form textarea,
  .apply-form select {
    min-height: 46px;
    font-size: 15px;
  }

  .form-note {
    margin-top: -2px;
  }

  h1 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .industry-authority-section {
    padding: 46px 0 28px;
  }

  .industry-authority-head {
    margin-bottom: 30px;
  }

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

  .industry-authority-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .industry-authority-tab-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .industry-authority-logo-wall {
    width: calc(100% + 16px);
    margin-left: -8px;
  }

  .industry-authority-card {
    min-height: auto;
  }

  .industry-authority-card strong {
    font-size: 16px;
  }

  .faq-category-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-flow-card,
  .service-peak-card {
    min-height: auto;
    padding: 22px;
  }

  .product-audience-block {
    padding: 24px;
  }

  .system-price-group {
    padding: 22px;
  }

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

  .system-price-group-head h3 {
    font-size: 24px;
  }

  .system-price-card {
    padding: 20px;
  }

  .system-price-current strong {
    font-size: 30px;
  }

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

  .product-audience-head p {
    font-size: 15px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    white-space: normal;
  }

  .hero-title-line {
    font-size: 28px;
    font-weight: 500;
    white-space: normal;
  }

  .hero-title-line.accent {
    font-size: 32px;
    font-weight: 720;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 168px;
    height: 34px;
  }

  .brand small {
    display: none;
  }

  .hero-track {
    min-height: 590px;
  }

  .hero-slide-inner {
    min-height: 590px;
    padding: 96px 0 92px;
  }

  .hero-banner,
  .hero-banner .hero-track,
  .hero-banner .hero-slide-inner {
    min-height: 590px;
  }

  .hero-banner .hero-slide-inner {
    padding-bottom: 58px;
  }

  .hero-stats {
    margin-top: 22px;
    padding: 10px;
  }

  .hero-stats span {
    font-size: 13px;
  }

  .hero-stats strong {
    font-size: 30px;
  }

  .hero-slide-bg {
    background-position: 62% center;
  }

  .hero-slide::before {
    background:
      radial-gradient(circle at 16% 22%, rgba(24, 181, 142, 0.2), transparent 34%),
      linear-gradient(180deg, rgba(245, 252, 248, 0.98) 0%, rgba(239, 250, 246, 0.92) 56%, rgba(255, 255, 255, 0.7) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(239, 250, 246, 0.48));
  }

  .hero-art,
  .hero-art > img {
    min-height: 300px;
  }

  .product-route {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .quick-results {
    grid-template-columns: 1fr;
  }

  .page-visual,
  .page-visual img {
    min-height: 280px;
  }

  .article-block {
    padding: 18px;
  }

  .legacy-cases-section {
    padding: 34px 0 54px;
  }

  .legacy-home-business {
    padding: 48px 0 36px;
  }

  .legacy-home-business-inner {
    width: min(100% - 28px, var(--max));
  }

  .legacy-home-business h2 {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .legacy-home-help {
    padding: 44px 0;
  }

  .legacy-home-help-left h2 {
    margin-bottom: 22px;
    font-size: 26px;
  }

  .legacy-home-help-left p {
    font-size: 13px;
    line-height: 23px;
  }

  .legacy-home-help-tabs button {
    font-size: 14px;
  }

  .legacy-home-help-track {
    gap: 18px;
  }

  .legacy-home-help-card {
    height: auto;
    min-height: 372px;
    border-radius: 16px;
  }

  .legacy-home-help-media {
    height: 190px;
  }

  .legacy-home-help-card p {
    padding: 22px;
  }

  .home-why-section {
    padding: 46px 0 34px;
  }

  .home-why-head {
    margin-bottom: 28px;
    text-align: left;
  }

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

  .home-why-head p {
    font-size: 16px;
  }

  .home-why-tabs {
    margin: 28px 0 30px;
  }

  .home-why-tab-list {
    justify-content: flex-start;
    gap: 10px;
  }

  .home-why-tab-list button {
    min-width: auto;
    height: 40px;
    padding: 0 15px;
    font-size: 15px;
  }

  .home-why-core-copy h3 {
    font-size: 26px;
    white-space: normal;
  }

  .home-why-core-copy p {
    font-size: 16px;
  }

  .home-why-core-copy,
  .home-why-moat {
    padding: 24px;
  }

  .home-why-moat-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .home-why-moat-card,
  .home-why-moat-card.layer-2,
  .home-why-moat-card.layer-3,
  .home-why-moat-card.layer-4 {
    grid-template-columns: 36px 1fr;
    margin-left: 0;
  }

  .home-why-moat-card span {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }

  .home-why-core-cards {
    grid-template-columns: 1fr;
  }

  .home-why-core-card {
    min-height: auto;
    padding: 22px;
  }

  .news-center-section {
    padding: 44px 0 58px;
  }

  .news-center-head {
    margin-bottom: 26px;
    text-align: left;
  }

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

  .news-center-head p {
    font-size: 16px;
  }

  .news-center-tab-list {
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
  }

  .news-center-tab {
    min-width: 112px;
    min-height: 42px;
    font-size: 14px;
  }

  .news-center-feature .news-center-media,
  .news-center-card .news-center-media {
    height: 176px;
  }

  .news-center-copy,
  .news-center-feature .news-center-copy {
    padding: 22px;
  }

  .news-center-feature .news-center-copy h3,
  .news-center-copy h3 {
    font-size: 22px;
  }

  .legacy-cases-heading h2,
  .legacy-partner-wall h2 {
    font-size: 24px;
  }

  .legacy-case-card {
    grid-template-rows: 210px 1fr;
    min-height: auto;
  }

  .legacy-case-body {
    padding: 22px;
  }

  .legacy-case-body h3 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .legacy-case-tags {
    min-height: auto;
    gap: 8px;
  }

  .legacy-case-tags span {
    padding: 7px 10px;
    font-size: 14px;
  }

  .legacy-case-body p {
    font-size: 15px;
    line-height: 1.85;
  }

  .legacy-logo-item {
    flex-basis: 156px;
    height: 72px;
  }

  .product-showcase-card figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 10px;
  }

  .home-product-tabs-section {
    padding: 44px 0 52px;
  }

  .home-product-tabs-head {
    margin-bottom: 30px;
    text-align: center;
  }

  .home-product-tabs-head h2 {
    font-size: 28px;
  }

  .home-product-tab-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }

  .home-product-tab-button {
    min-height: 48px;
    padding: 12px 0;
    border-bottom-width: 3px;
    font-size: 16px;
  }

  .home-product-copy h3 {
    font-size: 26px;
  }

  .home-product-copy strong {
    font-size: 18px;
  }

  .home-product-actions .btn {
    width: 100%;
  }

  .home-product-visual,
  .home-product-visual img {
    min-height: 230px;
  }

  .home-feature-section {
    padding: 44px 0 54px;
  }

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

  .home-feature-head {
    display: grid;
    gap: 12px;
  }

  .home-feature-head p {
    font-size: 15px;
  }

  .home-feature-filter,
  .home-feature-panel,
  .home-solution-selector,
  .home-solution-list,
  .home-solution-card.is-active {
    grid-template-columns: 1fr;
  }

  .home-feature-filter-button {
    min-height: 48px;
  }

  .home-feature-panel {
    padding: 0;
  }

  .home-feature-panel-copy h3 {
    font-size: 24px;
  }

  .home-feature-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 14px;
    scroll-padding-left: 0;
  }

  .home-feature-card {
    flex: 0 0 min(300px, 82vw);
    min-height: auto;
    padding: 24px;
  }

  .home-solution-section {
    padding: 44px 0 54px;
  }

  .home-solution-head {
    margin-bottom: 28px;
    text-align: left;
  }

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

  .home-solution-head p {
    font-size: 16px;
  }

  .home-solution-card {
    min-height: auto;
  }

  .home-solution-copy {
    padding: 24px;
  }

  .home-solution-copy h3 {
    font-size: 26px;
  }

  .home-solution-media {
    height: 180px;
    min-height: 180px;
  }

  .article-block h3 {
    font-size: 24px;
  }

  .article-visual,
  .article-visual img {
    min-height: 220px;
  }

  .page-hero,
  .page-hero-content {
    min-height: 360px;
  }

  .page-hero::before,
  .page-hero.gold::before {
    background:
      linear-gradient(90deg, rgba(248, 250, 248, 0.98) 0%, rgba(248, 250, 248, 0.9) 52%, rgba(248, 250, 248, 0.5) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(251, 246, 235, 0.28));
  }

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

  .home-news-section {
    padding: 54px 0 28px;
  }

  .home-news-head {
    margin-bottom: 26px;
    text-align: left;
  }

  .home-news-head h2,
  .home-support-head h2 {
    font-size: 24px;
    white-space: normal;
  }

  .home-news-card {
    min-height: auto;
    padding: 24px;
  }

  .home-news-card h3 {
    margin: 18px 0 18px;
    font-size: 20px;
  }

  .home-support-panel {
    padding: 24px;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-modal-panel {
    height: min(640px, calc(100vh - 32px));
    padding: 58px 18px 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 255, 255, 0.7) 100%),
      url("/assets/generated/contact-modal-bg.png") 62% center / cover no-repeat;
  }

  .contact-modal-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 40px;
  }

  .contact-tab-panel {
    min-height: 450px;
  }

  .contact-qr {
    width: min(250px, 76vw);
    padding: 12px;
  }

  .contact-modal-copy p {
    margin-top: 18px;
    font-size: 22px;
  }

  .contact-modal-copy strong {
    font-size: 34px;
  }

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

  .floating-action-bar {
    top: auto;
    right: 12px;
    bottom: 18px;
    transform: none;
  }

  .floating-action {
    width: 48px;
    min-height: 48px;
  }

  .floating-action.consult {
    width: 52px;
    min-height: 98px;
  }

  .floating-mascot {
    width: 38px;
    height: 38px;
  }

  .floating-icon {
    width: 28px;
    height: 28px;
  }

  .floating-action-vertical {
    font-size: 17px;
  }

  .floating-action.apply {
    font-size: 15px;
  }

  .support-popover {
    right: 0;
    bottom: calc(100% + 12px);
    top: auto;
    grid-template-columns: 1fr;
    width: min(320px, calc(100vw - 28px));
    transform: translateY(8px);
  }

  .support-qr {
    justify-items: center;
  }

  .support-lines span {
    display: grid;
    gap: 4px;
  }

  .support-lines small {
    justify-self: start;
  }

  .support-popover::after {
    display: none;
  }

  .floating-support.is-open .support-popover,
  .floating-support:focus-within .support-popover,
  .floating-support:hover .support-popover {
    transform: translateY(0);
  }

  .online-chat {
    padding: 10px;
    align-items: end;
  }

  .online-chat-panel {
    width: calc(100vw - 20px);
    min-height: min(92vh, 760px);
  }

  .online-chat-header {
    padding: 14px 16px;
  }

  .online-chat-avatar {
    width: 46px;
    height: 46px;
  }

  .online-chat-header strong {
    font-size: 20px;
  }

  .online-chat-header span {
    font-size: 13px;
  }

  .online-chat-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .online-chat-main {
    grid-template-rows: auto minmax(220px, 42vh) auto auto;
  }

  .online-chat-messages {
    max-height: 42vh;
    padding: 14px 16px 20px;
  }

  .chat-message {
    max-width: 94%;
  }

  .chat-message p {
    font-size: 15px;
  }

  .online-chat-quick {
    padding: 0 16px 14px;
  }

  .online-chat-input-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .online-chat-input-actions button {
    width: 100%;
  }

  .online-chat-aside {
    display: none;
  }

  .support-qr {
    justify-items: start;
    text-align: left;
  }

  .apply-page-section {
    padding: 42px 0 56px;
  }

  .apply-copy h1 {
    font-size: 34px;
  }

  .apply-copy h2 {
    font-size: 25px;
    line-height: 1.34;
  }

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

  .apply-form-panel {
    padding: 22px;
  }

  .apply-form label {
    font-size: 17px;
  }
}

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

  .hero-copy-panel,
  .hero h1,
  .hero-title-line,
  .hero-copy,
  .apply-layout,
  .apply-copy,
  .apply-copy h1,
  .apply-copy h2,
  .apply-copy > p,
  .apply-benefit,
  .apply-benefit p,
  .apply-form-panel,
  .apply-form,
  .appointment-form {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .hero-title-line {
    display: block;
    font-size: 27px;
    line-height: 1.28;
  }

  .hero-title-line.accent {
    font-size: 30px;
    line-height: 1.22;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.85;
  }

  .contact-fields,
  .location-fields {
    grid-template-columns: minmax(0, 1fr);
  }
}

.wechat-article-hero {
  padding: 82px 0 34px;
  background: linear-gradient(180deg, #f6fbf8 0%, #fff 100%);
  border-bottom: 1px solid rgba(24, 32, 41, 0.08);
}

.wechat-article-hero-inner {
  max-width: 860px;
}

.wechat-article-channel {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  color: var(--green);
  background: rgba(19, 123, 99, 0.09);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.wechat-article-hero h1 {
  margin: 18px 0 14px;
  color: #16212c;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
}

.wechat-article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
  color: #6a7884;
  font-size: 14px;
  font-weight: 700;
}

.wechat-article-byline span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 18px;
  vertical-align: middle;
  border-radius: 50%;
  background: rgba(24, 32, 41, 0.25);
}

.wechat-article-hero p {
  max-width: 760px;
  margin: 0;
  color: #40505e;
  font-size: 18px;
  line-height: 1.85;
}

.wechat-article-section {
  padding: 40px 0 78px;
  background: #fff;
}

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

.wechat-article-lead {
  margin: 0 0 24px;
  padding: 22px 24px;
  color: #263746;
  background: #f7faf8;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 700;
}

.wechat-article-quote {
  margin: 0 0 28px;
  padding: 24px 28px;
  color: #13241d;
  background: linear-gradient(135deg, rgba(19, 123, 99, 0.1), rgba(247, 250, 248, 0.94));
  border: 1px solid rgba(19, 123, 99, 0.18);
  border-radius: 8px;
  font-size: 22px;
  line-height: 1.65;
  font-weight: 900;
}

.wechat-article-cover {
  margin: 0 0 36px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(24, 32, 41, 0.1);
}

.wechat-article-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.wechat-article-block {
  padding: 34px 0;
  border-top: 1px solid rgba(24, 32, 41, 0.1);
}

.wechat-article-index {
  width: fit-content;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.wechat-article-block h2 {
  margin: 0 0 18px;
  color: #14202b;
  font-size: 30px;
  line-height: 1.32;
}

.wechat-article-block p {
  margin: 0 0 18px;
  color: #354656;
  font-size: 17px;
  line-height: 2.05;
}

.wechat-article-inline-image {
  max-width: 560px;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(24, 32, 41, 0.1);
  border-radius: 8px;
  background: #f7faf8;
}

.wechat-article-inline-image img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

.wechat-article-inline-image figcaption {
  padding: 10px 14px;
  color: #667482;
  font-size: 13px;
  line-height: 1.6;
}

.wechat-article-points {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.wechat-article-points span {
  position: relative;
  display: block;
  padding: 13px 16px 13px 42px;
  color: #233646;
  background: #f7faf8;
  border: 1px solid rgba(24, 32, 41, 0.08);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.65;
}

.wechat-article-points span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(19, 123, 99, 0.1);
}

.wechat-article-summary {
  margin-top: 14px;
  padding: 26px 28px;
  background: #f9fbfa;
  border: 1px solid rgba(24, 32, 41, 0.1);
  border-radius: 8px;
}

.wechat-article-summary strong,
.wechat-article-cta strong {
  display: block;
  margin-bottom: 10px;
  color: #14202b;
  font-size: 22px;
}

.wechat-article-summary p,
.wechat-article-cta p {
  margin: 0;
  color: #40505e;
  font-size: 16px;
  line-height: 1.9;
}

.wechat-article-cta {
  margin-top: 28px;
  padding: 28px;
  background: linear-gradient(135deg, #eaf6f1, #fff);
  border: 1px solid rgba(19, 123, 99, 0.18);
  border-radius: 8px;
}

.wechat-article-cta .btn {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .wechat-article-hero {
    padding: 54px 0 26px;
  }

  .wechat-article-hero h1 {
    font-size: 31px;
    line-height: 1.28;
  }

  .wechat-article-byline {
    gap: 8px 12px;
  }

  .wechat-article-byline span:not(:last-child)::after {
    margin-left: 12px;
  }

  .wechat-article-hero p,
  .wechat-article-lead,
  .wechat-article-block p {
    font-size: 16px;
    line-height: 1.9;
  }

  .wechat-article-section {
    padding: 28px 0 58px;
  }

  .wechat-article-lead,
  .wechat-article-quote,
  .wechat-article-summary,
  .wechat-article-cta {
    padding: 20px;
  }

  .wechat-article-quote {
    font-size: 19px;
  }

  .wechat-article-block {
    padding: 28px 0;
  }

  .wechat-article-block h2 {
    font-size: 24px;
  }
}

/* Global readability refinement: soften typography and make content pages feel calmer. */
:root {
  --ink: #1f2a33;
  --muted: #6f7b84;
  --heading: #17212b;
  --soft-heading: #25323d;
  --line: #e4ecea;
  --shadow: 0 16px 42px rgba(18, 44, 58, 0.07);
  --shadow-soft: 0 10px 26px rgba(18, 44, 58, 0.055);
  --section-y: 54px;
  --section-y-lg: 64px;
  --h2: 30px;
  --h3: 21px;
}

body {
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.76;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.nav-link,
.nav-phone,
.btn,
.tag,
.news-center-tab {
  font-weight: 600;
}

.mega strong,
.card-body h3,
.role-card strong,
.process li,
.comparison th,
.footer-grid strong {
  font-weight: 650;
}

.section-head h2,
.news-center-head h2,
.page-hero h1,
.wechat-article-hero h1,
.home-solution-head h2,
.home-why-head h2,
.legacy-home-help-left h2,
.about-overview-copy h2,
.about-address-section .section-head h2 {
  color: var(--heading);
  font-weight: 650;
  letter-spacing: 0;
}

.section-head h2,
.news-center-head h2 {
  line-height: 1.34;
}

.section-head p,
.news-center-head p,
.page-hero p,
.card-body p,
.news-center-copy p,
.about-value-card p,
.home-solution-copy p,
.footer-grid p {
  color: var(--muted);
  font-weight: 400;
}

.card,
.news-center-feature,
.news-center-card,
.about-value-card,
.knowledge-directory-card,
.article-block,
.home-solution-card {
  border-color: rgba(31, 54, 65, 0.1);
  box-shadow: 0 14px 36px rgba(18, 44, 58, 0.055);
}

.card-body h3,
.news-center-copy h3 {
  color: var(--soft-heading);
  font-weight: 600;
}

.news-center-section {
  background: #f7faf9;
}

.news-center-head {
  margin-bottom: 30px;
}

.news-center-tab-list {
  box-shadow: 0 10px 26px rgba(18, 44, 58, 0.045);
}

.news-center-copy h3 {
  margin: 8px 0 12px;
  font-size: 20px;
  line-height: 1.45;
}

.news-center-feature .news-center-copy h3 {
  font-size: 26px;
  line-height: 1.38;
}

.news-center-feature .news-center-copy h3,
.news-center-card .news-center-copy h3,
.card-body h3,
.about-value-card h3,
.home-solution-copy h3,
.knowledge-directory-card h3,
.article-block h3 {
  font-weight: 600 !important;
}

.news-center-copy b {
  font-weight: 600;
}

.about-value-card span {
  color: #b9c4cb;
  font-weight: 650;
}

.about-value-card h3 {
  color: var(--soft-heading);
  font-weight: 650;
}

.about-value-card p {
  font-weight: 400;
  line-height: 1.8;
}

.wechat-article-hero {
  padding: 72px 0 30px;
  background: #fff;
}

.wechat-article-hero-inner,
.wechat-article-shell {
  max-width: 900px;
}

.wechat-article-channel {
  font-weight: 600;
}

.wechat-article-hero h1 {
  max-width: 1040px;
  margin: 16px 0 16px;
  font-size: clamp(36px, 3.4vw, 50px);
  line-height: 1.28;
}

.wechat-article-hero p {
  color: #5f6d77;
  font-size: 17px;
  line-height: 1.9;
}

.wechat-article-lead {
  color: #33424d;
  background: #fbfcfc;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.95;
}

.wechat-article-quote {
  color: #27343d;
  background: #f8fbfa;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
}

.wechat-article-index {
  font-weight: 600;
}

.wechat-article-block h2 {
  color: var(--heading);
  font-size: 26px;
  font-weight: 650;
  line-height: 1.42;
}

.wechat-article-block p {
  color: #3f4d58;
  font-size: 17px;
  line-height: 2.05;
}

.wechat-article-points span {
  color: #34434d;
  font-weight: 500;
}

.wechat-article-summary strong,
.wechat-article-cta strong {
  color: var(--heading);
  font-size: 20px;
  font-weight: 650;
}

@media (max-width: 760px) {
  :root {
    --h2: 26px;
    --h3: 20px;
  }

  .section-head h2,
  .news-center-head h2 {
    line-height: 1.35;
  }

  .wechat-article-hero h1 {
    font-size: 30px;
    line-height: 1.35;
  }

  .wechat-article-block h2 {
    font-size: 22px;
  }
}

/* Mobile polish for final delivery. */
@media (max-width: 620px) {
  :root {
    --section-y: 38px;
    --section-y-lg: 46px;
    --h2: 24px;
    --h3: 19px;
  }

  body {
    font-size: 15px;
    line-height: 1.72;
    background: #f8fbfa;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .nav-shell {
    width: calc(100% - 24px);
    min-height: 60px;
    gap: 10px;
  }

  .brand-logo {
    width: 154px;
    height: 32px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 20px;
  }

  .nav {
    gap: 4px;
    padding: 6px 0 12px;
  }

  .nav-link {
    min-height: 42px;
    padding: 9px 10px;
    color: #24343f;
    font-size: 15px;
    font-weight: 600;
  }

  .mega {
    gap: 6px;
    padding: 8px 10px 12px;
    border-radius: 8px;
    background: #f8fbfa;
  }

  .mega a {
    padding: 10px 0;
  }

  .mega strong {
    font-size: 14px;
    font-weight: 600;
  }

  .mega span {
    font-size: 12px;
    line-height: 1.5;
  }

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

  section {
    padding-block: 36px;
  }

  .section-head,
  .news-center-head {
    margin-bottom: 22px;
    text-align: left;
  }

  .section-head h2,
  .news-center-head h2,
  .home-product-tabs-head h2,
  .home-feature-head h2,
  .home-solution-head h2,
  .home-why-head h2,
  .home-news-head h2,
  .home-support-head h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.36;
  }

  .section-head p,
  .news-center-head p,
  .home-product-tabs-head p,
  .home-feature-head p,
  .home-solution-head p,
  .home-why-head p,
  .home-news-head p,
  .home-support-head p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.75;
  }

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

  .hero-slide-inner {
    padding: 84px 0 52px;
  }

  .hero-copy-panel {
    padding: 0;
  }

  .hero h1,
  .hero-title-line,
  .hero-title-line.accent {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.34;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.78;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
  }

  .page-hero,
  .page-hero-content {
    min-height: auto;
  }

  .page-hero-content {
    padding: 44px 0;
  }

  .page-hero h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.34;
  }

  .page-about .page-hero h1,
  .page-about .page-hero-copy h1,
  .about-overview-card h2,
  .about-overview-copy h2 {
    font-size: 28px !important;
    font-weight: 600 !important;
    line-height: 1.36 !important;
  }

  .page-hero p {
    font-size: 15px;
    line-height: 1.78;
  }

  .news-center-section {
    padding: 38px 0 48px;
  }

  .news-center-tab-list {
    justify-content: flex-start;
    gap: 8px;
    margin: 0 -12px 18px;
    padding: 0 12px 4px;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scrollbar-width: none;
  }

  .news-center-tab-list::-webkit-scrollbar {
    display: none;
  }

  .news-center-tab {
    flex: 0 0 auto;
    min-width: auto;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(31, 54, 65, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #5f6d77;
    font-size: 14px;
    font-weight: 500;
  }

  .news-center-tab.is-active {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
  }

  .news-center-layout,
  .news-center-list {
    gap: 14px;
  }

  .news-center-feature,
  .news-center-card {
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(18, 44, 58, 0.055);
  }

  .news-center-feature .news-center-media,
  .news-center-card .news-center-media {
    height: 150px;
  }

  .news-center-copy,
  .news-center-feature .news-center-copy {
    padding: 18px;
  }

  .news-center-feature .news-center-copy h3,
  .news-center-copy h3 {
    margin: 0 0 9px;
    font-size: 18px;
    font-weight: 600 !important;
    line-height: 1.45;
  }

  .news-center-copy p {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.72;
  }

  .card,
  .about-value-card,
  .knowledge-directory-card,
  .home-news-card,
  .home-support-card,
  .service-flow-card,
  .service-peak-card {
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(18, 44, 58, 0.05);
  }

  .card-body {
    padding: 20px;
  }

  .card-body h3,
  .home-news-card h3,
  .home-support-card strong,
  .about-value-card h3 {
    font-size: 18px;
    font-weight: 600 !important;
    line-height: 1.42;
  }

  .card-body p,
  .home-news-card p,
  .about-value-card p,
  .knowledge-directory-card p {
    font-size: 14px;
    line-height: 1.72;
  }

  .home-product-tabs-section,
  .home-feature-section,
  .home-solution-section,
  .home-why-section,
  .home-news-section,
  .about-values-section,
  .about-timeline-section,
  .service-guarantee-service,
  .service-process-section,
  .service-peak-section {
    padding: 42px 0;
  }

  .home-product-tab-list,
  .home-feature-filter,
  .home-why-tab-list {
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .home-product-tab-list::-webkit-scrollbar,
  .home-feature-filter::-webkit-scrollbar,
  .home-why-tab-list::-webkit-scrollbar {
    display: none;
  }

  .home-product-tab-button,
  .home-feature-filter-button,
  .home-why-tab-list button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
  }

  .home-solution-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-solution-copy {
    padding: 22px;
  }

  .home-solution-copy h3 {
    font-size: 21px;
    font-weight: 600 !important;
  }

  .home-solution-copy p,
  .home-solution-copy li {
    font-size: 14px;
    line-height: 1.72;
  }

  .wechat-article-hero {
    padding: 38px 0 22px;
  }

  .wechat-article-hero h1 {
    margin: 12px 0;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.38;
  }

  .wechat-article-byline {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .wechat-article-hero p {
    font-size: 15px;
    line-height: 1.78;
  }

  .wechat-article-section {
    padding: 24px 0 44px;
  }

  .wechat-article-lead,
  .wechat-article-quote,
  .wechat-article-summary,
  .wechat-article-cta {
    padding: 16px;
  }

  .wechat-article-lead {
    font-size: 15px;
    line-height: 1.82;
  }

  .wechat-article-quote {
    font-size: 16px;
    line-height: 1.78;
  }

  .wechat-article-block {
    padding: 24px 0;
  }

  .wechat-article-block h2 {
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.45;
  }

  .wechat-article-block p {
    font-size: 15px;
    line-height: 1.9;
  }

  .wechat-article-points {
    gap: 8px;
  }

  .wechat-article-points span {
    padding: 11px 13px 11px 34px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
  }

  .wechat-article-points span::before {
    left: 15px;
    top: 20px;
    width: 6px;
    height: 6px;
  }

  .wechat-article-inline-image {
    max-width: 100%;
  }

  .footer {
    padding: 34px 0 22px;
  }

  .footer-grid {
    gap: 22px;
  }

  .floating-action-bar {
    right: 10px;
    gap: 10px;
  }

  .floating-action.consult {
    width: 50px;
    min-height: 96px;
  }

  .floating-action {
    width: 48px;
    min-height: 48px;
  }

  .floating-action-vertical {
    font-size: 16px;
    letter-spacing: 0;
  }

  .floating-mascot-image,
  .floating-icon {
    width: 28px;
    height: 28px;
  }

  .online-chat-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 26px);
    border-radius: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  main,
  section,
  .site-footer,
  .container,
  .nav-shell {
    max-width: 100%;
  }

  .container,
  .nav-shell {
    width: 100%;
    padding-inline: 16px;
  }

  .site-footer {
    overflow: hidden;
  }

  .site-footer .container {
    padding-inline: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid a,
  .footer-grid p {
    overflow-wrap: anywhere;
  }

  .industry-authority-section {
    padding: 42px 0 34px;
    overflow: hidden;
  }

  .industry-authority-section .container {
    padding-inline: 16px;
  }

  .industry-authority-head {
    margin-bottom: 22px;
  }

  .industry-authority-head h2 {
    font-size: 28px;
    line-height: 1.28;
  }

  .industry-authority-head p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.78;
  }

  .industry-authority-tab-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-bottom: 22px;
  }

  .industry-authority-tab {
    width: 100%;
    min-height: 46px;
    font-size: 17px;
  }

  .industry-authority-intro {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .industry-authority-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }

  .industry-authority-card {
    gap: 14px;
    width: 100%;
  }

  .industry-authority-card figure {
    width: 100%;
    height: auto;
    min-height: 150px;
  }

  .industry-authority-card img {
    max-width: min(78vw, 260px);
    max-height: 170px;
  }

  .industry-authority-card strong {
    max-width: 100%;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .industry-authority-logo-wall {
    width: 100%;
    margin-inline: 0;
    overflow: hidden;
  }

  .industry-authority-logo-wall img {
    width: 100%;
    max-width: 100%;
    border-radius: 6px;
  }

  .apply-logo-wall-image,
  .legacy-logo-wall-image {
    overflow: hidden;
  }

  .apply-logo-wall-image img,
  .legacy-logo-wall-image img {
    width: 100%;
    max-width: 100%;
  }

  .floating-action-bar {
    right: 8px;
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 8px;
    z-index: 80;
  }

  .floating-action {
    width: 42px;
    min-height: 42px;
  }

  .floating-action.consult {
    width: 44px;
    min-height: 82px;
  }

  .floating-action.apply {
    width: 44px;
    min-height: 44px;
    font-size: 13px;
  }

  .floating-action-vertical {
    margin-top: 3px;
    font-size: 14px;
  }

  .floating-mascot,
  .floating-mascot-image,
  .floating-icon {
    width: 24px;
    height: 24px;
  }

  .home-feature-carousel {
    overflow: visible;
  }

  .home-feature-grid {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .home-feature-card {
    width: 100%;
    min-width: 0;
    flex: none;
    min-height: auto;
    padding: 20px;
    scroll-snap-align: none;
  }

  .home-feature-card span,
  .home-feature-card h4,
  .home-feature-card p,
  .home-feature-card b {
    writing-mode: horizontal-tb;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .home-feature-card h4 {
    margin: 10px 0 8px;
    font-size: 20px;
    line-height: 1.35;
  }

  .home-feature-card p {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.72;
  }

  .home-feature-arrow {
    display: none;
  }
}

/* Mobile compatibility patch for final delivery. */
.floating-support:not(.is-open):not(:hover):not(:focus-within) .support-popover {
  visibility: hidden;
}

@media (max-width: 980px) {
  .about-timeline-years {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    overflow: visible;
  }

  .about-timeline-years::after {
    display: none;
  }

  .about-timeline-years button {
    min-width: 0;
    min-height: 52px;
    gap: 6px;
    padding: 8px 6px;
    border: 1px solid rgba(15, 127, 104, 0.12);
    border-radius: 8px;
    background: #fff;
  }

  .about-timeline-years b {
    font-size: 18px;
    letter-spacing: 0;
  }

  .about-timeline-years i {
    width: 8px;
    height: 8px;
  }

  .timeline-card,
  .timeline-card.is-active {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .hero,
  .hero-slide,
  .page-hero,
  .about-timeline-section,
  .home-product-tabs-section,
  .home-feature-section,
  .home-solution-section,
  .industry-authority-section,
  .footer {
    overflow-x: clip;
  }

  .hero-actions,
  .home-product-actions,
  .card-actions,
  .wechat-article-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .home-product-actions .btn,
  .card-actions .btn,
  .wechat-article-cta-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .home-product-tab-list,
  .home-feature-filter,
  .home-why-tab-list,
  .news-center-tab-list {
    max-width: 100%;
  }

  .home-product-tab-button,
  .home-feature-filter-button,
  .home-why-tab-list button,
  .news-center-tab {
    white-space: normal;
    line-height: 1.32;
  }

  .about-timeline-years {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-timeline-years button {
    min-height: 48px;
  }

  .timeline-visual {
    min-height: 210px;
    padding: 14px;
  }

  .timeline-visual::after {
    inset: 28px 8px 8px 28px;
  }

  .timeline-visual img {
    height: 220px;
  }

  .timeline-content h3 {
    font-size: 22px;
    line-height: 1.38;
  }

  .timeline-content .article-list li {
    font-size: 14px;
    line-height: 1.72;
  }

  .floating-action-bar {
    right: 8px;
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 7px;
  }

  .floating-action {
    width: 40px;
    min-height: 40px;
  }

  .floating-action.consult {
    width: 42px;
    min-height: 78px;
  }

  .floating-action.apply {
    width: 42px;
    min-height: 42px;
  }

  .floating-action-vertical {
    font-size: 13px;
  }

  .support-popover {
    right: 0;
    bottom: calc(100% + 10px);
    top: auto;
    width: min(304px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    transform: translateY(8px);
  }

  .floating-support.is-open .support-popover,
  .floating-support:focus-within .support-popover,
  .floating-support:hover .support-popover {
    transform: translateY(0);
  }

  .support-qr,
  .support-copy,
  .support-lines,
  .support-lines span,
  .support-lines b,
  .support-lines em {
    max-width: 100%;
    min-width: 0;
  }

  .support-lines span {
    display: grid;
    justify-content: start;
    gap: 2px;
  }

  .support-lines em {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Mobile compatibility patch v2: force compact phone layout. */
@media (max-width: 620px) {
  .home-product-tab-list {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 0 20px !important;
    padding: 0 0 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity !important;
    -webkit-overflow-scrolling: touch;
  }

  .home-product-tab-button {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: max-content !important;
    min-height: 38px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(15, 127, 104, 0.16) !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #24343f !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    box-shadow: 0 8px 18px rgba(18, 44, 58, 0.04) !important;
  }

  .home-product-tab-button.is-active {
    border-color: var(--green) !important;
    color: #fff !important;
    background: var(--green) !important;
  }

  .home-feature-section {
    padding: 34px 0 42px !important;
  }

  .home-feature-head {
    margin-bottom: 18px !important;
  }

  .home-feature-grid {
    display: grid !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    overflow: visible !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
  }

  .home-feature-card {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    grid-template-areas:
      "num title"
      "num desc"
      "num link" !important;
    column-gap: 13px !important;
    row-gap: 6px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 118px !important;
    padding: 16px !important;
    border-radius: 8px !important;
    align-items: start !important;
  }

  .home-feature-card span {
    grid-area: num !important;
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(15, 127, 104, 0.1) !important;
    color: var(--green) !important;
    font-size: 13px !important;
    line-height: 1 !important;
    writing-mode: horizontal-tb !important;
  }

  .home-feature-card h4 {
    grid-area: title !important;
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.34 !important;
    writing-mode: horizontal-tb !important;
    white-space: normal !important;
  }

  .home-feature-card p {
    grid-area: desc !important;
    margin: 0 !important;
    color: #52616b !important;
    font-size: 13px !important;
    line-height: 1.62 !important;
    writing-mode: horizontal-tb !important;
    white-space: normal !important;
  }

  .home-feature-card b {
    grid-area: link !important;
    margin-top: 2px !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    writing-mode: horizontal-tb !important;
    white-space: nowrap !important;
  }

  .home-feature-arrow {
    display: none !important;
  }
}
