:root {
  --ink: #102033;
  --soft-ink: #30445a;
  --muted: #68788a;
  --line: #d9e3ec;
  --paper: #f7fafc;
  --white: #fff;
  --navy: #08233f;
  --blue: #0c4a7f;
  --cyan: #0f8aa2;
  --mint: #dff4f1;
  --gold: #b58a35;
  --shadow: 0 26px 72px rgba(8, 35, 63, 0.14);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.64;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.14; letter-spacing: 0; }
h1 { max-width: 840px; margin-bottom: 20px; font-size: clamp(36px, 4.2vw, 56px); }
h2 { margin-bottom: 14px; font-size: clamp(26px, 2.6vw, 38px); }
h3 { margin-bottom: 10px; font-size: 20px; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4.8vw, 70px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 227, 236, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}
.brand-logo {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 17px; }
.brand small { color: var(--muted); font-size: 12px; }

.site-nav {
  color: var(--soft-ink);
  font-size: 14px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.site-nav a { display: inline-flex; padding: 8px 0; }
.site-nav a:hover, .text-link { color: var(--cyan); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  display: none;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.has-menu:hover .mega-menu,
.has-menu:focus-within .mega-menu {
  display: grid;
}

.mega-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--soft-ink);
  font-size: 14px;
}

.mega-menu a:hover {
  color: var(--blue);
  background: var(--paper);
}

.about-menu {
  min-width: 250px;
}
.nav-cta {
  padding: 9px 15px !important;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}
.button.primary { color: var(--white); background: var(--navy); box-shadow: 0 18px 38px rgba(8, 35, 63, 0.18); }
.button.secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.text-link { display: inline-flex; margin-top: 16px; font-weight: 850; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 106px) clamp(18px, 4.8vw, 70px) clamp(42px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(247, 250, 252, 0.98), rgba(223, 244, 241, 0.72)),
    linear-gradient(180deg, #fff, #eef6fa);
}

.client-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 106px) clamp(18px, 4.8vw, 70px) clamp(42px, 6vw, 78px);
  background: linear-gradient(135deg, #fff, #edf7fb 58%, #e8f5f2);
}

.client-hero h1 {
  max-width: 880px;
}

.client-hero-copy {
  max-width: 760px;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.hero-assurance span {
  padding: 9px 12px;
  border: 1px solid #c9dbe8;
  border-radius: 8px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.client-hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.client-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #eaf4f5;
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(28px, 4.2vw, 68px);
  align-items: center;
  min-height: 610px;
  padding: clamp(48px, 5.8vw, 86px) clamp(18px, 4.8vw, 70px) clamp(34px, 4.5vw, 60px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 247, 251, 0.9) 48%, rgba(225, 238, 248, 0.78) 100%),
    linear-gradient(135deg, #fff, #e8f2f8);
}

.portal-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 3.2vw, 50px);
}

.portal-hero-copy {
  max-width: 760px;
}

.portal-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.portal-keywords a {
  padding: 9px 13px;
  border: 1px solid #c9dbe8;
  border-radius: 8px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 850;
}

.portal-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: center;
}

.map-panel {
  overflow: hidden;
  border: 1px solid rgba(115, 162, 194, 0.32);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(22, 71, 115, 0.13);
}

.map-panel svg {
  width: 100%;
  min-height: 300px;
  display: block;
}

.solution-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(115, 162, 194, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 64px rgba(22, 71, 115, 0.14);
}

.solution-card strong {
  color: var(--navy);
  font-size: 18px;
}

.solution-card a:not(.button) {
  padding: 9px 0 9px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 750;
}

.solution-card a:not(.button)::before {
  content: "";
  position: absolute;
}

.solution-card .button {
  margin-top: 4px;
  min-height: 42px;
  font-size: 14px;
}

.portal-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 4.8vw, 70px);
  background: var(--line);
}

.portal-metrics article {
  min-height: 118px;
  padding: 24px;
  background: var(--white);
}

.portal-metrics strong {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.portal-metrics span {
  color: var(--muted);
  font-size: 14px;
}

.portal-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1px;
  padding: 1px clamp(18px, 4.8vw, 70px);
  background: var(--line);
}

.portal-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

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

.portal-card-head h2,
.portal-card-head h3 {
  margin-bottom: 8px;
}

.portal-card-head p {
  margin-bottom: 0;
}

.portal-card-head > a {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.service-map {
  grid-row: span 2;
}

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

.service-tile-grid a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-tile-grid a:hover,
.country-chip-grid a:hover,
.text-link-list a:hover,
.update-list a:hover,
.faq-preview-list a:hover {
  border-color: #a8c8d7;
  box-shadow: 0 14px 34px rgba(8, 35, 63, 0.08);
}

.service-tile-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.service-tile-grid strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
}

.service-tile-grid em,
.process-line em,
.update-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.process-line {
  display: grid;
  gap: 10px;
}

.process-line article {
  display: grid;
  grid-template-columns: 38px minmax(90px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-line span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.process-line strong {
  color: var(--navy);
  line-height: 1.3;
}

.why-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff, #f2f8fb);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.why-layout ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-layout li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.why-layout strong,
.why-layout span {
  display: block;
}

.why-layout strong {
  margin-bottom: 5px;
  color: var(--navy);
}

.why-layout span {
  color: var(--muted);
  font-size: 14px;
}

.why-layout figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.why-layout img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 42%;
}

.portal-library,
.portal-updates,
.portal-contact {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 4.8vw, 70px);
}

.portal-library {
  background: var(--paper);
}

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

.library-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.country-chip-grid a,
.text-link-list a,
.faq-preview-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.country-chip-grid a {
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 15px;
  color: var(--navy);
  font-weight: 850;
}

.country-chip-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.text-link-list,
.faq-preview-list {
  display: grid;
  gap: 10px;
}

.text-link-list a,
.faq-preview-list a {
  padding: 13px 14px;
  color: var(--soft-ink);
  font-weight: 750;
}

.portal-updates {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 14px;
  background: var(--white);
}

.updates-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.update-list a {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 92px;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.update-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.update-list strong {
  color: var(--navy);
  line-height: 1.35;
}

.portal-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.portal-contact h2 {
  max-width: 820px;
}

.portal-contact p,
.portal-contact .eyebrow {
  color: #d7e7ef;
}

.portal-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.portal-contact .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.portal-footer {
  align-items: flex-start;
}

.portal-footer div,
.portal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.portal-footer div {
  display: grid;
  gap: 5px;
}

.portal-footer a {
  color: #d7e7ef;
  font-size: 14px;
}

.client-problems,
.market-section,
.product-entry-section,
.process-home-section,
.home-news-section {
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4.8vw, 70px);
}

.problem-grid,
.product-entry-grid,
.process-home-grid,
.home-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.problem-grid article,
.product-entry-grid a,
.process-home-grid article,
.home-news-grid a {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-grid strong,
.product-entry-grid strong,
.process-home-grid strong,
.home-news-grid strong,
.market-list strong,
.knowledge-client-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4.8vw, 70px);
  color: var(--white);
  background: var(--navy);
}

.service-band .eyebrow,
.service-band p {
  color: #d7e7ef;
}

.service-band .service-list article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.service-band .service-list strong {
  color: var(--white);
}

.service-band .service-list span {
  color: #d7e7ef;
}

.market-section {
  background: #edf7f8;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.market-list a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.market-list span,
.product-entry-grid span,
.process-home-grid p,
.home-news-grid span,
.knowledge-client-grid span {
  color: var(--muted);
}

.market-layout figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.market-layout img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

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

.product-entry-grid a {
  min-height: 180px;
}

.process-home-section {
  background: var(--white);
}

.process-home-grid article {
  min-height: 260px;
}

.process-home-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 850;
}

.knowledge-client-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4.8vw, 70px);
  background: #f1f6f9;
}

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

.knowledge-client-grid a {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.image-proof-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 4.8vw, 70px);
  background: var(--line);
}

.image-proof-section figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.image-proof-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.home-news-section {
  background: var(--paper);
}

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

.home-news-grid a {
  min-height: 190px;
}
.hero-lead {
  max-width: 680px;
  color: var(--soft-ink);
  font-size: 19px;
}
.hero-search {
  max-width: 700px;
  margin: 30px 0 22px;
}
.hero-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--soft-ink);
  font-weight: 850;
}
.hero-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-search input {
  min-height: 48px;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
}
.hero-search button {
  min-width: 92px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 4.8vw, 70px);
  background: var(--line);
}
.metric-band article {
  min-height: 150px;
  padding: 26px;
  background: var(--white);
}
.metric-band strong {
  display: block;
  color: var(--blue);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1;
}
.metric-band span { color: var(--muted); }

.answer-source {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4.8vw, 70px);
  color: var(--white);
  background: var(--navy);
}

.answer-source .eyebrow,
.answer-source p {
  color: #d7e7ef;
}

.answer-source h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.4vw, 34px);
}

.answer-source > p {
  margin: 0;
  font-size: 17px;
}

.section, .contact-section {
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4.8vw, 70px);
}
.section-head {
  max-width: 850px;
  margin-bottom: 34px;
}
.section-head p { font-size: 16px; }
.entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.entry-card, .service-list article, .blueprint-list li, .directory-card, .content-panel, .qa-item, .case-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.entry-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 26px;
}
.entry-card.featured {
  grid-column: span 2;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.entry-card.featured p, .entry-card.featured span { color: #d7e7ef; }
.entry-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.focus-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(26px, 5vw, 70px);
  background: #edf7f8;
}
.tag-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.tag-grid a {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--soft-ink);
  font-weight: 850;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.split-section p { max-width: 660px; font-size: 16px; }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.service-list article {
  min-height: 180px;
  padding: 26px;
  border-radius: 0;
}
.service-list strong { display: block; margin-bottom: 12px; color: var(--navy); font-size: 18px; }
.service-list span { color: var(--muted); }

.service-band .service-list {
  gap: 14px;
  background: transparent;
}

.service-band .service-list article {
  min-height: 180px;
  padding: 26px;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-band .service-list strong {
  color: var(--white);
}

.service-band .service-list span {
  color: #d7e7ef;
}

.article-section {
  color: var(--white);
  background: var(--navy);
}
.article-section .eyebrow, .article-section p { color: #d7e7ef; }
.blueprint-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: rgba(255, 255, 255, 0.18);
  list-style: none;
}
.blueprint-list li {
  min-height: 230px;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
}
.blueprint-list strong { display: block; margin-bottom: 14px; color: var(--white); font-size: 18px; }
.blueprint-list span { color: #d7e7ef; }

.proof-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}
.proof-section figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.proof-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.proof-points span {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--soft-ink);
  font-weight: 750;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(30px, 5vw, 72px);
  background: #eaf4f7;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; font-weight: 850; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.contact-form input { min-height: 48px; padding: 10px 12px; }
.contact-form textarea { resize: vertical; padding: 12px; }
.contact-form small { color: var(--muted); }
.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}
.contact-direct strong {
  color: var(--navy);
  font-size: 18px;
}
.contact-direct p,
.contact-direct span {
  margin: 0;
  color: var(--muted);
}
.contact-direct a {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(18px, 4.8vw, 70px);
  color: #d7e7ef;
  background: var(--navy);
}

.page-hero {
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4.8vw, 70px);
  background: linear-gradient(135deg, #fff, #eaf4f7);
  border-bottom: 1px solid var(--line);
}
.page-hero p:last-child { max-width: 880px; color: var(--soft-ink); font-size: 17px; }
.directory-grid, .content-grid, .case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.directory-card, .content-panel, .case-card {
  min-height: 240px;
  padding: 26px;
}
.directory-card span, .case-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}
.directory-card ul, .content-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.qa-list { display: grid; gap: 12px; }
.faq-tools {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.faq-tools label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}
.faq-tools input {
  min-height: 46px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}
.faq-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.faq-filter-tabs button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.faq-filter-tabs button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.faq-tools p,
.faq-empty {
  margin: 0;
  color: var(--muted);
}

