:root {
  --color-ink: #152235;
  --color-muted: #5B667A;
  --color-soft: #F7FAFD;
  --color-line: #DDE8F3;
  --color-blue: #0757A8;
  --color-red: #18A0C8;
  --color-white: #ffffff;
  --shadow: 0 16px 40px rgba(17, 19, 23, 0.08);
  --radius: 8px;
  --max: 1240px;
  --section: 104px;
  --font: "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font);
  background: var(--color-white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223,228,233,0.8);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(17, 19, 23, 0.08); }
.nav-shell { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 158px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; }
.nav-link { position: relative; padding: 25px 0; color: #222832; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-language-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-lang-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
}
.nav-lang-link::after { display: none; }
.nav-lang-link:hover {
  border-color: rgba(7, 87, 168, .28);
  background: #EEF6FF;
}
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--color-line); background: #fff; border-radius: 6px; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--color-ink); }

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0f151c;
}
.page-hero { min-height: 430px; background: #F7FBFF; }
.page-hero.compact-page-hero {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #F7FBFF;
}
.home-hero-media, .page-hero-media { position: absolute; inset: 0; }
.home-hero-media img, .page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .68; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,10,13,.88) 0%, rgba(7,10,13,.54) 34%, rgba(7,10,13,.24) 62%, rgba(7,10,13,.1) 100%);
}
.hero-content { position: relative; z-index: 1; color: #fff; padding: 92px 0; max-width: 860px; margin-left: max(24px, calc((100vw - var(--max)) / 2)); }
.eyebrow { margin: 0 0 18px; color: rgba(255,255,255,.78); font-size: 13px; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(25px, 3.5vw, 46px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
}
.hero-subtitle { max-width: 760px; margin: 24px 0 0; color: rgba(255,255,255,.88); font-size: 16.2px; }
.page-hero::after {
  background: linear-gradient(90deg, rgba(247,251,255,.96) 0%, rgba(247,251,255,.84) 34%, rgba(234,244,255,.58) 66%, rgba(234,244,255,.3) 100%);
}
.page-hero.compact-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,251,255,.98) 0%, rgba(247,251,255,.88) 42%, rgba(234,244,255,.58) 100%);
}
.page-hero .hero-content {
  color: var(--color-ink);
}
.compact-page-hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}
.page-hero .eyebrow {
  color: var(--color-blue);
  font-weight: 650;
}
.page-hero .hero-subtitle {
  color: var(--color-muted);
}
body[data-page="solutions"] .page-hero .hero-subtitle {
  max-width: none;
  white-space: nowrap;
  overflow-wrap: normal;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
body[data-page="home"] .hero {
  min-height: clamp(460px, calc(100vh - 380px), 500px);
  background: #F7FBFF;
}
body[data-page="home"] .hero::after {
  background: linear-gradient(90deg, rgba(247,251,255,.96) 0%, rgba(247,251,255,.84) 34%, rgba(234,244,255,.56) 66%, rgba(234,244,255,.28) 100%);
}
body[data-page="home"] .hero-content {
  color: var(--color-ink);
  padding: 52px 0;
}
body[data-page="home"] .eyebrow {
  color: var(--color-blue);
  font-weight: 650;
}
body[data-page="home"] .hero-subtitle {
  color: var(--color-muted);
}
body[data-page="home"] .btn-secondary {
  color: var(--color-blue);
  border-color: rgba(7, 87, 168, .22);
  background: rgba(255, 255, 255, .78);
}
body[data-page="home"] .btn-secondary:hover {
  color: #fff;
  border-color: var(--color-blue);
  background: var(--color-blue);
}
.home-platform-hero {
  min-height: 640px;
  background: #f7f9fb;
  border-bottom: 1px solid var(--color-line);
  align-items: stretch;
}
.home-platform-hero .home-hero-media,
.home-platform-hero::after {
  display: none;
}
.home-platform-layout {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: center;
  padding: 64px 0 66px;
  color: var(--color-ink);
}
.home-platform-copy {
  max-width: 650px;
  min-width: 0;
}
.home-platform-copy .eyebrow {
  color: var(--color-blue);
  font-weight: 650;
}
.home-platform-copy h1 {
  max-width: 680px;
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 1.13;
  font-weight: 430;
}
.home-platform-copy .hero-subtitle {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.75;
}
.home-platform-copy .btn-secondary {
  color: var(--color-ink);
  border-color: var(--color-line);
  background: #fff;
}
.home-platform-copy .btn-secondary:hover {
  color: #fff;
  border-color: var(--color-blue);
  background: var(--color-blue);
}
.home-platform-visual {
  position: relative;
  min-width: 0;
}
.home-platform-frame {
  border: 1px solid var(--color-line);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(17, 19, 23, .08);
}
.home-platform-frame img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--color-line);
}
.home-platform-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 14px 34px rgba(17, 19, 23, .1);
}
.home-platform-float strong {
  display: block;
  color: var(--color-blue);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}
