:root {
  --brand: #005bac;
  --brand-2: #0b75c9;
  --brand-dark: #06315c;
  --metric-bg: rgba(9, 59, 110, .96);
  --metric-bg-active: rgba(12, 83, 150, .98);
  --ink: #18283d;
  --text: #39485d;
  --muted: #687789;
  --line: #e3e9f1;
  --light: #f4f7fb;
  --white: #fff;
  --shadow: 0 18px 44px rgba(20, 42, 76, .12);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(1240px, calc(100% - 72px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(220, 228, 238, .9);
  box-shadow: 0 8px 28px rgba(15, 35, 65, .06);
}
.header-top {
  display: none;
  justify-content: flex-end;
  gap: 30px;
  min-height: 28px;
  padding: 0 clamp(28px, 5vw, 76px);
  color: rgba(255,255,255,.86);
  background: #073763;
  font-size: 12px;
  line-height: 28px;
}
.header-top span:first-child { margin-right: auto; }
.header-top span:not(:first-child) { display: none; }
.header-top b { font-weight: 700; }
.header-main {
  min-height: 60px;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 0 clamp(28px, 5vw, 76px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand strong { display: block; color: #132a43; font-size: 20px; line-height: 1.15; white-space: nowrap; }
.brand small { display: block; margin-top: 4px; color: #778497; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: stretch; gap: 0; color: #24364b; font-size: 16px; white-space: nowrap; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-dropdown { position: relative; display: flex; align-items: stretch; }
.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 0 18px;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--brand); }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); }
.nav-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 40;
  min-width: 150px;
  padding: 8px 0;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(13, 38, 70, .14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-submenu a {
  min-height: 42px;
  justify-content: center;
  padding: 0 22px;
  color: #24364b;
  font-size: 14px;
  font-weight: 700;
}
.nav-submenu a::after { display: none; }
.nav-submenu a:hover { color: var(--brand); background: #f1f7fd; }
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  height: 52px;
  padding: 0 8px;
  color: #0a56a6;
  background: transparent;
  border-radius: 0;
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}
.phone-link::before {
  content: "☎";
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 3px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}
.phone-link:hover { color: var(--brand-2); }

.hero-section {
  position: relative;
  z-index: 1;
  min-height: clamp(560px, calc(100vh - 260px), 640px);
  display: flex;
  align-items: center;
  overflow: visible !important;
  color: var(--white);
  background: #061d33;
}
.hero-carousel, .hero-slide, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-carousel { overflow: hidden; clip-path: inset(0); }
.hero-slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.1s ease, transform 5.2s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(3,25,48,.9), rgba(7,43,76,.72) 44%, rgba(7,43,76,.2) 76%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.18));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 18px;
  padding-bottom: 126px;
}
.hero-label,
.section-kicker,
.section-title p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-label { color: rgba(255,255,255,.82); }
.hero-label::before,
.section-kicker::before,
.section-title p::before {
  content: "";
  width: 52px;
  height: 2px;
  background: currentColor;
}
.hero-content h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1.14;
  font-weight: 900;
}
.hero-summary {
  max-width: 790px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.9);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.82;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 52px;
  padding: 0 28px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 800;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: var(--white); background: var(--brand); }
.btn-outline { color: var(--white); border: 1px solid rgba(255,255,255,.62); background: rgba(255,255,255,.05); }

.metric-bar {
  position: absolute;
  left: 50%;
  bottom: -42px;
  z-index: 4;
  width: min(92%, 1840px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--metric-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 26px 54px rgba(2, 16, 32, .18);
}
.metric-item {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px 18px 26px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.18);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 44%),
    transparent;
  transition: background-color .22s ease;
}
.metric-item:last-child { border-right: 0; }
.metric-item:hover,
.metric-item.is-playing { background-color: var(--metric-bg-active); }
.metric-item strong {
  display: block;
  width: 100%;
  color: #fff;
  font-size: clamp(38px, 3.25vw, 62px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.metric-item span {
  display: block;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 1.35vw, 25px);
  line-height: 1.2;
  white-space: nowrap;
}
.metric-strip-section { padding: 0 0 86px; background: var(--white); }
.metric-static { position: relative; left: auto; bottom: auto; transform: none; margin: 0 auto; }

.content-section { padding: 64px 0 58px; }
.page-hero + .content-section { padding-top: 32px; }
.hero-section + .content-section { padding-top: 126px; }
.hero-section + .content-section { position: relative; z-index: 0; }
.section-light { background: var(--light); }
.section-title { margin-bottom: 32px; text-align: center; }
.section-title p { justify-content: center; }
.section-title span {
  display: block;
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.project-title { margin-bottom: 46px; }
.section-title h2,
.home-about h2,
.detail-layout h2,
.about-profile h2,
.contact-layout h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.28;
}
.section-more { margin-top: 34px; text-align: center; }
.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-weight: 800;
}
.text-link::after { content: ""; width: 34px; height: 1px; margin-left: 10px; background: currentColor; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.2, .7, .2, 1),
    box-shadow .18s ease,
    border-color .18s ease,
    background-color .18s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal.scroll-reveal-left {
  transform: translateX(-34px);
}
.scroll-reveal.scroll-reveal-left.is-visible {
  transform: translateX(0);
}
.scroll-reveal.scroll-reveal-right {
  transform: translateX(34px);
}
.scroll-reveal.scroll-reveal-right.is-visible {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .roadmap-line::before,
  .roadmap-line::after,
  .roadmap-line.is-visible .roadmap-node::after,
  .culture-item::before,
  .culture-item.is-visible .culture-copy::after {
    animation: none;
    transition: none;
  }
}