.faq-standard-section {
  padding: clamp(36px, 5vw, 70px) clamp(18px, 4.8vw, 70px) clamp(70px, 8vw, 110px);
}

.faq-standard-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(300px, .42fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-standard-toolbar strong,
.faq-standard-toolbar span {
  display: block;
}

.faq-standard-toolbar strong {
  color: var(--navy);
  font-size: 18px;
}

.faq-standard-toolbar span,
.faq-standard-toolbar label {
  color: var(--muted);
  font-size: 14px;
}

.faq-standard-toolbar label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.faq-standard-toolbar input {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.faq-standard-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.faq-index {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 35, 63, 0.06);
}

.faq-index > strong {
  color: var(--navy);
  font-size: 18px;
}

.faq-index p {
  margin: -4px 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.faq-index a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--soft-ink);
  font-size: 14px;
}

.faq-index a:hover {
  color: var(--blue);
  background: var(--paper);
}

.faq-index em {
  color: var(--gold);
  font-style: normal;
  font-weight: 850;
}

.faq-index .faq-index-cta {
  justify-content: center;
  margin-top: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
}

.faq-standard-main {
  min-width: 0;
}

.faq-topic-group {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-topic-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 12px;
}

.faq-topic-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.faq-topic-head span {
  color: var(--muted);
  font-size: 13px;
}

.qa-item { padding: 0; overflow: hidden; }
.qa-item button {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.qa-item p {
  display: none;
  margin: 0;
  padding: 0 24px 22px;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.75;
}
.qa-item.is-open p { display: block; }
.qa-item.is-hidden { display: none; }

.qa-directory {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 4vw, 32px) clamp(70px, 7vw, 96px);
}

.qa-directory-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.qa-directory .qa-sidebar,
.qa-directory .knowledge-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(115, 162, 194, .24);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(22, 71, 115, .07);
}

.qa-directory .qa-sidebar strong,
.qa-directory .knowledge-sidebar strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 15px;
}

.qa-directory .qa-sidebar a,
.qa-directory .knowledge-sidebar a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.35;
}

.qa-directory .qa-sidebar a:hover,
.qa-directory .knowledge-sidebar a:hover {
  color: var(--blue);
  background: #f4f8fb;
}

.qa-directory .qa-sidebar span,
.qa-directory .knowledge-sidebar span {
  flex: 0 0 auto;
  color: var(--muted);
}

.qa-directory .qa-list,
.qa-directory .knowledge-main {
  min-width: 0;
}

.qa-directory .knowledge-toolbar {
  position: static;
  top: auto;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  margin-bottom: 18px;
}

.qa-category-block {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.qa-category-block + .qa-category-block {
  margin-top: 30px;
}

.qa-category-block .category-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 2px 8px;
  border-bottom: 1px solid rgba(115, 162, 194, .22);
}

.qa-category-block .category-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
}

.qa-category-block .category-title span {
  color: var(--muted);
  font-size: 13px;
}

.qa-directory .qa-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(115, 162, 194, .22);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(22, 71, 115, .055);
  overflow: visible;
}

.qa-directory .qa-item div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 5px;
  min-width: 0;
}

.qa-directory .qa-item span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  color: #164773;
  background: #eef5fa;
  font-weight: 850;
  font-size: 12px;
}

.qa-directory .qa-item h3 {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.qa-directory .qa-item p {
  display: -webkit-box;
  margin: 0;
  padding: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qa-directory .qa-item > a {
  white-space: nowrap;
  padding: 9px 12px;
  border: 1px solid rgba(22, 71, 115, .22);
  border-radius: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.qa-directory .qa-item > a:hover {
  color: #fff;
  background: var(--blue);
}

.country-topic-links {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(115, 162, 194, .24);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: 0 8px 22px rgba(22, 71, 115, .04);
}

.country-topic-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.country-topic-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(18px, 1.8vw, 22px);
}

.country-topic-head > a {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

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

.country-topic-grid section {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.country-topic-grid h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 15px;
}

.country-topic-grid div {
  display: grid;
  gap: 6px;
  border: 0;
  background: transparent;
}

.country-topic-grid a {
  display: block;
  padding: 8px 10px;
  border: 1px solid rgba(115, 162, 194, .18);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.country-topic-grid a:hover {
  color: var(--blue);
  background: #eef5fa;
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4.8vw, 70px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px clamp(18px, 4.8vw, 70px) 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 750;
}

.breadcrumb strong {
  color: var(--soft-ink);
  font-weight: 750;
}

.article-aside {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-aside strong {
  color: var(--navy);
}

.article-aside a {
  color: var(--muted);
  font-size: 14px;
}

.article-body {
  max-width: 920px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(8, 35, 63, 0.08);
}

.article-meta-line,
.row-date {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  color: #607085;
  font-size: 13px;
  font-weight: 750;
}

.article-meta-line span,
.row-date {
  padding: 5px 9px;
  border: 1px solid rgba(115, 162, 194, .28);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.article-body h2 {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(23px, 2.1vw, 30px);
}

.article-body h3 {
  margin-top: 24px;
  color: var(--blue);
  font-size: 18px;
}

.article-body p {
  margin-bottom: 16px;
  color: var(--soft-ink);
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--soft-ink);
  line-height: 1.8;
}

.article-body li + li {
  margin-top: 8px;
}

.translated-content,
.aimeili-view,
.article-explain {
  display: grid;
  gap: 2px;
}

.translated-content p,
.aimeili-view p,
.article-explain p {
  margin-bottom: 14px;
}

.translated-content h3,
.aimeili-view h3,
.article-explain h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 3px solid rgba(22, 71, 115, .45);
  color: var(--navy);
  font-size: 18px;
}

.about-visual-strip,
.brand-image-grid {
  display: grid;
  gap: 14px;
}

.about-visual-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 clamp(18px, 4.8vw, 70px);
  padding-top: 1px;
}

.about-visual-strip figure,
.brand-inline-figure,
.brand-image-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8, 35, 63, 0.08);
}

.about-visual-strip img,
.brand-inline-figure img,
.brand-image-grid img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.about-visual-strip img,
.brand-image-grid img {
  aspect-ratio: 4 / 3;
}

.brand-inline-figure {
  margin: 28px 0 34px;
}

.brand-inline-figure img {
  aspect-ratio: 16 / 9;
}

.brand-inline-figure img[src*="frontdesk"],
.brand-inline-figure img[src*="team"],
.brand-inline-figure img[src*="meeting"],
.brand-image-grid img[src*="frontdesk"],
.brand-image-grid img[src*="team"],
.brand-image-grid img[src*="meeting"],
.about-visual-strip img[src*="frontdesk"],
.about-visual-strip img[src*="team"],
.about-visual-strip img[src*="meeting"] {
  object-position: center 42%;
}

.brand-image-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0;
}

.about-brand-overview {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(42px, 5vw, 76px) clamp(18px, 4.8vw, 70px) 28px;
}

.about-brand-copy,
.about-brand-visual,
.about-story-main,
.about-story-media,
.about-path-grid article,
.about-proof-band article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 35, 63, 0.06);
}

.about-brand-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.about-brand-copy h2,
.about-story-main h2 {
  margin: 6px 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.about-brand-copy p:not(.eyebrow),
.about-story-main p {
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.8;
}

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

.about-brand-visual {
  min-height: 360px;
  overflow: hidden;
}

.about-brand-visual img,
.about-story-media img,
.about-image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 4.8vw, 70px) clamp(36px, 5vw, 60px);
}

.about-proof-band article {
  padding: 20px;
}

.about-proof-band strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.about-proof-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(420px, 1fr);
  gap: 24px;
  padding: 0 clamp(18px, 4.8vw, 70px) clamp(42px, 5vw, 70px);
}

.about-story-main {
  padding: clamp(26px, 4vw, 44px);
}

.about-story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-story-links a,
.about-path-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d7e5ef;
  border-radius: 999px;
  color: var(--blue);
  background: #f8fbfd;
  font-size: 13px;
  font-weight: 850;
}

.about-story-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
  padding: 10px;
}

.about-story-media img {
  min-height: 330px;
  border-radius: 6px;
}

.about-path-section {
  padding: clamp(38px, 5vw, 70px) clamp(18px, 4.8vw, 70px);
  background: var(--paper);
}

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

.about-path-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 300px;
  padding: 22px;
}

.about-path-grid .about-path-feature {
  background: linear-gradient(145deg, #ffffff, #eef7fb);
}

.about-path-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.about-path-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.about-path-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-path-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.about-image-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(38px, 5vw, 70px) clamp(18px, 4.8vw, 70px);
}

.about-image-row figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.about-image-row img {
  aspect-ratio: 16 / 10;
}

.about-image-row figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.about-visual-strip figcaption,
.brand-inline-figure figcaption,
.brand-image-grid figcaption {
  width: 100%;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  background: var(--white);
}

.summary-box,
.source-box,
.article-mini-cta,
.article-cta {
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid #c8e5e7;
  border-radius: 8px;
  background: #eef8f8;
}

.summary-box strong,
.source-box strong,
.article-mini-cta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

.source-box {
  border-color: var(--line);
  background: #f7fbfc;
}

.source-box ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.article-mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--white);
}

.article-mini-cta p {
  margin: 0;
  color: var(--muted);
}

.article-cta {
  margin-top: 42px;
  background: linear-gradient(135deg, #eef8f8, #fff);
}

.article-cta h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.related-inline {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.related-inline h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  font-size: 24px;
}

.related-inline div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-inline a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--paper);
  font-weight: 850;
}

.hub-crosslinks {
  margin: 42px clamp(18px, 4.8vw, 70px) 64px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.hub-crosslinks h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 22px;
}

.hub-crosslinks div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hub-crosslinks a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--paper);
  font-weight: 850;
}

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

.contact-checklist span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--soft-ink);
  font-weight: 750;
}

.contact-page {
  background: var(--paper);
}

.contact-pro-section {
  padding: clamp(42px, 5vw, 76px) clamp(18px, 4.8vw, 70px) clamp(76px, 8vw, 116px);
}

.contact-pro-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(360px, 1fr) minmax(280px, .72fr);
  gap: 22px;
  align-items: start;
}

.contact-pro-intro,
.contact-assessment-form,
.contact-side-panel > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 35, 63, 0.06);
}

.contact-pro-intro,
.contact-assessment-form,
.contact-side-panel > div {
  padding: 24px;
}

.contact-pro-intro h2 {
  margin: 6px 0 14px;
  color: var(--navy);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.18;
}

.contact-pro-intro > p:not(.eyebrow) {
  color: var(--soft-ink);
  line-height: 1.75;
}

.contact-steps {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-steps article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 14px;
  border: 1px solid #dce8f1;
  border-radius: 8px;
  background: #f8fbfd;
}

.contact-steps b {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #b9d3e6;
  border-radius: 10px;
  color: var(--blue);
}

.contact-steps strong,
.form-head strong,
.contact-card-main strong,
.contact-info-list strong {
  color: var(--navy);
}

.contact-steps span,
.form-head span,
.contact-card-main p,
.contact-info-list span,
.contact-info-list a {
  color: var(--muted);
  font-size: 14px;
}

.form-head {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.form-head strong {
  font-size: 22px;
}

.contact-side-panel {
  display: grid;
  gap: 14px;
}

.contact-card-main strong,
.contact-info-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-card-main a {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 850;
}

.contact-card-main span,
.contact-info-list span,
.contact-info-list a {
  display: block;
  margin-top: 8px;
}

.contact-card-main p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.contact-wechat-qr {
  display: grid;
  width: fit-content;
  gap: 8px;
  margin: 16px 0 4px;
  padding: 10px;
  border: 1px solid rgba(115, 162, 194, .32);
  border-radius: 10px;
  background: #fff;
}

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

.contact-wechat-qr figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.contact-info-only .contact-info-hero,
.resource-purpose-section,
.case-standard-section,
.case-purpose-band,
.case-route-summary {
  display: grid;
  gap: 22px;
  align-items: start;
}

.contact-info-only .contact-info-hero {
  grid-template-columns: minmax(420px, 1fr) minmax(300px, .52fr);
  margin-bottom: 22px;
}

.contact-info-hero > div,
.contact-info-grid article,
.resource-purpose-card,
.resource-card-grid article,
.resource-workflow article,
.resource-tool-grid article,
.precheck-panel,
.case-detail-card,
.case-issue-grid article,
.case-route-summary article,
.case-index,
.resource-index {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 35, 63, 0.06);
}

