﻿:root {
  --orange: #ff6900;
  --taupe: #746660;
  --ink: #2d2927;
  --muted: #756c68;
  --line: #ece6e2;
  --soft: #fbf8f6;
  --paper: #ffffff;
  --shadow: 0 16px 44px rgba(116, 102, 96, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 22px;
  height: 74px;
  padding: 0 clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 176px;
}

.brand img {
  display: block;
  width: 176px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 34px);
  color: #3d3734;
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 74px;
}

.nav a::after {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

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

.nav a:hover::after,
.nav .active::after {
  width: 24px;
}

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

.nav-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 220px;
  max-height: min(68vh, 520px);
  padding: 8px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(45, 41, 39, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  visibility: hidden;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-menu a {
  justify-content: flex-start;
  height: auto;
  min-height: 36px;
  padding: 8px 11px;
  border-radius: 6px;
  color: #3d3734;
  font-size: 13px;
}

.nav-menu a::after {
  display: none;
}

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

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search {
  display: flex;
  align-items: center;
  width: 190px;
  height: 38px;
  padding: 0 12px 0 16px;
  border: 1px solid #d8d0cc;
  border-radius: 999px;
  background: #fff;
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
}

.search span {
  color: var(--taupe);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.lang-switch {
  display: none;
}

.search-hero {
  padding: 86px clamp(22px, 5vw, 72px) 54px;
  background:
    linear-gradient(90deg, rgba(255, 247, 242, 0.92), rgba(255, 247, 242, 0.58)),
    url("assets/hero-main.png") center / cover;
}

.search-hero div {
  max-width: 780px;
}

.search-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(36px, 5vw, 58px);
}

.search-hero p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.search-page {
  padding-top: 42px;
}

.search-summary {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
}

.search-result-list {
  display: grid;
  gap: 16px;
}

.search-result-card {
  padding: 24px 26px;
  border: 1px solid #eee2dc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(44, 37, 34, 0.06);
}

.search-result-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.search-result-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.search-result-card h2 a {
  color: var(--ink);
}

.search-result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.search-result-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 435px;
  display: flex;
  align-items: center;
  padding: 54px clamp(22px, 5vw, 72px) 66px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 249, 245, 0.9) 0%, rgba(255, 246, 239, 0.64) 34%, rgba(255, 246, 239, 0.04) 72%),
    url("assets/hero-main.png") center center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(60deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(255, 105, 0, 0.16), transparent 18%);
  background-size: 84px 84px, auto;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  margin: 0;
  color: var(--taupe);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.16;
  font-weight: 800;
}

.company-name {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.35;
  font-weight: 800;
}

.company-name-en {
  margin: 0 0 28px;
  color: var(--taupe);
  font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.35;
  font-weight: 700;
}

.hero-lead {
  margin: 24px 0 0;
  color: var(--taupe);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 28px 0 34px;
}

.hero-proof span {
  display: inline-flex;
  flex-direction: column;
  min-width: 138px;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof b {
  margin-bottom: 4px;
  color: var(--taupe);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 22px;
}

.primary-btn,
.secondary-btn,
.outline-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 28px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-btn {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(255, 105, 0, 0.24);
}

.secondary-btn,
.outline-orange {
  border: 1px solid var(--orange);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.slider-dots span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(116, 102, 96, 0.45);
  border-radius: 50%;
  background: #fff;
}

.slider-dots .current {
  border-color: var(--orange);
  background: var(--orange);
}

.section,
.quick-entry {
  padding: 34px clamp(22px, 5vw, 72px) 28px;
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.quick-entry h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.section-heading.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-heading.split a {
  color: var(--taupe);
  font-size: 15px;
  font-weight: 700;
}

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

.service-grid-expanded .service-card {
  min-height: 178px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px 24px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(116, 102, 96, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange), rgba(255, 105, 0, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:nth-child(1) {
  background: linear-gradient(145deg, #fff7f0, #fff);
  border-color: rgba(255, 105, 0, 0.22);
}

.service-card:nth-child(3),
.service-card:nth-child(5) {
  background: linear-gradient(145deg, #fff, #fbf8f6);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
}

.service-card p {
  min-height: 36px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.service-card a {
  color: var(--ink);
  font-size: 24px;
}

.advantages {
  position: relative;
  overflow: hidden;
  padding: 46px clamp(22px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 105, 0, 0.26), transparent 25%),
    linear-gradient(120deg, #746660 0%, #5c514d 55%, #443b38 100%);
}

.advantages::after {
  position: absolute;
  inset: auto -8% -42% auto;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.advantages .section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.advantages .section-heading::after {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  content: "以国际化服务网络、专业审核团队与公开透明的认证流程，支持组织建立可信赖的管理能力。";
  font-size: 15px;
  line-height: 1.8;
}

.advantages .section-kicker,
.advantages .section-heading h2 {
  color: #fff;
}

.advantages .section-kicker {
  color: #ffb27d;
}

.advantage-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.advantage-item {
  min-height: 128px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.advantage-item span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
}

.advantage-item strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.advantage-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.advantages .outline-orange {
  grid-column: 4;
  justify-self: end;
  margin-top: 10px;
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  background: transparent;
}

.about-overview,
.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: 58px clamp(22px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(251, 248, 246, 0.92)),
    linear-gradient(135deg, rgba(255, 105, 0, 0.08), transparent 46%);
  border-bottom: 1px solid var(--line);
}

.about-preview {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 246, 0.92)),
    linear-gradient(135deg, rgba(255, 105, 0, 0.08), transparent 46%);
}

.about-preview-copy h2,
.about-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}

.about-preview-copy p:not(.section-kicker),
.about-copy p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-profile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(116, 102, 96, 0.1);
}

.about-profile img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.about-stat-grid span {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 18px 16px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.about-stat-grid b {
  color: var(--ink);
  font-size: 18px;
}

.about-documents {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 28px;
  align-items: start;
  padding: 48px clamp(22px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.about-documents h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
}

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

.about-list a {
  min-height: 118px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(116, 102, 96, 0.08);
}

.about-list b,
.about-list span {
  display: block;
}

.about-list b {
  color: var(--ink);
  font-size: 18px;
}

.about-list span {
  margin-top: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 18px;
}

.news-card {
  position: relative;
  min-height: 182px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(116, 102, 96, 0.06);
}

.news-card.feature {
  padding: 0 0 22px;
  overflow: hidden;
}

.news-card.feature .news-card-body {
  padding: 0 22px;
}

.news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6.4;
  object-fit: cover;
  background: var(--soft);
}

.news-card time,
.news-card span {
  display: inline-block;
  margin: 18px 22px 10px 0;
  color: var(--muted);
  font-size: 12px;
}

.news-card span {
  float: right;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 105, 0, 0.08);
}

.news-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.news-card.feature h3,
.news-card.feature p,
.news-card.feature time {
  margin-left: 0;
  margin-right: 0;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.news-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.notice-list {
  display: grid;
  grid-column: span 3;
  gap: 12px;
}

.notice-list a {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(116, 102, 96, 0.05);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.notice-list a:hover {
  border-color: rgba(255, 105, 0, 0.36);
  transform: translateY(-2px);
}

.notice-list time {
  color: var(--muted);
  font-size: 13px;
}

.notice-list strong {
  color: var(--ink);
  line-height: 1.55;
}

.notice-list span {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 105, 0, 0.08);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.quick-entry {
  background: #fff;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.entry-grid a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, #f5efeb, #fff);
}

.entry-grid span {
  grid-row: span 2;
  color: var(--taupe);
  font-size: 32px;
}

.entry-grid strong {
  color: var(--ink);
  font-size: 17px;
}

.entry-grid small {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
}

.entry-grid em {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--taupe);
  border-radius: 5px;
  color: var(--taupe);
  font-style: normal;
  font-size: 26px;
}

.academy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
  padding: 34px clamp(22px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 105, 0, 0.14), transparent 24%),
    var(--taupe);
}

.academy h2 {
  margin: 0;
  font-size: 32px;
}

.academy h2 span {
  color: var(--orange);
}

.academy p {
  margin: 10px 0 8px;
  font-size: 22px;
}

.academy small {
  display: block;
  max-width: 430px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.academy-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.academy-menu a {
  min-height: 112px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.academy-menu a:last-child {
  border-right: 0;
}

.academy-menu span,
.academy-menu b,
.academy-menu small {
  display: block;
}

.academy-menu span {
  color: var(--orange);
  font-size: 30px;
}

.academy-menu b {
  margin: 8px 0;
  color: var(--ink);
}

.academy-menu small {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 48px;
  padding: 36px clamp(22px, 5vw, 72px) 24px;
  color: #fff;
  background: #574d49;
}

.footer-brand {
  width: 190px;
  padding: 8px 10px;
  border-radius: 4px;
  background: #fff;
}

.footer-brand img {
  width: 170px;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.query-hero {
  padding: 72px clamp(22px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(68, 59, 56, 0.92), rgba(116, 102, 96, 0.72)),
    url("assets/hero-main.png") center / cover;
}

.query-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
}

.query-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.query-shell {
  padding: 42px clamp(22px, 5vw, 72px) 72px;
  background: var(--soft);
}

.query-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: end;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--ink);
  font-weight: 800;
}

.form-field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #d8d0cc;
  border-radius: 5px;
  color: var(--ink);
  outline: 0;
}

.form-field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.12);
}