.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.service-chain-title span {
  display: block;
  max-width: 1180px;
  margin: 18px auto 0;
  color: #53677f;
  font-size: 18px;
  line-height: 1.8;
  white-space: nowrap;
}
.service-chain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}
.service-chain::before {
  display: none;
}
.service-card {
  position: relative;
  z-index: 1;
  min-height: 292px;
  padding: 32px 24px 30px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #dbe9f5;
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(21, 57, 92, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: visible;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 102, 184, .38);
  box-shadow: 0 24px 52px rgba(0, 75, 140, .16);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(41, 158, 226, .1) 42%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
}
.service-card:hover::after { transform: translateX(120%); }
.service-index {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(135deg, #005aa8, #19a8dd);
  border: 7px solid #e5f4ff;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 96, 176, .2);
}
.service-phase {
  margin-bottom: 10px;
  color: #0067b8;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
}
.service-card h3 { margin-bottom: 14px; color: var(--ink); font-size: 22px; }
.service-card p { margin-bottom: 0; color: #53677f; line-height: 1.82; }
.service-card:not(:last-child)::before {
  display: none;
}
@keyframes serviceLineGrow {
  from { transform: scaleX(0); opacity: .35; }
  to { transform: scaleX(1); opacity: 1; }
}
.service-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  max-width: 1180px;
  margin: 48px auto 0;
}
.service-scope::before { display: none; }
.service-scope .service-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  align-items: center;
  gap: 24px;
  padding: 26px 26px 26px 56px;
  border: 2px solid #cfd6dc;
  border-left: 12px solid #005b9e;
  border-radius: 0 68px 68px 0;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}
.service-scope .service-card:nth-child(3n + 2),
.service-scope .service-card:nth-child(4) {
  border-left-color: #31b5e6;
}
.service-scope .service-card:hover {
  transform: translateX(8px);
  border-color: #9fc3df;
  border-left-color: #0067b8;
  box-shadow: 0 20px 42px rgba(0, 77, 140, .12);
}
.service-scope .service-card::after {
  background: linear-gradient(120deg, transparent, rgba(0, 103, 184, .08), transparent);
}
.service-scope .service-card::before { display: none; }
.service-scope .service-index {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  width: 74px;
  height: 74px;
  margin: 0;
  border: none;
  background: #0060aa;
  box-shadow: none;
}
.service-scope .service-card:nth-child(3n + 2) .service-index,
.service-scope .service-card:nth-child(4) .service-index {
  background: #31b5e6;
}
.service-scope .service-index::before {
  color: #fff;
  font-size: 33px;
  line-height: 1;
}
.service-icon-cost::before { content: "◎"; }
.service-icon-supervision::before { content: "▣"; }
.service-icon-management::before { content: "✉"; }
.service-icon-bidding::before { content: "⚙"; }
.service-icon-inspection::before { content: "⌕"; }
.service-icon-consulting::before { content: "▭"; }
.service-scope .service-card h3 {
  margin: 0;
  color: #071525;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 900;
}
.service-scope .service-card p {
  grid-column: 1;
  max-width: 520px;
  margin-top: 10px;
  color: #53677f;
  font-size: 16px;
  line-height: 1.7;
}