.home-platform-float span {
  display: block;
  color: var(--color-muted);
  font-size: 13.5px;
  white-space: nowrap;
}
.home-platform-float-a {
  left: -36px;
  bottom: 34px;
}
.home-platform-float-b {
  right: -26px;
  top: 44px;
}
.home-platform-band {
  background: #EAF2FA;
  color: var(--color-ink);
  border-top: 1px solid rgba(221, 232, 243, 0.95);
}
.home-platform-band-grid {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  height: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--color-blue); color: #fff; }
.btn-primary:hover { background: #063F7F; }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.62); }
.btn-secondary:hover { background: #fff; color: var(--color-ink); }
.section { padding: var(--section) 0; }
.home-capabilities-section { padding-top: 42px; }
.section-soft { background: var(--color-soft); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head h2, .cta h2 { margin: 0 0 14px; font-size: clamp(18px, 3vw, 30px); line-height: 1.18; font-weight: 650; }
.section-head p { margin: 0; color: var(--color-muted); font-size: 17px; }
.trust-copy { margin-top: 18px; padding-left: 14px; border-left: 2px solid var(--color-red); color: var(--color-muted); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
body[data-page="about"] .about-intro-section { background: #fff; }
body[data-page="about"] .about-intro-copy { max-width: 680px; }
body[data-page="about"] .about-intro-copy .section-head { max-width: 680px; margin-bottom: 22px; }
body[data-page="about"] .about-intro-copy .section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.24;
  font-weight: 600;
}
body[data-page="about"] .about-intro-copy .section-head p,
body[data-page="about"] .about-intro-copy > p {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.78;
}
body[data-page="about"] .about-intro-copy > p:last-of-type { margin-bottom: 0; }
.split-image img, .feature-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
body[data-page="about"] .split-image img {
  box-shadow: 0 18px 42px rgba(17, 19, 23, .08);
  filter: contrast(.97) saturate(.97);
}
body[data-page="about"] .about-focus-section .section-head {
  max-width: 840px;
  margin-bottom: 34px;
}
body[data-page="about"] .about-focus-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(223, 228, 233, .9);
  border-radius: var(--radius);
  background: #fff;
}
body[data-page="about"] .about-focus-card span {
  display: block;
  margin-bottom: 32px;
  color: var(--color-red);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}
body[data-page="about"] .about-focus-card h3,
body[data-page="about"] .credential-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}
body[data-page="about"] .about-focus-card p {
  margin: 0;
  color: var(--color-muted);
}
body[data-page="about"] .about-credentials-section { background: #fff; }
body[data-page="about"] .about-service-grid .credential-card {
  box-shadow: none;
  border-color: rgba(223, 228, 233, .9);
}
body[data-page="about"] .credential-card p {
  line-height: 1.75;
}
body[data-page="about"] .about-certification-section { background: #fff; }
body[data-page="about"] .about-cert-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}
body[data-page="about"] .about-cert-summary {
  position: sticky;
  top: 116px;
  padding: 30px;
  border: 1px solid rgba(223, 228, 233, .95);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #F8FBFF);
  box-shadow: 0 16px 36px rgba(17, 19, 23, .05);
}
body[data-page="about"] .about-cert-summary h3 {
  margin: 0 0 14px;
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1.32;
}
body[data-page="about"] .about-cert-summary p {
  margin: 0 0 18px;
  color: var(--color-muted);
  line-height: 1.78;
}
body[data-page="about"] .about-cert-summary ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
body[data-page="about"] .about-cert-summary li {
  padding: 14px;
  border: 1px solid rgba(7, 87, 168, .12);
  border-radius: 8px;
  background: #fff;
}
body[data-page="about"] .about-cert-summary li span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 13px;
}
body[data-page="about"] .about-cert-summary li strong {
  display: block;
  color: var(--color-blue);
  font-size: 15px;
  line-height: 1.42;
}
body[data-page="about"] .about-cert-timeline {
  position: relative;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body[data-page="about"] .about-cert-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 104px;
  width: 1px;
  background: rgba(7, 87, 168, .18);
}
body[data-page="about"] .about-cert-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 0 0 0 0;
  color: #4e5965;
  font-size: 16px;
  line-height: 1.76;
}
body[data-page="about"] .about-cert-timeline li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 99px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 4px #EEF6FF;
}
body[data-page="about"] .about-cert-timeline time {
  color: var(--color-blue);
  font-weight: 560;
}
body[data-page="about"] .about-cert-timeline span {
  display: block;
  padding-bottom: 2px;
}