.query-actions {
  display: flex;
  gap: 10px;
}

.reset-btn {
  color: var(--taupe);
  background: #fff;
}

.query-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.query-summary {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 24px 0 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  background: #fff;
}

.query-summary strong {
  color: var(--ink);
}

.query-summary span {
  color: var(--muted);
}

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

.certificate-card,
.empty-result {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(116, 102, 96, 0.08);
}

.certificate-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.certificate-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.cert-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.status-valid {
  color: #177245;
  background: #eaf8f0;
}

.status-paused {
  color: #9a5b00;
  background: #fff2d8;
}

.status-revoked,
.status-expired {
  color: #9b1c1c;
  background: #fde8e8;
}

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

.certificate-meta div {
  padding: 14px;
  border-radius: 6px;
  background: var(--soft);
}

.certificate-meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.certificate-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.certificate-scope {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.certificate-scope strong {
  color: var(--ink);
}

.certificate-scope p,
.certificate-disclaimer,
.empty-result p {
  color: var(--muted);
  line-height: 1.75;
}

.certificate-disclaimer {
  margin-bottom: 0;
  font-size: 13px;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 360px;
  padding: 72px clamp(22px, 5vw, 72px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(68, 59, 56, 0.95), rgba(116, 102, 96, 0.72) 48%, rgba(255, 105, 0, 0.14)),
    url("assets/hero-main.png") center / cover;
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--orange), rgba(255, 105, 0, 0));
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.services-hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.96), rgba(255, 246, 239, 0.78) 48%, rgba(255, 246, 239, 0.12)),
    url("assets/services-hero.png") center / cover;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.1;
}

.page-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
}

.services-hero p:not(.section-kicker) {
  max-width: 820px;
  color: #5e544f;
  font-weight: 600;
}

.service-overview,
.service-category,
.client-zone {
  padding: 58px clamp(22px, 5vw, 72px);
}

.service-overview {
  background: #fff;
}


.news-hero {
  background:
    linear-gradient(90deg, rgba(68, 59, 56, 0.94), rgba(68, 59, 56, 0.66) 52%, rgba(255, 105, 0, 0.08)),
    url("assets/news-hero-reporting.png") center / cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(68, 59, 56, 0.93), rgba(68, 59, 56, 0.68) 50%, rgba(255, 105, 0, 0.08)),
    url("assets/about-building.jpg") left center / 155% auto no-repeat;
}

.documents-hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.98), rgba(255, 250, 246, 0.9) 46%, rgba(255, 250, 246, 0.24)),
    url("assets/public-documents-hero.png") center / cover;
}

.page-hero.documents-hero p:not(.section-kicker) {
  color: #5f5550;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.1;
}

.page-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
}

.service-overview,
.service-category,
.client-zone {
  padding: 58px clamp(22px, 5vw, 72px);
}

.service-overview {
  background: #fff;
}

.news-board {
  padding: 46px clamp(22px, 5vw, 72px) 64px;
  background: #fff;
}