.home-about,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 64px;
  align-items: center;
}
.home-about-text {
  display: block;
  max-width: 1120px;
}
.home-about-text h2 {
  max-width: 900px;
}
.home-about-text .rich-text {
  max-width: 1040px;
  columns: 2;
  column-gap: 64px;
}
.home-about-text .rich-text p {
  break-inside: avoid;
}
.about-roadmap-section {
  background:
    linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
}
.about-roadmap {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.2vw, 58px) clamp(28px, 4.8vw, 72px) clamp(30px, 4vw, 52px);
  border: 1px solid #dce9f7;
  background:
    radial-gradient(circle at 82% 18%, rgba(30, 139, 220, .24), transparent 30%),
    linear-gradient(105deg, rgba(255,255,255,.97) 0%, rgba(244,249,255,.96) 48%, rgba(222,239,255,.92) 100%);
  box-shadow: 0 24px 60px rgba(8, 44, 80, .1);
}
.about-roadmap::before {
  content: "JIANLI";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(12, 91, 165, .055);
  font-size: clamp(90px, 12vw, 178px);
  font-weight: 900;
  letter-spacing: 18px;
  line-height: 1;
  pointer-events: none;
}
.roadmap-head {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}
.roadmap-head .section-kicker {
  justify-content: center;
  margin-bottom: 8px;
}
.roadmap-head h2 {
  margin: 0;
  color: #073f7d;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: 2px;
}
.roadmap-head span {
  display: block;
  margin-top: 8px;
  color: #143c64;
  font-size: 17px;
  line-height: 1.75;
}
.roadmap-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  margin: 0 auto 22px;
  max-width: 1080px;
}
.roadmap-line::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 4%;
  top: calc(100% - 14px);
  height: 3px;
  transform: scaleX(.08);
  transform-origin: left center;
  background:
    linear-gradient(90deg, rgba(132,145,158,.55), #0a70ca 52%, #074f9a),
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.9) 45%, transparent 70%);
  background-size: 100% 100%, 220% 100%;
  background-position: 0 0, -140% 0;
  transition: transform 1.25s cubic-bezier(.18, .78, .2, 1);
}
.roadmap-line::after {
  content: "";
  position: absolute;
  right: 3%;
  top: calc(100% - 21px);
  width: 14px;
  height: 14px;
  border-top: 3px solid #074f9a;
  border-right: 3px solid #074f9a;
  opacity: .38;
  transform: translateX(-10px) rotate(45deg);
  transition:
    opacity .5s ease,
    transform 1.1s cubic-bezier(.18, .78, .2, 1);
}
.roadmap-line.scroll-reveal {
  opacity: 1;
  transform: none;
}
.roadmap-line.scroll-reveal.is-visible {
  transform: none;
}
.roadmap-line.is-visible::before {
  transform: scaleX(1);
  animation: roadmapLineLight 2.8s .45s ease-in-out infinite;
}
.roadmap-line.is-visible::after {
  opacity: 1;
  transform: translateX(8px) rotate(45deg);
  animation: roadmapArrowNudge 1.55s 1.05s ease-in-out infinite;
}
.roadmap-node {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  min-width: 120px;
  padding: 0 12px;
  background: transparent;
}
.roadmap-node strong {
  color: #075fae;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
}
.roadmap-node em {
  margin-top: 5px;
  color: #32475d;
  font-style: normal;
  font-size: 13px;
}
.roadmap-node::after {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 9px;
  border-radius: 999px;
  background: #0b67bb;
  box-shadow: 0 0 0 5px rgba(11,103,187,.12);
}
.roadmap-line.is-visible .roadmap-node::after {
  animation: roadmapNodePulse 2.4s ease-in-out infinite;
}
.roadmap-line.is-visible .roadmap-node:nth-child(2)::after { animation-delay: .28s; }
.roadmap-line.is-visible .roadmap-node:nth-child(3)::after { animation-delay: .56s; }
.roadmap-node.is-past strong { color: #4a5b6d; }
.roadmap-node.is-past::after { background: #9aa3ad; box-shadow: 0 0 0 5px rgba(154,163,173,.15); }
@keyframes roadmapLineLight {
  0% { background-position: 0 0, -140% 0; }
  42%, 62% { background-position: 0 0, 120% 0; }
  100% { background-position: 0 0, 120% 0; }
}
@keyframes roadmapArrowNudge {
  0%, 100% { transform: translateX(8px) rotate(45deg); }
  50% { transform: translateX(16px) rotate(45deg); }
}
@keyframes roadmapNodePulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(11,103,187,.12); }
  50% { box-shadow: 0 0 0 9px rgba(11,103,187,.18); }
}
.roadmap-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.roadmap-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  color: #0d3156;
  background: #f7fbff;
  isolation: isolate;
}
.roadmap-card::before,
.roadmap-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}
.roadmap-card::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(248,251,255,.95) 72%);
}
.roadmap-past::before {
  filter: grayscale(1);
  opacity: .36;
  background: url("/assets/hero/engineering-hero-2.png") center / cover;
}
.roadmap-now::before {
  opacity: .6;
  background: url("/assets/projects/中粮祥云国际项目.jpg") center / cover;
}
.roadmap-future::before {
  opacity: .36;
  background:
    linear-gradient(135deg, rgba(0,112,210,.2), rgba(0,180,255,.48)),
    url("/assets/projects/国家食品安全横琴创新中心.jpg") center / cover;
}
.roadmap-card p {
  margin: 0 0 6px;
  color: #004f96;
  font-size: 24px;
  font-weight: 900;
}
.roadmap-card h3 {
  margin: 0 0 18px;
  color: #0e2d4f;
  font-size: 20px;
}
.roadmap-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.roadmap-card li {
  position: relative;
  padding-left: 22px;
  color: #183957;
  font-size: 15px;
  line-height: 1.55;
}
.roadmap-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0b67bb;
  box-shadow: 0 0 0 4px rgba(11,103,187,.1);
}
.roadmap-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: start;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 103, 187, .16);
}
.roadmap-summary h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.35;
}
.roadmap-summary .rich-text {
  columns: 1;
  color: #2c4055;
}
.roadmap-summary .rich-text p {
  margin: 0 0 10px;
  line-height: 1.9;
}
.brand-belief-section {
  background: var(--white);
}
.belief-title {
  margin-bottom: 44px;
}
.belief-title span {
  max-width: none;
  white-space: nowrap;
}
.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.belief-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 6px;
  background: #082a49;
  box-shadow: 0 16px 38px rgba(17, 42, 76, .12);
}
.belief-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  opacity: .8;
  transition: transform .3s ease, opacity .3s ease;
}
.belief-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 38, 70, .08), rgba(4, 36, 68, .86)),
    linear-gradient(90deg, rgba(0, 91, 172, .46), rgba(0, 91, 172, .14));
}
.belief-card:hover img {
  transform: scale(1.04);
  opacity: .92;
}
.belief-card > div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  color: var(--white);
}
.belief-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(25px, 2vw, 36px);
  line-height: 1.2;
}
.belief-card p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.7;
}
.detail-layout { grid-template-columns: 520px minmax(0, 1fr); }
.home-about img,
.detail-layout img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-media { position: relative; }
.about-media > img { width: 100%; }
.about-profile {
  max-width: 1120px;
  padding: 0 24px;
}
.about-profile .section-kicker { margin-bottom: 18px; }
.about-profile h2 {
  max-width: 920px;
  margin-bottom: 28px;
}
.about-profile .rich-text {
  max-width: 1180px;
  columns: 1;
  color: #26394e;
}
.about-profile .rich-text p {
  margin-bottom: 22px;
}
.culture-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(30, 145, 220, .12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f5f9fd 100%);
}
.culture-title { margin-bottom: 34px; }
.culture-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 480px) minmax(260px, 1fr);
  grid-template-rows: repeat(2, minmax(190px, auto));
  gap: 28px 34px;
  align-items: stretch;
  padding: 18px 0;
}
.culture-map::before {
  content: "";
  position: absolute;
  inset: 48px 14%;
  border: 1px solid rgba(0, 91, 172, .12);
  border-radius: 999px;
  pointer-events: none;
}
.culture-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(780px, 62vw);
  height: 2px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(0, 91, 172, .2), transparent);
  pointer-events: none;
}
.culture-center {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  min-height: 430px;
  overflow: hidden;
  border-radius: 6px;
  border: 12px solid #fff;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(43, 181, 237, .13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 22px 56px rgba(14, 60, 105, .14);
}
.culture-center::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 91, 172, .08);
  background:
    linear-gradient(135deg, rgba(0, 91, 172, .05), transparent 42%),
    linear-gradient(315deg, rgba(43, 181, 237, .08), transparent 44%);
  pointer-events: none;
}
.culture-center img {
  position: relative;
  z-index: 1;
  width: min(62%, 260px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 61, 116, .15));
}
.culture-center span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 0;
  color: rgba(0, 91, 172, .12);
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 900;
  letter-spacing: 8px;
}
.culture-item {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 0;
  padding: 28px 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #dce9f7;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(18, 48, 82, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.culture-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(43, 181, 237, .16) 36%, rgba(255,255,255,.46) 50%, transparent 66%);
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
}
.culture-item.is-visible::before {
  animation: cultureCardLight 2.8s .22s ease-in-out infinite;
}
.culture-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 91, 172, .28);
  box-shadow: 0 18px 42px rgba(18, 48, 82, .12);
}
.culture-item.is-visible {
  animation: cultureCardFloat 5.2s ease-in-out infinite;
}
.culture-item.is-visible:nth-child(2) { animation-delay: .25s; }
.culture-item.is-visible:nth-child(4) { animation-delay: .45s; }
.culture-item.is-visible:nth-child(5) { animation-delay: .65s; }
.culture-mission,
.culture-vision,
.culture-spirit,
.culture-values { text-align: left; }
.culture-vision { grid-column: 1; grid-row: 1; }
.culture-mission { grid-column: 1; grid-row: 2; }
.culture-spirit { grid-column: 3; grid-row: 1; }
.culture-values { grid-column: 3; grid-row: 2; }
.culture-copy {
  position: relative;
  max-width: none;
  padding: 0 0 0 24px;
}
.culture-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 6px;
  width: 3px;
  height: auto;
  background: linear-gradient(180deg, #0a65b3, #2bb5ed);
}
.culture-copy::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0a65b3;
  box-shadow: 0 0 0 8px rgba(10, 101, 179, .11);
}
.culture-item.is-visible .culture-copy::after {
  animation: cultureDotPulse 2.4s ease-in-out infinite;
}
.culture-copy p {
  margin: 0 0 14px;
  color: #003f78;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
}
.culture-copy h3 {
  margin: 0;
  color: #17283b;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.72;
  font-weight: 800;
}
.culture-vision .culture-copy::after,
.culture-values .culture-copy::after { background: #2bb5ed; box-shadow: 0 0 0 8px rgba(43, 181, 237, .14); }
@keyframes cultureCardLight {
  0%, 18% { transform: translateX(-130%); opacity: 0; }
  34% { opacity: 1; }
  58%, 100% { transform: translateX(130%); opacity: 0; }
}
@keyframes cultureCardFloat {
  0%, 100% { box-shadow: 0 14px 34px rgba(18, 48, 82, .07); }
  50% { box-shadow: 0 18px 42px rgba(18, 48, 82, .11); }
}
@keyframes cultureDotPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(10, 101, 179, .11); }
  50% { box-shadow: 0 0 0 13px rgba(10, 101, 179, .18); }
}
.certificate-mini {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(17, 34, 64, .14);
}
.certificate-mini img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  border: 1px solid #e6edf5;
  background: #fff;
}
.rich-text { margin-top: 26px; color: var(--muted); font-size: 18px; line-height: 1.94; }
.rich-text p { margin-bottom: 18px; }