.contact-info-hero > div,
.contact-info-grid article,
.resource-purpose-card,
.resource-card-grid article,
.resource-workflow article,
.resource-tool-grid article,
.case-issue-grid article,
.case-route-summary article,
.precheck-panel {
  padding: 22px;
}

.contact-info-hero h2,
.resource-purpose-card h2 {
  margin: 6px 0 14px;
  color: var(--navy);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.18;
}

.contact-info-hero p,
.resource-purpose-card p {
  color: var(--soft-ink);
  line-height: 1.75;
}

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

.contact-info-grid b,
.resource-card-grid span,
.case-detail-card span {
  color: var(--gold);
  font-weight: 900;
}

.contact-info-grid strong,
.resource-card-grid h3,
.case-detail-card h2 {
  display: block;
  margin: 8px 0;
  color: var(--navy);
}

.contact-info-grid span,
.resource-card-grid li,
.case-detail-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-route-links a,
.case-detail-card a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d7e5ef;
  border-radius: 999px;
  color: var(--blue);
  background: #f8fbfd;
  font-size: 13px;
  font-weight: 850;
}

.resource-purpose-section,
.case-standard-section {
  grid-template-columns: 250px minmax(0, 1fr);
  padding: clamp(42px, 5vw, 76px) clamp(18px, 4.8vw, 70px);
}

.case-purpose-band,
.case-route-summary {
  grid-template-columns: minmax(0, .9fr) minmax(360px, .58fr);
  padding: clamp(36px, 4.5vw, 62px) clamp(18px, 4.8vw, 70px) 0;
}

.case-purpose-band h2,
.case-route-summary h2,
.resource-section-head h2,
.precheck-panel h2 {
  margin: 6px 0 12px;
  color: var(--navy);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.2;
}

.case-purpose-band p,
.case-route-summary p,
.resource-section-head p,
.precheck-panel p {
  color: var(--soft-ink);
  line-height: 1.75;
}

.case-purpose-band ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-purpose-band li {
  display: grid;
  gap: 4px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.case-purpose-band li strong {
  color: var(--blue);
}

.case-purpose-band li span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.resource-index,
.case-index {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 5px;
  max-height: calc(100vh - 118px);
  overflow: auto;
  padding: 14px;
}

.resource-index strong,
.case-index strong {
  color: var(--navy);
  font-size: 18px;
}

.case-index p {
  margin: -4px 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.resource-index a,
.case-index a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--soft-ink);
  font-size: 13px;
}

.resource-index a:hover,
.case-index a:hover {
  color: var(--blue);
  background: var(--paper);
}

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

.resource-workflow,
.resource-tool-grid,
.case-issue-grid,
.case-route-summary > div {
  display: grid;
  gap: 14px;
}

.resource-workflow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.resource-workflow span,
.case-route-summary span {
  color: var(--gold);
  font-weight: 900;
}

.resource-workflow strong,
.resource-tool-grid strong,
.case-issue-grid strong,
.case-route-summary strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--navy);
}

.resource-workflow p,
.resource-tool-grid p,
.case-issue-grid span,
.case-route-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.case-issue-grid article {
  min-height: 126px;
  box-shadow: none;
  background: #f8fbfd;
}

.resource-tool-section {
  margin-top: 28px;
}

.resource-section-head {
  margin-bottom: 14px;
}

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

.resource-tool-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.precheck-panel {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.precheck-panel ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding-left: 22px;
}

.precheck-panel li {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.6;
}

.resource-card-grid ul,
.case-detail-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.case-standard-main {
  display: grid;
  gap: 12px;
}

.case-detail-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 15px;
  padding: 14px;
}

.case-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.case-route-summary {
  padding-bottom: clamp(46px, 5vw, 76px);
}

.case-route-summary > div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-detail-card p {
  color: var(--soft-ink);
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.75;
}

.case-detail-card div div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.case-detail-card h2 {
  font-size: 19px;
  line-height: 1.42;
}

.case-detail-card ul {
  margin-top: 8px;
}

.case-detail-card li {
  font-size: 13px;
  line-height: 1.55;
}

.case-compact-card {
  grid-template-columns: 150px minmax(0, 1fr);
}

.case-compact-card img {
  min-height: 150px;
}

.case-compact-card h2 {
  font-size: 17px;
}

.case-compact-card p {
  font-size: 13px;
  line-height: 1.65;
}

.case-compact-card a {
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

.rich-directory .directory-card {
  min-height: 260px;
}

.compact-hero {
  padding-bottom: clamp(42px, 5vw, 70px);
}

.latest-publish {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(115, 162, 194, .28);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(22, 71, 115, .08);
}

.latest-publish h2 {
  margin: 6px 0 10px;
  color: #164773;
  font-size: clamp(22px, 2.1vw, 30px);
}

.latest-publish p {
  max-width: 820px;
  margin: 0;
  line-height: 1.7;
}

.knowledge-section {
  padding: clamp(36px, 5vw, 70px) clamp(18px, 4.8vw, 70px) clamp(70px, 8vw, 110px);
}

.knowledge-toolbar {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(280px, 0.4fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.knowledge-toolbar strong,
.knowledge-toolbar span {
  display: block;
}

.knowledge-toolbar strong {
  color: var(--navy);
  font-size: 18px;
}

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

.knowledge-filter {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

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

.country-quick-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.country-quick-nav {
  position: sticky;
  top: 164px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 35, 63, 0.06);
}

.country-quick-nav > strong {
  color: var(--navy);
  font-size: 18px;
}

.country-quick-nav p {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.quick-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.quick-group span {
  flex: 0 0 100%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
}

.quick-group a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #d7e5ef;
  border-radius: 999px;
  color: var(--soft-ink);
  background: #f8fbfd;
  font-size: 13px;
  font-weight: 760;
}

.quick-group a:hover {
  border-color: #a8c8d7;
  color: var(--blue);
  background: #eef7fb;
}

.country-knowledge-main {
  min-width: 0;
}

.knowledge-row {
  display: grid;
  grid-template-columns: 140px minmax(220px, 0.62fr) minmax(260px, 1fr) 92px;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.knowledge-row:hover {
  border-color: #a8c8d7;
  box-shadow: 0 14px 38px rgba(8, 35, 63, 0.08);
}

.knowledge-row .row-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.knowledge-row strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.knowledge-row p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.knowledge-row em {
  justify-self: end;
  color: var(--cyan);
  font-style: normal;
  font-weight: 850;
}

.knowledge-row.is-hidden {
  display: none;
}

.news-directory-section {
  max-width: 1180px;
  margin: 28px auto 64px;
  padding: 0 20px;
}

.news-compact-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(8, 35, 63, .06);
}

.news-compact-row {
  display: grid;
  grid-template-columns: 106px 150px minmax(0, 1.05fr) minmax(220px, .95fr) 52px;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(115, 162, 194, .18);
  color: var(--ink);
}

.news-compact-row:last-child {
  border-bottom: 0;
}

.news-compact-row:hover {
  background: #f7fbff;
}

.news-compact-row time {
  color: #607085;
  font-size: 13px;
  font-weight: 850;
}

.news-compact-row > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 3px 8px;
  border: 1px solid rgba(115, 162, 194, .32);
  border-radius: 999px;
  color: #164773;
  background: #eef6fb;
  font-size: 12px;
  font-weight: 850;
}

.news-compact-row strong {
  color: #1a2430;
  font-size: 15px;
  line-height: 1.38;
}

.news-compact-row p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #607085;
  font-size: 13px;
  line-height: 1.5;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.news-compact-row em {
  color: #164773;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.news-pagination a,
.news-pagination span,
.news-pagination strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #164773;
  font-size: 14px;
  font-weight: 850;
}

.news-pagination strong {
  border-color: #164773;
  background: #164773;
  color: #fff;
}

.news-pagination span {
  color: #9aa6b2;
  background: #f5f8fb;
}

.content-governance {
  margin: 18px 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(115, 162, 194, .28);
  border-radius: 8px;
  background: #f8fbfd;
}

.content-governance strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 16px;
}

.content-governance ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.content-governance li {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .news-directory-section {
    margin: 18px auto 38px;
    padding: 0 14px;
  }

  .news-directory-section .knowledge-toolbar {
    align-items: stretch;
  }

  .news-compact-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 10px;
    align-items: start;
    padding: 13px;
  }

  .news-compact-row time {
    grid-column: 1;
    grid-row: 1;
  }

  .news-compact-row > span {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .news-compact-row strong {
    grid-column: 1 / -1;
    font-size: 14px;
    line-height: 1.55;
  }

  .news-compact-row p {
    grid-column: 1 / -1;
    -webkit-line-clamp: 2;
  }

  .news-compact-row em {
    display: none;
  }

  .news-pagination {
    gap: 7px;
  }

  .news-pagination a,
  .news-pagination span,
  .news-pagination strong {
    min-width: 36px;
    min-height: 34px;
    padding: 0 10px;
  }
}

.finder-section {
  padding: clamp(36px, 5vw, 70px) clamp(18px, 4.8vw, 70px) clamp(70px, 8vw, 110px);
}

.finder-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(280px, 0.4fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.finder-toolbar strong,
.finder-toolbar span {
  display: block;
}

.finder-toolbar strong {
  color: var(--navy);
  font-size: 18px;
}

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

.finder-search {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.finder-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.finder-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.finder-nav strong {
  margin-bottom: 4px;
  color: var(--navy);
}

.finder-nav a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--soft-ink);
  font-size: 14px;
}

.finder-nav a:hover {
  background: var(--paper);
  color: var(--blue);
}

.finder-main {
  display: grid;
  gap: 28px;
}

.finder-hot,
.finder-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.finder-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.finder-group-head h2 {
  margin: 0;
  font-size: 24px;
}

.finder-group-head span {
  color: var(--muted);
  font-size: 14px;
}

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

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

.finder-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.finder-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
}

.finder-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.finder-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.finder-card.is-hidden,
.finder-group.is-hidden {
  display: none;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.pagination a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--white);
  font-weight: 850;
}

.pagination a.is-current {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.article-link-network {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-link-network h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  font-size: 24px;
}

.article-link-network section {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.article-link-network h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 17px;
}

.article-link-network div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-link-network a {
  padding: 8px 11px;
  border: 1px solid #c9dbe8;
  border-radius: 8px;
  color: var(--blue);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.article-prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.article-nav-card {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid #c9dbe8;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.article-nav-card span {
  color: #607085;
  font-size: 12px;
  font-weight: 850;
}

.article-nav-card strong {
  color: #164773;
  font-size: 15px;
  line-height: 1.45;
}

.article-nav-card.is-disabled {
  color: #7b8794;
  background: #f4f7fa;
}

.brand-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.brand-intro .lead-copy {
  color: var(--soft-ink);
  font-size: 17px;
}

.brand-facts {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.brand-facts article {
  padding: 22px;
  background: var(--white);
}

.brand-facts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.brand-story-section,
.trust-library-section {
  background: var(--white);
}

.brand-geo-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4.8vw, 70px);
  color: var(--white);
  background: var(--navy);
}

.brand-geo-section .eyebrow,
.brand-geo-section p {
  color: #d7e7ef;
}

.brand-entity-list {
  display: grid;
  gap: 10px;
}

.brand-entity-list span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #edf7fb;
}

.service-roadmap li {
  min-height: auto;
}

.region-list,
.product-list {
  columns: 2;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.roadmap-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.roadmap-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
}