.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.news-toolbar a,
.news-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--taupe);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.news-toolbar a.active,
.news-toolbar button.active,
.news-toolbar a:hover,
.news-toolbar button:hover {
  border-color: rgba(255, 105, 0, 0.42);
  color: var(--orange);
  background: rgba(255, 105, 0, 0.08);
}

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

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.news-feature-panel,
.notice-panel,
.news-list article {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(116, 102, 96, 0.06);
}

.news-feature-panel {
  overflow: hidden;
}

.news-feature-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.news-feature-panel > div {
  padding: 26px 28px 30px;
}

.news-feature-panel time,
.news-list time,
.notice-panel time {
  color: var(--muted);
  font-size: 13px;
}

.news-feature-panel span,
.news-list span {
  display: inline-flex;
  margin-left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 105, 0, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.news-feature-panel h2,
.notice-panel h2,
.news-list h2 {
  margin: 14px 0 12px;
  color: var(--ink);
  line-height: 1.42;
}

.news-feature-panel h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.news-feature-panel h2 a {
  color: inherit;
}

.news-feature-panel p,
.news-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.news-source {
  display: block;
  margin-top: 14px;
  color: var(--taupe);
  font-size: 12px;
  font-weight: 800;
}

.notice-panel {
  padding: 24px;
}

.notice-panel h2 {
  margin-top: 0;
  font-size: 24px;
}

.notice-panel a {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.notice-panel strong {
  color: var(--ink);
  line-height: 1.55;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.news-list article {
  min-height: 238px;
  padding: 24px;
}

.news-list h2 {
  font-size: 22px;
}

.news-list a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900;
}

.news-empty-state {
  min-height: 330px;
  display: grid;
  align-content: center;
}

.news-empty-state h2,
.news-empty-card h2 {
  margin-top: 0;
}

.news-empty-text,
.news-empty-card p {
  color: var(--muted);
  line-height: 1.8;
}

.article-shell {
  padding: 34px clamp(22px, 5vw, 72px) 68px;
  background: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--taupe);
  font-weight: 800;
}

.breadcrumb strong {
  color: var(--ink);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 36px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-header {
  max-width: 920px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.article-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 105, 0, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.article-header h1 {
  max-width: 980px;
  margin: 18px 0 16px;
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.18;
}

.article-header p {
  max-width: 820px;
  margin: 0;
  color: var(--taupe);
  font-size: 18px;
  line-height: 1.85;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-thumb {
  float: right;
  width: min(38%, 340px);
  margin: 28px 0 18px 28px;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.article-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-thumb figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.article-content {
  max-width: 860px;
  padding-top: 26px;
  color: var(--taupe);
  font-size: 17px;
  line-height: 1.95;
}

.article-content h2,
.article-attachments h2,
.sidebar-panel h2 {
  margin: 30px 0 14px;
  color: var(--ink);
  line-height: 1.35;
}

.article-content p {
  margin: 0 0 18px;
}

.article-content a {
  color: var(--orange);
  font-weight: 800;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px 0;
  border-radius: 7px;
}

.article-content figure {
  margin: 24px 0;
}

.article-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.article-content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--orange);
  border-radius: 7px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 800;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 22px;
}

.article-attachments {
  max-width: 860px;
  margin-top: 28px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.article-attachments a {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
}

.article-attachments strong {
  color: var(--ink);
}

.article-attachments span {
  color: var(--muted);
  font-size: 13px;
}

.article-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin-top: 28px;
}

.article-pager a,
.sidebar-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(116, 102, 96, 0.06);
}

.article-pager a {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
}

.article-pager span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.article-pager strong {
  color: var(--ink);
  line-height: 1.5;
}

.article-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
}

.sidebar-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.sidebar-panel h2 {
  margin-top: 0;
  font-size: 20px;
}

.sidebar-panel a:not(.primary-btn) {
  color: var(--taupe);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.sidebar-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-card .primary-btn {
  width: 100%;
  margin-top: 4px;
}

.about-intro,
.about-business,
.about-values,
.about-cta {
  padding: 58px clamp(22px, 5vw, 72px);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  background: #fff;
}

.about-intro-copy h2,
.about-cta h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.about-intro-copy p:not(.section-kicker),
.about-cta p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-intro-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(116, 102, 96, 0.1);
}

.about-intro-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-intro-card div {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
}

.about-intro-card strong {
  color: var(--ink);
  font-size: 20px;
}

.about-intro-card span {
  color: var(--muted);
  line-height: 1.7;
}

.about-business {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) 1fr;
  gap: clamp(28px, 5vw, 58px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.about-business h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}

.business-copy {
  display: grid;
  gap: 14px;
}

.business-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.culture-section,
.accreditation-section {
  padding: 58px clamp(22px, 5vw, 72px);
  background: var(--soft);
}

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

.culture-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(116, 102, 96, 0.06);
}

.culture-grid span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.culture-grid h3 {
  margin: 36px 0 14px;
  color: var(--ink);
  font-size: 26px;
}

.culture-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-values {
  background: #fff;
}

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

.value-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(116, 102, 96, 0.06);
}

.value-grid span {
  color: var(--orange);
  font-weight: 900;
}

.value-grid h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 22px;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.accreditation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  background: var(--soft);
}

.accreditation-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.accreditation-copy p:not(.section-kicker) {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.9;
}

.accreditation-panel {
  display: grid;
  gap: 18px;
}

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

.credential-list.is-carousel {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 3px;
}

.credential-list.is-carousel::before,
.credential-list.is-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 58px;
  pointer-events: none;
  content: "";
}

.credential-list.is-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--soft), rgba(250, 247, 244, 0));
}

.credential-list.is-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--soft), rgba(250, 247, 244, 0));
}

.credential-track {
  display: flex;
  width: max-content;
  animation: credential-roll 34s linear infinite;
  will-change: transform;
}

.credential-list.is-carousel:hover .credential-track,
.credential-list.is-carousel:focus-within .credential-track {
  animation-play-state: paused;
}

.credential-group {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 21vw, 310px);
  grid-template-rows: 1fr;
  gap: 16px;
  padding-right: 16px;
}

.credential-list a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(116, 102, 96, 0.06);
}

