:root {
  --navy: #082f67;
  --navy-deep: #041f48;
  --blue: #0b62ce;
  --blue-bright: #2f82ee;
  --sky: #eef6ff;
  --ice: #f6f9fd;
  --gold: #c99a4a;
  --ink: #13233b;
  --muted: #66758a;
  --line: #dfe8f3;
  --white: #fff;
  --shadow: 0 18px 50px rgba(19, 57, 101, .11);
  --shadow-soft: 0 10px 32px rgba(19, 57, 101, .08);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 68px 0; }
.section-tint { background: linear-gradient(180deg, #f8fbff, #eef5fd); }
.section-dark { color: var(--white); background: var(--navy-deep); }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading.align-left { margin-inline: 0; text-align: left; }
.section-heading h2 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 44px); line-height: 1.24; color: var(--navy); }
.section-dark .section-heading h2 { color: var(--white); }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }
.section-dark .section-heading p { color: rgba(255,255,255,.68); }
.eyebrow { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.eyebrow-light { color: #87bbff; }
.title-mark::after { content: ""; display: block; width: 38px; height: 3px; margin-top: 16px; border-radius: 3px; background: var(--blue); }
.section-heading .title-mark::after { margin-inline: auto; }
.section-heading.align-left .title-mark::after { margin-left: 0; }
.muted { color: var(--muted); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 26px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(11, 98, 206, .2);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button::after { content: "→"; }
.button:hover { transform: translateY(-2px); background: #0756b8; box-shadow: 0 14px 28px rgba(11, 98, 206, .26); }
.button-small { min-height: 42px; padding-inline: 20px; }
.button-outline { color: var(--blue); background: transparent; box-shadow: none; }
.button-outline:hover { color: var(--white); }
.button-light { color: var(--navy); border-color: var(--white); background: var(--white); }
.button-light:hover { color: var(--navy); background: #eef5ff; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 700; }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  border-bottom: 1px solid rgba(10, 49, 96, .08);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  transition: box-shadow .28s ease, background .28s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.98); box-shadow: 0 10px 34px rgba(18,52,91,.09); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 188px; }
.brand img { width: 100%; height: 46px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 38px; font-weight: 700; }
.main-nav > a:not(.button) { position: relative; padding: 27px 2px 24px; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; right: 50%; bottom: 16px; left: 50%; height: 3px; border-radius: 3px; background: var(--blue); transition: inset .2s ease; }
.main-nav > a:not(.button):hover, .main-nav > a:not(.button).is-active { color: var(--blue); }
.main-nav > a:not(.button):hover::after, .main-nav > a:not(.button).is-active::after { right: 0; left: 0; }
.main-nav > .button, .main-nav > .button:visited, .main-nav > .button:hover, .main-nav > .button:focus-visible { color: var(--white); }
.main-nav .button::after { display: none; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy); transition: transform .2s, opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.home-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: url("../images/home-hero.jpg") center / cover no-repeat;
}
.home-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.74) 38%, rgba(255,255,255,.04) 72%); }
.home-hero::after { content: ""; position: absolute; z-index: -1; inset: auto 0 0; height: 135px; background: linear-gradient(transparent, rgba(3,31,72,.7)); }
.hero-copy { width: min(650px, 60%); padding: 92px 0 155px; }
.hero-copy h1 { max-width: 610px; margin: 16px 0 22px; color: var(--navy-deep); font-size: clamp(42px, 5.8vw, 72px); line-height: 1.13; letter-spacing: -.02em; }
.hero-copy p { max-width: 590px; margin: 0 0 32px; color: #29415e; font-size: 20px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; color: var(--white); }
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stat { min-height: 112px; display: flex; align-items: center; gap: 14px; padding: 24px 30px; border-left: 1px solid rgba(255,255,255,.2); background: rgba(4,31,72,.68); backdrop-filter: blur(8px); }
.hero-stat:last-child { border-right: 1px solid rgba(255,255,255,.2); }
.hero-stat strong { display: block; font-size: 18px; }
.hero-stat span { display: block; color: rgba(255,255,255,.68); font-size: 13px; }
.hero-stat .stat-icon { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(219,171,82,.75); border-radius: 50%; color: #e0b866; }

.page-hero { position: relative; min-height: 390px; display: flex; align-items: center; overflow: hidden; background: var(--sky); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 40%, rgba(44,126,220,.13) 1px, transparent 2px) 0 0 / 14px 14px; opacity: .5; }
.page-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: pageHeroDrift 24s ease-in-out infinite alternate; will-change: transform; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(245,250,255,.98) 0%, rgba(245,250,255,.82) 42%, rgba(245,250,255,.16) 75%); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { margin-bottom: 24px; color: var(--muted); font-size: 14px; }
.breadcrumb a:hover { color: var(--blue); }
.page-hero h1 { margin: 0 0 14px; color: var(--navy); font-size: clamp(42px, 6vw, 66px); line-height: 1.2; }
.page-hero p { margin: 0; color: #3d526c; font-size: 20px; }
.project-hero { min-height: 510px; }
.project-hero .page-hero-overlay { background: linear-gradient(90deg, rgba(239,247,255,.96), rgba(239,247,255,.72) 45%, rgba(239,247,255,.05) 74%); }
.project-hero-content { width: min(660px, 65%); }
.project-hero h1 { display: flex; align-items: center; gap: 18px; }
.project-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 30px; }
.project-badge { padding: 18px 12px; border-radius: 11px; text-align: center; background: rgba(255,255,255,.86); box-shadow: var(--shadow-soft); }
.project-badge b { display: block; color: var(--navy); }
.project-badge span { color: var(--muted); font-size: 12px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.split-media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s; }
.split-media:hover img { transform: scale(1.03); }
.split-copy h2 { margin: 10px 0 20px; color: var(--navy); font-size: clamp(32px, 4vw, 46px); line-height: 1.3; }
.split-copy p { margin: 0 0 16px; color: #4c6079; }
.split-copy .button { margin-top: 18px; }
.brand-panel { position: relative; min-height: 440px; border-radius: 24px; background: linear-gradient(145deg, var(--navy-deep), #0d5ba9); box-shadow: var(--shadow); overflow: hidden; }
.brand-panel::before, .brand-panel::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.brand-panel::before { width: 420px; height: 420px; top: 52px; right: -90px; }
.brand-panel::after { width: 260px; height: 260px; top: 132px; right: -10px; }
.brand-panel-content { position: absolute; z-index: 2; inset: auto 38px 38px; color: var(--white); }
.brand-panel-content strong { display: block; color: #91c1ff; font-size: 54px; line-height: 1; }
.brand-panel-content span { color: rgba(255,255,255,.72); }
.brand-panel-grid { position: absolute; inset: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.brand-panel-grid div { height: 95px; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: var(--white); background: rgba(255,255,255,.06); }

.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.reason-card, .support-card, .advantage-card { padding: 32px 26px; border: 1px solid #e7eef7; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); transition: transform .25s, box-shadow .25s; }
.reason-card:hover, .support-card:hover, .advantage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid #b9d7fb; border-radius: 50%; color: var(--blue); background: var(--sky); font-size: 25px; font-weight: 800; }
.reason-card h3, .support-card h3, .advantage-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 20px; }
.reason-card p, .support-card p, .advantage-card p { margin: 0; color: var(--muted); font-size: 14px; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.process-grid::before { content: ""; position: absolute; top: 27px; right: 7%; left: 7%; height: 1px; background: #b6cdf0; }
.process-step { position: relative; z-index: 2; text-align: center; }
.process-number { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 16px; border: 2px solid #bdd2ee; border-radius: 50%; color: var(--blue); background: var(--white); font-weight: 800; box-shadow: 0 0 0 8px #f8fbff; }
.process-step h3 { margin: 0 0 4px; font-size: 16px; }
.process-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.project-preview-grid, .project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { min-width: 0; overflow: hidden; color: inherit; border: 1px solid #e2ebf5; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); cursor: pointer; transition: transform .25s, box-shadow .25s; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.project-card:focus-visible { outline: 3px solid rgba(11, 98, 206, .42); outline-offset: 4px; }
.project-card-image { position: relative; height: 218px; overflow: hidden; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-card-image img { transform: scale(1.045); }
.region-flag { position: absolute; bottom: 16px; left: 18px; width: 48px; height: 48px; display: grid; place-items: center; border: 3px solid white; border-radius: 50%; background: white; font-size: 26px; box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.project-card-body { padding: 26px 24px 28px; }
.project-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 23px; }
.project-card ul { min-height: 112px; margin: 0 0 22px; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.project-card li { margin: 6px 0; }
.project-card li::before { content: "·"; margin-right: 8px; color: var(--blue); font-weight: 900; }
.project-cta { display: flex; min-height: 310px; flex-direction: column; align-items: flex-start; justify-content: center; padding: 42px; color: var(--white); border-radius: var(--radius); background: linear-gradient(145deg, #093a78, #061d42); box-shadow: var(--shadow); }
.project-cta h3 { margin: 0 0 12px; font-size: 28px; line-height: 1.35; }
.project-cta p { margin: 0 0 24px; color: rgba(255,255,255,.68); }

.filter-bar { position: relative; z-index: 5; display: flex; justify-content: space-between; gap: 6px; margin-top: -31px; padding: 12px 18px; border-radius: 12px; background: var(--white); box-shadow: var(--shadow); overflow-x: auto; }
.filter-button { flex: 0 0 auto; min-width: 110px; padding: 12px 18px; border: 0; border-radius: 7px; color: #42556c; background: transparent; font-weight: 700; cursor: pointer; }
.filter-button:hover, .filter-button.is-active { color: var(--white); background: var(--blue); }

.news-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; }
.news-lead { min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; border-radius: var(--radius); color: var(--white); background: linear-gradient(155deg, rgba(4,31,72,.25), rgba(4,31,72,.95)), url("../images/region-hk.jpg") center / cover; box-shadow: var(--shadow); }
.news-lead time, .news-list time { color: #8ebaf0; font-size: 13px; }
.news-lead h3 { margin: 12px 0 8px; font-size: clamp(24px, 3vw, 34px); line-height: 1.4; }
.news-stack { display: grid; gap: 14px; }
.news-list { display: grid; grid-template-columns: 90px 1fr 28px; align-items: center; gap: 22px; padding: 23px 26px; border: 1px solid #e2ebf5; border-radius: 13px; background: var(--white); transition: transform .2s, border-color .2s; }
.news-list:hover { transform: translateX(5px); border-color: #9dc6f5; }
.news-list strong { font-size: 17px; line-height: 1.5; }
.news-list .arrow { color: var(--blue); font-size: 22px; }
.news-section-heading { margin-bottom: 42px; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.news-card { height: 440px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #dce8f5; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.news-card:hover { transform: translateY(-7px); border-color: #8ebff3; box-shadow: 0 20px 42px rgba(22, 73, 128, .13); }
.news-card-media { position: relative; flex: 0 0 168px; overflow: hidden; background: #dfeaf6; }
.news-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(4,31,72,.16)); pointer-events: none; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.25,1); }
.news-card:hover .news-card-media img { transform: scale(1.045); }
.news-card-body { min-height: 0; flex: 1; display: flex; flex-direction: column; padding: 22px 26px 21px; }
.news-card .category { width: max-content; margin-bottom: 15px; padding: 5px 10px; border-radius: 5px; color: var(--blue); background: #e9f3ff; font-size: 12px; line-height: 1.4; font-weight: 700; }
.news-card h2, .news-card h3 { display: block; width: 100%; margin: 0; overflow: hidden; color: var(--navy); font-size: 20px; line-height: 1.55; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.news-card .news-excerpt { display: -webkit-box; min-height: 4.8em; margin: 13px 0 0; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.news-card footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 15px; border-top: 1px solid #edf2f7; color: var(--muted); font-size: 13px; }
.news-card .arrow { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; color: var(--blue); background: #eef6ff; font-size: 18px; transition: color .25s ease, background .25s ease, transform .25s ease; }
.news-card:hover .arrow { color: #fff; background: var(--blue); transform: translateX(3px); }
.news-pagination { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.news-pagination-summary { margin: 0; color: var(--muted); font-size: 14px; }
.news-pagination-pages { display: flex; align-items: center; justify-content: center; gap: 8px; }
.news-page-link { min-width: 42px; height: 42px; padding: 0 13px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid #d4e1f2; border-radius: 10px; color: var(--navy); background: #fff; font-size: 14px; font-weight: 700; transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.news-page-link:hover { color: var(--blue); border-color: #9fc3f2; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(13, 92, 184, .1); }
.news-page-link.is-current { color: #fff; border-color: var(--blue); background: var(--blue); box-shadow: 0 8px 18px rgba(15, 104, 209, .2); cursor: default; }
.news-page-link.is-disabled { color: #a9b6c8; background: #f5f8fc; cursor: not-allowed; }
.news-page-link.is-disabled:hover { color: #a9b6c8; border-color: #d4e1f2; transform: none; box-shadow: none; }
.news-page-ellipsis { min-width: 28px; color: var(--muted); text-align: center; }

.honor-shell { position: relative; }
.honor-track { display: grid; grid-auto-columns: 31%; grid-auto-flow: column; gap: 20px; padding: 10px 4px 24px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; touch-action: pan-x; }
.honor-track::-webkit-scrollbar { display: none; }
.honor-card { scroll-snap-align: start; padding: 18px; border: 1px solid #e1e8f1; border-radius: 14px; background: var(--white); box-shadow: var(--shadow-soft); }
.honor-track.is-continuous { scroll-behavior: auto; scroll-snap-type: none; }
.honor-track.is-continuous .honor-card { scroll-snap-align: none; }
.honor-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; border-radius: 8px; background: #f7f8fa; }
.honor-card p { margin: 14px 2px 0; font-weight: 700; text-align: center; }
.scroll-controls { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.round-button { width: 46px; height: 46px; border: 1px solid #b8c9df; border-radius: 50%; color: var(--navy); background: var(--white); cursor: pointer; }
.round-button:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }

.support-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.support-card { padding: 26px 18px; text-align: center; }
.support-card .card-icon { margin-inline: auto; }
.support-card p { font-size: 12px; }

/* Projects page — aligned to the supplied page design */
.projects-page-hero { min-height: 430px; isolation: isolate; }
.projects-page-hero .page-hero-image { z-index: -3; object-position: center 53%; }
.projects-page-hero .page-hero-overlay { z-index: -2; background: linear-gradient(90deg, rgba(247,251,255,.94) 0%, rgba(247,251,255,.76) 38%, rgba(247,251,255,.16) 68%, rgba(247,251,255,.02)); }
.news-page-hero .page-hero-image { object-position: center 52%; }
.news-page-hero .page-hero-overlay { background: linear-gradient(90deg, rgba(245,250,255,.94) 0%, rgba(245,250,255,.7) 40%, rgba(245,250,255,.1) 72%, rgba(245,250,255,.01)); }
.projects-page-hero::after { content: ""; position: absolute; z-index: -1; width: 610px; height: 300px; left: 7%; top: 56px; background: url("../images/world-map-clean.png") left center / contain no-repeat; opacity: .08; filter: grayscale(1); }
.projects-page-hero h1 { font-weight: 800; }
.projects-list-section { padding: 58px 0 84px; }
.projects-page-grid { gap: 24px; align-items: stretch; }
.projects-page-grid [hidden] { display: none !important; }
.projects-page-grid.is-filtered { width: min(calc(100% - 48px), var(--container)); grid-template-columns: minmax(0, 1.65fr) minmax(300px, .72fr); gap: 28px; }
.projects-page-grid .is-filter-hidden { display: none !important; }
.projects-page-grid .project-card { display: flex; min-height: 450px; flex-direction: column; border-radius: 10px; box-shadow: 0 10px 28px rgba(27,67,113,.08); }
.projects-page-grid .project-card-image { height: 190px; flex: 0 0 auto; overflow: visible; }
.projects-page-grid .project-card-image img { height: 100%; object-fit: cover; }
.projects-page-grid .region-flag { z-index: 3; bottom: -24px; left: 22px; width: 54px; height: 54px; border-width: 4px; font-size: 27px; }
.projects-page-grid .project-card-body { display: flex; flex: 1; flex-direction: column; padding: 42px 28px 26px; }
.projects-page-grid .project-card h3 { margin-bottom: 15px; color: #072f67; font-size: 25px; font-weight: 800; }
.projects-page-grid .project-card ul { min-height: 132px; margin-bottom: 22px; color: #455970; font-size: 16px; font-weight: 500; line-height: 1.72; }
.projects-page-grid .project-card li { margin: 6px 0; }
.projects-page-grid .text-link { margin-top: auto; color: #075fc7; font-size: 16px; font-weight: 800; }
.projects-page-grid .text-link::after { display: none; }
.passport-project-card { grid-column: span 2; display: grid !important; min-height: 310px !important; grid-template-columns: 1fr 1.08fr; }
.projects-page-grid .passport-project-card .project-card-image { height: 100%; min-height: 310px; }
.passport-project-card .region-flag { display: none; }
.passport-project-card .project-card-body { justify-content: center; padding: 34px 38px; }
.passport-project-card h3::before { content: "🌐"; margin-right: 9px; font-size: 23px; }
.passport-project-card ul { min-height: 0 !important; }
.projects-page-grid.is-filtered .project-card { grid-column: auto; min-height: 420px; display: grid !important; grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr); }
.projects-page-grid.is-filtered .project-card.is-filter-hidden,
.projects-page-grid.is-filtered .project-card[hidden] { display: none !important; }
.projects-page-grid.is-filtered .project-card .project-card-image { height: 100%; min-height: 420px; overflow: hidden; }
.projects-page-grid.is-filtered .project-card .region-flag { bottom: 22px; left: 22px; }
.projects-page-grid.is-filtered .project-card .project-card-body { justify-content: center; padding: 42px 36px; }
.projects-page-grid.is-filtered .project-card ul { min-height: 0; margin-bottom: 28px; }
.projects-page-grid.is-filtered .project-cta { grid-column: auto; min-height: 420px; justify-content: center; padding: 44px 38px; }
.projects-page-grid.is-filtered .passport-project-card .region-flag { display: grid; }
.projects-page-grid.is-filtered .passport-project-card h3::before { display: none; }
.projects-page-grid .project-cta { min-height: 310px; padding: 38px; border-radius: 10px; background: radial-gradient(circle at 100% 100%, rgba(72,139,220,.2), transparent 46%), linear-gradient(145deg, #0a448f, #061f48); }
.projects-page-grid .project-cta::after { content: ""; position: absolute; width: 190px; height: 190px; right: -28px; bottom: -38px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 32px rgba(255,255,255,.03); }
.projects-page-grid .project-cta { position: relative; overflow: hidden; }
.projects-page-grid .project-cta > * { position: relative; z-index: 2; }
.projects-page-grid .project-cta h3 { font-size: 24px; }

.projects-support-section { padding: 76px 0 84px; background: linear-gradient(180deg, #f8fbff, #eef5fd); }
.projects-support-grid { gap: 20px; }
.projects-support-grid .support-card { padding: 0 10px; border: 0; background: transparent; box-shadow: none; }
.projects-support-grid .support-card:hover { transform: none; box-shadow: none; }
.projects-support-grid .card-icon { width: 96px; height: 96px; margin-bottom: 20px; border: 0; color: var(--blue); background: var(--white); box-shadow: 0 12px 30px rgba(30,78,132,.09); }
.projects-support-grid .card-icon svg { width: 46px; height: 46px; stroke-width: 1.65; }
.projects-support-grid h3 { margin-bottom: 10px; color: var(--navy); font-size: 21px; font-weight: 800; line-height: 1.4; }
.projects-support-grid p { color: #4b5f78; font-size: 15px; font-weight: 500; line-height: 1.75; }

.sticky-tabs { position: sticky; z-index: 60; top: 82px; display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); }
.sticky-tabs a { padding: 22px 16px; text-align: center; font-weight: 700; }
.sticky-tabs a:hover, .sticky-tabs a:first-child { color: var(--blue); box-shadow: inset 0 -3px var(--blue); }
.overview-layout { display: grid; grid-template-columns: 1fr 1.15fr; align-items: center; gap: 64px; }
.overview-layout h2 { margin: 8px 0 18px; color: var(--navy); font-size: 42px; }
.overview-layout p { color: #4c6079; }
.overview-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.overview-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.advantage-card { padding: 26px 22px; }
.advantage-card .card-icon { width: 48px; height: 48px; font-size: 19px; }
.criteria-layout { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 64px; }
.criteria-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; padding: 0; list-style: none; }
.criteria-list li { position: relative; padding-left: 24px; color: #445a74; }
.criteria-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.criteria-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.process-six { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.process-six .process-step { padding: 18px 12px; border-radius: 14px; background: var(--white); box-shadow: var(--shadow-soft); }
.process-six .process-number { box-shadow: none; }

/* Regional project detail pages */
.region-detail-hero { min-height: 540px; isolation: isolate; }
.region-detail-hero .page-hero-image { z-index: -3; object-position: center; }
.region-detail-hero .page-hero-overlay { z-index: -2; background: linear-gradient(90deg, rgba(241,248,255,.97) 0%, rgba(241,248,255,.87) 38%, rgba(241,248,255,.18) 70%, rgba(241,248,255,.03) 100%); }
.region-detail-hero .project-hero-content { width: min(690px, 64%); }
.region-detail-hero h1 { font-size: clamp(48px, 5.5vw, 68px); font-weight: 800; }
.region-detail-hero h1 .hero-flag { width: 58px; height: 58px; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); font-size: 31px; box-shadow: var(--shadow-soft); }
.region-detail-hero p { max-width: 620px; font-size: 19px; font-weight: 600; }
.detail-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 30px; }
.detail-hero-stat { min-height: 116px; padding: 18px 12px; border-radius: 10px; background: rgba(255,255,255,.9); text-align: center; box-shadow: 0 10px 28px rgba(19,57,101,.09); }
.detail-hero-stat .stat-icon { width: 42px; height: 42px; display: grid; place-items: center; margin: 0 auto 8px; color: var(--blue); }
.detail-hero-stat .stat-icon svg { width: 34px; height: 34px; stroke-width: 1.7; }
.detail-hero-stat b { display: block; color: var(--navy); font-size: 15px; line-height: 1.4; }
.detail-hero-stat span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.detail-tabs { position: sticky; z-index: 60; top: 82px; display: flex; justify-content: center; overflow-x: auto; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); box-shadow: 0 8px 22px rgba(19,57,101,.05); backdrop-filter: blur(10px); }
.detail-tabs a { min-width: 190px; padding: 21px 24px; color: #40546d; text-align: center; font-weight: 700; white-space: nowrap; }
.detail-tabs a:hover, .detail-tabs a.is-active { color: var(--blue); box-shadow: inset 0 -3px var(--blue); }

.program-section { padding: 88px 0; scroll-margin-top: 150px; }
.program-section:nth-of-type(even) { background: linear-gradient(180deg, #f8fbff, #eef5fd); }
.program-overview { display: grid; grid-template-columns: 1fr 1.06fr; align-items: center; gap: 64px; }
.program-overview.is-reversed .program-copy { order: 2; }
.program-overview.is-reversed .program-visual { order: 1; }
.program-index { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.program-index svg { width: 18px; height: 18px; }
.program-copy h2 { margin: 0 0 18px; color: var(--navy); font-size: clamp(32px, 4vw, 44px); line-height: 1.3; }
.program-copy > p { margin: 0 0 14px; color: #4b6078; font-size: 16px; line-height: 1.9; }
.program-visual { overflow: hidden; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.program-visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.25,1); }
.program-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.program-fact { padding: 18px 16px; border: 1px solid #deebf7; border-radius: 12px; background: var(--white); }
.program-fact .fact-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 11px; border-radius: 50%; color: var(--blue); background: var(--sky); }
.program-fact .fact-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
.program-fact b { display: block; color: var(--navy); font-size: 15px; }
.program-fact span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.program-detail-panel { margin-top: 42px; padding: 30px 32px; border: 1px solid #dfebf7; border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); }
.program-detail-panel h3 { margin: 0 0 18px; color: var(--navy); font-size: 23px; }
.detail-check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 28px; margin: 0; padding: 0; list-style: none; }
.detail-check-list li { position: relative; padding-left: 30px; color: #435870; line-height: 1.7; }
.detail-check-list li::before { content: ""; position: absolute; left: 0; top: .35em; width: 19px; height: 19px; border-radius: 50%; background: #e7f2ff; box-shadow: inset 0 0 0 5px #e7f2ff; }
.detail-check-list li::after { content: "✓"; position: absolute; left: 4px; top: -.02em; color: var(--blue); font-size: 13px; font-weight: 900; }

.project-document-copy { margin-top: 38px; }
.document-copy-card { padding: 36px 40px; border: 1px solid #dce8f5; border-radius: 16px; background: #fff; box-shadow: var(--shadow-soft); }
.document-copy-body { color: #40556e; font-size: 16px; line-height: 1.95; }
.document-copy-body h3 { margin: 34px 0 16px; padding-bottom: 10px; border-bottom: 1px solid #e3ebf5; color: var(--navy); font-size: 24px; }
.document-copy-body h3:first-child { margin-top: 0; }
.document-copy-body h4 { margin: 24px 0 8px; color: #103e77; font-size: 17px; }
.document-copy-body p { margin: 0 0 14px; }
.document-copy-body ul, .document-copy-body ol { display: grid; gap: 8px; margin: 10px 0 20px; padding-left: 24px; }
.document-copy-body li { padding-left: 3px; }
.document-copy-body strong { color: #173f70; }
.document-copy-note { margin-top: 20px !important; padding: 14px 16px; border-left: 3px solid var(--blue); color: #52667d; background: #f4f8fd; font-size: 14px; }

.project-flow-wrap { margin-top: 54px; }
.project-flow-panel { position: relative; overflow: hidden; padding: 46px 34px 38px; border: 1px solid #d9e7f7; border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(240,247,255,.96)); box-shadow: 0 22px 60px rgba(24,70,123,.12); }
.project-flow-panel::before { content: ""; position: absolute; width: 360px; height: 360px; top: -230px; right: -140px; border: 1px solid rgba(11,98,206,.12); border-radius: 50%; box-shadow: 0 0 0 52px rgba(11,98,206,.025), 0 0 0 104px rgba(17,157,161,.018); }
.project-flow-heading { position: relative; z-index: 2; margin-bottom: 40px; text-align: center; }
.project-flow-heading span { display: inline-block; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.project-flow-heading h3 { margin: 8px 0 10px; color: var(--navy); font-size: clamp(28px, 3vw, 38px); line-height: 1.35; }
.project-flow-heading h3::after { content: ""; width: 70px; height: 3px; display: block; margin: 17px auto 0; border-radius: 999px; background: linear-gradient(90deg, var(--blue), #18a5a1); }
.project-flow-heading p { margin: 0; color: #718299; font-size: 14px; }
.project-flow-track { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(var(--flow-steps), minmax(0, 1fr)); gap: 16px; }
.project-flow-track::before { content: ""; position: absolute; z-index: -1; top: 91px; right: calc(50% / var(--flow-steps)); left: calc(50% / var(--flow-steps)); height: 2px; background: linear-gradient(90deg, rgba(11,98,206,.24), rgba(24,165,161,.42), rgba(11,98,206,.24)); }
.project-flow-step { position: relative; min-width: 0; padding: 0 7px; text-align: center; }
.project-flow-number { position: relative; z-index: 3; width: max-content; min-width: 68px; height: 27px; display: inline-flex; align-items: center; justify-content: center; gap: 5px; margin: 0 auto 12px; padding: 0 11px; border: 1px solid rgba(11,98,206,.24); border-radius: 999px; color: #165caa; background: rgba(255,255,255,.94); box-shadow: 0 5px 14px rgba(24,70,123,.07); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.project-flow-number::before { content: "STEP"; color: #7892af; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.project-flow-icon { width: 104px; height: 104px; display: grid; place-items: center; margin: 0 auto 20px; border: 2px solid rgba(11,98,206,.25); border-radius: 50%; color: var(--blue); background: #fff; box-shadow: 0 12px 28px rgba(30,83,143,.1), inset 0 0 0 8px #f5f9fe; }
.project-flow-icon svg { width: 42px; height: 42px; stroke-width: 1.65; }
.project-flow-step h4 { margin: 0 0 9px; color: var(--navy); font-size: 17px; line-height: 1.45; }
.project-flow-step p { margin: 0; color: #63758b; font-size: 13px; line-height: 1.72; }

.detail-process { padding: 82px 0; background: linear-gradient(180deg, #f8fbff, #edf5fd); }
.icon-process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.icon-process-step { position: relative; padding: 22px 14px; border: 1px solid #e0eaf5; border-radius: 14px; background: var(--white); text-align: center; box-shadow: var(--shadow-soft); }
.icon-process-step .step-icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 13px; border: 1px solid #bad6f7; border-radius: 50%; color: var(--blue); background: var(--sky); }
.icon-process-step .step-icon svg { width: 25px; height: 25px; stroke-width: 1.8; }
.icon-process-step small { display: block; color: var(--blue); font-weight: 800; letter-spacing: .08em; }
.icon-process-step h3 { margin: 5px 0 4px; color: var(--navy); font-size: 16px; }
.icon-process-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.detail-cta-section { padding: 66px 0; }
.detail-cta-box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 44px 52px; border-radius: 18px; color: var(--white); background: radial-gradient(circle at 100% 100%, rgba(70,142,226,.24), transparent 42%), linear-gradient(135deg, #082f67, #0957a9); box-shadow: var(--shadow); }
.detail-cta-box::after { content: ""; position: absolute; width: 280px; height: 280px; right: -80px; bottom: -160px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.detail-cta-box > * { position: relative; z-index: 2; }
.detail-cta-box h2 { margin: 0 0 8px; font-size: 30px; }
.detail-cta-box p { margin: 0; color: rgba(255,255,255,.72); }

.about-tabs { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -30px; border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
.about-tabs a { padding: 20px; text-align: center; font-weight: 700; }
.about-tabs a:hover { color: var(--white); border-radius: 8px; background: var(--blue); }
.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 20px; padding: 20px; border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
.metric { text-align: center; border-right: 1px solid var(--line); }
.metric:last-child { border: 0; }
.metric strong { display: block; color: var(--blue); font-size: 28px; }
.metric span { color: var(--muted); font-size: 13px; }
.culture-grid { display: grid; grid-template-columns: 1fr .82fr 1.34fr; align-items: stretch; gap: 22px; }
.culture-card { min-height: 278px; display: flex; flex-direction: column; justify-content: center; padding: 34px; border-radius: var(--radius); color: var(--white); background: linear-gradient(145deg, #0b4d98, #061f48); }
.culture-card h3 { margin: 0 0 8px; font-size: 24px; }
.culture-card p { margin: 0; color: rgba(255,255,255,.7); }
.service-flow { display: flex; align-items: center; gap: 8px; overflow-x: auto; padding: 12px 4px 24px; scrollbar-width: none; }
.service-flow::-webkit-scrollbar { display: none; }
.service-flow span { flex: 0 0 auto; min-width: 112px; padding: 16px 18px; border: 1px solid #cdddf0; border-radius: 9px; text-align: center; background: var(--white); font-weight: 700; }
.service-flow i { color: var(--blue); font-style: normal; }

/* About page — aligned to the supplied page design */
.about-page-hero { min-height: 500px; }
.about-page-hero .page-hero-image { object-position: center 43%; }
.about-page-hero .page-hero-overlay { background: linear-gradient(90deg, rgba(246,250,255,.94) 0%, rgba(246,250,255,.72) 36%, rgba(246,250,255,.14) 63%, rgba(246,250,255,.01) 100%); }
.about-page-hero .container { padding-bottom: 26px; }
.about-page-hero h1 { font-size: clamp(48px, 5vw, 64px); font-weight: 800; }
.about-page-hero p { font-size: 19px; font-weight: 600; }
.about-tabs { overflow: hidden; }
.about-tabs a:first-child { color: var(--white); border-radius: 8px; background: var(--blue); }

.about-brand-section { padding-top: 84px; }
.about-brand-layout { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 68px; }
.about-brand-copy h2 { margin: 8px 0 22px; color: var(--navy); font-size: 40px; }
.about-brand-copy h3 { margin: 0 0 22px; color: var(--navy); font-size: clamp(26px, 3vw, 36px); line-height: 1.45; }
.about-brand-copy p { margin: 0 0 14px; color: #4d6078; font-size: 15px; line-height: 1.9; }
.about-brand-copy .button { margin-top: 12px; }
.about-brand-visual { overflow: hidden; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.about-brand-visual > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-brand-metrics { display: grid; grid-template-columns: repeat(4, 1fr); padding: 24px 8px; background: #f6f9fe; }
.about-brand-metrics > div { text-align: center; border-right: 1px solid #dce7f4; }
.about-brand-metrics > div:last-child { border-right: 0; }
.about-brand-metrics strong { display: block; color: var(--blue); font-size: 22px; line-height: 1.25; }
.about-brand-metrics sup { font-size: .58em; }
.about-brand-metrics span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }

.about-advantages-section { padding-top: 82px; padding-bottom: 88px; }
.about-advantage-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.about-advantage-grid .advantage-card { min-width: 0; padding: 28px 19px 26px; text-align: center; }
.about-advantage-grid .card-icon { width: 64px; height: 64px; margin: 0 auto 18px; border: 0; color: var(--blue); background: transparent; }
.about-advantage-grid .card-icon svg { width: 48px; height: 48px; stroke-width: 1.65; }
.about-advantage-grid h3 { font-size: 18px; line-height: 1.45; }
.about-advantage-grid p { color: #52647a; font-size: 14px; line-height: 1.8; }

.about-service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.about-service-grid article { min-height: 250px; padding: 30px 22px 26px; border: 1px solid #e2eaf5; border-radius: 12px; background: linear-gradient(180deg, #fff, #f7faff); box-shadow: var(--shadow-soft); text-align: center; transition: transform .25s ease, box-shadow .25s ease; }
.about-service-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.about-service-icon { width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; color: var(--blue); background: #eaf4ff; }
.about-service-icon svg { width: 42px; height: 42px; stroke-width: 1.65; }
.about-service-grid h3 { margin: 0 0 10px; color: var(--navy); font-size: 20px; }
.about-service-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.about-service-section .culture-grid { margin-top: 54px; }
.service-philosophy { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); align-items: center; gap: 38px; margin-bottom: 44px; padding: 38px 40px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow-soft); }
.service-philosophy h3 { margin: 0 0 16px; color: var(--navy); font-size: 28px; }
.service-philosophy p { margin: 0 0 14px; color: #4b5f76; line-height: 1.9; }
.service-philosophy-copy p:last-child { width: max-content; margin: 20px 0 0; padding: 7px 13px; border-radius: 999px; color: var(--blue); background: #eaf4ff; font-weight: 800; line-height: 1.45; }
.service-principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.service-principles li { position: relative; min-height: 104px; display: flex; align-items: center; padding: 18px 18px 18px 50px; border: 1px solid #dce8f5; border-radius: 12px; color: #24466f; background: linear-gradient(145deg, #f9fcff, #f2f7fd); font-weight: 700; line-height: 1.65; }
.service-principles li::before { content: "✓"; position: absolute; left: 19px; top: 50%; color: var(--blue); font-size: 19px; font-weight: 900; transform: translateY(-50%); }
.about-process-intro { max-width: 840px; margin: 0 auto 28px; color: #4d6078; text-align: center; }
.about-process-sequence { margin: 0 auto 34px; color: #315174; font-weight: 700; text-align: center; }
.about-process-grid { grid-template-columns: repeat(5, 1fr); }
.about-process-grid article { min-height: 184px; padding: 24px 16px; }
.about-process-grid .about-service-icon { width: 66px; height: 66px; margin-bottom: 14px; }
.about-process-grid .about-service-icon svg { width: 32px; height: 32px; }
.about-process-closing { margin: 25px 0 0; color: #4d6078; text-align: center; }
.culture-heading { margin-top: 64px; }
.culture-card.values-card { justify-content: flex-start; }
.culture-card.values-card p { margin-bottom: 10px; }
.culture-card.values-card p:last-child { margin-bottom: 0; }
.honor-closing { max-width: 900px; margin: 34px auto 0; color: #4d6078; font-size: 16px; line-height: 1.9; text-align: center; }
.honor-category { display: inline-block; margin: 0 0 12px; padding: 4px 10px; border-radius: 999px; color: var(--blue); background: #eaf3ff; font-size: 12px; font-weight: 800; }

.article-hero { position: relative; overflow: hidden; padding: 58px 0 64px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #f7fbff 0%, #edf5ff 72%, #f8fbff 100%); }
.article-hero::before { content: ""; position: absolute; width: 420px; height: 420px; top: -230px; right: 5%; border: 1px solid rgba(11,98,206,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(11,98,206,.025), 0 0 0 140px rgba(11,98,206,.018); }
.article-hero-container { position: relative; z-index: 1; }
.article-hero .breadcrumb { max-width: 980px; margin: 0 auto; }
.article-heading { max-width: 980px; margin: 44px auto 0; padding-left: 32px; border-left: 4px solid var(--blue); }
.article-category { display: inline-flex; margin-bottom: 17px; padding: 6px 13px; border-radius: 5px; color: var(--blue); background: #e3f0ff; font-size: 13px; line-height: 1.4; font-weight: 800; }
.article-hero h1 { max-width: 930px; margin: 0 0 22px; color: var(--navy); font-size: clamp(30px, 3.7vw, 44px); line-height: 1.35; letter-spacing: -.02em; }
.article-meta { display: flex; align-items: center; gap: 25px; color: var(--muted); font-size: 14px; }
.article-meta span { position: relative; }
.article-meta span::before { content: ""; position: absolute; width: 4px; height: 4px; top: 50%; left: -14px; border-radius: 50%; background: #9fb0c5; transform: translateY(-50%); }
.article-body { min-height: 560px; padding: 68px 0 88px; background: #f6f9fd; }
.article-content-shell { max-width: 980px; }
.article-paper { padding: 56px 64px 40px; border: 1px solid #e0eaf5; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.article-lead { margin: 0; padding: 22px 26px; border-left: 4px solid var(--blue); color: #34506f; background: #f2f7fd; font-size: 18px; line-height: 1.9; }
.article-richtext { color: #31445c; font-size: 17px; line-height: 2; overflow-wrap: anywhere; }
.article-richtext:empty { display: none; }
.article-richtext:not(:empty) { margin-top: 42px; }
.article-richtext h2 { margin: 48px 0 18px; color: var(--navy); font-size: 28px; line-height: 1.45; }
.article-richtext h3 { margin: 38px 0 14px; color: var(--navy); font-size: 22px; line-height: 1.5; }
.article-richtext h4 { margin: 30px 0 12px; color: #173e70; font-size: 19px; }
.article-richtext p { margin: 0 0 22px; }
.article-richtext a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article-richtext ul, .article-richtext ol { margin: 0 0 26px; padding-left: 1.45em; }
.article-richtext li { margin-bottom: 9px; padding-left: 4px; }
.article-richtext blockquote { margin: 34px 0; padding: 24px 28px; border-left: 4px solid var(--blue); color: #3e5773; background: #f3f7fc; }
.article-richtext blockquote p:last-child { margin-bottom: 0; }
.article-richtext img { width: auto; max-width: 100%; height: auto; margin: 34px auto 12px; border-radius: 10px; }
.article-richtext figure { margin: 36px 0; }
.article-richtext figure img { margin: 0 auto; }
.article-richtext figcaption { margin-top: 10px; color: var(--muted); font-size: 13px; text-align: center; }
.article-richtext table { width: 100%; display: block; margin: 34px 0; overflow-x: auto; border-spacing: 0; border-collapse: collapse; font-size: 15px; }
.article-richtext th, .article-richtext td { min-width: 130px; padding: 13px 15px; border: 1px solid var(--line); text-align: left; }
.article-richtext th { color: var(--navy); background: #eef5fd; }
.article-richtext hr { margin: 42px 0; border: 0; border-top: 1px solid var(--line); }
.article-richtext iframe, .article-richtext video { width: 100%; max-width: 100%; margin: 34px 0; border: 0; border-radius: 10px; }
.article-footer-actions { margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--line); }
.article-back-link { display: inline-flex; color: var(--blue); font-weight: 700; transition: transform .2s ease; }
.article-back-link:hover { transform: translateX(-3px); }
.article-consult-bar { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 36px; overflow: hidden; margin-top: 28px; padding: 34px 40px; border-radius: var(--radius); color: #fff; background: linear-gradient(125deg, #0b4c99, #082f67 68%, #061f48); box-shadow: 0 18px 44px rgba(8,47,103,.18); }
.article-consult-bar::after { content: ""; position: absolute; width: 210px; height: 210px; right: -85px; bottom: -135px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.03); }
.article-consult-bar > * { position: relative; z-index: 1; }
.article-consult-bar h2 { margin: 9px 0 5px; color: #fff; font-size: 25px; line-height: 1.4; }
.article-consult-bar p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }
.article-consult-bar .button { flex: 0 0 auto; }

@media (max-width: 600px) {
  .article-hero { padding: 34px 0 44px; }
  .article-heading { margin-top: 30px; padding-left: 20px; }
  .article-hero h1 { font-size: 30px; }
  .article-body { padding: 38px 0 60px; }
  .article-paper { padding: 30px 22px; }
  .article-lead { padding: 18px 20px; font-size: 16px; }
  .article-richtext { font-size: 16px; line-height: 1.9; }
  .article-richtext h2 { font-size: 24px; }
  .article-richtext h3 { font-size: 20px; }
  .article-consult-bar { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .article-consult-bar .button { width: 100%; }
}

.consult-strip { padding: 58px 0; color: var(--white); background: linear-gradient(120deg, #083872, #061f48 70%); }
.consult-layout { display: grid; grid-template-columns: 1.15fr 1.45fr .75fr; align-items: center; gap: 46px; }
.consult-layout h2 { margin: 7px 0 5px; font-size: 30px; line-height: 1.35; }
.consult-layout > div:first-child p { margin: 0 0 20px; color: rgba(255,255,255,.68); }
.contact-list p { display: grid; grid-template-columns: 142px 1fr; margin: 9px 0; color: rgba(255,255,255,.76); font-size: 13px; }
.contact-list b { color: var(--white); }
.follow-block h3 { margin: 0 0 12px; color: var(--white); font-size: 16px; }
.qr-pair { display: flex; gap: 16px; }
.qr-pair figure { margin: 0; text-align: center; }
.qr-pair img { width: 92px; height: 92px; padding: 4px; object-fit: contain; background: var(--white); }
.qr-pair figcaption { margin-top: 7px; color: rgba(255,255,255,.72); font-size: 12px; }
.site-footer { padding: 56px 0 20px; color: rgba(255,255,255,.72); background: #041b3c; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand img { width: 210px; height: 50px; margin-bottom: 18px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); }
.footer-grid h3 { margin: 0 0 14px; color: var(--white); font-size: 16px; }
.footer-grid a, .footer-grid span { display: block; margin: 7px 0; font-size: 13px; }
.footer-grid a:hover { color: #8ebfff; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 42px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-legal-links { display: flex; align-items: center; gap: 22px; }
.footer-legal-links a { color: rgba(255,255,255,.72); transition: color .2s ease; }
.footer-legal-links a:hover { color: #8ebfff; }
.floating-contact { position: fixed; z-index: 80; right: 20px; bottom: 110px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); box-shadow: 0 10px 26px rgba(8,57,120,.28); font-size: 13px; font-weight: 800; }
.back-top { position: fixed; z-index: 80; right: 25px; bottom: 45px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--white); background: var(--navy); box-shadow: 0 8px 20px rgba(8,47,103,.22); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s; }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.consultation-modal { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 28px; opacity: 0; transition: opacity .22s ease; }
.consultation-modal.is-open { opacity: 1; }
.consultation-modal-backdrop { position: absolute; inset: 0; background: rgba(2,22,52,.72); backdrop-filter: blur(7px); }
.consultation-dialog { position: relative; z-index: 2; overflow: hidden; width: min(960px, 100%); max-height: min(760px, calc(100vh - 56px)); display: grid; grid-template-columns: .82fr 1.18fr; border: 1px solid rgba(255,255,255,.42); border-radius: 22px; background: var(--white); box-shadow: 0 34px 90px rgba(1,20,50,.34); transform: translateY(18px) scale(.985); transition: transform .22s ease; }
.consultation-modal.is-open .consultation-dialog { transform: none; }
.consultation-close { position: absolute; z-index: 5; top: 18px; right: 18px; width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 1px solid #d9e5f2; border-radius: 50%; color: #49627f; background: rgba(255,255,255,.9); cursor: pointer; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.consultation-close:hover { color: var(--blue); border-color: #9dc3ee; transform: rotate(5deg); }
.consultation-close svg { width: 19px; height: 19px; }
.consultation-dialog-intro { position: relative; overflow: hidden; padding: 58px 40px 44px; color: var(--white); background: radial-gradient(circle at 100% 100%, rgba(41,133,236,.38), transparent 48%), linear-gradient(150deg, #0a4b94, #052858 76%); }
.consultation-dialog-intro::after { content: ""; position: absolute; width: 260px; height: 260px; right: -145px; bottom: -138px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 84px rgba(255,255,255,.018); }
.consultation-dialog-intro .eyebrow { color: #91c4ff; }
.consultation-dialog-intro h2 { margin: 10px 0 16px; font-size: 34px; line-height: 1.3; }
.consultation-dialog-intro > p { margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.85; }
.consultation-direct { position: relative; z-index: 2; display: grid; gap: 14px; margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.consultation-direct > div { display: grid; grid-template-columns: 32px 1fr; align-items: center; column-gap: 10px; }
.consultation-direct svg { grid-row: 1 / 3; width: 23px; height: 23px; color: #8fc6ff; }
.consultation-direct span { color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .08em; }
.consultation-direct a, .consultation-direct b { color: var(--white); font-size: 14px; font-weight: 700; }
.consultation-qr { position: relative; z-index: 2; display: flex; align-items: center; gap: 17px; width: max-content; margin: 28px auto 0; }
.consultation-qr img { width: 108px; height: 108px; padding: 6px; border-radius: 7px; object-fit: contain; background: var(--white); box-shadow: 0 12px 30px rgba(0,20,53,.24); }
.consultation-qr div { display: grid; gap: 5px; }
.consultation-qr b { color: var(--white); font-size: 15px; }
.consultation-qr span { color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.65; }
.consultation-form-panel { min-width: 0; padding: 52px 46px 40px; background: linear-gradient(180deg, #fff, #f8fbff); }
.consultation-form { display: grid; gap: 18px; }
.consultation-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consultation-field { display: grid; gap: 7px; min-width: 0; color: #324b68; font-size: 13px; font-weight: 700; }
.consultation-field em { color: #e34d59; font-style: normal; }
.consultation-field input, .consultation-field select, .consultation-field textarea { width: 100%; min-width: 0; border: 1px solid #d7e3f0; border-radius: 9px; outline: 0; color: var(--ink); background: var(--white); font: inherit; font-weight: 400; transition: border-color .2s ease, box-shadow .2s ease; }
.consultation-field input, .consultation-field select { height: 46px; padding: 0 13px; }
.consultation-field textarea { min-height: 104px; padding: 11px 13px; resize: vertical; line-height: 1.65; }
.consultation-field input::placeholder, .consultation-field textarea::placeholder { color: #a0adbd; }
.consultation-field input:focus, .consultation-field select:focus, .consultation-field textarea:focus { border-color: #70a9e9; box-shadow: 0 0 0 3px rgba(11,98,206,.1); }
.consultation-consent { display: flex; align-items: flex-start; gap: 9px; color: #6b7b8e; font-size: 12px; font-weight: 400; line-height: 1.55; cursor: pointer; }
.consultation-consent input { width: 15px; height: 15px; flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--blue); }
.consultation-consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

.legal-hero { position: relative; overflow: hidden; padding: 72px 0 68px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #f7fbff 0%, #eaf3ff 100%); }
.legal-hero::after { content: ""; position: absolute; width: 360px; height: 360px; top: -230px; right: 8%; border: 1px solid rgba(11,98,206,.12); border-radius: 50%; box-shadow: 0 0 0 64px rgba(11,98,206,.025), 0 0 0 128px rgba(11,98,206,.018); }
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero .breadcrumb { margin-bottom: 25px; }
.legal-hero h1 { margin: 10px 0 12px; color: var(--navy); font-size: clamp(38px, 5vw, 56px); line-height: 1.25; }
.legal-hero p { max-width: 680px; margin: 0; color: var(--muted); font-size: 17px; }
.legal-body { padding: 64px 0 88px; background: #f6f9fd; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); align-items: start; gap: 32px; }
.legal-toc { position: sticky; top: 110px; padding: 24px; border: 1px solid #e0eaf5; border-radius: 14px; background: #fff; box-shadow: var(--shadow-soft); }
.legal-toc strong { display: block; margin-bottom: 12px; color: var(--navy); font-size: 16px; }
.legal-toc a { display: block; padding: 7px 0; color: var(--muted); font-size: 14px; transition: color .2s ease, transform .2s ease; }
.legal-toc a:hover { color: var(--blue); transform: translateX(3px); }
.legal-paper { padding: 48px 56px; border: 1px solid #e0eaf5; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.legal-meta { margin: 0 0 34px; padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.legal-section { scroll-margin-top: 110px; }
.legal-section + .legal-section { margin-top: 40px; padding-top: 4px; }
.legal-section h2 { margin: 0 0 14px; color: var(--navy); font-size: 24px; line-height: 1.45; }
.legal-section p { margin: 0 0 14px; color: #435873; }
.legal-section ul { margin: 0 0 14px; padding-left: 1.3em; color: #435873; }
.legal-section li { margin-bottom: 8px; padding-left: 4px; }
.legal-note { margin-top: 36px; padding: 22px 24px; border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0; color: #36516f; background: #f1f7fe; }
.consultation-submit { width: 100%; margin-top: 2px; }
.consultation-submit:disabled { cursor: wait; opacity: .72; }
.consultation-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consultation-form-error { margin: 0; color: #b42318; font-size: 14px; line-height: 1.6; }
.consultation-success { min-height: 390px; display: grid; place-items: center; align-content: center; text-align: center; }
.consultation-success-icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: #eaf4ff; }
.consultation-success-icon svg { width: 38px; height: 38px; }
.consultation-success h3 { margin: 20px 0 7px; color: var(--navy); font-size: 27px; }
.consultation-success p { margin: 0 0 26px; color: var(--muted); }
.consultation-success .button { min-width: 150px; }

/* 首页严格按提供的首页设计稿组织 */
.home-hero-reference { min-height: 525px; background: #eaf2fb; }
.home-hero-media { position: absolute; z-index: 0; inset: -4%; background: url("../images/home-hero.jpg") center / cover no-repeat; animation: homeHeroPush 20s ease-in-out infinite alternate; will-change: transform; }
.home-hero-reference::before { z-index: 1; background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.79) 35%, rgba(255,255,255,.12) 66%); }
.home-hero-reference > .container { position: relative; z-index: 2; }
.home-hero-reference::after { display: none; }
.home-hero-reference .hero-copy { width: min(590px, 58%); padding: 72px 0; }
.home-hero-reference .hero-copy h1 { margin-top: 12px; font-size: clamp(42px, 5vw, 64px); }
.home-hero-reference .hero-copy p { font-size: 18px; line-height: 1.85; }
.home-hero-reference .hero-copy > * { animation: heroCopyIn .8s cubic-bezier(.2,.75,.25,1) backwards; }
.home-hero-reference .hero-copy > :nth-child(1) { animation-delay: .12s; }
.home-hero-reference .hero-copy > :nth-child(2) { animation-delay: .22s; }
.home-hero-reference .hero-copy > :nth-child(3) { animation-delay: .32s; }
.home-hero-reference .hero-copy > :nth-child(4) { animation-delay: .42s; }
.home-section-heading { margin-bottom: 36px; }
.home-section-heading h2 { font-size: clamp(29px, 3.4vw, 38px); }
.home-section-heading p { font-size: 16px; }

.home-map-section { position: relative; padding: 62px 0 84px; overflow: hidden; background: linear-gradient(180deg, #f8fbff, #eaf3fd); }
.home-map-section::before { content: ""; position: absolute; width: 480px; height: 480px; right: -190px; bottom: -260px; border: 1px solid rgba(49,126,213,.12); border-radius: 50%; box-shadow: 0 0 0 58px rgba(49,126,213,.025), 0 0 0 116px rgba(49,126,213,.02); }
.map-card { position: relative; z-index: 2; overflow: hidden; border: 1px solid #e3ecf5; border-radius: 7px; background: var(--white); box-shadow: 0 22px 60px rgba(31,77,129,.14); }
.map-image-frame { position: relative; aspect-ratio: 2 / 1; overflow: hidden; background: #fbfdff; }
.map-image-frame > img { width: 100%; height: 100%; object-fit: contain; }
.map-marker { position: absolute; z-index: 3; top: var(--y); left: var(--x); display: flex; align-items: center; gap: 6px; color: var(--navy); transform: translate(-50%, -50%); transition: transform .2s ease, z-index .2s; }
.map-marker:hover { z-index: 8; transform: translate(-50%, -50%) scale(1.08); }
.marker-pin { position: relative; width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border: 3px solid var(--white); border-radius: 50%; background: var(--white); box-shadow: 0 6px 18px rgba(22,67,118,.23); font-size: 19px; }
.marker-pin::after { content: ""; position: absolute; z-index: -1; inset: -6px; border: 2px solid rgba(11,98,206,.27); border-radius: 50%; }
.map-marker b { padding: 4px 8px; border: 1px solid #cfe0f4; border-radius: 5px; background: rgba(255,255,255,.94); box-shadow: 0 4px 14px rgba(28,71,120,.12); font-size: 12px; line-height: 1.3; white-space: nowrap; }
.marker-es b { transform: translateY(-22px); }
.marker-pt b { position: absolute; right: 38px; transform: translateY(14px); }
.marker-it b { transform: translateY(21px); }
.marker-dm b { position: absolute; right: 38px; transform: translateY(19px); }
.marker-kn b { transform: translateY(-20px); }
.marker-nz b { position: absolute; right: 38px; }
.map-region-groups { display: grid; grid-template-columns: 1.35fr 1.15fr 1fr .65fr; gap: 22px; padding: 20px 24px 22px; border-top: 1px solid #e8eff7; background: #fff; }
.map-region-groups > div { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 7px; }
.map-region-groups strong { width: 100%; margin-bottom: 3px; color: var(--navy); font-size: 13px; }
.map-region-groups span { padding: 3px 8px; border-radius: 4px; color: #4d6077; background: #f2f7fd; font-size: 12px; white-space: nowrap; }
.map-tabs { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid #edf1f5; }
.map-tabs a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 17px 10px; border-right: 1px solid #edf1f5; color: #3f536c; font-weight: 700; }
.map-tabs a:last-child { border-right: 0; }
.map-tabs a:hover { color: var(--white); background: var(--blue); }
.map-tabs span { font-size: 20px; }

.home-reasons-section { padding: 74px 0 78px; background: linear-gradient(180deg, #fff, #f7faff); }
.home-about-section { padding: 84px 0 88px; background: #fff; }
.home-about-layout { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; }
.home-about-copy h2 { margin: 8px 0 24px; color: var(--navy); font-size: clamp(34px, 4vw, 46px); }
.home-about-copy p { margin: 0 0 14px; color: #4b6078; font-size: 15px; line-height: 1.9; }
.home-about-copy .brand-slogan { margin: 22px 0 0; color: var(--navy); font-size: 20px; font-weight: 800; }
.home-about-copy .button { margin-top: 24px; }
.home-about-visual { overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); }
.home-about-visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.home-reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; }
.home-reason-item { text-align: center; }
.home-round-icon { width: 88px; height: 88px; display: grid; place-items: center; margin: 0 auto 20px; border: 1px solid #d4e5fb; border-radius: 50%; color: var(--blue); background: radial-gradient(circle at 40% 35%, #fff, #e8f2ff); box-shadow: 0 12px 30px rgba(43,111,192,.1); font-size: 29px; font-weight: 800; }
.home-round-icon svg { width: 45px; height: 45px; stroke-width: 1.8; }
.home-reason-item h3 { margin: 0 0 7px; color: var(--navy); font-size: 19px; }
.home-reason-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.home-process-section { padding: 70px 0 84px; background: #fff; }
.home-process-grid { grid-template-columns: repeat(5, 1fr); gap: 30px 16px; }
.home-process-grid::before { display: none; }
.home-process-grid .process-number { width: 52px; height: 52px; }
.home-process-grid .process-number svg { width: 24px; height: 24px; stroke-width: 1.8; }

.home-strength-section { padding: 78px 0 92px; background: linear-gradient(180deg, #f5f9ff, #eef5fd); }
.home-strength-section .section-heading { margin-bottom: 46px; }
.home-strength-section .home-section-heading h2 { font-size: clamp(34px, 3.5vw, 44px); font-weight: 800; letter-spacing: .02em; }
.home-strength-section .home-section-heading p { margin-top: 17px; color: #53657b; font-size: 18px; font-weight: 600; letter-spacing: .04em; }
.strength-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.strength-card { overflow: hidden; border: 1px solid #e1e9f3; border-radius: 8px; background: var(--white); box-shadow: 0 12px 34px rgba(31,73,121,.09); transition: transform .25s ease, box-shadow .25s ease; }
.strength-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.strength-card > img { width: 100%; height: 184px; object-fit: cover; }
.strength-card:nth-child(3) > img { object-fit: contain; padding: 12px; background: #f4f6f9; }
.strength-card > div { padding: 25px 24px 27px; }
.strength-card h3 { margin: 0 0 13px; color: var(--navy); font-size: 24px; font-weight: 800; line-height: 1.35; letter-spacing: .02em; }
.strength-card p { min-height: 88px; margin: 0 0 20px; color: #526177; font-size: 16px; font-weight: 500; line-height: 1.8; }
.strength-card span { color: var(--blue); font-size: 15px; font-weight: 800; letter-spacing: .02em; }

.home-news-section { padding: 76px 0 90px; background: #fff; }
.home-news-layout { display: grid; grid-template-columns: 1.08fr 1fr; gap: 34px; align-items: stretch; }
.home-news-feature { position: relative; min-height: 390px; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow-soft); }
.home-news-feature::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(3,26,60,.92)); }
.home-news-feature > img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.home-news-feature:hover > img { transform: scale(1.035); }
.home-news-feature-copy { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; color: var(--white); }
.home-news-feature-copy .news-label { display: inline-block; margin-right: 10px; padding: 3px 9px; border-radius: 3px; background: var(--blue); font-size: 12px; font-weight: 700; }
.home-news-feature-copy time { color: rgba(255,255,255,.7); font-size: 12px; }
.home-news-feature-copy h3 { margin: 13px 0 0; font-size: 23px; line-height: 1.5; }
.home-news-list { display: grid; gap: 16px; }
.home-news-list > a { display: grid; grid-template-columns: 145px 1fr; gap: 20px; align-items: center; padding: 13px; border: 1px solid #e5ecf4; border-radius: 8px; background: #fff; transition: transform .2s ease, border-color .2s ease; }
.home-news-list > a:hover { transform: translateX(4px); border-color: #a8c9ee; }
.home-news-list img { width: 145px; height: 91px; border-radius: 5px; object-fit: cover; }
.home-news-list span { display: flex; align-items: center; gap: 14px; }
.home-news-list b { color: var(--blue); font-size: 12px; }
.home-news-list time { color: #93a0b1; font-size: 12px; }
.home-news-list h3 { margin: 8px 0 0; color: var(--ink); font-size: 16px; line-height: 1.55; }
.home-news-more { margin-top: 34px; text-align: center; }

.home-footer { position: relative; isolation: isolate; overflow: hidden; color: var(--white); background: radial-gradient(circle at 72% 35%, rgba(37,102,181,.3), transparent 34%), linear-gradient(105deg, #0c448f 0%, #0a3778 53%, #082c64 100%); }
.home-footer::before { content: ""; position: absolute; z-index: -2; inset: 0; background: url("../images/world-map-clean.png") center 38% / 900px auto no-repeat; opacity: .18; filter: grayscale(1) invert(1) brightness(.8); mix-blend-mode: screen; }
.home-footer::after { content: ""; position: absolute; z-index: -1; inset: 0; background: url("../images/home-hero.jpg") right bottom / auto 100% no-repeat; opacity: .14; -webkit-mask-image: linear-gradient(90deg, transparent 43%, rgba(0,0,0,.35) 61%, #000 100%); mask-image: linear-gradient(90deg, transparent 43%, rgba(0,0,0,.35) 61%, #000 100%); }
.home-footer-main { position: relative; z-index: 2; width: min(calc(100% - 96px), 1560px); min-height: 300px; display: grid; grid-template-columns: 1.45fr 1.1fr .4fr; align-items: center; gap: 62px; padding-top: 44px; padding-bottom: 44px; }
.home-footer-intro h2 { margin: 0 0 12px; font-size: clamp(30px, 2.35vw, 39px); line-height: 1.3; letter-spacing: .01em; white-space: nowrap; }
.home-footer-intro p { margin: 0 0 28px; color: rgba(255,255,255,.75); font-size: 18px; }
.home-footer-button { min-width: 186px; min-height: 50px; color: var(--navy); border-color: var(--white); background: var(--white); box-shadow: 0 12px 28px rgba(1,22,53,.18); }
.home-footer-button::after { display: none; }
.home-footer-contacts { display: grid; gap: 25px; }
.home-contact-row { display: grid; grid-template-columns: 47px 1fr; align-items: center; gap: 16px; }
.home-contact-row > svg { width: 38px; height: 38px; color: rgba(255,255,255,.9); stroke-width: 1.6; }
.home-contact-row p { margin: 0; line-height: 1.35; }
.home-contact-row p > span { display: block; margin-bottom: 4px; color: rgba(255,255,255,.58); font-size: 13px; font-weight: 700; }
.home-contact-row a, .home-contact-row b { display: block; color: var(--white); font-size: 17px; font-weight: 700; }
.home-contact-row:first-child a { font-size: 24px; letter-spacing: .02em; }
.home-footer-qr { margin: 0; text-align: center; }
.home-footer-qr img { width: 132px; height: 132px; margin: 0 auto; padding: 7px; border-radius: 3px; object-fit: contain; background: var(--white); box-shadow: 0 10px 28px rgba(1,22,53,.22); }
.home-footer-qr figcaption { margin-top: 11px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.65; }
.home-footer-bottom { position: relative; z-index: 3; min-height: 54px; display: flex; align-items: center; background: rgba(2,25,59,.55); }
.home-footer-bottom .container { width: min(calc(100% - 96px), 1560px); display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.6); font-size: 12px; }

/* Motion system — restrained depth, entrance and interaction feedback */
.motion-reveal { opacity: 0; transform: translateY(22px); }
.motion-reveal.is-revealed { opacity: 1; transform: none; transition: opacity .72s cubic-bezier(.2,.75,.25,1), transform .72s cubic-bezier(.2,.75,.25,1); transition-delay: var(--motion-delay, 0ms); }
.button::after { transition: transform .2s ease; }
.button:hover::after { transform: translateX(3px); }
.home-round-icon, .card-icon, .fact-icon, .about-service-icon, .project-flow-icon, .project-flow-icon svg { transition: transform .32s cubic-bezier(.2,.75,.25,1), color .25s ease, border-color .25s ease, background .25s ease, box-shadow .32s ease; }
.program-fact, .detail-hero-stat, .project-badge, .honor-card { transition: transform .28s cubic-bezier(.2,.75,.25,1), border-color .25s ease, box-shadow .28s ease; }

@media (hover: hover) and (pointer: fine) {
  .home-reason-item:hover .home-round-icon { transform: translateY(-6px) scale(1.045); border-color: #a9cef7; box-shadow: 0 18px 36px rgba(43,111,192,.17); }
  .reason-card:hover .card-icon, .support-card:hover .card-icon, .advantage-card:hover .card-icon, .about-service-grid article:hover .about-service-icon { transform: translateY(-3px) scale(1.06); }
  .program-fact:hover, .detail-hero-stat:hover, .project-badge:hover, .honor-card:hover { transform: translateY(-5px); border-color: #bdd8f5; box-shadow: 0 16px 35px rgba(19,57,101,.13); }
  .program-fact:hover .fact-icon { transform: scale(1.08); color: #0756b8; background: #e3f1ff; }
  .program-visual:hover img { transform: scale(1.035); }
  .project-flow-step:hover .project-flow-icon { transform: translateY(-5px) scale(1.025); border-color: rgba(11,98,206,.48); box-shadow: 0 18px 34px rgba(30,83,143,.16), inset 0 0 0 8px #f5f9fe; }
  .project-flow-step:hover .project-flow-icon svg { transform: scale(1.07); }
}

@keyframes homeHeroPush {
  from { transform: scale(1.01) translate3d(0,0,0); }
  to { transform: scale(1.085) translate3d(-.7%,-.25%,0); }
}
@keyframes pageHeroDrift {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}
@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .main-nav { gap: 22px; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(3, 1fr); }
  .project-grid, .project-preview-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-pagination { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 28px 12px; }
  .process-grid::before { display: none; }
  .process-six { grid-template-columns: repeat(3, 1fr); }
  .consult-layout { grid-template-columns: 1fr 1.3fr; }
  .qr-pair { grid-column: 1 / -1; }
  .honor-track { grid-auto-columns: 44%; }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-page-grid .passport-project-card,
  .projects-page-grid .project-cta { grid-column: span 2; }
  .about-advantage-grid { grid-template-columns: repeat(3, 1fr); }
  .about-service-grid { grid-template-columns: repeat(3, 1fr); }
  .home-footer-main { width: min(calc(100% - 64px), 1240px); grid-template-columns: 1.2fr 1fr .34fr; gap: 38px; }
  .home-footer-intro h2 { white-space: normal; }
  .home-contact-row a, .home-contact-row b { font-size: 15px; }
  .home-contact-row:first-child a { font-size: 21px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 18px; }
  .legal-toc strong { grid-column: 1 / -1; }
  .legal-paper { padding: 38px 34px; }
  .section { padding: 72px 0; }
  .site-header { height: 70px; }
  .brand { width: 160px; }
  .brand img { height: 40px; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; top: 70px; right: 0; left: 0; display: grid; gap: 0; padding: 18px 24px 28px; border-top: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: var(--shadow); transform: translateY(-125%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
  .main-nav.is-open { transform: none; visibility: visible; }
  .main-nav > a:not(.button) { padding: 15px 6px; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 18px; }
  .home-hero { min-height: 710px; align-items: start; background-position: 60% center; }
  .home-hero-media { background-position: 60% center; }
  .home-hero::before { background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78) 70%, rgba(255,255,255,.18)); }
  .hero-copy { width: 88%; padding: 86px 0 260px; }
  .hero-copy h1 { font-size: clamp(40px, 10vw, 58px); }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .hero-stat { min-height: 95px; padding: 18px; }
  .split, .overview-layout, .criteria-layout { grid-template-columns: 1fr; gap: 40px; }
  .brand-panel { min-height: 390px; }
  .news-feature { grid-template-columns: 1fr; }
  .news-lead { min-height: 330px; }
  .project-hero-content { width: 92%; }
  .projects-page-hero::after { width: 430px; left: 2%; }
  .project-badges { grid-template-columns: repeat(2, 1fr); }
  .sticky-tabs { top: 70px; overflow-x: auto; grid-template-columns: repeat(4, minmax(180px, 1fr)); }
  .region-detail-hero .project-hero-content { width: 78%; }
  .detail-tabs { top: 70px; justify-content: flex-start; }
  .program-overview { grid-template-columns: 1fr; gap: 36px; }
  .program-overview.is-reversed .program-copy, .program-overview.is-reversed .program-visual { order: initial; }
  .icon-process { grid-template-columns: repeat(3, 1fr); }
  .project-flow-track { grid-template-columns: none; grid-auto-columns: minmax(190px, 1fr); grid-auto-flow: column; overflow-x: auto; margin-right: -12px; margin-left: -12px; padding: 8px 12px 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .project-flow-track::-webkit-scrollbar { display: none; }
  .project-flow-track::before { display: none; }
  .project-flow-step { scroll-snap-align: start; }
  .projects-page-grid.is-filtered { width: min(calc(100% - 32px), var(--container)); grid-template-columns: 1fr; }
  .projects-page-grid.is-filtered .project-card { grid-template-columns: minmax(0, .92fr) minmax(300px, 1.08fr); }
  .projects-page-grid.is-filtered .project-card .project-card-image { min-height: 360px; }
  .projects-page-grid.is-filtered .project-cta { min-height: 260px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-tabs { overflow-x: auto; grid-template-columns: repeat(4, minmax(160px, 1fr)); }
  .culture-grid { grid-template-columns: 1fr; }
  .about-page-hero { min-height: 420px; }
  .about-brand-layout { grid-template-columns: 1fr; gap: 44px; }
  .home-about-layout, .service-philosophy { grid-template-columns: 1fr; gap: 36px; }
  .about-service-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero-reference { min-height: 500px; }
  .home-hero-reference .hero-copy { width: 76%; padding: 72px 0; }
  .map-tabs { grid-template-columns: repeat(3, 1fr); }
  .map-tabs a:nth-child(3) { border-right: 0; }
  .map-region-groups { grid-template-columns: 1fr 1fr; }
  .home-reason-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 28px; }
  .home-news-layout { grid-template-columns: 1fr; }
  .home-footer-main { grid-template-columns: 1fr 1fr; }
  .home-footer-qr { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 18px; text-align: left; }
  .home-footer-qr img { margin: 0; }
  .consultation-dialog { overflow-y: auto; grid-template-columns: 1fr; }
  .consultation-dialog-intro { padding: 38px 32px 28px; }
  .consultation-dialog-intro h2 { margin-bottom: 8px; font-size: 28px; }
  .consultation-dialog-intro > p { max-width: 560px; }
  .consultation-direct { grid-template-columns: 1fr 1fr; margin-top: 20px; padding-top: 18px; }
  .consultation-qr { margin-top: 20px; }
  .consultation-qr img { width: 88px; height: 88px; }
  .consultation-form-panel { padding: 32px; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .legal-hero { padding: 48px 0; }
  .legal-hero h1 { font-size: 38px; }
  .legal-body { padding: 40px 0 60px; }
  .legal-toc { grid-template-columns: 1fr; padding: 20px; }
  .legal-toc strong { grid-column: auto; }
  .legal-paper { padding: 30px 22px; }
  .legal-section h2 { font-size: 21px; }
  .footer-legal-links { margin-top: 6px; }
  .section { padding: 58px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: 30px; }
  .page-hero { min-height: 330px; }
  .page-hero h1 { font-size: 38px; }
  .page-hero p { font-size: 16px; }
  .hero-copy { width: 100%; padding-top: 62px; }
  .hero-copy h1 { font-size: 40px; }
  .hero-copy p { font-size: 17px; }
  .hero-stats .container { grid-template-columns: 1fr 1fr; }
  .hero-stat { display: block; padding: 13px 12px; text-align: center; }
  .hero-stat .stat-icon { width: 34px; height: 34px; margin: 0 auto 5px; }
  .hero-stat strong { font-size: 14px; }
  .hero-stat span { display: none; }
  .reason-grid, .project-grid, .project-preview-grid, .news-grid, .advantage-grid { grid-template-columns: 1fr; }
  .news-pagination { margin-top: 32px; padding-top: 22px; }
  .news-pagination-pages { width: 100%; }
  .news-page-direction span:not([aria-hidden="true"]) { display: none; }
  .projects-page-hero { min-height: 350px; }
  .projects-page-hero::after { width: 300px; height: 190px; top: 78px; }
  .projects-page-grid .project-card { min-height: 420px; }
  .projects-page-grid.is-filtered { width: min(calc(100% - 32px), 560px); grid-template-columns: 1fr; }
  .projects-page-grid.is-filtered .project-card { display: flex !important; min-height: 420px; }
  .projects-page-grid.is-filtered .project-card .project-card-image { height: 190px; min-height: 190px; }
  .projects-page-grid.is-filtered .project-card .project-card-body { justify-content: flex-start; padding: 38px 24px 26px; }
  .projects-page-grid .project-card-image { height: 180px; }
  .projects-page-grid .passport-project-card,
  .projects-page-grid .project-cta { grid-column: auto; }
  .passport-project-card { display: flex !important; min-height: 450px !important; }
  .projects-page-grid .passport-project-card .project-card-image { height: 190px; min-height: 190px; }
  .projects-page-grid .project-cta { min-height: 290px; }
  .projects-support-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; }
  .projects-support-grid .card-icon { width: 76px; height: 76px; }
  .projects-support-grid .card-icon svg { width: 38px; height: 38px; }
  .about-page-hero { min-height: 360px; }
  .about-page-hero .page-hero-image { object-position: 62% center; }
  .about-page-hero h1 { font-size: 38px; }
  .about-tabs { grid-template-columns: repeat(4, minmax(130px, 1fr)); overflow-x: auto; }
  .about-brand-copy h2 { font-size: 32px; }
  .about-brand-copy h3 { font-size: 26px; }
  .about-brand-metrics { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .about-brand-metrics > div:nth-child(2) { border-right: 0; }
  .about-advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .about-service-grid { grid-template-columns: 1fr; }
  .service-philosophy { padding: 26px 20px; }
  .service-principles { grid-template-columns: 1fr; }
  .service-principles li { min-height: 0; }
  .about-process-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .process-six { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { justify-content: flex-start; }
  .news-list { grid-template-columns: 72px 1fr 20px; gap: 12px; padding: 18px; }
  .honor-track { grid-auto-columns: 82%; }
  .consult-layout { grid-template-columns: 1fr; gap: 30px; }
  .contact-list p { grid-template-columns: 132px 1fr; }
  .qr-pair { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin: 5px 0; }
  .metric-row { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .metric:nth-child(2) { border: 0; }
  .project-badges { display: none; }
  .project-hero { min-height: 410px; }
  .region-detail-hero { min-height: 460px; }
  .region-detail-hero .project-hero-content { width: 100%; }
  .region-detail-hero h1 { align-items: flex-start; font-size: 38px; }
  .region-detail-hero h1 .hero-flag { width: 46px; height: 46px; font-size: 24px; }
  .detail-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 20px; }
  .detail-hero-stat { min-height: 92px; padding: 12px 8px; }
  .detail-hero-stat .stat-icon { width: 31px; height: 31px; margin-bottom: 4px; }
  .detail-hero-stat .stat-icon svg { width: 26px; height: 26px; }
  .detail-hero-stat span { display: none; }
  .detail-tabs a { min-width: 170px; padding: 17px 18px; }
  .program-section { padding: 62px 0; }
  .program-copy h2 { font-size: 30px; }
  .program-copy > p { font-size: 15px; }
  .program-facts { grid-template-columns: 1fr; }
  .program-detail-panel { padding: 24px 20px; }
  .document-copy-card { padding: 26px 20px; }
  .document-copy-body { font-size: 15px; }
  .project-flow-wrap { margin-top: 38px; }
  .project-flow-panel { padding: 38px 18px 24px; border-radius: 16px; }
  .project-flow-heading { margin-bottom: 26px; }
  .project-flow-heading h3 { font-size: 27px; }
  .project-flow-heading p { font-size: 13px; line-height: 1.7; }
  .project-flow-track { grid-auto-columns: minmax(176px, 78%); }
  .project-flow-icon { width: 92px; height: 92px; }
  .detail-check-list { grid-template-columns: 1fr; }
  .icon-process { grid-template-columns: repeat(2, 1fr); }
  .detail-cta-box { grid-template-columns: 1fr; padding: 34px 26px; }
  .detail-cta-box h2 { font-size: 25px; }
  .criteria-list { grid-template-columns: 1fr; }
  .floating-contact { right: 12px; }
  .back-top { right: 17px; }
  .consultation-modal { align-items: end; padding: 0; }
  .consultation-dialog { width: 100%; max-height: 94vh; border-radius: 20px 20px 0 0; }
  .consultation-close { top: 13px; right: 13px; }
  .consultation-dialog-intro { padding: 30px 22px 22px; }
  .consultation-dialog-intro h2 { padding-right: 36px; font-size: 25px; }
  .consultation-dialog-intro > p { font-size: 13px; }
  .consultation-direct { display: none; }
  .consultation-qr { display: none; }
  .consultation-form-panel { padding: 24px 20px 30px; }
  .consultation-form { gap: 14px; }
  .consultation-field-row { grid-template-columns: 1fr; gap: 14px; }
  .consultation-success { min-height: 330px; }
  .home-hero-reference { min-height: 485px; background-position: 59% center; }
  .home-hero-media { background-position: 59% center; }
  .home-hero-reference::before { background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.83) 74%, rgba(255,255,255,.25)); }
  .home-hero-reference .hero-copy { width: 100%; padding: 56px 0; }
  .home-hero-reference .hero-copy h1 { font-size: 38px; }
  .home-map-section { padding: 52px 0 64px; }
  .map-image-frame { aspect-ratio: 2 / 1; }
  .map-image-frame > img { width: 100%; max-width: none; height: 100%; object-fit: contain; transform: none; }
  .map-marker b { display: none; }
  .marker-pin { width: 27px; height: 27px; border-width: 2px; font-size: 15px; }
  .map-region-groups { grid-template-columns: 1fr; gap: 14px; padding: 17px; }
  .map-tabs { grid-template-columns: repeat(2, 1fr); }
  .map-tabs a:nth-child(3) { border-right: 1px solid #edf1f5; }
  .map-tabs a:nth-child(even) { border-right: 0; }
  .home-reason-grid { grid-template-columns: 1fr 1fr; gap: 32px 14px; }
  .home-round-icon { width: 70px; height: 70px; margin-bottom: 15px; font-size: 23px; }
  .home-round-icon svg { width: 35px; height: 35px; }
  .home-reason-item h3 { font-size: 16px; }
  .home-reason-item p { font-size: 12px; }
  .strength-grid { grid-template-columns: 1fr; }
  .strength-card { display: grid; grid-template-columns: 38% 1fr; }
  .strength-card > img { height: 100%; min-height: 180px; }
  .strength-card p { min-height: 0; }
  .home-news-list > a { grid-template-columns: 108px 1fr; gap: 14px; }
  .home-news-list img { width: 108px; height: 82px; }
  .home-news-list h3 { font-size: 14px; }
  .home-footer::before { background-position: center 28%; background-size: 720px auto; }
  .home-footer::after { background-size: auto 45%; background-position: right bottom; opacity: .1; -webkit-mask-image: linear-gradient(180deg, transparent 52%, #000 100%); mask-image: linear-gradient(180deg, transparent 52%, #000 100%); }
  .home-footer-main { width: min(calc(100% - 40px), 560px); grid-template-columns: 1fr; gap: 34px; padding-top: 48px; padding-bottom: 42px; }
  .home-footer-intro h2 { font-size: 29px; }
  .home-footer-intro p { font-size: 15px; }
  .home-footer-qr { grid-column: auto; justify-content: flex-start; }
  .home-footer-bottom { padding: 13px 0; }
  .home-footer-bottom .container { display: block; }
  .home-footer-bottom span { display: block; margin: 3px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .home-hero-media, .page-hero-image, .home-hero-reference .hero-copy > * { animation: none !important; }
  .motion-reveal, .motion-reveal.is-revealed { opacity: 1 !important; transform: none !important; }
}