@media (max-width: 1120px) {
  .site-nav { gap: 10px; font-size: 13px; }
  .entry-grid, .blueprint-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tag-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .portal-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .portal-hero-visual {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
  .portal-dashboard,
  .portal-updates {
    grid-template-columns: 1fr;
  }
  .service-map,
  .why-card {
    grid-column: auto;
    grid-row: auto;
  }
  .library-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  h1 { font-size: 34px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-menu {
    display: grid;
    gap: 6px;
  }
  .mega-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px 0 6px 12px;
    border: 0;
    box-shadow: none;
    background: var(--paper);
  }
  .hero, .focus-section, .split-section, .proof-section, .contact-section {
    grid-template-columns: 1fr;
  }
  .portal-hero {
    padding-top: 42px;
  }
  .portal-hero-visual,
  .why-layout,
  .portal-contact {
    grid-template-columns: 1fr;
  }
  .solution-card {
    order: -1;
  }
  .map-panel svg {
    min-height: 260px;
  }
  .portal-metrics,
  .service-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portal-card-head {
    display: grid;
  }
  .portal-contact-actions {
    justify-content: flex-start;
  }
  .client-hero,
  .service-band,
  .market-layout,
  .knowledge-client-section {
    grid-template-columns: 1fr;
  }
  .problem-grid,
  .process-home-grid,
  .product-entry-grid,
  .home-news-grid,
  .image-proof-section {
    grid-template-columns: 1fr 1fr;
  }
  .answer-source {
    grid-template-columns: 1fr;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside {
    position: static;
  }
  .article-mini-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .contact-checklist {
    grid-template-columns: 1fr;
  }
  .knowledge-toolbar,
  .qa-directory-layout,
  .knowledge-row,
  .country-quick-layout,
  .faq-standard-toolbar,
  .faq-standard-layout,
  .contact-pro-grid,
  .about-brand-overview,
  .about-story-layout,
  .contact-info-only .contact-info-hero,
  .case-purpose-band,
  .case-route-summary,
  .resource-purpose-section,
  .case-standard-section,
  .case-detail-card,
  .precheck-panel,
  .brand-intro,
  .finder-toolbar,
  .finder-layout,
  .brand-geo-section {
    grid-template-columns: 1fr;
  }
  .country-quick-nav {
    position: static;
  }
  .faq-index {
    position: static;
  }
  .qa-directory {
    padding: 28px 14px 58px;
  }
  .qa-directory .qa-sidebar,
  .qa-directory .knowledge-sidebar {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
    scrollbar-width: none;
  }
  .qa-directory .qa-sidebar::-webkit-scrollbar,
  .qa-directory .knowledge-sidebar::-webkit-scrollbar {
    display: none;
  }
  .qa-directory .qa-sidebar strong,
  .qa-directory .knowledge-sidebar strong {
    flex: 0 0 auto;
    align-self: center;
    margin: 0;
  }
  .qa-directory .qa-sidebar a,
  .qa-directory .knowledge-sidebar a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .qa-directory .knowledge-toolbar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .qa-directory .qa-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .qa-directory .qa-item div {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
  }
  .qa-directory .qa-item span {
    width: 38px;
    height: 38px;
  }
  .qa-directory .qa-item h3 {
    font-size: 16px;
  }
  .qa-directory .qa-item > a {
    justify-self: start;
  }
  .country-topic-grid {
    grid-template-columns: 1fr;
  }
  .country-topic-links {
    padding: 18px 14px;
  }
  .country-topic-grid section {
    padding: 14px;
  }
  .resource-index,
  .case-index {
    position: static;
  }
  .finder-nav {
    position: static;
  }
  .finder-grid,
  .finder-grid.hot-grid,
  .resource-workflow,
  .resource-tool-grid,
  .case-issue-grid,
  .case-route-summary > div,
  .precheck-panel ol {
    grid-template-columns: 1fr;
  }
  .knowledge-row em {
    justify-self: start;
  }
  .client-hero-image img,
  .hero-media img,
  .market-layout img,
  .image-proof-section img,
  .about-visual-strip img,
  .about-brand-visual img,
  .about-story-media img,
  .about-image-row img,
  .brand-image-grid img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }
  .brand-inline-figure img {
    aspect-ratio: 4 / 3;
  }
  .metric-band, .service-list, .proof-points, .directory-grid, .content-grid, .case-grid,
  .about-proof-band, .about-path-grid, .about-image-row,
  .contact-info-grid, .resource-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-purpose-band,
  .case-route-summary {
    padding-left: 18px;
    padding-right: 18px;
  }

  .case-detail-card img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 620px) {
  .brand { min-width: 0; }
  .brand small { display: none; }
  .portal-hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .portal-hero h1 {
    font-size: 30px;
  }
  .portal-hero-visual {
    display: none;
  }
  .portal-hero {
    padding-bottom: 34px;
  }
  .case-purpose-band,
  .case-standard-section,
  .case-route-summary,
  .resource-purpose-section {
    padding-left: 14px;
    padding-right: 14px;
  }
  .case-index,
  .resource-index {
    gap: 6px;
    padding: 14px;
  }
  .case-index a,
  .resource-index a {
    padding: 8px 9px;
    font-size: 13px;
  }
  .case-detail-card {
    gap: 13px;
    padding: 13px;
  }
  .case-detail-card h2,
  .resource-card-grid h3 {
    font-size: 17px;
    line-height: 1.45;
  }
  .case-detail-card p,
  .case-detail-card li,
  .resource-card-grid li,
  .precheck-panel li {
    font-size: 13px;
  }
  .resource-card-grid {
    grid-template-columns: 1fr;
  }
  .portal-hero-visual {
    gap: 12px;
  }
  .solution-card,
  .portal-card,
  .library-panel {
    padding: 18px;
  }
  .portal-metrics,
  .service-tile-grid,
  .country-chip-grid {
    grid-template-columns: 1fr;
  }
  .portal-metrics article,
  .service-tile-grid a {
    min-height: auto;
  }
  .process-line article,
  .update-list a {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .why-layout img {
    min-height: 220px;
  }
  .portal-library,
  .portal-updates,
  .portal-contact {
    padding-left: 16px;
    padding-right: 16px;
  }
  .portal-footer {
    display: grid;
  }
  .hero-search div, .metric-band, .entry-grid, .service-list, .blueprint-list, .proof-points, .directory-grid, .content-grid, .case-grid, .tag-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid,
  .product-entry-grid,
  .process-home-grid,
  .home-news-grid,
  .image-proof-section,
  .about-visual-strip,
  .about-proof-band,
  .about-story-media,
  .about-path-grid,
  .about-image-row,
  .contact-info-grid,
  .resource-card-grid,
  .brand-image-grid,
  .knowledge-client-grid,
  .market-list a {
    grid-template-columns: 1fr;
  }
  .entry-card.featured { grid-column: auto; }
  .region-list,
  .product-list {
    columns: 1;
  }
  .client-hero-image img,
  .hero-media img,
  .market-layout img,
  .image-proof-section img,
  .about-visual-strip img,
  .about-brand-visual img,
  .about-story-media img,
  .about-image-row img,
  .brand-inline-figure img,
  .brand-image-grid img {
    aspect-ratio: 1.25 / 1;
  }
}

/* Reference-style homepage */
.home-exact {
  --exact-blue: #003f97;
  --exact-blue-2: #075bc4;
  --exact-deep: #00327c;
  --exact-line: #d8e4f3;
  --exact-pale: #f4f8fd;
  color: #06235a;
  background: #fff;
  overflow-x: hidden;
}

.home-exact .site-header {
  min-height: 74px;
  padding: 0 34px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #d3e0ef;
  box-shadow: 0 2px 10px rgba(0, 50, 124, 0.06);
}

.home-exact .brand {
  min-width: 245px;
  gap: 10px;
}

.home-exact .brand-logo {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 0;
}

.home-exact .brand strong {
  color: var(--exact-blue);
  font-size: 22px;
  letter-spacing: .5px;
  line-height: 1;
}

.home-exact .brand small {
  color: var(--exact-blue);
  font-size: 13px;
  font-weight: 800;
}

.home-exact .site-nav {
  color: #071f4c;
  font-size: 15px;
  font-weight: 800;
}

.home-exact .nav-menu {
  gap: 28px;
}

.home-exact .site-nav a {
  position: relative;
  align-items: center;
  min-height: 74px;
  padding: 0;
}

.home-exact .site-nav a.is-active {
  color: var(--exact-blue);
}

.home-exact .site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--exact-blue);
  border-radius: 4px 4px 0 0;
}

.home-exact .site-nav .nav-cta {
  min-height: 42px;
  padding: 0 22px !important;
  color: #fff;
  background: var(--exact-blue);
  border-radius: 8px;
}

.home-exact .site-nav .nav-cta::after,
.home-exact .site-nav .lang-link::after {
  display: none;
}

.home-exact .mega-menu a {
  min-height: 0;
  padding: 9px 10px;
}

.exact-hero {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  border-bottom: 1px solid var(--exact-line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(232,243,254,.74) 39%, rgba(210,231,250,.56) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.18)),
    #dcecf8;
}

.exact-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background:
    linear-gradient(to top, rgba(0, 63, 151, .2), transparent 78%),
    repeating-linear-gradient(90deg, rgba(0, 63, 151, .32) 0 3px, transparent 3px 58px);
  clip-path: polygon(0 65%, 4% 49%, 7% 70%, 10% 34%, 15% 60%, 18% 24%, 23% 72%, 28% 45%, 33% 68%, 38% 38%, 43% 70%, 48% 43%, 53% 66%, 58% 28%, 63% 72%, 68% 48%, 73% 67%, 78% 36%, 83% 70%, 88% 41%, 93% 65%, 97% 35%, 100% 62%, 100% 100%, 0 100%);
  opacity: .45;
}

.exact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(500px, .95fr) minmax(280px, .66fr) 300px;
  gap: 22px;
  align-items: center;
  max-width: 1480px;
  min-height: 335px;
  margin: 0 auto;
  padding: 32px 64px 26px;
}

.exact-hero-copy h1 {
  margin: 0 0 8px;
  color: #00327c;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: 1px;
  line-height: 1.12;
}

.exact-hero-copy h2 {
  margin: 0 0 6px;
  color: #00327c;
  font-size: 25px;
  font-weight: 900;
}

.exact-hero-copy p {
  margin: 0 0 26px;
  color: #0d3874;
  font-size: 15px;
  font-weight: 650;
}

.exact-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
  max-width: 470px;
  margin-bottom: 22px;
}

.exact-proof-grid span {
  position: relative;
  padding-left: 27px;
  color: #06306d;
  font-size: 15px;
  font-weight: 800;
}

.exact-proof-grid span::before {
  content: "✚";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: #0872d8;
  font-size: 10px;
}

.exact-hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.exact-primary,
.exact-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 28px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #0048ad, #00327c);
  box-shadow: 0 10px 24px rgba(0, 63, 151, .22);
  font-weight: 900;
}

.exact-text-link {
  color: #00327c;
  font-weight: 900;
}

.exact-world {
  min-height: 252px;
  background:
    radial-gradient(circle at 52% 50%, rgba(255,255,255,.82), rgba(255,255,255,.2) 48%, transparent 68%),
    linear-gradient(90deg, rgba(0,63,151,.12), rgba(255,255,255,.2), rgba(0,63,151,.12)),
    url("assets/aimeili-world-map.png") center / contain no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  opacity: .92;
  filter: saturate(1.18) contrast(1.04);
}