.certificate-section,
.honors-section { position: relative; }
#certificates,
#culture,
#honors { scroll-margin-top: 112px; }
#certificates > .container,
#culture > .container,
#honors > .container {
  position: relative;
  z-index: 1;
}
#honors:target::before {
  content: "";
  position: absolute;
  inset: 24px clamp(24px, 4vw, 58px);
  z-index: 0;
  border: 2px solid rgba(0, 91, 172, .42);
  border-radius: 6px;
  background: rgba(0, 91, 172, .045);
  box-shadow: 0 0 0 6px rgba(0, 91, 172, .06);
  pointer-events: none;
}
.honors-section:target {
  animation: anchorFocus 1.2s ease;
}
@keyframes anchorFocus {
  0% { background-color: rgba(0, 91, 172, .12); }
  100% { background-color: transparent; }
}
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.certificate-card {
  padding: 14px 14px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 10px 26px rgba(20, 42, 76, .07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.certificate-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid #e6edf5;
}
.certificate-card h3 {
  margin: 18px 0 6px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
}
.certificate-card p {
  margin: 0;
  color: var(--brand);
  font-weight: 800;
  text-align: center;
}
.certificate-card img,
.certificate-mini img {
  cursor: zoom-in;
}
.certificate-grid-home .certificate-card h3 { font-size: 18px; }

.honors-section {
  background: var(--white);
  overflow: hidden;
}
.honor-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
.honor-intro-actions {
  display: flex;
  justify-content: flex-end;
}
.honor-intro p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.honor-actions {
  display: inline-flex;
  gap: 10px;
}
.honor-nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  background: var(--white);
  font-size: 30px;
  line-height: 38px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(20, 42, 76, .08);
}
.honor-nav:hover {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}
.honor-carousel {
  position: relative;
  margin-left: max(0px, calc((100vw - 1240px) / -2));
  margin-right: max(0px, calc((100vw - 1240px) / -2));
  cursor: ew-resize;
  overflow: hidden;
}
.honor-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 8px max(36px, calc((100vw - 1240px) / 2)) 24px;
  will-change: transform;
}
.honor-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.honor-track.is-dragging .honor-card {
  pointer-events: none;
}
.honor-card {
  flex: 0 0 clamp(280px, 28vw, 380px);
  padding: 14px 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 10px 26px rgba(20, 42, 76, .08);
  transition: transform .18s ease, box-shadow .18s ease;
  user-select: none;
}
.honor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.honor-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e6edf5;
  cursor: zoom-in;
  -webkit-user-drag: none;
}
.honor-card h3 {
  min-height: 48px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
  text-align: center;
}

.has-lightbox { overflow: hidden; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 44px;
  background: rgba(3, 16, 30, .86);
}
.image-lightbox.is-open { display: flex; }
.image-lightbox figure {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 88px);
  margin: 0;
  display: grid;
  gap: 14px;
}
.image-lightbox img {
  width: 100%;
  max-height: calc(100vh - 142px);
  object-fit: contain;
  background: #fff;
  box-shadow: 0 24px 72px rgba(0,0,0,.35);
}
.image-lightbox figcaption {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.14);
  font-size: 34px;
  line-height: 42px;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.24); }