.credential-list .credential-preview-card {
  align-content: start;
  gap: 0;
  min-height: 420px;
  padding: 0;
}

.credential-list a::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 105, 0, 0.12);
  content: "PDF";
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
}

.credential-list .credential-preview-card::after {
  content: none;
}

.credential-preview-thumb {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 316px;
  margin: 0;
  overflow: hidden;
  background: #f8f4f0;
}

.credential-preview-thumb img {
  display: block;
  width: 100%;
  height: 316px;
  object-fit: contain;
  object-position: top center;
  background: #fff;
}

.credential-preview-fallback {
  display: grid;
  min-height: 316px;
  width: 100%;
  place-content: center;
  gap: 8px;
  color: rgba(255, 105, 0, 0.4);
  background: #fff;
}

.credential-preview-fallback b {
  font-size: 48px;
  letter-spacing: 0;
}

.credential-preview-fallback span {
  color: var(--muted);
}

.credential-preview-caption {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
  background: #fff;
}

.credential-list span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.credential-list strong {
  color: var(--ink);
  line-height: 1.5;
}

.credential-list small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.credential-empty {
  margin: 0;
  padding: 28px;
  border: 1px dashed rgba(255, 105, 0, 0.28);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

@keyframes credential-roll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .credential-track {
    animation: none;
  }
}

.document-center {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  padding: 42px clamp(22px, 5vw, 72px) 68px;
  background: #fff;
}

.document-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(116, 102, 96, 0.07);
}

.document-sidebar a {
  padding: 12px 14px;
  border-radius: 5px;
  color: var(--taupe);
  font-size: 14px;
  font-weight: 900;
}

.document-sidebar a.active,
.document-sidebar a:hover {
  color: #fff;
  background: var(--orange);
}

.document-content {
  display: grid;
  gap: 24px;
}

.document-group {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(116, 102, 96, 0.06);
}

.document-group:nth-child(even) {
  background: var(--soft);
}

.document-group-head h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
}

.document-group-note {
  max-width: 860px;
  margin: -6px 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.document-list article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.document-list span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.document-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.document-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.document-list a,
.document-list button {
  justify-self: start;
  align-self: end;
  margin-top: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 105, 0, 0.32);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 105, 0, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.document-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.document-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.document-detail-hero {
  padding: 54px clamp(22px, 5vw, 72px) 48px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(68, 59, 56, 0.96), rgba(68, 59, 56, 0.78) 54%, rgba(255, 105, 0, 0.18)),
    url("assets/hero-world-map.png") center / cover;
}

.breadcrumb-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 900;
}

.document-detail-hero .section-kicker,
.document-detail-hero h1,
.document-detail-hero > p {
  color: #fff;
}

.document-detail-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.12;
}

.document-detail-hero > p {
  max-width: 840px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
}

.document-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.document-meta-row span,
.document-meta-row a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.document-meta-row a {
  border-color: rgba(255, 105, 0, 0.46);
  background: rgba(255, 105, 0, 0.28);
}

.document-action-row a {
  min-height: 38px;
  padding: 0 18px;
}

.document-action-row a.download {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.document-detail-hero + .document-reader,
.document-detail-hero + .document-center,
.document-detail-hero + .certificate-samples-section {
  display: none;
}

.document-online-section {
  padding: 44px clamp(22px, 5vw, 72px) 76px;
  background:
    linear-gradient(180deg, #fffaf6, #fff 260px);
}

.document-online-article {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(116, 102, 96, 0.08);
  color: var(--taupe);
  font-size: 16px;
  line-height: 1.9;
}

.document-online-article h2,
.document-online-article h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  line-height: 1.35;
}

.document-online-article h2:first-child,
.document-online-article h3:first-child,
.document-online-article p:first-child {
  margin-top: 0;
}

.document-online-article p {
  margin: 0 0 16px;
}

.document-online-article ul,
.document-online-article ol {
  margin: 0 0 18px 22px;
  padding: 0;
}

.document-online-article table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
}

.document-online-article th,
.document-online-article td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.document-online-article img {
  max-width: 100%;
  height: auto;
}

.document-online-article figure {
  margin: 18px 0;
}

.document-online-article figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.document-online-article .sample-grid {
  margin-top: 18px;
}

.document-reader {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 44px clamp(22px, 5vw, 72px) 76px;
  background:
    linear-gradient(180deg, #fffaf6, #fff 250px);
}

.reader-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(116, 102, 96, 0.08);
}

.reader-sidebar strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
}

.reader-sidebar a {
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--taupe);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.reader-sidebar a:hover {
  color: #fff;
  background: var(--orange);
}

.reader-article {
  min-width: 0;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(116, 102, 96, 0.08);
}

.reader-article h2,
.reader-article h3,
.reader-article h4,
.reader-article p,
.reader-article ul {
  max-width: 980px;
}

.reader-article h2 {
  margin: 42px 0 18px;
  padding-top: 8px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.25;
}

.reader-article h2:first-child {
  margin-top: 0;
}

.reader-article h3 {
  margin: 26px 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.reader-article h4 {
  margin: 20px 0 8px;
  color: var(--orange);
  font-size: 16px;
  line-height: 1.55;
}

.reader-article p,
.policy-list li {
  color: var(--taupe);
  font-size: 16px;
  line-height: 2;
}

.reader-article p {
  margin: 0 0 14px;
}

.clause-line {
  padding-left: 16px;
  border-left: 3px solid rgba(255, 105, 0, 0.22);
}

.policy-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.policy-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.document-figure {
  margin: 20px 0 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
  overflow-x: auto;
}

.document-figure img {
  display: block;
  width: 100%;
  min-width: 680px;
  height: auto;
  border: 1px solid rgba(116, 102, 96, 0.18);
  background: #fff;
}

.document-figure-narrow img {
  max-width: 640px;
  min-width: min(100%, 360px);
  margin: 0 auto;
}

.document-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.reader-table-wrap {
  max-width: 100%;
  margin: 18px 0 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.reader-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.reader-table th,
.reader-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--taupe);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}

.reader-table th {
  color: var(--ink);
  background: var(--soft);
  font-weight: 900;
}

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

.reader-table th:last-child,
.reader-table td:last-child {
  border-right: 0;
}