.exact-world::before,
.exact-world::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.exact-world::before {
  inset: 16px 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 18% 45%, #005bc4 0 5px, rgba(0,91,196,.18) 6px 12px, transparent 13px),
    radial-gradient(circle at 37% 58%, #005bc4 0 5px, rgba(0,91,196,.18) 6px 12px, transparent 13px),
    radial-gradient(circle at 55% 42%, #005bc4 0 5px, rgba(0,91,196,.18) 6px 12px, transparent 13px),
    radial-gradient(circle at 70% 55%, #005bc4 0 5px, rgba(0,91,196,.18) 6px 12px, transparent 13px),
    radial-gradient(circle at 82% 35%, #005bc4 0 5px, rgba(0,91,196,.18) 6px 12px, transparent 13px);
}

.exact-world::after {
  inset: 30px 32px;
  border-radius: 50%;
  background:
    linear-gradient(25deg, transparent 23%, rgba(0,91,196,.34) 23.4%, transparent 24.2%),
    linear-gradient(-16deg, transparent 33%, rgba(0,91,196,.28) 33.4%, transparent 34.2%),
    linear-gradient(8deg, transparent 47%, rgba(0,91,196,.24) 47.3%, transparent 48%),
    linear-gradient(-32deg, transparent 62%, rgba(0,91,196,.2) 62.3%, transparent 63%);
  mask-image: radial-gradient(ellipse at center, #000 0 72%, transparent 76%);
}

.exact-solution {
  display: grid;
  gap: 11px;
  padding: 22px;
  border: 1px solid #c6d7ee;
  border-radius: 9px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 18px 44px rgba(0, 50, 124, .13);
}

.exact-solution strong {
  color: #00327c;
  font-size: 18px;
}

.exact-solution a:not(.exact-outline) {
  color: #0a2f6d;
  font-size: 14px;
  font-weight: 800;
}

.exact-outline {
  min-height: 36px;
  margin-top: 6px;
  border: 1px solid #0d59b6;
  color: #00327c;
  background: #fff;
  box-shadow: none;
}

.exact-dashboard,
.exact-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr) minmax(520px, 1.12fr);
  max-width: 1800px;
  margin: 0 auto;
  border-left: 1px solid var(--exact-line);
  border-right: 1px solid var(--exact-line);
}

.exact-panel {
  min-width: 0;
  padding: 28px 34px;
  border-right: 1px solid var(--exact-line);
  border-bottom: 1px solid var(--exact-line);
  background: #fff;
}

.exact-panel:last-child {
  border-right: 0;
}

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

.exact-panel-head h2 {
  margin: 0;
  color: #00327c;
  font-size: 22px;
  font-weight: 950;
}

.exact-panel-head span {
  display: block;
  color: #00327c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .4px;
}

.exact-panel-head a {
  color: #003f97;
  font-size: 13px;
  font-weight: 900;
}

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

.exact-service-grid a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  align-items: center;
  min-height: 88px;
  padding: 15px;
  border: 1px solid var(--exact-line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 8px 20px rgba(0, 50, 124, .05);
}

.exact-service-grid i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid #004ea8;
  border-radius: 10px;
  color: #004ea8;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  background: #eef6ff;
}

.exact-service-grid strong,
.exact-country-row strong,
.exact-knowledge-row strong {
  color: #082b67;
  font-size: 15px;
  line-height: 1.2;
}

.exact-service-grid span,
.exact-country-row span,
.exact-knowledge-row span {
  color: #31517d;
  font-size: 12px;
  line-height: 1.35;
}

.exact-process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: start;
  margin: 12px 0 21px;
}

.exact-process-line article {
  min-height: 142px;
  padding: 18px 12px;
  border: 1px solid var(--exact-line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 8px 20px rgba(0, 50, 124, .05);
  text-align: center;
}

.exact-process-line i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #004fac, #002f7f);
  font-style: normal;
  font-size: 14px;
  font-weight: 950;
}

.exact-process-line strong,
.exact-process-line span {
  display: block;
}

.exact-process-line strong {
  color: #00327c;
  font-size: 15px;
}

.exact-process-line span {
  color: #31517d;
  font-size: 12px;
  line-height: 1.35;
}

.exact-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #0a2f6d;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.exact-checks li {
  padding: 12px 14px;
  border: 1px solid #d8e4f3;
  border-radius: 10px;
  background: #f7fbff;
}

.exact-why-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .8fr);
  gap: 30px;
  align-items: stretch;
}

.exact-why-layout ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exact-why-layout li {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid var(--exact-line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 8px 20px rgba(0, 50, 124, .05);
  color: #0a2f6d;
}

.exact-why-layout b {
  color: #00327c;
  font-size: 16px;
}

.exact-why-layout span {
  color: #31517d;
  font-size: 13px;
  line-height: 1.55;
}

.exact-why-layout figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--exact-line);
  box-shadow: 0 16px 34px rgba(0, 50, 124, .1);
}

.exact-why-layout img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.exact-lower {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr) minmax(520px, 1.12fr);
}

.exact-country-row,
.exact-knowledge-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}

.exact-country-row a {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid var(--exact-line);
  border-radius: 7px;
  background: #fbfdff;
  text-align: center;
}

.exact-country-row b {
  font-size: 30px;
  line-height: 1;
}

.exact-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.exact-stat-row article {
  padding: 0 12px;
  border-right: 1px solid var(--exact-line);
  text-align: center;
}

.exact-stat-row article:last-child {
  border-right: 0;
}

.exact-stat-row strong {
  display: block;
  color: #003f97;
  font-size: 32px;
  line-height: 1;
}

.exact-stat-row span {
  color: #31517d;
  font-size: 12px;
}

.exact-news-list {
  display: grid;
  gap: 7px;
}

.exact-news-list a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 92px;
  gap: 12px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--exact-line);
}

.exact-news-list b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: #003f97;
  font-size: 12px;
  font-weight: 900;
}

.exact-news-list a > span,
.exact-news-list time,
.exact-news-list em {
  color: #003f97;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.exact-news-list strong {
  color: #082b67;
  font-size: 13px;
  line-height: 1.2;
}

.exact-news-list strong span {
  color: #31517d;
  font-size: 11px;
  font-weight: 600;
}

.home-recent-faq {
  max-width: 1800px;
  margin: 0 auto;
  padding: 30px 34px 36px;
  border-left: 1px solid var(--exact-line);
  border-right: 1px solid var(--exact-line);
  border-bottom: 1px solid var(--exact-line);
  background: linear-gradient(180deg, #fff, #f8fbff);
}

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

.home-faq-grid a {
  display: flex;
  min-width: 0;
  min-height: 144px;
  flex-direction: column;
  gap: 8px;
  padding: 16px 17px;
  border: 1px solid var(--exact-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 50, 124, .05);
}

.home-faq-grid i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #003f97;
  background: #eef6ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.home-faq-grid strong {
  display: -webkit-box;
  min-height: 40px;
  overflow: hidden;
  color: #082b67;
  font-size: 15px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-faq-grid span {
  width: fit-content;
  max-width: 100%;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef6ff;
  color: #164773;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.home-faq-grid p {
  display: -webkit-box;
  min-height: 38px;
  margin: 0;
  overflow: hidden;
  color: #31517d;
  font-size: 12px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.exact-knowledge-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.exact-knowledge-row a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 78px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--exact-line);
  border-radius: 8px;
  background: #fbfdff;
}

.exact-knowledge-row img {
  width: 64px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.exact-knowledge-row strong,
.exact-knowledge-row span {
  display: block;
}

.exact-knowledge-row strong {
  color: #00327c;
  font-size: 14px;
  line-height: 1.2;
}

.exact-knowledge-row span {
  margin-top: 4px;
  color: #31517d;
  font-size: 11px;
  line-height: 1.35;
}

.exact-footer {
  color: #dcecff;
  background: linear-gradient(135deg, #004fac, #002d74);
}

.exact-footer-main {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) .55fr .55fr .82fr .72fr;
  gap: 45px;
  max-width: 1800px;
  margin: 0 auto;
  padding: 28px 42px 25px;
}

.exact-footer a,
.exact-footer span,
.exact-footer p {
  color: #dcecff;
}

.exact-footer-brand img {
  float: left;
  width: 64px;
  height: 64px;
  margin-right: 12px;
}

.exact-footer-brand strong {
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 1.05;
}

.exact-footer-brand strong span {
  color: #fff;
  font-size: 15px;
}

.exact-footer-brand p {
  clear: both;
  max-width: 340px;
  margin: 14px 0 0;
  font-size: 15px;
}

.exact-footer nav,
.exact-footer address,
.exact-social {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.exact-footer nav strong,
.exact-footer address strong,
.exact-social strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
}

.exact-social > div {
  display: flex;
  gap: 13px;
}

.exact-social span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: 900;
}

.exact-qr {
  width: 96px;
  height: 96px;
  margin-top: 12px;
  border: 8px solid #fff;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #002d74 10px, transparent 10px 18px, #002d74 18px 24px, transparent 24px),
    linear-gradient(#002d74 10px, transparent 10px 18px, #002d74 18px 24px, transparent 24px),
    #fff;
  background-size: 24px 24px;
}

.exact-copyright {
  margin: 0;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #dcecff;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1500px) {
  .home-exact .site-header {
    padding: 0 24px;
  }
  .home-exact .brand {
    min-width: 210px;
  }
  .home-exact .nav-menu {
    gap: 18px;
  }
  .exact-hero-inner {
    grid-template-columns: minmax(500px, .95fr) minmax(260px, .58fr) 280px;
    gap: 22px;
    max-width: 1320px;
    padding-left: 58px;
    padding-right: 58px;
  }
  .exact-hero-copy h1 {
    font-size: 36px;
  }
  .exact-hero-copy h2 {
    font-size: 23px;
  }
  .exact-dashboard {
    grid-template-columns: 1fr;
  }
  .exact-services,
  .exact-process,
  .exact-why {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .exact-service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .exact-service-grid a {
    min-height: 74px;
  }
  .exact-process-line {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
  .exact-checks {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
  }
  .exact-why-layout {
    grid-template-columns: minmax(0, .9fr) minmax(360px, .78fr);
    align-items: stretch;
  }
  .exact-why-layout img {
    height: 280px;
  }
  .exact-lower {
    grid-template-columns: minmax(0, 1fr) 430px;
  }
  .exact-knowledge {
    grid-column: 1 / -1;
  }
  .exact-country-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .exact-knowledge-row {
    grid-template-columns: repeat(5, 1fr);
  }
  .exact-footer-main {
    grid-template-columns: minmax(260px, 1fr) .55fr .55fr .78fr .58fr;
    gap: 28px;
  }
}

@media (max-width: 1180px) {
  .home-exact .site-header {
    padding: 0 18px;
  }
  .home-exact .nav-menu {
    gap: 14px;
  }
  .exact-hero-inner,
  .exact-dashboard,
  .exact-lower,
  .exact-footer-main {
    grid-template-columns: 1fr;
  }
  .exact-world {
    display: none;
  }
  .exact-panel {
    border-right: 0;
  }
  .exact-service-grid,
  .exact-country-row,
  .exact-knowledge-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .exact-process-line {
    grid-template-columns: repeat(5, 1fr);
  }
  .exact-why-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .exact-process-line {
    grid-template-columns: repeat(3, 1fr);
  }
  .exact-service-grid,
  .exact-country-row,
  .exact-knowledge-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1201px) and (max-width: 1500px) {
  .exact-dashboard {
    width: 1800px;
    max-width: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr) minmax(520px, 1.12fr);
    zoom: .7;
  }
  .exact-services,
  .exact-process,
  .exact-why {
    grid-column: auto;
    border-right: 1px solid var(--exact-line);
  }
  .exact-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .exact-service-grid a {
    min-height: 66px;
  }
  .exact-process-line {
    max-width: none;
    grid-template-columns: repeat(5, 1fr);
    margin-left: 0;
    margin-right: 0;
  }
  .exact-checks {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 110px;
  }
  .exact-why-layout {
    grid-template-columns: minmax(0, .72fr) minmax(300px, .9fr);
  }
  .exact-why-layout img {
    height: 250px;
  }
}

@media (min-width: 1051px) and (max-width: 1200px) {
  .exact-dashboard {
    width: 1800px;
    max-width: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr) minmax(520px, 1.12fr);
    zoom: .62;
  }
  .exact-services,
  .exact-process,
  .exact-why {
    grid-column: auto;
    border-right: 1px solid var(--exact-line);
  }
  .exact-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .exact-process-line {
    grid-template-columns: repeat(5, 1fr);
  }
  .exact-checks {
    padding-left: 110px;
  }
  .exact-why-layout {
    grid-template-columns: minmax(0, .72fr) minmax(300px, .9fr);
  }
  .exact-why-layout img {
    height: 250px;
  }
}

@media (min-width: 901px) and (max-width: 1050px) {
  .exact-dashboard {
    width: 1800px;
    max-width: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr) minmax(520px, 1.12fr);
    zoom: .52;
  }
  .exact-services,
  .exact-process,
  .exact-why {
    grid-column: auto;
    border-right: 1px solid var(--exact-line);
  }
  .exact-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .exact-process-line {
    grid-template-columns: repeat(5, 1fr);
  }
  .exact-checks {
    padding-left: 110px;
  }
  .exact-why-layout {
    grid-template-columns: minmax(0, .72fr) minmax(300px, .9fr);
  }
  .exact-why-layout img {
    height: 250px;
  }
}