.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-line); border: 1px solid var(--color-line); }
.kpi { background: #fff; padding: 28px; }
.kpi strong { display: block; font-size: 24px; line-height: 1; margin-bottom: 10px; color: var(--color-blue); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card, .solution-card, .news-card, .news-list-item, .admin-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}
.solution-card { overflow: hidden; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease; }
.solution-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.solution-card:focus-visible { outline: 3px solid rgba(11, 95, 138, .35); outline-offset: 3px; }
.solution-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card-body { padding: 26px; }
.solution-card .card-body { display: flex; flex: 1; flex-direction: column; }
.solution-card .card-body p:first-of-type { min-height: 6.6em; }
.solution-card .card-body p:nth-of-type(2) { min-height: 4.95em; }
#home-solutions .solution-card img { aspect-ratio: 16 / 7.5; }
#home-solutions .solution-card .card-body { padding: 18px 22px 20px; }
#home-solutions .solution-card h3 { margin-bottom: 8px; font-size: 19px; }
#home-solutions .solution-card p {
  min-height: 0;
  margin: 0;
  line-height: 1.55;
}
#home-solutions .solution-card .card-body p:first-of-type { min-height: 0; margin-bottom: 0; }
.card h3, .solution-card h3, .news-card h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.3; }
.news-card h3 {
  height: 1.3em;
  margin-bottom: 10px;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card p, .solution-card p, .news-card p { margin: 0 0 16px; color: var(--color-muted); }
.news-card p {
  display: -webkit-box;
  min-height: 3.3em;
  margin-bottom: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-link, .news-card a { color: var(--color-blue); font-weight: 400; }
.home-capabilities-section { background: var(--color-soft); }
.capability-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.home-capabilities-section .section-head { max-width: 960px; margin-bottom: 28px; }
.capability-card { grid-column: span 2; padding: 24px; text-align: left; box-shadow: none; display: flex; flex-direction: column; gap: 10px; min-height: 172px; min-width: 0; }
.capability-card:nth-child(4), .capability-card:nth-child(5) { grid-column: span 3; }
.home-capabilities-section .capability-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.home-capabilities-section .capability-card {
  grid-column: auto;
  min-height: 136px;
  padding: 24px 26px 22px;
  border-color: rgba(221, 232, 243, .92);
  background: linear-gradient(180deg, #fff 0%, #FBFDFF 100%);
  box-shadow: 0 10px 28px rgba(17, 19, 23, .035);
  justify-content: flex-start;
}
.home-capabilities-section .capability-card:nth-child(4),
.home-capabilities-section .capability-card:nth-child(5) { grid-column: auto; }
.capability-number { color: var(--color-blue); font-size: 13px; font-weight: 700; letter-spacing: 0; }
.capability-card h3 { margin: 0; color: var(--color-ink); font-size: 19px; line-height: 1.36; }
.capability-card p { margin: 0; color: var(--color-muted); font-size: 14px; line-height: 1.7; }
.home-capabilities-section .capability-card h3 { font-size: 18.5px; line-height: 1.34; }
.home-capabilities-section .capability-card p { max-width: 30em; font-size: 14.5px; line-height: 1.72; }
.capability-card h3, .capability-card p { overflow-wrap: anywhere; word-break: break-word; }
.capability-card .capability-points { display: flex; flex-wrap: wrap; gap: 6px; color: #27435F; font-weight: 600; line-height: 1.45; }
.capability-points span { display: inline-flex; max-width: 100%; padding: 4px 8px; border-radius: 4px; background: #EEF6FF; color: #21456B; }
.credential-card p { margin-bottom: 0; }
.credential-note { max-width: 760px; margin: 26px 0 0; color: var(--color-muted); }
.system-architecture-section { background: #fff; padding-top: 0; }
.architecture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--color-line); background: var(--color-line); }
.architecture-layer { background: #fff; padding: 26px; min-height: 188px; }
.architecture-layer span { display: inline-block; margin-bottom: 18px; color: var(--color-red); font-weight: 650; }
.architecture-layer h3 { margin: 0 0 12px; color: var(--color-ink); }
.architecture-layer p { margin: 0; color: var(--color-muted); }
.capability-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 0; margin: 0; list-style: none; }
.capability-list li { border: 1px solid var(--color-line); border-radius: 6px; padding: 18px; background: #fff; min-height: 82px; }
.capabilities-section .section-head { max-width: 100%; }
.capabilities-section .section-head p, .capabilities-section .capability-list li { white-space: nowrap; }
.capabilities-section .wide-capability { grid-column: span 2; }
.coverage-band { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.region-list, .client-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.region-list li, .client-list li, .tag { border: 1px solid var(--color-line); border-radius: 999px; padding: 7px 12px; background: #fff; color: #303844; font-size: 14px; }
.case-showcase-section { background: #fff; }
.case-showcase { display: block; }
.case-copy .section-head { margin-bottom: 34px; max-width: 860px; }
.case-copy .section-head h2 { max-width: 720px; }
.case-copy .section-head p { max-width: 860px; font-size: 18px; line-height: 1.8; }
.case-proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0 0 28px; border: 1px solid var(--color-line); background: var(--color-line); }
.case-proof-item { background: #fff; padding: 22px; }
.case-proof-item strong { display: block; margin-bottom: 8px; color: var(--color-blue); font-size: 24px; line-height: 1; font-weight: 650; }
.case-proof-item span { display: block; color: var(--color-muted); }
.case-region-tabs { position: sticky; top: 78px; z-index: 20; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; padding: 10px 0; background: #fff; }
.case-region {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f3640;
  font: inherit;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.case-region span { display: none; }
.case-region strong { font-weight: 400; }
.case-region:hover, .case-region.active { color: #fff; border-color: var(--color-blue); background: var(--color-blue); }
.case-region-panels { margin-top: 22px; }
.case-region-panel[hidden] { display: none; }
.case-region-panel {
  border-top: 1px solid var(--color-line);
  padding-top: 28px;
}
.case-panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.case-panel-head h3 { margin: 0; font-size: 22px; line-height: 1.3; font-weight: 500; }
.case-panel-head p { margin: 0; color: var(--color-muted); font-size: 15px; white-space: nowrap; }
.case-hospital-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #3f4752;
  font-size: 15px;
  line-height: 1.3;
}
.case-hospital-list li {
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: #fff;
  padding: 10px 12px;
}
.case-hospital-list li.case-list-hidden { display: none; }
.case-expand-button {
  margin-top: 18px;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--color-blue);
  border-color: rgba(7, 87, 168, .26);
  background: #F7FBFF;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(7, 87, 168, .08);
}
.case-expand-button:hover,
.case-expand-button:focus-visible {
  color: #fff;
  border-color: var(--color-blue);
  background: var(--color-blue);
  box-shadow: 0 10px 22px rgba(7, 87, 168, .16);
}
.case-expand-button[data-expanded="true"] {
  color: #17324D;
  border-color: rgba(7, 87, 168, .2);
  background: #EAF2FA;
}
.case-expand-button[data-expanded="true"]:hover,
.case-expand-button[data-expanded="true"]:focus-visible {
  color: #fff;
  border-color: var(--color-blue);
  background: var(--color-blue);
}
.case-summary-section { background: var(--color-soft); border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.case-summary-section .section-head { max-width: 100%; margin-bottom: 28px; }
.case-summary-section .section-head p { white-space: normal; }
.case-summary-section .case-summary-proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #F8FCFF 0%, #EEF6FF 100%);
}
.case-summary-section .case-summary-proof-strip .case-proof-item {
  border: 0;
  border-right: 1px solid rgba(221, 232, 243, .95);
  border-radius: 0;
  background: transparent;
  padding: 24px 30px;
}
.case-summary-section .case-summary-proof-strip .case-proof-item:last-child { border-right: 0; }
.case-summary-client-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.case-summary-client-text {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
}
.case-summary-client-text h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  white-space: nowrap;
}
.case-summary-section .client-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.case-summary-section .client-list li {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #465267;
  font-size: 15.5px;
}
.case-summary-regions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.case-summary-region {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  padding: 9px 18px;
  color: #3f4752;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.case-summary-region.active, .case-summary-region:hover {
  color: #fff;
  border-color: var(--color-blue);
  background: var(--color-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(11, 95, 138, .14);
}
.case-summary-client-line {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  overflow: visible;
  padding: 10px 0 0;
  min-height: 56px;
}
.case-summary-client-line[hidden] { display: none; }
.case-summary-client-line span { flex: 0 0 auto; border: 1px solid var(--color-line); border-radius: 999px; background: #fff; padding: 9px 14px; color: #3f4752; font-size: 14.5px; line-height: 1.3; }
.case-summary-client-line .case-summary-more { min-width: 42px; text-align: center; letter-spacing: 1px; }
.case-summary-link {
  margin-top: 18px;
  min-height: 40px;
  padding: 8px 16px;
  color: var(--color-blue);
  border-color: rgba(11, 95, 138, .2);
  background: rgba(255, 255, 255, .8);
}
.case-summary-link:hover {
  color: #fff;
  border-color: var(--color-blue);
  background: var(--color-blue);
}
.case-summary-client-line .case-summary-link { flex: 0 0 auto; margin-top: 0; margin-left: 6px; }
.solutions-summary-section { background: #fff; }
.news-summary-section,
.cta { background: var(--color-soft); }

body[data-page="home"] .home-capabilities-section { background: #fff; }
body[data-page="home"] .solutions-summary-section { background: var(--color-soft); }
body[data-page="home"] .case-summary-section { background: #fff; }
body[data-page="home"] .news-summary-section { background: var(--color-soft); }
body[data-page="home"] .cta { background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.news-summary-section .news-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}
.home-case-row {
  min-width: 0;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(220px, .82fr) auto;
  align-items: center;
  gap: 28px;
  padding: 17px 22px;
  background: #fff;
  border: 1px solid rgba(223, 228, 233, .95);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(17, 19, 23, .025);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.home-case-row:hover {
  border-color: rgba(30, 136, 229, .28);
  background: #fbfdff;
  box-shadow: 0 12px 30px rgba(17, 19, 23, .045);
}
.home-case-row h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.36;
  font-weight: 650;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.home-case-row p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}
.home-case-row a {
  justify-self: end;
  color: var(--color-blue);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}
.home-case-row a:hover { color: var(--color-red); }
.news-summary-link { margin-top: 28px; }
.news-card {
  min-width: 0;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  border-color: rgba(223, 228, 233, .9);
  box-shadow: 0 10px 26px rgba(17, 19, 23, .04);
}
.news-card .tag {
  align-self: flex-start;
  background: rgba(244, 246, 248, .96);
}
.news-card time, .news-list-item time, .admin-news-row time, .news-date { display: block; color: var(--color-muted); font-size: 14px; margin: 10px 0 12px; }
.news-card a { margin-top: auto; }
.text-button { appearance: none; border: 0; background: none; padding: 0; color: var(--color-blue); font: inherit; cursor: pointer; }
.text-button:hover { color: var(--color-red); }
.news-expand-button { margin-top: 2px; min-height: 44px; color: var(--color-blue); border-color: var(--color-line); background: #fff; }
.news-expand-button:hover { color: #fff; border-color: var(--color-blue); background: var(--color-blue); }
.news-detail {
  max-width: 920px;
  margin: 44px auto 0;
  scroll-margin-top: 176px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(223, 228, 233, .95);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(17, 19, 23, .06);
}
.news-detail-toolbar {
  padding: 18px 34px;
  border-bottom: 1px solid rgba(223, 228, 233, .9);
  background: linear-gradient(180deg, #fff, #fbfcfd);
}
.news-detail .news-back {
  color: var(--color-blue);
  font-size: 15px;
}
.news-detail .news-back:hover { color: var(--color-red); }
.news-detail-head {
  padding: 48px 48px 34px;
  border-bottom: 1px solid rgba(223, 228, 233, .75);
  text-align: center;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  color: var(--color-muted);
  font-size: 14px;
}
.news-detail-meta time { margin: 0; }
.news-detail h1 {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: 0;
}
.news-detail h2 {
  margin: 30px 0 12px;
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 540;
}
.news-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 34px 48px 46px;
  color: #4e5965;
}
.news-content h3 {
  margin: 24px 0 8px;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 520;
}
.news-content h3:first-child { margin-top: 0; }
.news-content p {
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.92;
}
.news-content p:first-child {
  color: #36414c;
  font-size: 17px;
}
.news-content p:last-child { margin-bottom: 0; }
.cta { padding: 58px 0; color: var(--color-ink); text-align: center; }
.cta h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(20px, 2.3vw, 28px);
}
.cta p {
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto 22px;
  font-size: 15.5px;
  line-height: 1.75;
}
.page-section { padding: 88px 0; }
.breadcrumb {
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 14px;
}
.breadcrumb a { color: var(--color-blue); }
.solution-detail-card {
  min-height: 150px;
  padding: 24px;
}
.solution-detail-card h3 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.35;
}
.solution-detail-card p,
.solution-detail-card li {
  color: var(--color-muted);
  line-height: 1.72;
}
.solution-detail-card p { margin: 0; }
.solution-detail-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
}
.solution-faq-section {
  background: #fff;
}
.solution-faq-card {
  min-height: 0;
  padding: 26px;
}
.solution-faq-card h3 {
  font-size: 17px;
}
.solution-faq-card p {
  line-height: 1.78;
}
.solution-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.solution-detail-actions .btn { min-width: 150px; }
.solution-detail-actions .btn-secondary {
  color: var(--color-blue);
  border-color: rgba(7, 87, 168, .24);
  background: #fff;
}
.solution-detail-actions .btn-secondary:hover {
  color: #fff;
  border-color: var(--color-blue);
  background: var(--color-blue);
}
.detail-row { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--color-line); }
.detail-row:nth-child(even) .detail-media { order: 2; }
.detail-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); }
.detail-copy h2 { margin: 0 0 16px; font-size: clamp(26px, 3vw, 38px); line-height: 1.2; }
body[data-page="solutions"] .detail-copy h2 { font-size: clamp(20.8px, 2.4vw, 30.4px); }
.detail-copy p { color: var(--color-muted); margin: 0 0 18px; }
.detail-copy ul { padding-left: 20px; color: #303844; }
.filter-bar { position: sticky; top: 78px; z-index: 20; display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; padding: 10px 0; background: #fff; }
.filter-bar button, .row-actions button, .admin-toolbar button {
  border: 1px solid var(--color-line);
  background: #fff;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
}
.filter-bar button.active, .filter-bar button:hover { border-color: var(--color-blue); color: var(--color-blue); }
.news-list { display: grid; gap: 20px; }
.news-list-item { min-width: 0; padding: 30px; }
.news-list-item h2 {
  margin: 12px 0;
  font-size: 26px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list-item p {
  display: -webkit-box;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 44px;
  align-items: start;
}
.contact-grid-single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}
.contact-grid > div { min-width: 0; }
.contact-methods { display: grid; gap: 18px; }
.contact-method { border-top: 1px solid var(--color-line); padding-top: 18px; }
.contact-method strong { display: block; margin-bottom: 4px; }
.contact-method p {
  margin: 0 0 12px;
  color: var(--color-muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.contact-method-qr img {
  width: 128px;
  height: 128px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  padding: 6px;
}
.form-grid {
  display: grid;
  gap: 16px;
  align-content: start;
}
label { display: grid; gap: 8px; font-weight: 600; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 132px; resize: vertical; }
.writing-guidelines { padding: 18px; border: 1px solid var(--color-line); border-radius: var(--radius); background: #f8fafc; color: var(--color-muted); }
.writing-guidelines h3 { margin: 0 0 10px; color: var(--color-ink); }
.writing-guidelines p { margin: 0 0 8px; }
.writing-guidelines p:last-child { margin-bottom: 0; }
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-feedback {
  min-height: 24px;
  margin: -2px 0 2px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}
.form-feedback.pending { color: var(--color-blue); }
.form-feedback.success { color: #1f7a42; }
.form-feedback.error { color: var(--color-red); }
.form-grid button[disabled] {
  opacity: .72;
  cursor: wait;
  transform: none;
}
.site-footer {
  background:
    linear-gradient(180deg, #F3F8FC 0%, #E8F1F8 100%);
  color: #17324D;
  padding: 64px 0 26px;
  border-top: 1px solid rgba(178, 203, 224, .55);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, .78fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: start;
}
.footer-grid > div { min-width: 0; }
.footer-logo { width: 176px; margin-bottom: 20px; }
.site-footer p, .site-footer a { color: #536A82; }
.site-footer p {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.85;
}
.site-footer h2 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 12px;
  color: #17324D;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 650;
}
.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-blue);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  line-height: 1.5;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--color-blue); }
.footer-contact { display: grid; gap: 0; }
.footer-contact p {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(190, 210, 226, .68);
  line-height: 1.62;
}
.footer-contact p:first-child { padding-top: 0; }
.footer-contact span {
  color: rgba(23,50,77,.62);
  font-weight: 600;
}
.footer-contact em,
.footer-map-link {
  color: #5B6F86;
  font-style: normal;
}
.footer-qrs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.footer-qr {
  display: inline-grid;
  gap: 9px;
  color: #5B6F86;
  font-size: 13px;
  text-align: center;
}
.footer-qr img {
  width: 104px;
  height: 104px;
  padding: 6px;
  border: 1px solid rgba(188, 210, 226, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(21, 53, 84, .08);
}
.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(190, 210, 226, .72);
  color: #5B6F86;
  font-size: 14px;
}
.copyright .footer-icp { color: #17324D; }
.copyright .footer-icp:hover { color: var(--color-blue); }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.admin-main { background: var(--color-soft); min-height: 100vh; padding: 56px 0; }
.admin-wrap { width: min(calc(100% - 40px), 1060px); margin: 0 auto; }
.admin-card { padding: 28px; box-shadow: var(--shadow); }
.admin-card h1, .admin-card h2 { color: var(--color-ink); font-size: 34px; line-height: 1.2; margin: 0 0 12px; }
.admin-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.admin-news-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--color-line); }
.row-actions { display: flex; gap: 8px; align-items: start; }
.admin-note { margin: -8px 0 22px; color: var(--color-muted); }
.error { color: var(--color-red); min-height: 24px; }