.mark-figure {
  display: grid;
  gap: 14px;
  margin: 18px 0 32px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

.mark-figure img {
  display: block;
  max-width: 100%;
  height: auto;
  padding: 12px;
  border: 1px solid rgba(116, 102, 96, 0.16);
  border-radius: 6px;
  background: #fff;
}

.seal-figure {
  display: inline-grid;
  margin: 0 0 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

.seal-figure img {
  max-width: 180px;
  height: auto;
}

.simple-status {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.simple-status strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 13px;
}

.simple-status p {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.certificate-samples-section {
  padding: 48px clamp(22px, 5vw, 72px) 76px;
  background:
    linear-gradient(180deg, #fffaf6, #fff 260px);
}

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

.sample-card {
  min-width: 0;
}

.sample-card button {
  display: grid;
  gap: 12px;
  width: 100%;
  min-height: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 32px rgba(116, 102, 96, 0.06);
  cursor: pointer;
  text-align: left;
}

.sample-card button:hover {
  border-color: rgba(255, 105, 0, 0.38);
  transform: translateY(-2px);
}

.sample-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border: 1px solid rgba(116, 102, 96, 0.16);
  border-radius: 6px;
  background: #fffaf6;
}

.sample-card span {
  min-height: 42px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.sample-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(38, 33, 31, 0.78);
}

.sample-lightbox[aria-hidden="false"] {
  display: flex;
}

.sample-lightbox-panel {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(1100px, 96vw);
  max-height: 92vh;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.sample-lightbox-panel h2 {
  margin: 0;
  padding-right: 48px;
  color: var(--ink);
  font-size: 20px;
}

.sample-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #fffaf6;
}

.sample-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.implementation-rules {
  padding: 48px clamp(22px, 5vw, 72px) 76px;
  background:
    linear-gradient(180deg, #fffaf6, #fff 240px);
}

.implementation-head {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-bottom: 28px;
}

.implementation-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

.implementation-head p:not(.section-kicker) {
  margin: 0;
  color: var(--taupe);
  font-size: 16px;
  line-height: 1.8;
}

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

.implementation-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(116, 102, 96, 0.06);
}

.implementation-grid span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.implementation-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
}

.implementation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.implementation-grid a {
  justify-self: start;
  align-self: end;
  margin-top: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 105, 0, 0.32);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 105, 0, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.implementation-overview {
  background:
    linear-gradient(180deg, #fff, #fffaf6);
}

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

.implementation-grid.compact article {
  min-height: 164px;
  padding: 18px;
}

.implementation-grid.compact h3 {
  font-size: 16px;
}

.implementation-grid.compact p {
  display: none;
}

.about-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(68, 59, 56, 0.96), rgba(116, 102, 96, 0.88)),
    url("assets/hero-main.png") center / cover;
}

.about-cta .section-kicker,
.about-cta h2,
.about-cta p {
  color: #fff;
}

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

.portfolio-grid a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 1.22fr) minmax(166px, 0.78fr);
  grid-template-rows: auto auto 1fr auto;
  min-height: 214px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(116, 102, 96, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.portfolio-grid a::before {
  display: block;
  grid-row: 1 / -1;
  grid-column: 1;
  min-height: 214px;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 105, 0, 0.18), rgba(35, 33, 31, 0.16)),
    url("assets/service-quality.png") center / cover;
  filter: saturate(0.92);
}

.portfolio-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 105, 0, 0.34);
  box-shadow: 0 18px 42px rgba(116, 102, 96, 0.14);
}

.portfolio-grid a:nth-child(2)::before {
  background:
    linear-gradient(120deg, rgba(255, 105, 0, 0.12), rgba(51, 89, 63, 0.18)),
    url("assets/service-carbon.png") center / cover;
}

.portfolio-grid a:nth-child(3)::before {
  background:
    linear-gradient(120deg, rgba(255, 105, 0, 0.16), rgba(35, 33, 31, 0.2)),
    url("assets/service-ohs.png") center / cover;
}

.portfolio-grid a:nth-child(4)::before {
  background:
    linear-gradient(120deg, rgba(255, 105, 0, 0.16), rgba(15, 32, 48, 0.28)),
    url("assets/service-digital.png") center / cover;
}

.portfolio-grid a:nth-child(5)::before {
  background:
    linear-gradient(120deg, rgba(255, 105, 0, 0.14), rgba(116, 102, 96, 0.22)),
    url("assets/service-ce.png") center / cover;
}

.portfolio-grid a:nth-child(6)::before {
  background:
    linear-gradient(120deg, rgba(255, 105, 0, 0.12), rgba(44, 91, 67, 0.22)),
    url("assets/service-esg.png") center / cover;
}

.portfolio-grid a:nth-child(7)::before {
  background:
    linear-gradient(120deg, rgba(255, 105, 0, 0.14), rgba(35, 33, 31, 0.22)),
    url("assets/service-compliance.png") center / cover;
}

.portfolio-grid a:nth-child(8)::before {
  background:
    linear-gradient(120deg, rgba(255, 105, 0, 0.16), rgba(16, 38, 56, 0.26)),
    url("assets/service-cra.png") center / cover;
}

.portfolio-grid a:nth-child(9)::before {
  background:
    linear-gradient(120deg, rgba(255, 105, 0, 0.16), rgba(116, 102, 96, 0.22)),
    url("assets/service-training.png") center / cover;
}

.portfolio-grid span,
.portfolio-grid i,
.portfolio-grid b,
.portfolio-grid small {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.portfolio-grid span {
  justify-self: end;
  margin: 22px 28px 0 0;
  padding: 8px 11px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 105, 0, 0.11);
}

.portfolio-grid i {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 10px 28px 0 0;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 105, 0, 0.28);
}

.portfolio-grid b {
  display: block;
  align-self: end;
  margin: 26px 28px 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.32;
}

.portfolio-grid small {
  display: block;
  margin: 10px 28px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.category-link-board {
  padding: 58px clamp(22px, 5vw, 72px) 68px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.category-link-board .section-heading p:not(.section-kicker) {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.category-entry-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 122px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 105, 0, 0.08), rgba(255, 255, 255, 0) 52%),
    #fff;
  box-shadow: 0 10px 28px rgba(116, 102, 96, 0.06);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.category-entry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 105, 0, 0.42);
  box-shadow: 0 15px 34px rgba(116, 102, 96, 0.11);
}