@media (max-width: 620px) {
  .home-exact .site-header {
    min-height: 70px;
  }
  .home-exact .brand-logo {
    width: 46px;
    height: 46px;
  }
  .home-exact .brand strong {
    font-size: 18px;
  }
  .home-exact .site-nav a {
    min-height: auto;
    padding: 9px 0;
  }
  .exact-hero-inner {
    padding: 28px 16px;
  }
  .exact-hero-copy h1 {
    font-size: 30px;
  }
  .exact-hero-copy h2 {
    font-size: 20px;
  }
  .exact-solution {
    display: none;
  }
  .exact-proof-grid,
  .exact-service-grid,
  .exact-process-line,
  .exact-why-layout,
  .exact-country-row,
  .exact-stat-row,
  .exact-news-list a,
  .exact-knowledge-row {
    grid-template-columns: 1fr;
  }
  .exact-dashboard,
  .exact-lower {
    display: block;
    border: 0;
  }
  .exact-panel {
    padding: 20px 16px;
  }
  .exact-checks {
    padding-left: 20px;
  }
  .exact-why-layout img {
    height: 220px;
  }
  .exact-footer-main {
    padding: 26px 18px;
  }
}

/* Mobile homepage: keep the client path short and focused. */
@media (max-width: 620px) {
  .home-exact .exact-hero {
    min-height: auto;
  }

  .home-exact .exact-hero-inner {
    min-height: auto;
    padding: 24px 16px 22px;
  }

  .home-exact .exact-hero-copy h1 {
    margin-bottom: 8px;
    font-size: 26px;
    line-height: 1.22;
  }

  .home-exact .exact-hero-copy h2 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.32;
  }

  .home-exact .exact-hero-copy p {
    display: none;
  }

  .home-exact .exact-proof-grid {
    gap: 8px;
    margin-bottom: 16px;
  }

  .home-exact .exact-proof-grid span {
    font-size: 13px;
  }

  .home-exact .exact-proof-grid span:nth-child(n+3) {
    display: none;
  }

  .home-exact .exact-hero-actions {
    display: grid;
    gap: 10px;
  }

  .home-exact .exact-primary,
  .home-exact .exact-text-link {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 14px;
  }

  .home-exact .ghwp-focus-section,
  .home-exact .exact-process,
  .home-exact .exact-why,
  .home-exact .exact-knowledge {
    display: none;
  }

  .home-exact .exact-panel {
    padding: 18px 16px;
  }

  .home-exact .exact-panel-head {
    margin-bottom: 14px;
  }

  .home-exact .exact-panel-head h2 {
    font-size: 19px;
  }

  .home-exact .exact-panel-head span,
  .home-exact .exact-panel-head a {
    display: none;
  }

  .home-exact .exact-service-grid {
    gap: 9px;
  }

  .home-exact .exact-service-grid a {
    min-height: 68px;
    padding: 12px;
    grid-template-columns: 34px 1fr;
  }

  .home-exact .exact-service-grid a:nth-child(n+5) {
    display: none;
  }

  .home-exact .exact-service-grid i {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 11px;
  }

  .home-exact .exact-service-grid strong {
    font-size: 14px;
  }

  .home-exact .exact-service-grid span {
    font-size: 12px;
  }

  .home-exact .exact-country-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-exact .exact-country-row a {
    min-height: 74px;
  }

  .home-exact .exact-country-row a:nth-child(n+5),
  .home-exact .exact-stat-row {
    display: none;
  }

  .home-exact .exact-news-list a {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
  }

  .home-exact .exact-news-list a:nth-child(n+4),
  .home-exact .exact-news-list em {
    display: none;
  }

  .home-exact .home-recent-faq {
    padding: 18px 16px 22px;
  }

  .home-exact .home-faq-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .home-exact .home-faq-grid a {
    min-height: 0;
    padding: 13px;
  }

  .home-exact .home-faq-grid a:nth-child(n+4) {
    display: none;
  }

  .home-exact .home-faq-grid strong,
  .home-exact .home-faq-grid p {
    -webkit-line-clamp: 2;
  }

  .home-exact .footer-brand p,
  .home-exact .footer-inner nav,
  .home-exact .footer-inner address span {
    display: none;
  }

  .home-exact .footer-inner {
    gap: 12px;
    padding: 18px 16px;
  }

  .home-exact .footer-brand {
    align-items: center;
  }
}

/* Final homepage stabilization: keep the three core modules readable on normal PC widths. */
@media (min-width: 901px) and (max-width: 1500px) {
  .exact-dashboard {
    width: auto;
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    zoom: 1;
    border-left: 1px solid var(--exact-line);
    border-right: 1px solid var(--exact-line);
  }

  .exact-services,
  .exact-process,
  .exact-why {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .exact-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .exact-service-grid a {
    min-height: 92px;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 15px;
  }

  .exact-service-grid i {
    width: 38px;
    height: 38px;
  }

  .exact-process-line {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 920px;
    margin: 18px auto 22px;
    gap: 16px;
  }

  .exact-process-line i {
    width: 58px;
    height: 58px;
  }

  .exact-checks {
    max-width: 680px;
    margin: 0 auto;
    padding-left: 0;
  }

  .exact-why-layout {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;
    align-items: center;
  }

  .exact-why-layout img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .exact-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    zoom: 1;
  }

  .exact-services,
  .exact-process,
  .exact-why {
    grid-column: 1 / -1;
    border-right: 0;
  }

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

  .exact-process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .exact-why-layout {
    grid-template-columns: 1fr;
  }
  .exact-checks {
    grid-template-columns: 1fr;
  }
}

/* Website-wide polish: align section pages with the refined homepage style. */
body:not(.home-exact) {
  background: #f6f9fd;
}

body:not(.home-exact) .site-header {
  min-height: 72px;
  padding: 0 clamp(18px, 3.2vw, 36px);
  border-bottom: 1px solid #d6e3f2;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 2px 12px rgba(0, 50, 124, .07);
}

body:not(.home-exact) .brand {
  gap: 10px;
  min-width: 260px;
}

body:not(.home-exact) .brand-logo {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 0;
}

body:not(.home-exact) .brand strong {
  color: #003f97;
  font-size: 20px;
  letter-spacing: .3px;
}

body:not(.home-exact) .brand small {
  color: #164773;
  font-size: 12px;
  font-weight: 800;
}

body:not(.home-exact) .site-nav {
  font-size: 14px;
  font-weight: 800;
}

body:not(.home-exact) .nav-menu {
  gap: clamp(12px, 1.35vw, 22px);
}

body:not(.home-exact) .site-nav a {
  color: #092a5f;
}

body:not(.home-exact) .site-nav a:hover {
  color: #003f97;
}

body:not(.home-exact) .mega-menu {
  border: 1px solid #d8e4f3;
  border-radius: 10px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 42px rgba(0, 50, 124, .12);
}

body:not(.home-exact) .page-hero {
  --hero-art: url("assets/hero-suite.png");
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid #d8e4f3;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(246,250,255,.9) 52%, rgba(221,235,249,.72) 100%),
    var(--hero-art) right center / auto 100% no-repeat,
    #eef5fb;
}

body:not(.home-exact) .page-hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 80px);
  bottom: -42px;
  width: min(360px, 34vw);
  height: min(230px, 22vw);
  border: 1px solid rgba(115, 162, 194, .45);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.76)),
    var(--hero-art) center / cover no-repeat;
  box-shadow: 0 24px 56px rgba(22, 71, 115, .12);
  opacity: .82;
}

body:not(.home-exact) .hero-countries { --hero-art: url("assets/aimeili-hero-country-registry.png"); }
body:not(.home-exact) .hero-products { --hero-art: url("assets/aimeili-hero-product-registry.png"); }
body:not(.home-exact) .hero-regulations { --hero-art: url("assets/aimeili-hero-regulatory-library.png"); }
body:not(.home-exact) .hero-faq { --hero-art: url("assets/aimeili-faq-discussion.png"); }
body:not(.home-exact) .hero-cases { --hero-art: url("assets/aimeili-hero-case-studies.png"); }
body:not(.home-exact) .hero-news { --hero-art: url("assets/aimeili-hero-industry-news.png"); }
body:not(.home-exact) .hero-resources { --hero-art: url("assets/aimeili-hero-resource-center.png"); }
body:not(.home-exact) .hero-about { --hero-art: url("assets/aimeili-hero-about-brand.png"); }
body:not(.home-exact) .hero-contact { --hero-art: url("assets/aimeili-hero-contact-consulting.png"); }
body:not(.home-exact) .hero-reports { --hero-art: url("assets/hero-suite.png"); }

body:not(.home-exact) .page-hero > * {
  position: relative;
  z-index: 1;
}