.projects-section {
  background: linear-gradient(180deg, #f5f9fd 0%, #fff 42%, #f7fbff 100%);
}
.projects-section .section-title {
  margin-bottom: 28px;
}
.projects-section .section-title span {
  display: block;
  margin: 14px auto 0;
  max-width: 760px;
  color: #42576d;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 700;
}
.project-catalog-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.project-category-panel {
  position: sticky;
  top: 92px;
  min-height: 640px;
  padding: 20px 0 28px 0;
  overflow: visible;
  border-radius: 0 18px 18px 0;
}
.project-category-panel::before {
  content: "";
  position: absolute;
  left: -372px;
  top: -44px;
  width: 650px;
  height: 730px;
  border: 46px solid rgba(0, 104, 183, .065);
  border-right-color: rgba(47, 179, 234, .2);
  border-radius: 50%;
  pointer-events: none;
}
.project-category-panel::after {
  content: "";
  position: absolute;
  left: -236px;
  top: 18px;
  width: 438px;
  height: 570px;
  border: 4px solid rgba(0, 104, 183, .18);
  border-right-color: rgba(0, 91, 172, .82);
  border-radius: 50%;
  box-shadow: inset -18px 0 0 rgba(0, 91, 172, .12);
  pointer-events: none;
}
.category-arc {
  position: absolute;
  left: -100px;
  top: 66px;
  width: 254px;
  height: 470px;
  border-right: 7px solid rgba(0, 91, 172, .88);
  border-left: 2px dashed rgba(0, 104, 183, .22);
  border-radius: 50%;
  filter: drop-shadow(0 18px 28px rgba(0, 91, 172, .2));
  pointer-events: none;
}
.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 22px;
}
.project-filters button {
  min-width: 112px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid #cfe0ee;
  border-radius: 0;
  background: #fff;
  color: #14324f;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(11, 59, 104, .05);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.project-filters button:hover,
.project-filters button.is-active {
  color: #fff;
  border-color: #0068b7;
  background: #0068b7;
  transform: translateY(-2px);
}
.project-arc-filters {
  position: relative;
  z-index: 2;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
  margin: 0;
  padding: 8px 0 8px 46px;
}
.project-arc-filters button {
  position: relative;
  width: 300px;
  min-width: 0;
  height: auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 22px;
  gap: 10px;
  padding: 8px 16px 8px 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.82));
  color: #07345f;
  box-shadow: 12px 16px 34px rgba(23, 55, 92, .06);
  text-align: left;
  transform: translateX(var(--arc-offset, 0));
  isolation: isolate;
}
.project-arc-filters button::before {
  content: "";
  position: absolute;
  left: 37px;
  top: -14px;
  bottom: -14px;
  width: 2px;
  background: linear-gradient(#c8deef 40%, transparent 40%);
  background-size: 2px 10px;
  z-index: -1;
}
.project-arc-filters button:first-child::before { top: 38px; }
.project-arc-filters button:last-child::before { bottom: 38px; }
.project-arc-filters button:nth-child(1) { --arc-offset: 34px; }
.project-arc-filters button:nth-child(2) { --arc-offset: 24px; }
.project-arc-filters button:nth-child(3) { --arc-offset: 14px; }
.project-arc-filters button:nth-child(4) { --arc-offset: 0px; }
.project-arc-filters button:nth-child(5) { --arc-offset: 12px; }
.project-arc-filters button:nth-child(6) { --arc-offset: 24px; }
.project-arc-filters button:hover,
.project-arc-filters button.is-active {
  color: #fff;
  background: radial-gradient(circle at 88% 50%, rgba(47,179,234,.24), transparent 32%), linear-gradient(100deg, #003568 0%, #005bac 56%, #07345f 100%);
  box-shadow: 0 20px 42px rgba(0, 58, 115, .28);
  transform: translateX(var(--arc-offset, 0));
}
.project-arc-filters .category-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle at 32% 25%, #0b72c7, #003f7e 72%);
  border: 8px solid #fff;
  box-shadow: 0 0 0 4px rgba(0, 91, 172, .16), 0 14px 26px rgba(0, 91, 172, .16);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
.project-arc-filters .category-icon::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 2px solid rgba(0, 91, 172, .12);
  border-radius: 50%;
}
.project-arc-filters .category-icon svg {
  width: 25px;
  height: 25px;
}
.project-arc-filters button.is-active .category-icon,
.project-arc-filters button:hover .category-icon {
  background: radial-gradient(circle at 32% 25%, #0b72c7, #002f5d 74%);
  box-shadow: 0 0 0 6px rgba(0, 91, 172, .28), 0 18px 34px rgba(0, 43, 86, .3);
  transform: scale(1.06);
}
.project-arc-filters .category-copy {
  display: grid;
  gap: 8px;
}
.project-arc-filters .category-title {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.project-arc-filters em {
  color: #004a8f;
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}
.project-arc-filters .category-title i {
  display: block;
  width: 1px;
  height: 20px;
  background: rgba(0, 91, 172, .18);
}
.project-arc-filters button.is-active em,
.project-arc-filters button:hover em,
.project-arc-filters button.is-active .category-title i,
.project-arc-filters button:hover .category-title i {
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.36);
}
.project-arc-filters strong {
  overflow: hidden;
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-arc-filters small {
  grid-column: auto;
  color: #6f8194;
  font-size: 13px;
  font-weight: 800;
}
.project-arc-filters button.is-active small,
.project-arc-filters button:hover small {
  color: rgba(255,255,255,.86);
}
.project-arc-filters .category-arrow {
  color: inherit;
  font-size: 30px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .22s ease, transform .22s ease;
}
.project-arc-filters button.is-active .category-arrow,
.project-arc-filters button:hover .category-arrow {
  opacity: .9;
  transform: translateX(0);
}
.project-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
  padding: 14px 18px;
  color: #50657a;
  background: #eef6fc;
  border-left: 5px solid #0068b7;
  font-weight: 800;
}
.project-count strong {
  color: #0d2a45;
  font-size: 18px;
}
.project-count span {
  color: #0068b7;
}

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-grid-catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.project-grid-catalog .project-card { min-height: 300px; }
.project-grid-catalog .project-card img { min-height: 300px; }
.project-grid-catalog .project-body { padding: 70px 20px 20px; }
.project-grid-catalog .project-body h3 { font-size: 19px; }
.project-grid-catalog .project-card {
  animation: projectCardIn .58s cubic-bezier(.18,.72,.18,1) both;
  transform-origin: 50% 90%;
}
.project-grid-catalog .project-card img {
  animation: projectImageIn .72s cubic-bezier(.18,.72,.18,1) both;
  transform-origin: center;
}
.project-grid-catalog .project-card:nth-child(2) { animation-delay: .06s; }
.project-grid-catalog .project-card:nth-child(3) { animation-delay: .12s; }
.project-grid-catalog .project-card:nth-child(4) { animation-delay: .18s; }
.project-grid-catalog .project-card:nth-child(5) { animation-delay: .24s; }
.project-grid-catalog .project-card:nth-child(6) { animation-delay: .3s; }
.project-grid-catalog .project-card:nth-child(7) { animation-delay: .36s; }
.project-grid-catalog .project-card:nth-child(8) { animation-delay: .42s; }
.project-grid-catalog .project-card:nth-child(9) { animation-delay: .48s; }
@keyframes projectCardIn {
  0% { opacity: 0; transform: translateX(34px) translateY(18px) scale(.96); filter: blur(4px); }
  65% { opacity: 1; transform: translateX(-4px) translateY(0) scale(1.01); filter: blur(0); }
  100% { opacity: 1; transform: translateX(0) translateY(0) scale(1); filter: blur(0); }
}
@keyframes projectImageIn {
  0% { opacity: .35; transform: scale(1.08); filter: saturate(.75); }
  100% { opacity: 1; transform: scale(1); filter: saturate(1); }
}
.project-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.project-pagination button {
  min-width: 94px;
  height: 42px;
  border: 1px solid #b9d3e9;
  background: #fff;
  color: #005bac;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}
.project-pagination button:hover:not(:disabled) {
  background: #0068b7;
  color: #fff;
  transform: translateY(-2px);
}
.project-pagination button:disabled {
  cursor: not-allowed;
  opacity: .42;
}
.project-pagination span {
  min-width: 70px;
  color: #38536d;
  font-weight: 900;
  text-align: center;
}
.home-project-strip {
  display: flex;
  gap: 0;
  height: clamp(420px, 38vw, 610px);
  overflow: hidden;
  background: #071f38;
  box-shadow: 0 20px 54px rgba(18, 42, 76, .14);
}
.home-project-strip .project-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
  transition: flex .42s ease;
}
.home-project-strip .project-card:hover {
  flex: 1.85 1 0;
}
.home-project-strip .project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 34, 63, .28);
  transition: background .28s ease;
  pointer-events: none;
}
.home-project-strip .project-card:hover::after {
  background: rgba(6, 34, 63, .08);
}
.home-project-strip .project-card img {
  min-height: 100%;
  opacity: .82;
}
.home-project-strip .project-card:hover img {
  transform: scale(1.035);
  opacity: .96;
}
.home-project-strip .project-body {
  z-index: 1;
  padding: 92px 28px 30px;
  background: linear-gradient(180deg, transparent, rgba(4, 22, 40, .92));
}
.home-project-strip .project-body h3 {
  font-size: clamp(22px, 1.8vw, 31px);
  line-height: 1.35;
}
.home-project-strip .project-body p {
  font-size: 16px;
  line-height: 1.7;
}
.project-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: #0c2540;
  border-radius: 2px;
  box-shadow: 0 10px 24px rgba(12, 37, 64, .08);
}
.project-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  background: #edf2f7;
  opacity: .88;
  transition: transform .28s ease, opacity .28s ease;
}
.project-card:hover img { transform: scale(1.045); opacity: .72; }
.project-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px 24px 24px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(3,20,38,.9));
}
.project-body p { margin-bottom: 8px; color: rgba(255,255,255,.74); font-size: 14px; font-weight: 800; }
.project-body h3 { margin-bottom: 0; color: var(--white); font-size: 21px; line-height: 1.4; }