.category-entry-card b {
  color: var(--orange);
  font-size: 20px;
  line-height: 1.2;
}

.category-entry-card span {
  grid-column: 1;
  align-self: end;
  margin-top: 28px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.category-entry-card em {
  grid-row: 1 / 3;
  grid-column: 2;
  display: grid;
  place-items: center;
  align-self: end;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 105, 0, 0.42);
  border-radius: 50%;
  color: var(--orange);
  font-style: normal;
  font-size: 22px;
}

.category-entry-card:hover em {
  color: #fff;
  background: var(--orange);
}

.category-switcher {
  padding: 48px clamp(22px, 5vw, 72px) 64px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.category-switcher-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category-switcher-list a {
  min-height: 76px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.category-switcher-list a.active,
.category-switcher-list a:hover {
  border-color: rgba(255, 105, 0, 0.44);
  background: rgba(255, 105, 0, 0.07);
}

.category-switcher-list span,
.category-switcher-list small {
  display: block;
}

.category-switcher-list span {
  color: var(--ink);
  font-weight: 900;
}

.category-switcher-list small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .category-entry-grid,
  .category-switcher-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .category-entry-grid,
  .category-switcher-list {
    grid-template-columns: 1fr;
  }
}

.service-category {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #fff;
  border-top: 1px solid var(--line);
}

.service-category.tinted {
  background: var(--soft);
}

.category-copy {
  position: sticky;
  top: 104px;
}

.category-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}

.category-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

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

.program-grid article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(116, 102, 96, 0.06);
}

.program-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.program-link::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: auto;
  border: 1px solid rgba(255, 105, 0, 0.45);
  border-radius: 50%;
  color: var(--orange);
  content: "→";
  font-size: 22px;
}

.program-link:hover::after {
  color: #fff;
  background: var(--orange);
}

.program-link:hover h3 {
  color: var(--orange);
}

.program-grid.compact article {
  min-height: 118px;
}

.program-grid.single-program {
  grid-template-columns: minmax(0, 1fr);
}

.program-grid.single-program article {
  max-width: 620px;
}

.program-grid b {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
}

.program-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
}

.program-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.training-list {
  display: grid;
  gap: 12px;
}

.training-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 22px;
  border-left: 3px solid var(--orange);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(116, 102, 96, 0.06);
}

.training-list b {
  color: var(--ink);
}

.training-list span {
  color: var(--muted);
  line-height: 1.7;
}

.documents-band {
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 105, 0, 0.22), transparent 26%),
    linear-gradient(120deg, #746660 0%, #5c514d 56%, #443b38 100%);
}

.documents-band .section-kicker,
.documents-band h2 {
  color: #fff;
}

.documents-band .category-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

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

.document-links a {
  min-height: 98px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.document-links b,
.document-links span {
  display: block;
}

.document-links b {
  color: #fff;
  font-size: 17px;
}

.document-links span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.client-zone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(90deg, #fff, var(--soft));
  border-top: 1px solid var(--line);
}

.client-zone h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
}

.client-zone p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.client-actions {
  display: flex;
  gap: 12px;
}

.detail-hero .detail-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 54px clamp(22px, 5vw, 72px);
  background: var(--soft);
}

.detail-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(116, 102, 96, 0.08);
}

.detail-sidebar a {
  padding: 12px 14px;
  border-radius: 5px;
  color: var(--taupe);
  font-weight: 800;
}

.detail-sidebar a:hover {
  color: #fff;
  background: var(--orange);
}

.detail-content {
  display: grid;
  gap: 18px;
}

.detail-section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(116, 102, 96, 0.06);
}

.detail-section h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
}

.detail-section p {
  color: var(--muted);
  line-height: 1.85;
}

.overview-depth {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.overview-depth p {
  margin: 0;
}

.fact-grid,
.bullet-grid,
.value-list,
.materials-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

.fact-grid div,
.bullet-grid article,
.value-list div {
  padding: 20px;
  border-radius: 7px;
  background: var(--soft);
}

.fact-grid b,
.fact-grid span {
  display: block;
}

.fact-grid b {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 13px;
}

.fact-grid span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

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

.bullet-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.bullet-grid p,
.value-list p {
  margin: 0;
}

.value-section {
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 105, 0, 0.18), transparent 28%),
    linear-gradient(120deg, #746660, #4f4541);
}

.value-section .section-kicker,
.value-section h2 {
  color: #fff;
}

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

.value-list div {
  background: rgba(255, 255, 255, 0.09);
}

.value-list span {
  display: block;
  margin-bottom: 18px;
  color: #ffb27d;
  font-weight: 900;
}

.value-list b {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 19px;
}