body:not(.home-exact) .page-hero h1 {
  max-width: 820px;
  color: #00327c;
  font-size: clamp(31px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

body:not(.home-exact) .page-hero p:last-child {
  max-width: 760px;
  color: #31517d;
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.75;
}

body:not(.home-exact) .finder-section,
body:not(.home-exact) .about-directory,
body:not(.home-exact) .hub-crosslinks,
body:not(.home-exact) .article-layout,
body:not(.home-exact) .section {
  max-width: 1280px;
}

body:not(.home-exact) .finder-card,
body:not(.home-exact) .directory-card,
body:not(.home-exact) .content-panel,
body:not(.home-exact) .case-card,
body:not(.home-exact) .faq-tools,
body:not(.home-exact) .article-body,
body:not(.home-exact) .article-aside {
  border-color: #d8e4f3;
  border-radius: 10px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 12px 28px rgba(22, 71, 115, .06);
}

body:not(.home-exact) .finder-card {
  min-height: 238px;
}

body:not(.home-exact) .finder-card strong,
body:not(.home-exact) .directory-card h3,
body:not(.home-exact) .content-panel h2,
body:not(.home-exact) .case-card h3 {
  color: #06306d;
}

body:not(.home-exact) .about-visual-strip img,
body:not(.home-exact) .brand-inline-figure img,
body:not(.home-exact) .brand-image-grid img {
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 34px rgba(22, 71, 115, .1);
}

body:not(.home-exact) .site-footer {
  color: #dcecff;
}

body:not(.home-exact) .site-footer strong {
  color: #fff;
}

body:not(.home-exact) .site-footer span {
  color: #dcecff;
}

.unified-footer {
  display: block;
  color: #dcecff;
  background:
    linear-gradient(135deg, rgba(0, 79, 172, .98), rgba(0, 45, 116, .99)),
    #00327c;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) .62fr .62fr .86fr;
  gap: clamp(26px, 4vw, 56px);
  max-width: 1560px;
  margin: 0 auto;
  padding: 34px clamp(22px, 5vw, 72px) 30px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.footer-brand img {
  width: 86px;
  height: 86px;
  margin-top: 6px;
  object-fit: contain;
}

.footer-brand strong,
.footer-inner nav strong,
.footer-inner address strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: #dcecff;
  font-size: 14px;
  line-height: 1.75;
}

.footer-inner nav,
.footer-inner address {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

.footer-inner a,
.footer-inner span {
  color: #dcecff;
  font-size: 14px;
  line-height: 1.45;
}

.footer-inner a:hover {
  color: #fff;
}

.footer-inner address a:not(.footer-contact-link) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-top: 6px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
}

.footer-inner address .footer-contact-link {
  display: block;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #dcecff;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.footer-wechat {
  display: grid;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
}

.footer-wechat img {
  width: 82px;
  height: 82px;
  padding: 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  object-fit: contain;
}

.footer-wechat span {
  font-size: 12px;
  color: rgba(220, 236, 255, .92);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 15px clamp(22px, 5vw, 72px) 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #dcecff;
  font-size: 13px;
}

/* Final homepage comfort pass. */
.home-exact .site-header {
  padding-left: clamp(20px, 2.4vw, 34px);
  padding-right: clamp(20px, 2.4vw, 34px);
}

.home-exact .brand {
  min-width: 218px;
}

.home-exact .nav-menu {
  gap: clamp(12px, 1.22vw, 22px);
}

.home-exact .site-nav {
  font-size: 14px;
}

.home-exact .site-nav .nav-cta {
  padding: 0 17px !important;
}

.exact-hero-inner,
.exact-dashboard,
.exact-lower,
.exact-footer-main {
  max-width: 1560px;
}

.exact-dashboard,
.exact-lower {
  background: #fff;
}

.home-exact .exact-hero-inner {
  grid-template-columns: minmax(480px, .9fr) minmax(330px, .72fr) 292px;
  gap: 18px;
  max-width: 1320px;
  padding-left: 58px;
  padding-right: 58px;
}

.home-exact .exact-world {
  transform: translateX(-4px);
}

.exact-service-grid a,
.exact-process-line article,
.exact-why-layout li,
.exact-country-row a,
.exact-knowledge-row a {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.exact-service-grid a:hover,
.exact-process-line article:hover,
.exact-why-layout li:hover,
.exact-country-row a:hover,
.exact-knowledge-row a:hover {
  transform: translateY(-2px);
  border-color: #b9cde6;
  box-shadow: 0 14px 30px rgba(0, 50, 124, .09);
}

.exact-knowledge-row img {
  object-position: center;
}

.home-exact .exact-knowledge-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-exact .exact-knowledge-row a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 74px;
  padding: 7px;
}

.home-exact .exact-knowledge-row img {
  grid-row: 1 / span 2;
  width: 58px;
  height: 56px;
  border-radius: 6px;
}

.home-exact .exact-knowledge-row strong,
.home-exact .exact-knowledge-row span {
  grid-column: 2;
  padding: 0;
}

.home-exact .exact-knowledge-row strong {
  align-self: end;
}

.home-exact .exact-knowledge-row span {
  align-self: start;
}

.exact-why-layout figure {
  background: #eef5fb;
}

@media (max-width: 900px) {
  .home-exact .exact-knowledge-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .home-exact .exact-knowledge-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile navigation and narrow Android viewport hardening. */
@media (max-width: 900px) {
  html,
  body,
  .home-exact {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-exact .site-header {
    width: 100%;
    min-height: 68px;
    padding: 8px 14px;
  }

  .home-exact .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .home-exact .brand span {
    min-width: 0;
  }

  .home-exact .nav-toggle {
    position: relative;
    z-index: 71;
    display: block;
    flex: 0 0 42px;
    margin-left: 10px;
  }

  .home-exact .site-nav {
    position: fixed;
    z-index: 70;
    top: 68px;
    left: 10px;
    right: 10px;
    display: none;
    width: auto;
    max-height: calc(100dvh - 82px);
    padding: 10px 14px 14px;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--soft-ink);
    white-space: normal;
    background: rgba(255, 255, 255, .99);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(0, 50, 124, .2);
    -webkit-overflow-scrolling: touch;
  }

  .home-exact .site-nav.is-open {
    display: block;
  }

  .home-exact .nav-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
  }

  .home-exact .nav-menu > li,
  .home-exact .site-nav a {
    width: 100%;
    min-width: 0;
  }

  .home-exact .site-nav a {
    min-height: 42px;
    padding: 9px 4px;
    border-bottom: 1px solid #edf2f7;
  }

  .home-exact .site-nav .nav-cta {
    justify-content: center;
    margin-top: 8px;
    border-bottom: 0;
  }

  .home-exact .exact-hero-inner,
  .home-exact .exact-hero-copy,
  .home-exact .exact-world,
  .home-exact .ghwp-focus-section,
  .home-exact .ghwp-focus-copy,
  .home-exact .ghwp-focus-grid,
  .home-exact .exact-lower,
  .home-exact .exact-panel,
  .home-exact .knowledge-list,
  .home-exact .knowledge-row {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .home-exact h1,
  .home-exact h2,
  .home-exact h3,
  .home-exact p,
  .home-exact a,
  .home-exact span,
  .home-exact strong {
    overflow-wrap: break-word;
  }
}

@media (max-width: 390px) {
  .home-exact .brand small {
    display: none;
  }

  .home-exact .brand-logo {
    width: 44px;
    height: 44px;
  }

  .home-exact .exact-hero-copy h1 {
    font-size: 24px;
  }
}

.exact-footer-main {
  grid-template-columns: minmax(280px, 1fr) .62fr .62fr .9fr .7fr;
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .home-exact .site-nav {
    font-size: 13px;
  }
  .home-exact .brand {
    min-width: 188px;
  }
  .home-exact .brand-logo {
    width: 52px;
    height: 52px;
  }
  .home-exact .brand small {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  body:not(.home-exact) .page-hero {
    padding: 42px 18px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,242,251,.92)),
      #eef5fb;
  }
  body:not(.home-exact) .page-hero::after {
    display: none;
  }
  body:not(.home-exact) .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .exact-footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .exact-footer address span,
  .exact-footer nav a {
    overflow-wrap: anywhere;
  }

  .exact-social > div {
    flex-wrap: wrap;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 18px 24px;
  }

  .footer-brand {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .footer-brand img {
    width: 66px;
    height: 66px;
    margin-top: 4px;
  }

  .footer-inner a,
  .footer-inner span,
  .footer-brand p {
    overflow-wrap: anywhere;
  }

  .footer-wechat img {
    width: 72px;
    height: 72px;
  }

  .footer-bottom {
    padding: 14px 18px 18px;
  }
}

.knowledge-standard {
  max-width: 1180px;
  margin: 26px auto 30px;
  padding: 26px;
  border: 1px solid rgba(115, 162, 194, .24);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,248,252,.96)),
    #fff;
  box-shadow: 0 18px 44px rgba(22, 71, 115, .08);
}

.standard-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  max-width: 860px;
  margin-bottom: 20px;
}

.standard-head h2 {
  margin: 0;
  color: #164773;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.28;
}

.standard-head p {
  margin: 0;
  color: #425466;
  line-height: 1.75;
  font-size: 15px;
}

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

.standard-grid article {
  min-height: 168px;
  padding: 18px;
  border: 1px solid rgba(115, 162, 194, .22);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
}

.standard-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(22, 71, 115, .09);
  color: #164773;
  font-weight: 800;
  font-size: 13px;
}

.standard-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #1A2430;
  font-size: 16px;
}

.standard-grid p {
  margin: 0;
  color: #536273;
  font-size: 14px;
  line-height: 1.7;
}

.standard-grid p a {
  display: inline-block;
  margin: 0 8px 8px 0;
  color: #164773;
  font-weight: 700;
  text-decoration: none;
}

.standard-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(115, 162, 194, .22);
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.source-box-enhanced {
  border-left: 4px solid #73A2C2;
  background:
    linear-gradient(135deg, rgba(238,246,251,.92), rgba(255,255,255,.96));
}

.source-database {
  margin-top: 26px;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid rgba(115, 162, 194, .26);
  background: #fff;
  box-shadow: 0 16px 40px rgba(22, 71, 115, .07);
}

.source-database-head {
  max-width: 840px;
  margin-bottom: 20px;
}

.source-database-head h2 {
  margin: 0 0 10px;
  color: #164773;
  font-size: clamp(22px, 2vw, 28px);
}

.source-database-head p {
  margin: 0;
  color: #536273;
  line-height: 1.75;
}

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

.source-category-grid article {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(115, 162, 194, .24);
  background: linear-gradient(135deg, rgba(247,250,253,.96), rgba(255,255,255,.96));
}

.source-category-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #164773;
  font-size: 15px;
}

.source-category-grid span {
  display: block;
  color: #536273;
  line-height: 1.7;
  font-size: 14px;
}

.source-priority-note {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(22, 71, 115, .06);
  color: #44546a;
  line-height: 1.65;
  font-size: 14px;
}

.source-priority-note strong {
  color: #164773;
  white-space: nowrap;
}

.source-page-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #164773;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(22, 71, 115, .16);
}

.source-priority-note a {
  margin-left: auto;
  color: #164773;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.source-hero {
  min-height: 300px;
}

.source-overview {
  max-width: 1180px;
  margin: 24px auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.source-overview article {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(115, 162, 194, .22);
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 71, 115, .07);
}

.source-overview strong {
  display: block;
  color: #164773;
  font-size: 28px;
  line-height: 1.1;
}

.source-overview span {
  display: block;
  margin-top: 8px;
  color: #536273;
  font-size: 14px;
}

.source-database-layout {
  max-width: 1180px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.source-filter-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(115, 162, 194, .24);
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 40px rgba(22, 71, 115, .07);
}

.source-filter-nav strong {
  color: #164773;
  font-size: 18px;
}

.source-filter-nav p {
  margin: 0 0 8px;
  color: #66768a;
  font-size: 13px;
  line-height: 1.6;
}

.source-filter-nav a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #26384c;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  background: rgba(232, 238, 245, .48);
}

.source-filter-nav a:hover {
  background: rgba(22, 71, 115, .08);
  color: #164773;
}

.source-filter-nav span {
  flex: 0 0 auto;
  color: #164773;
  font-weight: 800;
}

.source-database-main {
  display: grid;
  gap: 22px;
}

.source-use-note {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(115, 162, 194, .24);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(241,247,251,.94));
}

.source-use-note h2 {
  margin: 0 0 10px;
  color: #164773;
  font-size: 24px;
}

.source-use-note p:last-child {
  margin: 0;
  color: #536273;
  line-height: 1.75;
}

.source-group {
  scroll-margin-top: 110px;
}

.source-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 12px;
}

.source-group-head h2 {
  margin: 0;
  color: #164773;
  font-size: 22px;
}

.source-group-head span {
  color: #66768a;
  font-size: 13px;
}

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

.source-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(115, 162, 194, .22);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 71, 115, .045);
}

.source-entry-main h3 {
  margin: 9px 0 8px;
  color: #1A2430;
  font-size: 18px;
  line-height: 1.35;
}

.source-entry-main p {
  margin: 0 0 12px;
  color: #536273;
  font-size: 14px;
  line-height: 1.65;
}

.source-entry-main a {
  color: #164773;
  font-weight: 800;
  text-decoration: none;
}

.source-type {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(22, 71, 115, .08);
  color: #164773;
  font-size: 12px;
  font-weight: 800;
}

.source-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.source-meta div {
  min-width: 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(232, 238, 245, .45);
}

.source-meta dt {
  color: #77869a;
  font-size: 12px;
}

.source-meta dd {
  margin: 5px 0 0;
  color: #26384c;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.source-stars {
  display: inline-flex;
  gap: 3px;
}

.source-stars i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #164773;
}

.ghwp-focus-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: 26px 46px 18px;
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: stretch;
  border-bottom: 1px solid rgba(115, 162, 194, .22);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(242,248,252,.96));
}

.ghwp-focus-copy {
  padding: 22px 22px 20px;
  border-radius: 12px;
  border: 1px solid rgba(115, 162, 194, .22);
  background: rgba(255,255,255,.78);
}

.ghwp-focus-copy h2 {
  margin: 0 0 10px;
  color: #164773;
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 1.28;
}

.ghwp-focus-copy p:last-child {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}

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

.ghwp-focus-grid article {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(115, 162, 194, .22);
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 71, 115, .055);
}

.ghwp-focus-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #164773;
  font-size: 16px;
}