.page-hero {
  position: relative;
  min-height: clamp(180px, 16vw, 230px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #062f54;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,28,52,.88), rgba(7,47,84,.56)),
    url("/assets/hero/engineering-hero-2.png") center / cover;
}
.page-hero-about::before { background: linear-gradient(90deg, rgba(4,28,52,.88), rgba(7,47,84,.56)), url("/assets/projects/博智大厦.png") center / cover; }
.page-hero-projects::before { background: linear-gradient(90deg, rgba(4,28,52,.88), rgba(7,47,84,.56)), url("/assets/hero/engineering-hero-3.png") center / cover; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { margin-bottom: 9px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.page-hero h1 { margin: 0; font-size: clamp(30px, 2.6vw, 42px); line-height: 1.18; }

.news-list { display: grid; gap: 18px; }
.news-item {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid #d7ebff;
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.news-item:hover { border-left-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.news-item time { color: var(--brand); font-size: 18px; font-weight: 900; }
.news-item em {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  color: var(--brand);
  background: #eef7ff;
  border-radius: 2px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}
.news-item h3 { margin-bottom: 10px; color: var(--ink); font-size: 22px; }
.news-item p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}
.news-item span {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}
.news-item span::after {
  content: " →";
  transition: margin-left .18s ease;
}
.news-item:hover span::after { margin-left: 4px; }
.news-detail-wrap { display: block; }
.news-detail {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  box-shadow: 0 22px 55px rgba(8, 44, 80, .08);
}
.news-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}
.news-back::before { content: "←"; }
.news-detail header {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.news-detail time {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 16px;
  font-weight: 900;
}
.news-detail h2 {
  max-width: 900px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.28;
}
.news-detail header p {
  margin: 0;
  color: #6d7c8d;
  font-weight: 800;
}
.news-detail-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 4px;
}
.news-detail-figure {
  margin: 4px 0 30px;
}
.news-detail-content .news-detail-figure {
  margin: 34px 0;
}
.news-detail-content {
  max-width: 920px;
  color: #3f5166;
  font-size: 18px;
  line-height: 2.05;
}
.news-detail-content p { margin: 0 0 20px; }
.empty-state {
  padding: 34px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 91, 172, .08), rgba(244, 248, 252, 0) 48%),
    #f4f8fc;
}
.contact-section::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 0;
  width: 48vw;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(244,248,252,.96), rgba(244,248,252,.62)),
    url("/assets/projects/艺展天地.jpg") center / cover;
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .5;
}
.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  align-items: center;
  min-height: 430px;
  padding: 46px 0;
  color: var(--ink);
}
.contact-layout h2 { color: var(--ink); }
.contact-copy {
  max-width: 820px;
  padding: 38px 0;
}
.contact-layout > div > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.86;
}
.contact-section .section-kicker { color: var(--brand); }
.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.contact-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  color: #0a508c;
  background: rgba(0, 91, 172, .08);
  border: 1px solid rgba(0, 91, 172, .14);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
}
.contact-panel {
  padding: 34px 34px 30px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  box-shadow: 0 18px 48px rgba(24, 52, 84, .12);
}
.contact-panel-head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact-panel-head strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}
.contact-panel-head small {
  display: block;
  margin-top: 6px;
  color: #8794a6;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-panel img {
  width: 140px;
  height: 140px;
  margin-bottom: 12px;
  object-fit: cover;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
}
.qr-caption {
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
}
.contact-lines {
  display: grid;
  gap: 14px;
}
.contact-panel p { margin-bottom: 0; color: var(--text); }
.contact-lines p {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  line-height: 1.65;
}
.contact-lines b { color: var(--ink); }
.contact-map-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: -8px;
  padding: 26px 30px;
  background: rgba(255,255,255,.9);
  border-left: 4px solid var(--brand);
  box-shadow: 0 14px 36px rgba(24,52,84,.08);
}
.contact-map-card .section-kicker { margin-bottom: 6px; }
.contact-map-card h3 { margin: 0 0 6px; color: var(--ink); font-size: 22px; }
.contact-map-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.contact-map-card .btn { flex: 0 0 auto; }
.site-footer {
  padding: 68px 0 24px;
  color: rgba(255,255,255,.72);
  background: #0b1a2a;
}
.footer-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) minmax(330px, 1.2fr) minmax(130px, .65fr) minmax(130px, .65fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.footer-about h2,
.footer-col h3,
.footer-contact h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.35;
}
.footer-about p,
.footer-contact p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.9;
}
.footer-col {
  display: grid;
  gap: 16px;
}
.footer-col a {
  color: rgba(255,255,255,.72);
  font-size: 16px;
}
.footer-col a:hover { color: var(--white); }
.footer-contact img {
  width: 138px;
  height: 138px;
  margin-top: 8px;
  padding: 6px;
  object-fit: cover;
  background: var(--white);
  border-radius: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font-size: 14px;
}
.load-error { padding: 20px; color: #b42318; }

@media (max-width: 1180px) {
  .container { width: min(100% - 56px, 980px); }
  .header-main {
    grid-template-columns: 1fr auto;
    min-height: auto;
    row-gap: 0;
    padding-top: 10px;
  }
  .brand { padding-right: 12px; }
  .brand strong { font-size: 19px; white-space: normal; }
  .phone-link { grid-column: 2; grid-row: 1; }
  .desktop-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow-x: auto;
    scrollbar-width: none;
    border-top: 1px solid var(--line);
  }
  .desktop-nav a { min-height: 44px; padding: 0 18px 0 0; }
  .desktop-nav a::after { left: 0; right: 18px; }
  .nav-dropdown { position: static; }
  .nav-submenu {
    left: auto;
    transform: translateY(8px);
  }
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu { transform: translateY(0); }
  .nav-submenu a { min-height: 38px; padding: 0 18px; }
  .service-chain-title span { white-space: normal; }
  .service-grid,
  .service-chain { grid-template-columns: repeat(3, 1fr); }
  .service-scope {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .service-scope .service-card {
    min-height: 118px;
    padding: 24px 22px 24px 38px;
    grid-template-columns: minmax(0, 1fr) 72px;
  }
  .service-scope .service-index {
    width: 62px;
    height: 62px;
  }
  .service-scope .service-card h3 { font-size: 30px; }
  .service-chain::before { display: none; }
  .service-card:not(:last-child)::before {
    display: none;
  }
  .home-about, .detail-layout { grid-template-columns: 1fr; gap: 38px; }
  .detail-layout img, .home-about img { max-height: 380px; }
  .home-about-text .rich-text { columns: 1; }
  .about-roadmap { padding: 38px 28px; }
  .roadmap-columns { grid-template-columns: 1fr 1fr; }
  .roadmap-card:last-child { grid-column: 1 / -1; }
  .roadmap-summary { grid-template-columns: 1fr; }
  .belief-grid { grid-template-columns: 1fr 1fr; }
  .about-profile .rich-text { columns: 1; }
  .culture-map {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
    padding-top: 0;
  }
  .culture-map::before,
  .culture-map::after,
  .culture-center,
  .culture-copy::before,
  .culture-copy::after { display: none; }
  .culture-item,
  .culture-mission,
  .culture-vision,
  .culture-spirit,
  .culture-values {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    min-height: 170px;
    padding: 26px;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(20, 42, 76, .06);
  }
  .culture-copy { max-width: none; padding: 0; }
  .certificate-mini { position: static; margin-top: 14px; }
  .certificate-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .home-project-strip { height: 480px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .home-project-strip .project-card {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }
  .home-project-strip .project-card:hover { flex-basis: 52%; }
  .honor-carousel {
    margin-left: -28px;
    margin-right: -28px;
  }
  .honor-track { padding-left: 28px; padding-right: 28px; }
  .contact-layout { grid-template-columns: 1fr; gap: 26px; }
  .contact-section::before { opacity: .25; }
  .contact-copy { padding: 18px 0 0; }
  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about, .footer-contact { grid-column: auto; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 40px, 720px); }
  .header-top { display: none; }
  .header-main { grid-template-columns: minmax(0, 1fr) auto; padding: 10px 20px; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 18px; }
  .nav-toggle { display: block; grid-column: 2; grid-row: 1; align-self: center; }
  .phone-link { grid-column: 1 / -1; grid-row: 2; justify-self: start; height: 38px; margin: 4px 0 0; font-size: 19px; }
  .phone-link::before { width: 30px; height: 30px; border-width: 2px; font-size: 17px; }
  .desktop-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: column;
    overflow: visible;
    margin: 8px -20px -10px;
    padding: 6px 20px 14px;
    background: #fff;
    border-top: 1px solid var(--line);
    font-size: 15px;
  }
  .desktop-nav.is-open { display: flex; }
  .desktop-nav a { min-height: 42px; padding: 0; border-bottom: 1px solid rgba(220,228,238,.72); }
  .desktop-nav a::after { left: 0; right: 0; }
  .nav-dropdown { display: block; }
  .nav-submenu { display: none; }
  .hero-section { min-height: 760px; align-items: flex-start; }
  .hero-content { padding-top: 58px; padding-bottom: 260px; }
  .hero-content h1 { font-size: 38px; }
  .metric-bar { grid-template-columns: 1fr 1fr; width: calc(100% - 40px); bottom: -34px; }
  .metric-item { min-height: 100px; padding: 18px 12px; }
  .metric-item:nth-child(5) { grid-column: 1 / -1; }
  .hero-section + .content-section { padding-top: 190px; }
  .content-section { padding: 50px 0; }
  .page-hero + .content-section { padding-top: 32px; }
  .about-roadmap { padding: 32px 20px; }
  .about-roadmap::before { font-size: 82px; letter-spacing: 8px; }
  .roadmap-head { margin-bottom: 24px; }
  .roadmap-head span { font-size: 15px; }
  .roadmap-line {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 24px;
  }
  .roadmap-line::before {
    left: 18px;
    right: auto;
    top: 6px;
    bottom: 6px;
    width: 3px;
    height: auto;
    transform: scaleY(.08);
    transform-origin: center top;
    background: linear-gradient(180deg, rgba(132,145,158,.55), #0a70ca 55%, #074f9a);
  }
  .roadmap-line.is-visible::before { transform: scaleY(1); animation: none; }
  .roadmap-line::after { display: none; }
  .roadmap-node {
    justify-self: stretch;
    justify-items: start;
    min-width: 0;
    padding-left: 48px;
    background: transparent;
  }
  .roadmap-node::after {
    position: absolute;
    left: 13px;
    top: 15px;
    margin: 0;
  }
  .roadmap-columns { grid-template-columns: 1fr; }
  .roadmap-card,
  .roadmap-card:last-child {
    grid-column: auto;
    min-height: 260px;
    padding: 24px;
  }
  .project-grid,
  .project-grid-catalog,
  .service-grid,
  .service-chain { grid-template-columns: 1fr 1fr; }
  .project-filters { justify-content: flex-start; }
  .project-count { align-items: flex-start; flex-direction: column; }
  .project-catalog-layout { grid-template-columns: 1fr; gap: 24px; }
  .project-category-panel {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 18px;
    background: #f3f8fd;
    border: 1px solid #d9e9f6;
  }
  .project-category-panel::before,
  .project-category-panel::after,
  .category-arc { display: none; }
  .project-arc-filters {
    flex-direction: row;
    overflow-x: auto;
    padding: 8px 4px 14px;
    scrollbar-width: thin;
  }
  .project-arc-filters button,
  .project-arc-filters button:hover,
  .project-arc-filters button.is-active {
    width: 300px;
    min-width: 300px;
    grid-template-columns: 76px minmax(0, 1fr) 24px;
    min-height: 78px;
    padding-right: 16px;
    transform: none;
  }
  .project-arc-filters button::before { display: none; }
  .project-arc-filters .category-icon {
    width: 70px;
    height: 70px;
    border-width: 9px;
  }
  .project-arc-filters .category-icon svg {
    width: 28px;
    height: 28px;
  }
  .project-arc-filters em { font-size: 19px; }
  .project-arc-filters .category-title { gap: 10px; }
  .project-arc-filters .category-title i { height: 18px; }
  .project-arc-filters strong { font-size: 18px; }
  .project-arc-filters small { font-size: 13px; }
  .project-arc-filters .category-arrow {
    font-size: 28px;
    opacity: .42;
    transform: none;
  }
  .service-scope { grid-template-columns: 1fr; }
  .service-scope .service-card h3 { font-size: 32px; }
  .home-project-strip { display: flex; height: 430px; }
  .home-project-strip .project-card { flex-basis: 72%; }
  .home-project-strip .project-card:hover { flex-basis: 72%; }
  .belief-title span { white-space: normal; }
  .contact-layout { grid-template-columns: 1fr; padding: 22px 0; }
  .site-footer { padding-top: 52px; }
  .footer-layout { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-about, .footer-contact { grid-column: 1 / -1; }
  .certificate-grid { grid-template-columns: 1fr 1fr; }
  .culture-map { grid-template-columns: 1fr; }
  .culture-item,
  .culture-mission,
  .culture-vision,
  .culture-spirit,
  .culture-values { min-height: auto; }
  .honor-intro { grid-template-columns: 1fr; }
  .honor-actions { justify-content: center; }
  .honor-card { flex-basis: min(78vw, 340px); }
  .honor-card img { height: 210px; }
  .image-lightbox { padding: 24px; }
  .lightbox-close { top: 14px; right: 14px; }
  .page-hero { min-height: 180px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 520px); }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 10px; }
  .phone-link { display: none; }
  .page-hero { min-height: 160px; }
  .page-hero h1 { font-size: 30px; }
  .hero-section { min-height: 900px; }
  .hero-content { padding-bottom: 410px; }
  .hero-actions .btn { width: 100%; }
  .roadmap-head h2 { font-size: 31px; letter-spacing: 0; }
  .roadmap-card { min-height: 245px; }
  .roadmap-card p { font-size: 22px; }
  .metric-bar,
  .project-grid,
  .project-grid-catalog,
  .service-grid,
  .service-chain,
  .contact-layout { grid-template-columns: 1fr; }
  .project-filters button { flex: 1 1 calc(50% - 8px); min-width: 0; }
  .projects-section .section-title span { font-size: 15px; }
  .service-scope { grid-template-columns: 1fr; gap: 16px; }
  .service-scope .service-card {
    min-height: 108px;
    grid-template-columns: minmax(0, 1fr) 58px;
    padding: 22px 18px 22px 26px;
    border-left-width: 8px;
    border-radius: 0 48px 48px 0;
  }
  .service-scope .service-index {
    width: 52px;
    height: 52px;
  }
  .service-scope .service-index::before { font-size: 24px; }
  .service-scope .service-card h3 { font-size: 26px; }
  .service-scope .service-card p { font-size: 15px; }
  .service-card { min-height: auto; }
  .home-project-strip { height: 400px; }
  .home-project-strip .project-card { flex-basis: 86%; }
  .home-project-strip .project-body { padding: 76px 20px 24px; }
  .contact-section::before { display: none; }
  .contact-panel { padding: 26px 22px; }
  .contact-map-card { align-items: flex-start; flex-direction: column; padding: 22px; }
  .contact-map-card .btn { width: 100%; }
  .contact-lines p { grid-template-columns: 42px minmax(0, 1fr); }
  .certificate-grid { grid-template-columns: 1fr; }
  .belief-grid { grid-template-columns: 1fr; }
  .culture-copy p { font-size: 24px; }
  .culture-copy h3 { font-size: 20px; }
  .belief-card, .belief-card img { min-height: 230px; }
  .certificate-mini { grid-template-columns: repeat(3, 1fr); padding: 8px; }
  .honor-carousel {
    margin-left: -14px;
    margin-right: -14px;
  }
  .honor-track { gap: 16px; padding-left: 14px; padding-right: 14px; }
  .honor-card { flex-basis: 82vw; }
  .honor-card img { height: 190px; }
  .image-lightbox { padding: 16px; }
  .image-lightbox figure { max-height: calc(100vh - 58px); }
  .image-lightbox img { max-height: calc(100vh - 110px); }
  .metric-item:nth-child(5) { grid-column: auto; }
  .news-item { grid-template-columns: 1fr; gap: 12px; padding: 24px 22px; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
.news-detail-content h2 { margin: 2.2rem 0 1rem; color: var(--primary, #173d33); font-size: 1.45rem; }
.news-detail-content h3 { margin: 1.6rem 0 .8rem; font-size: 1.15rem; }
.news-detail-content ul { margin: .8rem 0 1.4rem; padding-left: 1.5rem; }
.news-detail-content li { margin: .45rem 0; line-height: 1.9; }
.news-detail-content a { color: #176b57; text-decoration: underline; overflow-wrap: anywhere; }