.value-list p,
.value-section p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.timeline div {
  display: grid;
  grid-template-columns: 52px minmax(160px, 0.35fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  border-radius: 7px;
  background: var(--soft);
}

.timeline b {
  color: var(--orange);
  font-size: 22px;
}

.timeline span {
  color: var(--ink);
  font-weight: 900;
}

.timeline p {
  margin: 0;
}

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

.materials-list span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 190px 1fr;
    height: auto;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
  }

  .nav a {
    height: 34px;
  }

  .nav-item > a {
    height: 34px;
  }

  .nav-menu {
    left: 0;
    max-height: 380px;
    transform: translate(0, 8px);
  }

  .nav-item:hover .nav-menu,
  .nav-item:focus-within .nav-menu {
    transform: translate(0, 0);
  }

  .nav a::after {
    bottom: 0;
  }

  .header-tools {
    justify-content: flex-end;
  }

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

  .portfolio-grid,
  .service-category,
  .detail-layout,
  .about-preview,
  .about-documents,
  .about-intro,
  .about-business,
  .accreditation-section,
  .document-center,
  .document-reader,
  .client-zone {
    grid-template-columns: 1fr;
  }

  .category-copy,
  .detail-sidebar,
  .document-sidebar,
  .reader-sidebar {
    position: static;
  }

  .advantage-row,
  .culture-grid,
  .value-grid,
  .about-overview,
  .certificate-meta,
  .news-grid,
  .implementation-grid,
  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outline-orange {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header,
  .about-overview,
  .academy,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .header-tools {
    justify-content: flex-start;
  }

  .search {
    width: min(100%, 260px);
  }

  .brand,
  .brand img {
    width: 156px;
  }

  .hero {
    min-height: 520px;
    align-items: flex-start;
    padding-top: 48px;
    background-position: 64% center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .document-detail-hero {
    padding-top: 38px;
  }

  .document-meta-row span,
  .document-meta-row a {
    width: 100%;
    justify-content: center;
  }

  .reader-article {
    padding: 24px 18px;
  }

  .document-figure {
    padding: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-btn,
  .secondary-btn,
  .outline-orange {
    width: 100%;
  }

  .service-grid,
  .advantage-row,
  .culture-grid,
  .value-grid,
  .about-list,
  .about-stat-grid,
  .credential-list,
  .document-list,
  .query-form,
  .certificate-meta,
  .portfolio-grid,
  .program-grid,
  .document-links,
  .news-grid,
  .entry-grid,
  .academy-menu,
  .implementation-grid,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .sample-lightbox {
    padding: 12px;
  }

  .sample-lightbox-panel {
    max-height: 94vh;
    padding: 14px;
  }

  .credential-list.is-carousel {
    max-height: none;
  }

  .credential-group {
    grid-auto-columns: minmax(248px, 82vw);
    grid-template-rows: 1fr;
  }

  .credential-list .credential-preview-card {
    min-height: 390px;
  }

  .credential-preview-thumb,
  .credential-preview-thumb img,
  .credential-preview-fallback {
    min-height: 292px;
    height: 292px;
  }

  .portfolio-grid a {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }

  .portfolio-grid a::before {
    grid-row: auto;
    grid-column: 1;
    min-height: 168px;
  }

  .portfolio-grid span,
  .portfolio-grid i,
  .portfolio-grid b,
  .portfolio-grid small {
    grid-column: 1;
  }

  .query-actions,
  .certificate-head,
  .query-summary,
  .training-list div,
  .about-cta,
  .detail-hero .detail-hero-actions,
  .client-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .training-list div {
    grid-template-columns: 1fr;
  }

  .fact-grid,
  .bullet-grid,
  .value-list,
  .timeline div,
  .materials-list {
    grid-template-columns: 1fr;
  }

  .advantage-item {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 24px;
  }

  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* News module responsive additions */
@media (max-width: 1180px) {
  .news-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .notice-list {
    grid-column: 1 / -1;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .news-grid,
  .news-layout,
  .news-list,
  .article-pager {
    grid-template-columns: 1fr;
  }

  .notice-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .notice-list span {
    justify-self: start;
  }

  .article-shell {
    padding-top: 24px;
  }

  .article-thumb {
    float: none;
    width: 100%;
    margin: 24px 0 0;
  }

.article-thumb img {
    aspect-ratio: 16 / 9;
  }
}

/* Header normalization: keep the top navigation visually consistent on every page. */
.site-header {
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 18px;
}

.nav {
  gap: clamp(14px, 1.8vw, 28px);
  font-size: 16px;
}

.nav a {
  height: 74px;
}

.nav-item > a {
  height: 74px;
}

@media (max-width: 1180px) {
  .nav {
    font-size: 16px;
  }

  .nav a {
    height: 52px;
  }

  .nav-item > a {
    height: 52px;
  }
}

/* Final shared-brand cleanup after module merges. */
.footer-brand {
  width: 190px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-brand img {
  width: 190px;
}

/* Homepage services: compact 4-by-2 overview. */
@media (min-width: 1181px) {
  .service-grid.service-grid-expanded {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .service-grid-expanded .service-card {
    min-height: 136px;
    padding: 18px 20px 16px;
  }

  .service-grid-expanded .service-icon {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .service-grid-expanded .service-card h3 {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .service-grid-expanded .service-card p {
    min-height: 34px;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.5;
  }

  .service-grid-expanded .service-card a {
    font-size: 21px;
  }
}

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

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

/* Footer WeChat QR: compact and aligned. */
.wechat-qr {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.wechat-qr img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.wechat-qr span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

/* Services hero readability on light artwork. */
.page-hero.services-hero p:not(.section-kicker) {
  color: #5a504c;
  text-shadow: none;
}

/* Certificate inquiry redesign. */
main.certificate-redesign {
  background: #fffaf6;
}

.certificate-redesign .certificate-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 420px;
  padding: 78px clamp(22px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(44, 38, 35, 0.94), rgba(92, 78, 72, 0.74) 48%, rgba(255, 105, 0, 0.18)),
    url("assets/hero-main.png") center / cover;
}

.certificate-hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.08;
}

.certificate-hero-copy p:not(.section-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.9;
}

.certificate-hero-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.certificate-hero-panel span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-hero-panel strong {
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
}

.certificate-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.certificate-inquiry-section {
  padding: 64px clamp(22px, 5vw, 72px) 82px;
  background:
    linear-gradient(180deg, #fffaf6, #fff 320px);
}

.certificate-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.certificate-query-card,
.certificate-side-card,
.certificate-result-list .certificate-card,
.certificate-result-list .empty-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(116, 102, 96, 0.1);
}

.certificate-query-card {
  display: grid;
  gap: 22px;
  padding: 34px;
}

.certificate-query-tabs {
  display: inline-flex;
  width: fit-content;
  padding: 4px;
  border: 1px solid rgba(255, 105, 0, 0.22);
  border-radius: 8px;
  background: #fff7f0;
}

.certificate-query-tabs button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: var(--taupe);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.certificate-query-tabs button.active {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(255, 105, 0, 0.22);
}

.certificate-query-card [hidden] {
  display: none !important;
}

.certificate-query-head h2,
.certificate-side-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.25;
}

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

.certificate-query-card .form-field {
  gap: 10px;
}

.certificate-query-card .form-field label {
  font-size: 15px;
}

.certificate-query-card .form-field input {
  height: 54px;
  border-radius: 7px;
  background: #fff;
  font-size: 15px;
}

.certificate-query-card .query-actions {
  display: flex;
  gap: 12px;
}

.certificate-query-card .primary-btn,
.certificate-query-card .secondary-btn {
  min-height: 52px;
  padding-inline: 26px;
}

.certificate-side-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
}

.certificate-side-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.65;
}

.certificate-side-card li {
  padding-left: 18px;
  border-left: 3px solid rgba(255, 105, 0, 0.34);
}

.certificate-side-card a {
  color: var(--orange);
  font-weight: 900;
}

.certificate-query-summary {
  margin: 28px 0 22px;
  padding: 18px 20px;
}

.certificate-result-list {
  gap: 22px;
}

@media (max-width: 1180px) {
  .certificate-redesign .certificate-hero,
  .certificate-inquiry-layout,
  .certificate-fields {
    grid-template-columns: 1fr;
  }

  .certificate-query-tabs {
    width: 100%;
  }

  .certificate-query-tabs button {
    flex: 1;
  }
}

/* Feedback updates: fee schedule and credential view-only pages. */
.fee-schedule-page .document-detail-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.fee-schedule-page .document-detail-hero > p {
  max-width: 860px;
  color: #5a504c;
}

.fee-article h2 {
  margin-top: 34px;
  font-size: 24px;
  line-height: 1.35;
}

.fee-table {
  font-size: 15px;
}

.fee-table th,
.fee-table td {
  text-align: center;
  vertical-align: middle;
}

.fee-table th:nth-child(2),
.fee-table td:nth-child(2),
.fee-table th:nth-child(3),
.fee-table td:nth-child(3) {
  text-align: left;
}

.fee-table td:nth-child(n + 4) {
  color: var(--orange);
  font-weight: 900;
}

.fee-notes {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 22px;
  color: #5f554f;
  font-size: 15px;
  line-height: 1.85;
}

.credential-view-page {
  background: #fffaf6;
}

.credential-viewer-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 48px auto 72px;
}

.credential-viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.credential-viewer-toolbar strong {
  color: var(--ink);
  font-size: 20px;
}

.credential-frame-wrap {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.credential-frame-wrap.has-preview {
  overflow: visible;
  min-height: 0;
  padding: 18px;
}

.credential-preview-pages {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.credential-preview-page {
  margin: 0;
  display: grid;
  justify-items: center;
}

.credential-preview-page img {
  width: 100%;
  max-width: 960px;
  height: auto;
  background: #fff;
  border: 1px solid rgba(42, 31, 25, 0.1);
  box-shadow: 0 12px 36px rgba(42, 31, 25, 0.12);
}

.credential-frame-wrap iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 78vh;
  border: 0;
  background: #fff;
}

.credential-watermark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 10px;
  align-content: start;
  padding: 58px 20px;
  pointer-events: none;
  opacity: 0.22;
}

.credential-watermark span {
  display: block;
  transform: rotate(-24deg);
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.credential-viewer-shell .portal-disclaimer {
  margin: 18px 0 0;
  color: #746660;
  font-size: 14px;
  line-height: 1.8;
}

.custom-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 44px;
}

.custom-page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.custom-page-body {
  display: grid;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 56px auto 82px;
}

.custom-block,
.custom-cta-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(39, 31, 28, 0.06);
}

.custom-block-head {
  margin-bottom: 18px;
}

.custom-block h2,
.custom-cta-block h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.custom-rich-text {
  display: grid;
  gap: 12px;
  color: #5f554f;
  font-size: 16px;
  line-height: 1.85;
}

.custom-rich-text p {
  margin: 0;
}

.custom-image-block img,
.custom-split-block img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.custom-image-block img {
  max-height: 520px;
  margin: 12px 0 18px;
}

.custom-split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 32px;
}

.custom-split-copy {
  min-width: 0;
}

.custom-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.custom-card-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

.custom-card-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.custom-card-grid p {
  margin: 0 0 16px;
  color: #665b55;
  font-size: 15px;
  line-height: 1.7;
}

.custom-list-grid,
.custom-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.custom-list-grid article,
.custom-steps-grid article {
  min-height: 136px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.custom-list-grid b,
.custom-steps-grid b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.custom-steps-grid b {
  width: 42px;
  justify-content: center;
  border-radius: 5px;
  background: rgba(255, 105, 0, 0.1);
}

.custom-steps-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
}

.custom-list-grid p,
.custom-steps-grid p {
  margin: 0;
  color: #665b55;
  font-size: 15px;
  line-height: 1.75;
}

.custom-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.custom-faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.custom-faq-list summary {
  min-height: 58px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.custom-faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: #665b55;
  line-height: 1.75;
}

.text-link {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.custom-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
}

.custom-cta-block h2,
.custom-cta-block .section-kicker,
.custom-cta-block .custom-rich-text {
  color: #fff;
}

.custom-cta-block .primary-btn {
  flex: 0 0 auto;
}

.task-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.task-strip a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  min-height: 118px;
  padding: 24px clamp(22px, 4vw, 54px);
  background: #fff;
}