.ghwp-focus-grid span {
  display: block;
  color: #536273;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .knowledge-standard {
    margin: 22px 18px 26px;
    padding: 22px;
  }

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

  .standard-foot {
    flex-direction: column;
  }

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

  .source-overview {
    margin: 22px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-database-layout {
    margin: 0 18px 28px;
    grid-template-columns: 1fr;
  }

  .source-filter-nav {
    position: static;
  }

  .source-entry {
    grid-template-columns: 1fr;
  }

  .ghwp-focus-section {
    padding: 22px 18px 16px;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .knowledge-standard {
    margin: 18px 14px 22px;
    padding: 16px;
    border-radius: 12px;
  }

  .standard-head {
    margin-bottom: 14px;
  }

  .standard-head h2 {
    font-size: 20px;
  }

  .standard-head p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 13px;
    line-height: 1.6;
  }

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

  .standard-grid article {
    min-height: auto;
    padding: 12px;
  }

  .standard-grid span {
    width: 26px;
    height: 26px;
    margin-bottom: 8px;
    font-size: 11px;
  }

  .standard-grid strong {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .standard-grid p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 12px;
    line-height: 1.55;
  }

  .standard-grid p a {
    margin: 0 6px 4px 0;
    font-size: 12px;
  }

  .standard-foot {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 12px;
  }

  .source-database {
    padding: 18px;
  }

  .source-category-grid {
    grid-template-columns: 1fr;
  }

  .source-priority-note {
    flex-direction: column;
  }

  .source-priority-note a {
    margin-left: 0;
  }

  .source-overview {
    margin: 18px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .source-overview article {
    padding: 14px;
  }

  .source-overview strong {
    font-size: 22px;
  }

  .source-overview span {
    font-size: 12px;
  }

  .source-database-layout {
    margin: 0 14px 24px;
    gap: 16px;
  }

  .source-filter-nav,
  .source-use-note {
    padding: 16px;
  }

  .source-group-head {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .source-entry {
    padding: 14px;
    gap: 12px;
  }

  .source-entry-main h3 {
    font-size: 16px;
  }

  .source-entry-main p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

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

  .source-meta div {
    padding: 8px;
  }

  .source-meta div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .source-meta dd {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .ghwp-focus-section {
    padding: 18px 14px 14px;
    gap: 12px;
  }

  .ghwp-focus-copy {
    padding: 16px;
  }

  .ghwp-focus-copy h2 {
    font-size: 20px;
  }

  .ghwp-focus-copy p:last-child {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 13px;
    line-height: 1.6;
  }

  .ghwp-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ghwp-focus-grid article {
    padding: 12px;
  }

  .ghwp-focus-grid strong {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .ghwp-focus-grid span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 12px;
    line-height: 1.55;
  }
}

/* Mobile homepage balance: concise, but still branded and visual. */
@media (max-width: 620px) {
  .home-exact .exact-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(230,242,252,.78)),
      #dcecf8;
  }

  .home-exact .exact-hero::before {
    height: 95px;
    opacity: .28;
  }

  .home-exact .exact-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 16px 20px;
  }

  .home-exact .exact-world {
    display: block;
    min-height: 148px;
    order: 2;
    border: 1px solid rgba(0, 63, 151, .12);
    border-radius: 14px;
    background:
      radial-gradient(circle at 52% 50%, rgba(255,255,255,.72), rgba(255,255,255,.18) 50%, transparent 70%),
      url("assets/aimeili-world-map.png") center / contain no-repeat,
      linear-gradient(135deg, #eef7ff, #dcecf8);
    opacity: 1;
    filter: saturate(1.08) contrast(1.02);
  }

  .home-exact .exact-world::before {
    inset: 12px 16px;
  }

  .home-exact .exact-world::after {
    inset: 18px 20px;
  }

  .home-exact .exact-hero-copy {
    order: 1;
  }

  .home-exact .exact-hero-actions {
    order: 3;
  }

  .home-exact .exact-hero-copy p {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .home-exact .exact-proof-grid span:nth-child(n+3) {
    display: block;
  }

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

  .home-exact .ghwp-focus-section {
    display: grid;
    padding: 14px;
    gap: 10px;
  }

  .home-exact .ghwp-focus-copy {
    padding: 14px;
  }

  .home-exact .ghwp-focus-copy h2 {
    font-size: 18px;
  }

  .home-exact .ghwp-focus-copy p:last-child {
    -webkit-line-clamp: 3;
  }

  .home-exact .ghwp-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-exact .ghwp-focus-grid article:nth-child(n+3) {
    display: none;
  }

  .home-exact .exact-knowledge {
    display: block;
  }

  .home-exact .exact-knowledge-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-exact .exact-knowledge-row a {
    min-height: 92px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 8px;
  }

  .home-exact .exact-knowledge-row a:nth-child(n+5) {
    display: none;
  }

  .home-exact .exact-knowledge-row img {
    width: 48px;
    height: 54px;
  }

  .home-exact .exact-process,
  .home-exact .exact-why {
    display: none;
  }

  .home-exact .unified-footer {
    margin-top: 0;
  }

  .home-exact .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 16px 18px;
  }

  .home-exact .footer-brand {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .home-exact .footer-brand img {
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .home-exact .footer-brand strong {
    margin: 0 0 6px;
    font-size: 17px;
  }

  .home-exact .footer-brand p {
    display: block;
    max-width: none;
    color: #dcecff;
    font-size: 12px;
    line-height: 1.55;
  }

  .home-exact .footer-inner nav {
    display: none;
  }

  .home-exact .footer-inner address {
    display: grid;
    gap: 9px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
  }

  .home-exact .footer-inner address strong {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .home-exact .footer-inner address span {
    display: block;
    color: #eaf4ff;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .home-exact .footer-inner address .footer-contact-link {
    display: block;
    color: #eaf4ff;
    font-size: 13px;
    line-height: 1.45;
  }

  .home-exact .footer-inner address a:not(.footer-contact-link) {
    width: 100%;
    min-height: 40px;
    margin-top: 4px;
    border-color: rgba(255,255,255,.46);
    border-radius: 10px;
  }

  .home-exact .footer-bottom {
    display: grid;
    gap: 4px;
    padding: 12px 16px 16px;
    text-align: center;
  }

  .home-exact .footer-bottom span {
    color: #dcecff;
    font-size: 12px;
  }
}

/* Compact second- and third-level pages on phones only. */
@media (max-width: 620px) {
  body:not(.home-exact) .page-hero {
    padding: 26px 16px 24px;
  }

  body:not(.home-exact) .page-hero .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  body:not(.home-exact) .page-hero h1,
  body:not(.home-exact) .article-hero h1 {
    margin-bottom: 12px;
    font-size: 27px;
    line-height: 1.2;
  }

  body:not(.home-exact) .page-hero p:last-child {
    display: -webkit-box;
    margin-bottom: 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  body:not(.home-exact) .compact-hero p:last-child {
    -webkit-line-clamp: 2;
  }

  body:not(.home-exact) .breadcrumb {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 10px 14px 0;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 12px;
    scrollbar-width: none;
  }

  body:not(.home-exact) .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  body:not(.home-exact) .breadcrumb strong,
  body:not(.home-exact) .breadcrumb span:last-of-type {
    display: none;
  }

  body:not(.home-exact) .knowledge-section,
  body:not(.home-exact) .finder-section,
  body:not(.home-exact) .qa-directory,
  body:not(.home-exact) .news-directory-section,
  body:not(.home-exact) .about-directory,
  body:not(.home-exact) .section {
    padding: 16px 12px 42px;
  }

  body:not(.home-exact) .knowledge-toolbar,
  body:not(.home-exact) .finder-toolbar,
  body:not(.home-exact) .faq-standard-toolbar {
    position: static;
    gap: 10px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 12px;
  }

  body:not(.home-exact) .knowledge-toolbar strong,
  body:not(.home-exact) .finder-toolbar strong {
    font-size: 16px;
  }

  body:not(.home-exact) .knowledge-toolbar span,
  body:not(.home-exact) .finder-toolbar span {
    display: none;
  }

  body:not(.home-exact) .knowledge-filter,
  body:not(.home-exact) .finder-search {
    min-height: 42px;
    font-size: 14px;
  }

  body:not(.home-exact) .country-quick-layout {
    gap: 12px;
  }

  body:not(.home-exact) .country-quick-nav {
    gap: 8px;
    padding: 13px;
    border-radius: 12px;
  }

  body:not(.home-exact) .country-quick-nav > strong {
    font-size: 15px;
  }

  body:not(.home-exact) .country-quick-nav p,
  body:not(.home-exact) .country-quick-nav .quick-group:nth-of-type(n+2) {
    display: none;
  }

  body:not(.home-exact) .quick-group {
    gap: 6px;
    padding-top: 8px;
  }

  body:not(.home-exact) .quick-group span {
    display: none;
  }

  body:not(.home-exact) .quick-group a {
    min-height: 28px;
    padding: 0 9px;
    font-size: 12px;
  }

  body:not(.home-exact) .knowledge-list {
    gap: 9px;
  }

  body:not(.home-exact) .knowledge-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 10px;
    min-height: 0;
    padding: 14px;
    border-radius: 12px;
  }

  body:not(.home-exact) .knowledge-row .row-kicker {
    grid-column: 1 / -1;
    font-size: 11px;
  }

  body:not(.home-exact) .knowledge-row strong {
    grid-column: 1;
    font-size: 15px;
  }

  body:not(.home-exact) .knowledge-row p {
    display: none;
  }

  body:not(.home-exact) .knowledge-row em {
    grid-column: 2;
    justify-self: end;
    align-self: center;
    font-size: 13px;
    white-space: nowrap;
  }

  body:not(.home-exact) .finder-nav {
    display: flex;
    gap: 7px;
    padding: 9px;
    overflow-x: auto;
    border-radius: 12px;
    scrollbar-width: none;
  }

  body:not(.home-exact) .finder-nav::-webkit-scrollbar {
    display: none;
  }

  body:not(.home-exact) .finder-nav strong,
  body:not(.home-exact) .finder-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  body:not(.home-exact) .finder-card,
  body:not(.home-exact) .directory-card,
  body:not(.home-exact) .content-panel,
  body:not(.home-exact) .case-card {
    min-height: 0;
    padding: 15px;
    border-radius: 12px;
  }

  body:not(.home-exact) .finder-card p,
  body:not(.home-exact) .directory-card p,
  body:not(.home-exact) .case-card p {
    -webkit-line-clamp: 2;
  }

  body:not(.home-exact) .article-layout {
    gap: 12px;
    padding: 12px 12px 42px;
  }

  body:not(.home-exact) .article-aside {
    position: sticky;
    z-index: 9;
    top: 70px;
    display: flex;
    gap: 7px;
    padding: 8px;
    overflow-x: auto;
    border-radius: 12px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  body:not(.home-exact) .article-aside::-webkit-scrollbar {
    display: none;
  }

  body:not(.home-exact) .article-aside strong {
    display: none;
  }

  body:not(.home-exact) .article-aside a {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    color: #164773;
    background: #eef5fb;
    font-size: 12px;
    font-weight: 750;
  }

  body:not(.home-exact) .article-aside a[href="#summary"] {
    display: none;
  }

  body:not(.home-exact) .article-body {
    padding: 17px 15px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(22, 71, 115, .06);
  }

  body:not(.home-exact) .article-body > .summary-box {
    display: none;
  }

  body:not(.home-exact) .summary-box,
  body:not(.home-exact) .source-box,
  body:not(.home-exact) .article-mini-cta,
  body:not(.home-exact) .article-cta {
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 10px;
  }

  body:not(.home-exact) .source-box-enhanced li:nth-child(n+3) {
    display: none;
  }

  body:not(.home-exact) .article-body h2 {
    margin-top: 28px;
    font-size: 22px;
  }

  body:not(.home-exact) .article-body h3 {
    margin-top: 24px;
    font-size: 19px;
  }

  body:not(.home-exact) .article-body p,
  body:not(.home-exact) .article-body li {
    font-size: 15px;
    line-height: 1.78;
  }

  body:not(.home-exact) .article-mini-cta .button,
  body:not(.home-exact) .article-cta .button {
    width: 100%;
    justify-content: center;
  }
}