.task-strip span {
  grid-row: span 2;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.task-strip strong {
  color: var(--ink);
  font-size: 18px;
}

.task-strip small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
    padding: 10px 16px 8px;
  }

  .site-header .brand {
    width: 150px;
  }

  .site-header .brand img {
    width: 150px;
  }

  .site-header .header-tools {
    justify-content: end;
  }

  .site-header .search {
    display: none;
  }

  .site-header .nav {
    grid-column: 1 / -1;
    gap: 18px;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-header .nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .nav a,
  .site-header .nav-item > a {
    height: 32px;
  }

  .site-header .nav-menu {
    display: none;
  }

  .task-strip {
    grid-template-columns: 1fr;
  }

  .task-strip a {
    min-height: auto;
    padding: 20px 22px;
  }

  .custom-page-hero,
  .custom-split-block,
  .custom-card-grid,
  .custom-list-grid,
  .custom-steps-grid,
  .custom-cta-block {
    grid-template-columns: 1fr;
  }

  .custom-page-body {
    width: min(100% - 28px, 1180px);
    margin: 34px auto 54px;
  }

  .custom-block,
  .custom-cta-block {
    padding: 24px;
  }

  .custom-cta-block {
    display: grid;
  }

  .credential-viewer-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .credential-watermark {
    grid-template-columns: repeat(2, 1fr);
  }
}
