:root {
  /* Brand */
  --color-primary: #1769aa;
  --color-primary-dark: #125487;
  --color-primary-light: #eaf4fb;
  --color-secondary: #2e9e64;
  --color-secondary-dark: #237a4b;
  --color-secondary-light: #ecf8f1;

  /* Background */
  --color-bg: #ffffff;
  --color-bg-soft: #f8faf9;
  --color-footer: #0f2940;

  /* Text */
  --color-heading: #17212b;
  --color-text: #334155;
  --color-text-secondary: #64748b;
  --color-text-muted: #667085;
  --color-text-inverse: #ffffff;

  /* Border */
  --color-border: #e2e8f0;
  --color-border-strong: #cbd5e1;

  /* Type */
  --font-family-base:
    "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial,
    sans-serif;
  --font-size-body: 1rem;
  --font-size-body-lg: 1.125rem;
  --font-size-small: 0.875rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.5rem;
  --font-size-h2: 1.875rem;
  --font-size-h1: 2.25rem;
  --line-height-heading: 1.25;
  --line-height-body: 1.65;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(15, 41, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 41, 64, 0.1);

  /* Layout */
  --container-max: 1280px;
  --page-padding: 20px;
  --header-height: 72px;
  --control-height: 52px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family-base);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.optimized-image {
  display: block;
  width: 100%;
}

.optimized-image > img {
  width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--color-primary-dark);
  outline-offset: 3px;
}

.container {
  width: min(100% - (var(--page-padding) * 2), var(--container-max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--color-heading);
  color: var(--color-text-inverse);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-secondary {
  background: var(--color-secondary-dark);
  color: var(--color-text-inverse);
}

.btn-secondary:hover {
  background: #1c623c;
}

.btn-outline {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary-light);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--color-text-inverse);
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--color-heading);
  font-weight: 800;
  line-height: 1.2;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  display: block;
  max-width: 190px;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.desktop-nav,
.language-switcher--desktop,
.language-menu--desktop,
.header-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.menu-toggle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-heading);
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--color-primary-light);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  display: grid;
  max-height: calc(100dvh - var(--header-height));
  gap: var(--space-6);
  overflow-y: auto;
  padding-block: var(--space-5) var(--space-6);
}

.mobile-nav {
  display: grid;
}

.mobile-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-heading);
  font-size: 1.0625rem;
  font-weight: 700;
}

.mobile-nav a:hover {
  color: var(--color-primary);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.language-switcher a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  color: var(--color-text-secondary);
  font-size: var(--font-size-small);
  font-weight: 700;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* Keep language choices inside the hamburger menu on mobile. */
.language-switcher--desktop {
  display: none;
}

/* Global language selector: active locales + staged rollout */
.language-menu {
  position: relative;
}

.language-menu summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  background: var(--color-bg);
  color: var(--color-text-secondary);
  font-size: var(--font-size-small);
  font-weight: 800;
  cursor: pointer;
  user-select: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::marker {
  content: "";
}

.language-menu summary:hover,
.language-menu[open] summary {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.language-menu summary:focus-visible {
  outline: 3px solid rgba(23, 105, 170, 0.25);
  outline-offset: 2px;
}

.language-menu__globe {
  position: relative;
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0;
}

.language-menu__globe::before,
.language-menu__globe::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 15px;
  border: 1px solid currentColor;
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.language-menu__globe::after {
  width: 15px;
  height: 1px;
  border: 0;
  background: currentColor;
}

.language-menu__chevron {
  transition: transform 160ms ease;
}

.language-menu[open] .language-menu__chevron {
  transform: rotate(180deg);
}

.language-menu__panel {
  min-width: min(340px, calc(100vw - 32px));
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  box-shadow: var(--shadow-lg);
}

.language-menu--desktop .language-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1100;
}

.language-menu__title,
.language-menu__planned > p {
  margin: 0 0 10px;
  color: var(--color-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

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

.language-menu__active a {
  display: grid;
  min-height: 54px;
  place-content: center;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-heading);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.language-menu__active a small,
.language-menu__planned-item small {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.language-menu__active a:hover,
.language-menu__active a[aria-current="page"] {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.language-menu__planned {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

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

.language-menu__planned-item {
  display: grid;
  min-height: 48px;
  align-content: center;
  gap: 1px;
  padding: 7px 9px;
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  color: var(--color-text-secondary);
}

.language-menu__planned-item strong {
  font-size: 0.82rem;
  font-weight: 800;
}

.language-menu__note {
  margin: 12px 0 0;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.language-menu--mobile {
  width: 100%;
}

.language-menu--mobile summary {
  width: 100%;
  justify-content: space-between;
  border-radius: var(--radius-md);
}

.language-menu--mobile .language-menu__globe {
  margin-right: auto;
}

.language-menu--mobile summary > span:nth-child(2) {
  margin-right: auto;
}

.language-menu--mobile .language-menu__panel {
  width: 100%;
  margin-top: 10px;
  box-shadow: var(--shadow-md);
}

.mobile-cta-group {
  display: grid;
  gap: var(--space-3);
}

/* Main */
.site-main {
  background: var(--color-bg);
}

/* Footer */
.site-footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  gap: var(--space-10);
  padding-block: var(--space-12);
}

.site-footer h2 {
  margin: 0 0 var(--space-4);
  color: #fff;
  font-size: 1.125rem;
  line-height: var(--line-height-heading);
}

.footer-brand h2 {
  font-size: 1.375rem;
}

.footer-brand p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: var(--space-2);
}

.footer-links h2 {
  margin-bottom: var(--space-2);
}

.footer-links a,
.footer-info a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links a:hover,
.footer-info a:hover,
.footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-info dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.footer-info dl > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: var(--space-2);
}

.footer-info dt {
  color: rgba(255, 255, 255, 0.58);
}

.footer-info dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-hours ul {
  display: grid;
  gap: 8px;
  margin: 0 0 var(--space-5);
  padding: 0;
  list-style: none;
}

.footer-hours li {
  display: flex;
  max-width: 300px;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-hours span {
  color: rgba(255, 255, 255, 0.58);
}

.footer-hours strong {
  color: #fff;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-block: var(--space-4) var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--font-size-small);
}

/* Tablet */
@media (min-width: 768px) {
  :root {
    --page-padding: 32px;
    --header-height: 76px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .brand-name {
    max-width: none;
    font-size: 1.125rem;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --page-padding: 40px;
    --header-height: 84px;
  }

  .header-inner {
    gap: var(--space-5);
  }

  .brand-logo {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .brand-name {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .desktop-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 28px);
  }

  .desktop-nav a {
    position: relative;
    padding-block: 12px;
    color: var(--color-heading);
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
  }

  .desktop-nav a:hover {
    color: var(--color-primary-dark);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
  }

  .language-switcher--desktop {
    display: inline-flex;
  }

  .language-switcher--desktop a {
    min-height: 44px;
    padding: 8px 9px;
  }

  .language-menu--desktop {
    display: block;
  }

  .header-cta {
    display: inline-flex;
    min-height: 46px;
    padding-inline: 16px;
    white-space: nowrap;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.75fr 1.15fr 0.9fr;
    gap: var(--space-8);
    padding-block: var(--space-16);
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* Large desktop */
@media (min-width: 1280px) {
  .brand-name {
    font-size: 1.18rem;
  }

  .desktop-nav a {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   Home page
   ========================================================= */
.section {
  padding-block: var(--space-16);
}

.section-soft {
  background: var(--color-bg-soft);
}

.section-blue {
  background: var(--color-primary-light);
}

.section-green {
  background: var(--color-secondary-light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--space-8);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: none;
}

.section-heading h2,
.program-copy h2,
.partner-panel h2,
.representative-copy h2,
.final-cta-card h2 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(1.75rem, 7vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.section-heading p:not(.eyebrow),
.partner-panel p,
.representative-copy > p,
.final-cta-card > p:not(.eyebrow) {
  margin: var(--space-4) 0 0;
  color: var(--color-text-secondary);
  font-size: var(--font-size-body-lg);
}

.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--color-primary-dark);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-lg {
  min-height: 52px;
  padding-inline: 24px;
}

.btn-light {
  background: #fff;
  color: var(--color-primary-dark);
}

.btn-light:hover {
  background: var(--color-primary-light);
}

.button-row {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.button-row--center {
  justify-content: center;
}

/* Hero */
.hero-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(46, 158, 100, 0.1), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}

.hero-grid {
  display: grid;
  gap: var(--space-8);
  padding-block: var(--space-10) var(--space-12);
}

.hero-copy h1 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(2rem, 8.5vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 680px;
  margin: var(--space-5) 0 0;
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-xl);
  background: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.hero-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(15, 41, 64, 0.28), transparent);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-media figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-pill);
  background: rgba(15, 41, 64, 0.6);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

/* Problem */
.problem-grid {
  display: grid;
  gap: var(--space-3);
}

.problem-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.problem-card p {
  margin: 0;
  color: var(--color-heading);
  font-weight: 650;
}

.number-badge {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Outcome cards */
.feature-grid {
  display: grid;
  gap: var(--space-4);
}

.feature-card {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: var(--space-4);
  border-radius: 14px;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.feature-icon--green {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card h3,
.method-card h3,
.story-card h3 {
  margin: 0;
  color: var(--color-heading);
  font-size: 1.125rem;
  line-height: 1.4;
}

.feature-card p,
.method-card p,
.story-card p {
  margin: var(--space-2) 0 0;
  color: var(--color-text-secondary);
}

/* Process */
.process-list {
  position: relative;
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "step title"
    "step note";
  align-items: center;
  column-gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid rgba(23, 105, 170, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
}

.process-step {
  grid-area: step;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
}

.process-list strong {
  grid-area: title;
  color: var(--color-heading);
  font-size: 1.0625rem;
}

.process-list small {
  grid-area: note;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

/* Program */
.program-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.program-copy {
  padding: var(--space-6);
}

.program-lead {
  margin: var(--space-5) 0 0;
  color: var(--color-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text);
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.program-highlight {
  display: grid;
  align-content: center;
  min-height: 240px;
  padding: var(--space-8);
  background: linear-gradient(
    145deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  color: #fff;
}

.program-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  font-weight: 900;
}

.program-highlight p {
  margin: 0 0 var(--space-2);
  color: rgba(255, 255, 255, 0.76);
}

.program-highlight strong {
  font-size: 1.25rem;
  line-height: 1.5;
}

/* Education methods */
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.method-card {
  min-width: 0;
  padding: var(--space-5) var(--space-4);
  border: 1px solid rgba(46, 158, 100, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.method-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: var(--space-3);
  border-radius: 14px;
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
  font-weight: 900;
}

.method-card h3 {
  font-size: 1rem;
}

.method-card p {
  font-size: 0.875rem;
}

/* Stories */
.story-grid {
  display: grid;
  gap: var(--space-5);
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-card-body {
  padding: var(--space-5);
}

.tag {
  display: inline-flex;
  margin-bottom: var(--space-3);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.tag--green {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}

/* Partner */
.partner-section {
  padding-block: 0;
}

.partner-panel {
  display: grid;
  gap: var(--space-6);
  padding-block: var(--space-10);
  padding-inline: var(--space-6);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-primary-dark), #0e446f);
  color: #fff;
}

.partner-panel h2 {
  color: #fff;
}

.partner-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

/* Representative */
.representative-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

.representative-photo {
  overflow: hidden;
  max-width: 520px;
  border-radius: var(--radius-xl);
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-md);
}

.representative-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-5);
}

.expertise-list span {
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.8125rem;
  font-weight: 700;
}

.representative-copy blockquote {
  margin: var(--space-6) 0 0;
  padding: var(--space-5);
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--color-secondary-light);
  color: var(--color-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.65;
}

.representative-copy .text-link {
  margin-top: var(--space-5);
}

/* FAQ */
.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--color-heading);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--color-text-secondary);
}

/* Final CTA */
.final-cta-section {
  padding-top: var(--space-12);
}

.final-cta-card {
  padding: var(--space-8) var(--space-5);
  border: 1px solid rgba(23, 105, 170, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(46, 158, 100, 0.15),
      transparent 32%
    ),
    var(--color-primary-light);
  text-align: center;
}

.final-cta-card > p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
}

/* Tablet enhancements */
@media (min-width: 768px) {
  .section {
    padding-block: var(--space-20);
  }

  .hero-grid {
    padding-block: var(--space-12) var(--space-16);
  }

  .hero-actions,
  .button-row {
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
  }

  .button-row--center {
    justify-content: center;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: auto;
  }

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

  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
  }

  .process-list::before {
    position: absolute;
    top: 42px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: rgba(23, 105, 170, 0.18);
    content: "";
  }

  .process-list li {
    grid-template-columns: 1fr;
    grid-template-areas: "step" "title" "note";
    justify-items: center;
    min-height: 176px;
    padding: var(--space-5) var(--space-3);
    text-align: center;
  }

  .process-step {
    z-index: 1;
    margin-bottom: var(--space-2);
  }

  .program-panel {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }

  .program-copy {
    padding: var(--space-10);
  }

  .program-highlight {
    min-height: 100%;
  }

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

  .section-heading--split {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .partner-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-inline: var(--space-10);
  }

  .representative-grid {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .final-cta-card {
    padding: var(--space-12) var(--space-8);
  }
}

/* Desktop home layout */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    min-height: calc(720px - var(--header-height));
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 4vw, 4rem);
  }

  .hero-lead {
    font-size: 1.125rem;
  }

  .hero-media img {
    aspect-ratio: 5 / 4;
  }

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

  .story-card img {
    aspect-ratio: 16 / 9;
  }

  .feature-card,
  .story-card,
  .problem-card {
    transition:
      transform 160ms ease,
      box-shadow 160ms ease,
      border-color 160ms ease;
  }

  .feature-card:hover,
  .story-card:hover,
  .problem-card:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 105, 170, 0.2);
    box-shadow: var(--shadow-md);
  }

  .program-copy h2,
  .section-heading h2,
  .partner-panel h2,
  .representative-copy h2,
  .final-cta-card h2 {
    font-size: 2.5rem;
  }
}

.method-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* 14.1 G-Bridge Glocal Ecosystem */
.ecosystem-section {
  background:
    radial-gradient(circle at 0 0, rgba(23, 105, 170, 0.08), transparent 30%),
    radial-gradient(
      circle at 100% 100%,
      rgba(46, 158, 100, 0.08),
      transparent 34%
    ),
    var(--color-bg-soft);
}

.ecosystem-heading > p:last-child {
  max-width: 760px;
  margin-inline: auto;
}

.ecosystem-grid {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-8) 0 0;
  padding: 0;
  list-style: none;
}

.ecosystem-card {
  position: relative;
  min-width: 0;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.ecosystem-step {
  display: inline-flex;
  min-width: 42px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  padding-inline: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: var(--font-size-small);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ecosystem-card:nth-child(even) .ecosystem-step {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}

.ecosystem-card strong {
  display: block;
  color: var(--color-heading);
  font-size: 1.25rem;
  line-height: 1.3;
}

.ecosystem-card p {
  margin: var(--space-3) 0 0;
  color: var(--color-text-secondary);
}

.ecosystem-actions {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.ecosystem-actions .btn {
  width: 100%;
}

.ecosystem-note {
  max-width: 860px;
  margin: var(--space-5) auto 0;
  padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--color-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.ecosystem-note strong {
  color: var(--color-heading);
}

@media (min-width: 768px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-card:last-child {
    grid-column: 1 / -1;
  }

  .ecosystem-actions {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }

  .ecosystem-actions .btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-3);
  }

  .ecosystem-card:last-child {
    grid-column: auto;
  }

  .ecosystem-card {
    min-height: 252px;
    padding: var(--space-5);
    transition:
      transform 160ms ease,
      box-shadow 160ms ease,
      border-color 160ms ease;
  }

  .ecosystem-card:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 105, 170, 0.2);
    box-shadow: var(--shadow-md);
  }
}

/* 14.5 Jobs routing */
.jobs-route-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  max-width: 920px;
  margin: var(--space-5) auto 0;
  padding: var(--space-5);
  border: 1px solid rgba(23, 105, 170, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}
.jobs-route-strip__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.jobs-route-strip__body strong {
  display: block;
  color: var(--color-heading);
  font-size: 1rem;
}
.jobs-route-strip__body p {
  margin: 6px 0 0;
  color: var(--color-text-secondary);
  font-size: 0.94rem;
  line-height: 1.65;
}
@media (min-width: 768px) {
  .ecosystem-actions {
    grid-template-columns: repeat(3, max-content);
  }
}
@media (max-width: 479px) {
  .jobs-route-strip {
    grid-template-columns: 1fr;
  }
  .jobs-route-strip__badge {
    width: max-content;
  }
}

/* 14.7 International Student Bridge */
.student-spotlight {
  background: linear-gradient(
    135deg,
    rgba(23, 105, 170, 0.07),
    rgba(46, 158, 100, 0.08)
  );
  border-top: 1px solid rgba(23, 105, 170, 0.08);
  border-bottom: 1px solid rgba(46, 158, 100, 0.1);
}
.student-spotlight-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.student-spotlight-copy h2 {
  margin: 6px 0 12px;
  color: var(--color-heading);
  font-size: clamp(1.7rem, 6vw, 2.45rem);
  line-height: 1.25;
}
.student-spotlight-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--color-text-secondary);
}
.student-spotlight-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.student-mini-flow {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.student-mini-flow li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(23, 105, 170, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}
.student-mini-flow span {
  display: inline-grid;
  width: 40px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
}
.student-mini-flow li:nth-child(even) span {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}
.student-mini-flow strong {
  color: var(--color-heading);
  font-size: 0.98rem;
}
.student-route-callout {
  padding: 30px 0;
  background: #fff;
}
.student-route-card {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(23, 105, 170, 0.16);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-xl);
  background: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}
.student-route-card--green {
  border-color: rgba(46, 158, 100, 0.2);
  border-left-color: var(--color-secondary);
  background: var(--color-secondary-light);
}
.student-route-card h2 {
  margin: 4px 0 8px;
  color: var(--color-heading);
  font-size: clamp(1.35rem, 5vw, 1.8rem);
}
.student-route-card p:not(.eyebrow) {
  margin: 0;
  color: var(--color-text-secondary);
}
.student-route-actions {
  display: grid;
  gap: 10px;
}
@media (min-width: 768px) {
  .student-spotlight-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .student-spotlight-actions {
    grid-template-columns: repeat(2, max-content);
  }
  .student-route-card {
    grid-template-columns: 1fr auto;
  }
  .student-route-actions {
    grid-template-columns: repeat(2, max-content);
  }
}

/* 14.8 navigation density */
@media (min-width: 1024px) and (max-width: 1279px) {
  .desktop-nav {
    gap: clamp(8px, 1vw, 14px);
  }
  .desktop-nav a {
    font-size: 0.88rem;
  }
  .header-inner {
    gap: 12px;
  }
  .brand-name {
    max-width: 165px;
    font-size: 0.98rem;
  }
}

/* 14.9 G-Bridge Network */
.network-page-hero {
  padding: clamp(72px, 9vw, 116px) 0 56px;
  background: linear-gradient(
    135deg,
    rgba(23, 105, 170, 0.08),
    rgba(46, 158, 100, 0.08)
  );
  border-bottom: 1px solid rgba(23, 105, 170, 0.1);
}
.network-page-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.network-page-hero h1 {
  margin: 8px 0 16px;
  color: var(--color-heading);
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.12;
}
.network-page-hero p {
  color: var(--color-text-secondary);
}
.network-page-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.network-page-scope {
  margin: 18px 0 0;
  font-size: 0.94rem;
}
.network-page-note {
  padding: 24px;
  border: 1px solid rgba(23, 105, 170, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}
.network-page-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-heading);
  font-size: 1.08rem;
}
.network-category-grid,
.network-flow-grid {
  display: grid;
  gap: 14px;
}
.network-category-grid article,
.network-flow-grid li {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(23, 105, 170, 0.13);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.network-category-grid span,
.network-flow-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
}
.network-category-grid article:nth-child(even) span,
.network-flow-grid li:nth-child(even) span {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}
.network-category-grid h3,
.network-flow-grid h3 {
  margin: 14px 0 8px;
  color: var(--color-heading);
}
.network-category-grid p,
.network-flow-grid p {
  margin: 0;
  color: var(--color-text-secondary);
}
.network-flow-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}
.network-governance-grid {
  display: grid;
  gap: 16px;
}
.network-governance-grid article {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 105, 170, 0.14);
}
.network-public {
  background: var(--color-primary-light);
}
.network-private {
  background: var(--color-secondary-light);
}
.network-governance-grid h3 {
  margin-top: 0;
  color: var(--color-heading);
}
.network-governance-grid ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-secondary);
}
.network-governance-grid li + li {
  margin-top: 8px;
}
.network-security-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  background: #fff7e8;
  color: var(--color-text-secondary);
}
.network-connect {
  padding-top: 0;
}
.network-connect-card {
  padding: clamp(28px, 6vw, 48px);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--color-footer), #163e5d);
  color: #fff;
  text-align: center;
}
.network-connect-card h2 {
  margin: 8px 0 12px;
  color: #fff;
}
.network-connect-card > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.84);
}
.network-connect-card .eyebrow {
  color: #bfe8d0;
}
.network-connect-card .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.network-connect-card .btn-outline:hover {
  background: #fff;
  color: var(--color-footer);
}
.network-summary {
  padding-top: 28px;
  padding-bottom: 28px;
  background: #fff;
}
.network-summary-card {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(23, 105, 170, 0.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(234, 244, 251, 0.8),
    rgba(236, 248, 241, 0.8)
  );
}
.network-summary-card h2 {
  margin: 4px 0 8px;
  color: var(--color-heading);
  font-size: clamp(1.3rem, 4vw, 1.7rem);
}
.network-summary-card p:not(.eyebrow) {
  margin: 0;
  color: var(--color-text-secondary);
}
.network-context-link {
  padding-top: 16px;
  padding-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .network-page-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .network-page-actions {
    grid-template-columns: repeat(2, max-content);
  }
  .network-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .network-flow-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .network-governance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .network-summary-card {
    grid-template-columns: 1fr auto;
  }
  .network-summary-card .btn {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .network-category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 14.11 Dual Brand Architecture */
.brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}
.brand-subname {
  display: block;
  color: var(--color-secondary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.footer-subbrand {
  margin: 0 0 8px !important;
  color: #bfe8d0 !important;
  font-size: 0.86rem;
}
.footer-subbrand strong {
  color: #fff;
}
.dual-brand-section {
  background: linear-gradient(180deg, #fff, rgba(234, 244, 251, 0.62));
}
.dual-brand-grid,
.dual-role-grid,
.center-function-grid {
  display: grid;
  gap: 16px;
}
.dual-brand-card,
.dual-role-grid article,
.center-function-grid article {
  padding: 24px;
  border: 1px solid rgba(23, 105, 170, 0.14);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.dual-brand-card--center {
  border-color: rgba(46, 158, 100, 0.22);
  background: linear-gradient(145deg, #fff, rgba(236, 248, 241, 0.75));
}
.dual-brand-label,
.center-role-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.dual-brand-card--center .dual-brand-label,
.center-role-card--field .center-role-badge {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}
.dual-brand-card h3,
.dual-role-grid h3,
.center-function-grid h3 {
  margin: 14px 0 8px;
  color: var(--color-heading);
}
.dual-brand-card p,
.dual-role-grid p,
.center-function-grid p {
  color: var(--color-text-secondary);
}
.dual-brand-card ul {
  margin: 16px 0 18px;
  padding-left: 1.2rem;
  color: var(--color-text-secondary);
}
.dual-brand-card li + li {
  margin-top: 6px;
}
.text-link {
  font-weight: 800;
  color: var(--color-primary-dark);
}
.text-link:hover {
  text-decoration: underline;
}
.dual-role-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
}
.dual-role-grid article:nth-child(2) > span {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}
.dual-role-note {
  margin: 18px 0 22px;
  padding: 17px 19px;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--color-text-secondary);
}
.center-service-strip {
  padding: 22px 0;
  background: linear-gradient(
    90deg,
    var(--color-primary-light),
    var(--color-secondary-light)
  );
  border-top: 1px solid rgba(23, 105, 170, 0.08);
  border-bottom: 1px solid rgba(46, 158, 100, 0.12);
}
.center-service-strip__inner {
  display: grid;
  gap: 16px;
  align-items: center;
}
.center-service-strip h2 {
  margin: 4px 0 6px;
  color: var(--color-heading);
  font-size: clamp(1.25rem, 4vw, 1.7rem);
}
.center-service-strip p:not(.eyebrow) {
  margin: 0;
  color: var(--color-text-secondary);
}
.center-hero {
  padding: clamp(72px, 9vw, 116px) 0 56px;
  background: linear-gradient(
    135deg,
    rgba(23, 105, 170, 0.09),
    rgba(46, 158, 100, 0.1)
  );
  border-bottom: 1px solid rgba(23, 105, 170, 0.1);
}
.center-hero__grid {
  display: grid;
  gap: 26px;
  align-items: center;
}
.center-hero h1 {
  margin: 8px 0 16px;
  color: var(--color-heading);
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.1;
}
.center-hero__lead {
  font-size: clamp(1.04rem, 2.5vw, 1.22rem);
  color: var(--color-text-secondary);
}
.center-hero__actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.center-legal-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}
.center-hero__panel {
  padding: 28px;
  border: 1px solid rgba(46, 158, 100, 0.18);
  border-radius: var(--radius-2xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.center-panel-kicker {
  display: inline-block;
  color: var(--color-secondary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.center-hero__panel h2 {
  margin: 12px 0 10px;
  color: var(--color-heading);
}
.center-hero__panel p {
  margin: 0;
  color: var(--color-text-secondary);
}
.center-function-grid article {
  position: relative;
}
.center-function-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 30px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
}
.center-function-grid article:nth-child(even) > span {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}
.center-role-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}
.center-role-card {
  padding: 26px;
  border: 1px solid rgba(23, 105, 170, 0.15);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.center-role-card--field {
  border-color: rgba(46, 158, 100, 0.2);
}
.center-role-card h3 {
  margin: 14px 0;
  color: var(--color-heading);
}
.center-role-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-secondary);
}
.center-role-card li + li {
  margin-top: 8px;
}
.center-role-arrow {
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 900;
}
.center-region-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}
.center-region-grid h2 {
  margin: 8px 0 12px;
  color: var(--color-heading);
}
.center-region-grid p {
  color: var(--color-text-secondary);
}
.center-region-note {
  padding: 24px;
  border: 1px solid rgba(23, 105, 170, 0.15);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, var(--color-primary-light));
}
.center-region-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-heading);
}
.center-specialist-card {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(46, 158, 100, 0.16);
  border-radius: var(--radius-xl);
  background: #fff;
}
.center-specialist-card h2 {
  margin: 6px 0 10px;
  color: var(--color-heading);
}
.center-specialist-card p:not(.eyebrow) {
  margin: 0;
  color: var(--color-text-secondary);
}
.center-bottom-cta {
  padding: 0 0 clamp(64px, 8vw, 96px);
}
.center-bottom-card {
  padding: clamp(30px, 6vw, 52px);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--color-footer), #174b68);
  color: #fff;
  text-align: center;
}
.center-bottom-card h2 {
  margin: 8px 0 12px;
  color: #fff;
}
.center-bottom-card > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.84);
}
.center-bottom-card .eyebrow {
  color: #bfe8d0;
}
.center-bottom-card .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.center-bottom-card .btn-outline:hover {
  background: #fff;
  color: var(--color-footer);
}
@media (min-width: 768px) {
  .dual-brand-grid,
  .dual-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .center-function-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .center-service-strip__inner {
    grid-template-columns: 1fr auto;
  }
  .center-hero__actions {
    grid-template-columns: repeat(2, max-content);
  }
  .center-role-grid {
    grid-template-columns: 1fr auto 1fr;
  }
  .center-region-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .center-specialist-card {
    grid-template-columns: 1fr auto;
  }
}
@media (min-width: 1024px) {
  .center-hero__grid {
    grid-template-columns: 1.12fr 0.88fr;
  }
  .center-function-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .brand-subname {
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .brand-name {
    font-size: 0.9rem;
  }
  .brand-subname {
    font-size: 0.64rem;
  }
  .center-role-arrow {
    transform: rotate(90deg);
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .brand-text {
    max-width: 165px;
  }
  .brand-name {
    white-space: normal !important;
  }
  .brand-subname {
    white-space: nowrap;
  }
}

/* 14.12 Professional Collaboration */
.pro-hero {
  padding: clamp(54px, 8vw, 94px) 0;
  background: linear-gradient(140deg, #f7fbff 0%, #eef8f2 100%);
}
.pro-hero__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}
.pro-hero h1 {
  margin: 10px 0 18px;
  color: var(--color-heading);
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  line-height: 1.08;
}
.pro-hero__lead {
  max-width: 760px;
  color: var(--color-text-secondary);
  font-size: 1.08rem;
}
.pro-principle {
  padding: 28px;
  border: 1px solid rgba(23, 105, 170, 0.16);
  border-radius: var(--radius-2xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.pro-principle > span {
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.pro-principle h2 {
  margin: 12px 0;
  color: var(--color-heading);
}
.pro-principle p {
  margin: 0;
  color: var(--color-text-secondary);
}
.pro-field-grid,
.pro-flow-grid {
  display: grid;
  gap: 16px;
}
.pro-field-grid article,
.pro-flow-grid article {
  padding: 24px;
  border: 1px solid rgba(23, 105, 170, 0.13);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pro-field-grid article > span,
.pro-flow-grid article > b {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
}
.pro-field-grid article:nth-child(even) > span,
.pro-flow-grid article:nth-child(even) > b {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}
.pro-field-grid h3,
.pro-flow-grid h3 {
  margin: 14px 0 8px;
  color: var(--color-heading);
}
.pro-field-grid p,
.pro-flow-grid p {
  margin: 0;
  color: var(--color-text-secondary);
}
.pro-boundary {
  display: grid;
  gap: 24px;
  align-items: start;
}
.pro-boundary h2 {
  margin: 8px 0 14px;
  color: var(--color-heading);
}
.pro-boundary ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-secondary);
}
.pro-boundary li + li {
  margin-top: 10px;
}
.pro-boundary aside {
  padding: 24px;
  border: 1px solid rgba(46, 158, 100, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, var(--color-secondary-light));
}
.pro-boundary aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-heading);
}
.pro-boundary aside p {
  margin: 0;
  color: var(--color-text-secondary);
}
.pro-system {
  display: grid;
  gap: 10px;
  align-items: stretch;
}
.pro-system article {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(23, 105, 170, 0.13);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
}
.pro-system strong {
  color: var(--color-heading);
}
.pro-system span {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}
.pro-system i {
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-style: normal;
  font-weight: 900;
}
.pro-cta {
  padding: 0 0 clamp(64px, 8vw, 96px);
}
.pro-cta__card {
  padding: clamp(30px, 6vw, 52px);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--color-footer), #174b68);
  color: #fff;
  text-align: center;
}
.pro-cta__card h2 {
  margin: 8px 0 12px;
  color: #fff;
}
.pro-cta__card > p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.84);
}
.pro-cta__card .eyebrow {
  color: #bfe8d0;
}
.pro-cta__card .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.partner-professional-callout {
  padding: 0 0 clamp(48px, 7vw, 80px);
}
.partner-professional-card {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(46, 158, 100, 0.16);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, var(--color-secondary-light));
}
.partner-professional-card h2 {
  margin: 6px 0 10px;
  color: var(--color-heading);
}
.partner-professional-card p:not(.eyebrow) {
  margin: 0;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .pro-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pro-flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pro-boundary {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .partner-professional-card {
    grid-template-columns: 1fr auto;
  }
  .pro-system {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  }
}
@media (min-width: 1024px) {
  .pro-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .pro-field-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .pro-system i {
    transform: rotate(90deg);
  }
}

/* =========================================================
   14.13 UX consolidation: compact navigation + quick starts
   ========================================================= */
@media (min-width: 1024px) {
  .desktop-nav {
    gap: clamp(12px, 1.45vw, 22px);
  }
  .desktop-nav > a[aria-current="page"] {
    color: var(--color-primary-dark);
  }
  .desktop-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
  }
  .nav-more {
    position: relative;
  }
  .nav-more > summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 18px 12px 10px;
    color: var(--color-heading);
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
  }
  .nav-more > summary::-webkit-details-marker {
    display: none;
  }
  .nav-more > summary::after {
    content: "⌄";
    position: absolute;
    right: 2px;
    top: 12px;
    color: var(--color-muted);
  }
  .nav-more[open] > summary {
    color: var(--color-primary-dark);
  }
  .nav-more__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1200;
    display: grid;
    min-width: 210px;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: var(--color-bg);
    box-shadow: var(--shadow-lg);
  }
  .nav-more__panel a {
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 0.93rem;
  }
  .nav-more__panel a::after {
    display: none;
  }
  .nav-more__panel a:hover,
  .nav-more__panel a[aria-current="page"] {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
  }
}
.quick-paths {
  padding: 26px 0 34px;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}
.quick-paths__intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.quick-paths__intro .eyebrow {
  margin: 0;
}
.quick-paths__intro h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}
.quick-paths__grid {
  display: grid;
  gap: 12px;
}
.quick-path-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.quick-path-card h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
}
.quick-path-card p {
  margin: 0 0 12px;
  color: var(--color-body);
  font-size: 0.95rem;
}
.quick-path-card__link {
  margin-top: auto;
  color: var(--color-primary-dark);
  font-weight: 800;
}
.quick-path-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mobile-nav a[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 800;
}
@media (min-width: 768px) {
  .quick-paths__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .quick-paths__intro {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .desktop-nav {
    gap: 9px;
  }
  .desktop-nav > a,
  .nav-more > summary {
    font-size: 0.86rem;
  }
}

/* =========================================================
   Build 14.14 — Homepage Dashboard Integration
   Compact visual dashboard based on the approved reference image.
   ========================================================= */
.dash-home {
  background: #fff;
}
.dash-hero {
  padding: 34px 0 18px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.dash-hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}
.dash-kicker {
  margin: 0 0 10px;
  color: #17212b;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.dash-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: #125aa0;
}
.dash-hero h1 span {
  color: #2e9e64;
}
.dash-lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
}
.dash-hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.dash-hero-actions .btn {
  justify-content: space-between;
  min-height: 54px;
}
.dash-contact {
  border-color: #2e9e64;
  color: #237a4b;
}
.dash-contact:hover {
  background: #ecf8f1;
}
.dash-hero-visual {
  position: relative;
}
.dash-hero-photo {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(15, 41, 64, 0.13);
}
.dash-hero-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.dash-rep-card {
  position: absolute;
  right: 16px;
  bottom: -22px;
  display: flex;
  width: min(84%, 340px);
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid rgba(23, 105, 170, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 28px rgba(15, 41, 64, 0.14);
}
.dash-rep-card picture {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  border-radius: 50%;
}
.dash-rep-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dash-rep-card strong,
.dash-rep-card small {
  display: block;
}
.dash-rep-card strong {
  color: #17212b;
  font-size: 0.98rem;
}
.dash-rep-card small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.4;
}
.dash-section {
  padding: 26px 0;
}
.dash-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.32rem, 3.5vw, 1.85rem);
  letter-spacing: -0.035em;
  color: #17212b;
}
.dash-quick {
  padding-top: 42px;
}
.dash-quick-grid,
.dash-values-grid {
  display: grid;
  gap: 12px;
}
.dash-card {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dce7f1;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(15, 41, 64, 0.06);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}
.dash-card:hover {
  transform: translateY(-2px);
  border-color: #9fc5e4;
  box-shadow: 0 10px 24px rgba(15, 41, 64, 0.1);
}
.dash-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 14px;
  background: #edf6ff;
  color: #1769aa;
  font-weight: 900;
  font-size: 1.1rem;
}
.dash-card:nth-child(2) .dash-icon {
  background: #ecf8f1;
  color: #237a4b;
}
.dash-card:nth-child(3) .dash-icon {
  background: #f2effc;
  color: #6c4bc3;
}
.dash-card strong,
.dash-card small {
  display: block;
}
.dash-card strong {
  color: #17212b;
  font-size: 1.03rem;
  line-height: 1.32;
}
.dash-card small {
  margin-top: 5px;
  color: #667085;
  line-height: 1.45;
}
.dash-arrow {
  margin-left: auto;
  color: #1769aa;
  font-weight: 900;
}
.dash-card--value {
  min-height: 126px;
  align-items: flex-start;
  flex-direction: column;
}
.dash-card--value .dash-arrow {
  display: none;
}
.dash-card--value .dash-icon {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}
.dash-methods-wrap {
  padding-top: 12px;
}
.dash-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.dash-method {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 41, 64, 0.045);
}
.dash-method span {
  color: #1769aa;
  font-size: 1.8rem;
}
.dash-method strong {
  font-size: 0.92rem;
  color: #17212b;
}
.dash-ecosystem {
  padding-top: 16px;
}
.dash-eco-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(124px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: thin;
}
.dash-eco-flow li {
  position: relative;
}
.dash-eco-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 42%;
  color: #2e9e64;
  font-weight: 900;
}
.dash-eco-flow a {
  display: grid;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  padding: 15px;
  border: 1.5px solid #89bde2;
  border-radius: 999px;
  background: #fff;
  text-align: center;
}
.dash-eco-flow span {
  color: #1769aa;
  font-size: 0.72rem;
  font-weight: 800;
}
.dash-eco-flow strong {
  margin-top: 4px;
  color: #17212b;
}
.dash-eco-flow small {
  margin-top: 3px;
  color: #667085;
  font-size: 0.72rem;
}
.dash-center-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, #eaf4fb, #f2f9ff);
  border: 1px solid #d7e9f7;
}
.dash-center-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  background: #1769aa;
  color: #fff;
  font-size: 1.65rem;
}
.dash-center-banner strong,
.dash-center-banner small {
  display: block;
}
.dash-center-banner strong {
  font-size: 1.32rem;
  color: #125487;
}
.dash-center-banner small {
  margin-top: 3px;
  color: #334155;
  line-height: 1.45;
}
.dash-center-banner b {
  grid-column: 2;
  color: #1769aa;
  font-size: 0.86rem;
}
.dash-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dash-heading-row h2 {
  margin-bottom: 0;
}
.dash-heading-row a {
  color: #1769aa;
  font-weight: 800;
}
.dash-story-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.dash-story-grid a {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 41, 64, 0.05);
}
.dash-story-grid picture {
  display: block;
  overflow: hidden;
}
.dash-story-grid img {
  width: 100%;
  aspect-ratio: 16/8.8;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.dash-story-grid a:hover img {
  transform: scale(1.02);
}
.dash-story-grid strong {
  display: block;
  padding: 12px 14px;
  color: #17212b;
  font-size: 0.92rem;
}
.bridge-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.bridge-chip {
  display: grid;
  min-height: 118px;
  align-content: center;
  justify-items: center;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}
.bridge-chip > span {
  color: #1769aa;
  font-size: 1.8rem;
}
.bridge-chip strong {
  margin-top: 5px;
  color: #17212b;
}
.bridge-chip small {
  margin-top: 3px;
  color: #667085;
  font-size: 0.78rem;
}
.dash-jobs-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eff7ff, #f0fbf5);
  border: 1px solid #d8e9f2;
}
.dash-jobs-card h2 {
  margin-bottom: 6px;
}
.dash-jobs-card p {
  margin: 0;
}
.dash-jobs-actions {
  display: grid;
  gap: 10px;
}
.dash-rep-section {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 20px;
  background: #f8faf9;
  border: 1px solid #e6ece8;
}
.dash-rep-photo {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(15, 41, 64, 0.1);
}
.dash-rep-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dash-rep-section h2 {
  margin-bottom: 4px;
}
.dash-rep-section p {
  margin: 6px 0;
}
.dash-rep-tags {
  color: #237a4b;
  font-weight: 700;
  font-size: 0.9rem;
}
.dash-final {
  padding: 22px 0 30px;
}
.dash-final-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(110deg, #125487, #1769aa);
  color: #fff;
}
.dash-final-inner strong {
  font-size: 1.15rem;
  line-height: 1.45;
}
.dash-final .btn-light {
  background: #fff;
  color: #237a4b;
}
@media (min-width: 720px) {
  .dash-hero {
    padding: 54px 0 30px;
  }
  .dash-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 38px;
  }
  .dash-hero-actions {
    grid-template-columns: 1fr 1fr;
  }
  .dash-quick {
    padding-top: 34px;
  }
  .dash-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dash-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .dash-methods {
    grid-template-columns: repeat(4, 1fr);
  }
  .dash-story-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bridge-chip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .dash-jobs-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
  .dash-rep-section {
    grid-template-columns: 112px 1fr;
    padding: 26px;
  }
  .dash-rep-photo {
    width: 112px;
    height: 112px;
  }
  .dash-final-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .dash-section {
    padding: 30px 0;
  }
  .dash-hero-grid {
    min-height: 480px;
  }
  .dash-quick-grid .dash-card {
    min-height: 136px;
  }
  .dash-story-grid img {
    aspect-ratio: 16/8.3;
  }
  .dash-rep-card {
    right: 28px;
    bottom: -24px;
    width: 360px;
  }
  .dash-rep-card picture {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
}
@media (max-width: 719px) {
  .dash-hero-visual {
    margin-bottom: 16px;
  }
  .dash-rep-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -18px 12px 0 auto;
  }
  .dash-eco-flow {
    padding-bottom: 8px;
  }
  .dash-eco-flow a {
    min-width: 126px;
  }
  .dash-center-banner {
    grid-template-columns: auto 1fr;
  }
  .dash-center-banner b {
    grid-column: 1/-1;
  }
  .dash-rep-section {
    grid-template-columns: 80px 1fr;
  }
  .dash-rep-photo {
    width: 80px;
    height: 80px;
  }
  .dash-rep-section p:not(.dash-rep-tags) {
    grid-column: 1/-1;
  }
  .dash-rep-section .text-link {
    grid-column: 1/-1;
  }
}

/* =========================================================
   Build 14.15 — Four-Chapter Immersive Homepage
   A balanced single-page narrative: Start → Learn → Connect → Global.
   ========================================================= */
.chapter-home {
  background: #fff;
  scroll-behavior: smooth;
}
.home-chapter {
  position: relative;
  overflow: hidden;
}
.chapter-shell {
  position: relative;
  padding-top: clamp(44px, 6vw, 82px);
  padding-bottom: clamp(54px, 7vw, 94px);
}
.chapter-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 38px);
}
.chapter-number {
  margin: 0;
  color: #1769aa;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.chapter-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(
    90deg,
    rgba(23, 105, 170, 0.35),
    rgba(23, 105, 170, 0)
  );
}
.chapter-hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.chapter-kicker {
  margin: 0 0 12px;
  color: #334155;
  font-weight: 800;
}
.chapter-hero-copy h1,
.chapter-intro-grid h2 {
  margin: 0;
  color: #17212b;
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.chapter-hero-copy h1 {
  font-size: clamp(2.45rem, 7vw, 5rem);
}
.chapter-hero-copy h1 span {
  color: #2e9e64;
}
.chapter-lead,
.chapter-intro-grid p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #475569;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.75;
}
.chapter-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.chapter-actions .btn {
  justify-content: space-between;
  min-height: 54px;
}
.chapter-hero-visual {
  position: relative;
}
.chapter-main-photo {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 41, 64, 0.16);
}
.chapter-main-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.chapter-rep-mini {
  position: absolute;
  right: 18px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(76%, 310px);
  padding: 10px 13px;
  border: 1px solid rgba(23, 105, 170, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(15, 41, 64, 0.12);
  backdrop-filter: blur(9px);
}
.chapter-rep-mini picture {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: 50%;
}
.chapter-rep-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-rep-mini strong,
.chapter-rep-mini small {
  display: block;
}
.chapter-rep-mini strong {
  color: #17212b;
  font-size: 0.9rem;
}
.chapter-rep-mini small {
  margin-top: 2px;
  color: #64748b;
  font-size: 0.72rem;
}
.chapter-quick-block {
  margin-top: clamp(48px, 6vw, 72px);
}
.chapter-section-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}
.chapter-section-title h2,
.chapter-section-title h3 {
  margin: 0;
  color: #17212b;
  letter-spacing: -0.035em;
}
.chapter-section-title h2 {
  font-size: clamp(1.42rem, 3vw, 2rem);
}
.chapter-section-title h3 {
  font-size: 1.25rem;
}
.chapter-section-title p {
  margin: 0;
  color: #64748b;
}
.chapter-quick-grid {
  display: grid;
  gap: 12px;
}
.chapter-path {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid #dbe8f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 41, 64, 0.055);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.chapter-path:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 41, 64, 0.1);
}
.chapter-path-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 15px;
  font-weight: 900;
}
.chapter-path--blue .chapter-path-icon {
  background: #eaf4fb;
  color: #1769aa;
}
.chapter-path--green .chapter-path-icon {
  background: #ecf8f1;
  color: #237a4b;
}
.chapter-path--violet .chapter-path-icon {
  background: #f2effc;
  color: #6c4bc3;
}
.chapter-path strong,
.chapter-path small {
  display: block;
}
.chapter-path strong {
  color: #17212b;
  font-size: 1.04rem;
}
.chapter-path small {
  margin-top: 4px;
  color: #64748b;
}
.chapter-path b {
  margin-left: auto;
  color: #1769aa;
  font-size: 1.15rem;
}
.chapter-next {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1769aa;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.chapter-next span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #b7d3e8;
  border-radius: 50%;
}
.home-chapter--01 {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(46, 158, 100, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.home-chapter--02 {
  background: linear-gradient(180deg, #f2f8fc 0%, #f8fbf9 100%);
  border-top: 1px solid #e1edf5;
}
.chapter-intro-grid {
  display: grid;
  gap: 18px;
  align-items: end;
}
.chapter-intro-grid h2 {
  font-size: clamp(2rem, 5vw, 3.65rem);
}
.chapter-inline-link {
  color: #1769aa;
  font-weight: 900;
  white-space: nowrap;
}
.chapter-value-panel {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid #dbe8f2;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(15, 41, 64, 0.05);
}
.chapter-values-grid {
  display: grid;
  gap: 10px;
}
.chapter-values-grid a {
  display: grid;
  min-height: 134px;
  align-content: start;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4edf4;
}
.chapter-values-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #edf6ff;
  color: #1769aa;
  font-weight: 900;
}
.chapter-values-grid strong {
  margin-top: 12px;
  color: #17212b;
}
.chapter-values-grid small {
  margin-top: 4px;
  color: #64748b;
  line-height: 1.45;
}
.chapter-learning-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.chapter-method-panel,
.chapter-center-card {
  padding: 22px;
  border-radius: 22px;
}
.chapter-method-panel {
  background: #fff;
  border: 1px solid #dfe9f1;
}
.chapter-method-panel h3 {
  margin: 0 0 14px;
  color: #17212b;
}
.chapter-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.chapter-method-grid a {
  display: grid;
  min-height: 94px;
  place-items: center;
  padding: 12px;
  border-radius: 15px;
  background: #f8fbfd;
  color: #334155;
  text-align: center;
  font-weight: 800;
}
.chapter-method-grid span {
  color: #1769aa;
  font-size: 1.55rem;
}
.chapter-center-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #1769aa, #125487);
  color: #fff;
  box-shadow: 0 16px 36px rgba(23, 105, 170, 0.2);
}
.chapter-center-mark {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.55rem;
  font-weight: 900;
}
.chapter-center-card strong {
  font-size: 1.35rem;
}
.chapter-center-card p {
  margin: 7px 0 9px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}
.chapter-center-card b {
  font-size: 0.85rem;
}
.chapter-flow-panel {
  margin-top: 18px;
}
.chapter-flow-panel h3 {
  margin: 0 0 14px;
  color: #17212b;
}
.chapter-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 14px;
  padding: 0 0 8px;
  margin: 0;
  overflow-x: auto;
  list-style: none;
}
.chapter-flow li {
  position: relative;
}
.chapter-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 43%;
  color: #2e9e64;
  font-weight: 900;
}
.chapter-flow a {
  display: grid;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  padding: 16px;
  border: 1px solid #b9d6e9;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}
.chapter-flow span {
  color: #1769aa;
  font-size: 0.72rem;
  font-weight: 900;
}
.chapter-flow strong {
  margin-top: 4px;
  color: #17212b;
}
.chapter-flow small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.73rem;
}
.home-chapter--03 {
  background: linear-gradient(135deg, #0f2940 0%, #143e5f 60%, #125487 100%);
  color: #fff;
}
.home-chapter--03 .chapter-number {
  color: #9fd0f0;
}
.home-chapter--03 .chapter-line {
  background: linear-gradient(90deg, rgba(159, 208, 240, 0.45), transparent);
}
.chapter-intro-grid--light h2,
.chapter-intro-grid--light p {
  color: #fff;
}
.chapter-work-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.chapter-jobs-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.chapter-jobs-panel .eyebrow {
  color: #a7d8f4;
}
.chapter-jobs-panel h3 {
  margin: 5px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  color: #fff;
}
.chapter-jobs-panel p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}
.chapter-jobs-actions {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}
.chapter-photo-stack {
  position: relative;
  min-height: 320px;
}
.chapter-photo-stack picture {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}
.chapter-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-photo-stack__large {
  inset: 0 14% 12% 0;
}
.chapter-photo-stack__small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 46%;
  border: 5px solid #143e5f;
}
.chapter-network-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.chapter-network-grid a {
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.chapter-network-grid a:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}
.chapter-network-grid span {
  color: #9fd0f0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.chapter-network-grid strong {
  margin-top: 6px;
  color: #fff;
}
.chapter-network-grid small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}
.chapter-field-row {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.chapter-field-row > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.chapter-field-row h3 {
  margin: 0;
  color: #fff;
}
.chapter-field-row > div:first-child a {
  color: #a7d8f4;
  font-weight: 800;
}
.chapter-field-cards {
  display: grid;
  gap: 12px;
}
.chapter-field-cards a {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  color: #17212b;
}
.chapter-field-cards picture {
  display: block;
  overflow: hidden;
}
.chapter-field-cards img {
  width: 100%;
  aspect-ratio: 16/8.5;
  object-fit: cover;
}
.chapter-field-cards strong {
  display: block;
  padding: 12px 14px;
}
.chapter-next--light {
  color: #c4e4f6;
}
.chapter-next--light span {
  border-color: rgba(255, 255, 255, 0.35);
}
.home-chapter--04 {
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(46, 158, 100, 0.08),
      transparent 25%
    ),
    #fff;
}
.chapter-global-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.chapter-global-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #dce7ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 41, 64, 0.055);
}
.chapter-global-card > span {
  color: #1769aa;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.chapter-global-card strong {
  margin-top: 14px;
  color: #17212b;
  font-size: 1.28rem;
}
.chapter-global-card p {
  margin: 7px 0 18px;
  color: #64748b;
  line-height: 1.55;
}
.chapter-global-card b {
  margin-top: auto;
  color: #1769aa;
  font-size: 0.86rem;
}
.chapter-trust-panel {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f6faf7, #eff7fb);
  border: 1px solid #e0ebe5;
}
.chapter-trust-photo {
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(15, 41, 64, 0.1);
}
.chapter-trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-trust-panel h3 {
  margin: 3px 0 7px;
  color: #17212b;
}
.chapter-trust-panel p:not(.eyebrow) {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}
.chapter-trust-panel a {
  display: inline-block;
  margin-top: 9px;
  color: #1769aa;
  font-weight: 900;
}
.chapter-final-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(110deg, #125487, #1769aa);
  color: #fff;
}
.chapter-final-cta h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}
.chapter-final-cta p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.82);
}
.chapter-final-cta > div:last-child {
  display: grid;
  gap: 9px;
}
@media (min-width: 720px) {
  .chapter-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 48px;
  }
  .chapter-actions {
    grid-template-columns: 1fr 1fr;
  }
  .chapter-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .chapter-intro-grid {
    grid-template-columns: 1fr auto;
  }
  .chapter-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .chapter-learning-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .chapter-method-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .chapter-work-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
  }
  .chapter-network-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .chapter-field-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .chapter-global-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .chapter-trust-panel {
    grid-template-columns: 96px 1fr;
    padding: 26px;
  }
  .chapter-trust-photo {
    width: 96px;
    height: 96px;
  }
  .chapter-final-cta {
    grid-template-columns: 1fr auto;
    padding: 32px;
  }
  .chapter-final-cta > div:last-child {
    grid-template-columns: repeat(2, auto);
  }
}
@media (min-width: 1024px) {
  .chapter-shell {
    min-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home-chapter--01 .chapter-shell {
    min-height: 820px;
  }
  .chapter-quick-block {
    margin-top: 42px;
  }
  .chapter-rep-mini {
    right: 24px;
    bottom: -18px;
    width: 300px;
  }
  .chapter-rep-mini picture {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .chapter-photo-stack {
    min-height: 390px;
  }
  .chapter-value-panel {
    padding: 26px;
  }
  .chapter-section-title--compact {
    margin-bottom: 15px;
  }
}
@media (max-width: 719px) {
  .chapter-shell {
    padding-top: 42px;
    padding-bottom: 62px;
  }
  .chapter-hero-visual {
    margin-bottom: 8px;
  }
  .chapter-rep-mini {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -16px 10px 0 auto;
    width: min(90%, 300px);
  }
  .chapter-rep-mini picture {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .chapter-path {
    min-height: 104px;
  }
  .chapter-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chapter-values-grid a {
    min-height: 142px;
  }
  .chapter-center-card {
    align-items: flex-start;
  }
  .chapter-center-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
  .chapter-photo-stack {
    min-height: 270px;
  }
  .chapter-network-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chapter-field-row > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }
  .chapter-trust-panel {
    grid-template-columns: 72px 1fr;
  }
  .chapter-trust-photo {
    width: 72px;
    height: 72px;
  }
  .chapter-trust-panel p:not(.eyebrow),
  .chapter-trust-panel a {
    grid-column: 1/-1;
  }
  .chapter-next {
    right: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .chapter-path,
  .chapter-network-grid a {
    transition: none;
  }
}

/* =========================================================
   Build 14.15 — Four-Chapter Immersive Homepage
   A balanced single-page narrative: Start → Learn → Connect → Global.
   ========================================================= */
.chapter-home {
  background: #fff;
  scroll-behavior: smooth;
}
.home-chapter {
  position: relative;
  overflow: hidden;
}
.chapter-shell {
  position: relative;
  padding-top: clamp(44px, 6vw, 82px);
  padding-bottom: clamp(54px, 7vw, 94px);
}
.chapter-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 38px);
}
.chapter-number {
  margin: 0;
  color: #1769aa;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.chapter-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(
    90deg,
    rgba(23, 105, 170, 0.35),
    rgba(23, 105, 170, 0)
  );
}
.chapter-hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.chapter-kicker {
  margin: 0 0 12px;
  color: #334155;
  font-weight: 800;
}
.chapter-hero-copy h1,
.chapter-intro-grid h2 {
  margin: 0;
  color: #17212b;
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.chapter-hero-copy h1 {
  font-size: clamp(2.45rem, 7vw, 5rem);
}
.chapter-hero-copy h1 span {
  color: #2e9e64;
}
.chapter-lead,
.chapter-intro-grid p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #475569;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.75;
}
.chapter-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.chapter-actions .btn {
  justify-content: space-between;
  min-height: 54px;
}
.chapter-hero-visual {
  position: relative;
}
.chapter-main-photo {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 41, 64, 0.16);
}
.chapter-main-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.chapter-rep-mini {
  position: absolute;
  right: 18px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(76%, 310px);
  padding: 10px 13px;
  border: 1px solid rgba(23, 105, 170, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(15, 41, 64, 0.12);
  backdrop-filter: blur(9px);
}
.chapter-rep-mini picture {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: 50%;
}
.chapter-rep-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-rep-mini strong,
.chapter-rep-mini small {
  display: block;
}
.chapter-rep-mini strong {
  color: #17212b;
  font-size: 0.9rem;
}
.chapter-rep-mini small {
  margin-top: 2px;
  color: #64748b;
  font-size: 0.72rem;
}
.chapter-quick-block {
  margin-top: clamp(48px, 6vw, 72px);
}
.chapter-section-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}
.chapter-section-title h2,
.chapter-section-title h3 {
  margin: 0;
  color: #17212b;
  letter-spacing: -0.035em;
}
.chapter-section-title h2 {
  font-size: clamp(1.42rem, 3vw, 2rem);
}
.chapter-section-title h3 {
  font-size: 1.25rem;
}
.chapter-section-title p {
  margin: 0;
  color: #64748b;
}
.chapter-quick-grid {
  display: grid;
  gap: 12px;
}
.chapter-path {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid #dbe8f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 41, 64, 0.055);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.chapter-path:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 41, 64, 0.1);
}
.chapter-path-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 15px;
  font-weight: 900;
}
.chapter-path--blue .chapter-path-icon {
  background: #eaf4fb;
  color: #1769aa;
}
.chapter-path--green .chapter-path-icon {
  background: #ecf8f1;
  color: #237a4b;
}
.chapter-path--violet .chapter-path-icon {
  background: #f2effc;
  color: #6c4bc3;
}
.chapter-path strong,
.chapter-path small {
  display: block;
}
.chapter-path strong {
  color: #17212b;
  font-size: 1.04rem;
}
.chapter-path small {
  margin-top: 4px;
  color: #64748b;
}
.chapter-path b {
  margin-left: auto;
  color: #1769aa;
  font-size: 1.15rem;
}
.chapter-next {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1769aa;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.chapter-next span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #b7d3e8;
  border-radius: 50%;
}
.home-chapter--01 {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(46, 158, 100, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.home-chapter--02 {
  background: linear-gradient(180deg, #f2f8fc 0%, #f8fbf9 100%);
  border-top: 1px solid #e1edf5;
}
.chapter-intro-grid {
  display: grid;
  gap: 18px;
  align-items: end;
}
.chapter-intro-grid h2 {
  font-size: clamp(2rem, 5vw, 3.65rem);
}
.chapter-inline-link {
  color: #1769aa;
  font-weight: 900;
  white-space: nowrap;
}
.chapter-value-panel {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid #dbe8f2;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(15, 41, 64, 0.05);
}
.chapter-values-grid {
  display: grid;
  gap: 10px;
}
.chapter-values-grid a {
  display: grid;
  min-height: 134px;
  align-content: start;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4edf4;
}
.chapter-values-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #edf6ff;
  color: #1769aa;
  font-weight: 900;
}
.chapter-values-grid strong {
  margin-top: 12px;
  color: #17212b;
}
.chapter-values-grid small {
  margin-top: 4px;
  color: #64748b;
  line-height: 1.45;
}
.chapter-learning-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.chapter-method-panel,
.chapter-center-card {
  padding: 22px;
  border-radius: 22px;
}
.chapter-method-panel {
  background: #fff;
  border: 1px solid #dfe9f1;
}
.chapter-method-panel h3 {
  margin: 0 0 14px;
  color: #17212b;
}
.chapter-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.chapter-method-grid a {
  display: grid;
  min-height: 94px;
  place-items: center;
  padding: 12px;
  border-radius: 15px;
  background: #f8fbfd;
  color: #334155;
  text-align: center;
  font-weight: 800;
}
.chapter-method-grid span {
  color: #1769aa;
  font-size: 1.55rem;
}
.chapter-center-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #1769aa, #125487);
  color: #fff;
  box-shadow: 0 16px 36px rgba(23, 105, 170, 0.2);
}
.chapter-center-mark {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.55rem;
  font-weight: 900;
}
.chapter-center-card strong {
  font-size: 1.35rem;
}
.chapter-center-card p {
  margin: 7px 0 9px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}
.chapter-center-card b {
  font-size: 0.85rem;
}
.chapter-flow-panel {
  margin-top: 18px;
}
.chapter-flow-panel h3 {
  margin: 0 0 14px;
  color: #17212b;
}
.chapter-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 14px;
  padding: 0 0 8px;
  margin: 0;
  overflow-x: auto;
  list-style: none;
}
.chapter-flow li {
  position: relative;
}
.chapter-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 43%;
  color: #2e9e64;
  font-weight: 900;
}
.chapter-flow a {
  display: grid;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  padding: 16px;
  border: 1px solid #b9d6e9;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}
.chapter-flow span {
  color: #1769aa;
  font-size: 0.72rem;
  font-weight: 900;
}
.chapter-flow strong {
  margin-top: 4px;
  color: #17212b;
}
.chapter-flow small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.73rem;
}
.home-chapter--03 {
  background: linear-gradient(135deg, #0f2940 0%, #143e5f 60%, #125487 100%);
  color: #fff;
}
.home-chapter--03 .chapter-number {
  color: #9fd0f0;
}
.home-chapter--03 .chapter-line {
  background: linear-gradient(90deg, rgba(159, 208, 240, 0.45), transparent);
}
.chapter-intro-grid--light h2,
.chapter-intro-grid--light p {
  color: #fff;
}
.chapter-work-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.chapter-jobs-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.chapter-jobs-panel .eyebrow {
  color: #a7d8f4;
}
.chapter-jobs-panel h3 {
  margin: 5px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  color: #fff;
}
.chapter-jobs-panel p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}
.chapter-jobs-actions {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}
.chapter-photo-stack {
  position: relative;
  min-height: 320px;
}
.chapter-photo-stack picture {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}
.chapter-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-photo-stack__large {
  inset: 0 14% 12% 0;
}
.chapter-photo-stack__small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 46%;
  border: 5px solid #143e5f;
}
.chapter-network-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.chapter-network-grid a {
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.chapter-network-grid a:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}
.chapter-network-grid span {
  color: #9fd0f0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.chapter-network-grid strong {
  margin-top: 6px;
  color: #fff;
}
.chapter-network-grid small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}
.chapter-field-row {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.chapter-field-row > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.chapter-field-row h3 {
  margin: 0;
  color: #fff;
}
.chapter-field-row > div:first-child a {
  color: #a7d8f4;
  font-weight: 800;
}
.chapter-field-cards {
  display: grid;
  gap: 12px;
}
.chapter-field-cards a {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  color: #17212b;
}
.chapter-field-cards picture {
  display: block;
  overflow: hidden;
}
.chapter-field-cards img {
  width: 100%;
  aspect-ratio: 16/8.5;
  object-fit: cover;
}
.chapter-field-cards strong {
  display: block;
  padding: 12px 14px;
}
.chapter-next--light {
  color: #c4e4f6;
}
.chapter-next--light span {
  border-color: rgba(255, 255, 255, 0.35);
}
.home-chapter--04 {
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(46, 158, 100, 0.08),
      transparent 25%
    ),
    #fff;
}
.chapter-global-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.chapter-global-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #dce7ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 41, 64, 0.055);
}
.chapter-global-card > span {
  color: #1769aa;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.chapter-global-card strong {
  margin-top: 14px;
  color: #17212b;
  font-size: 1.28rem;
}
.chapter-global-card p {
  margin: 7px 0 18px;
  color: #64748b;
  line-height: 1.55;
}
.chapter-global-card b {
  margin-top: auto;
  color: #1769aa;
  font-size: 0.86rem;
}
.chapter-trust-panel {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f6faf7, #eff7fb);
  border: 1px solid #e0ebe5;
}
.chapter-trust-photo {
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(15, 41, 64, 0.1);
}
.chapter-trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-trust-panel h3 {
  margin: 3px 0 7px;
  color: #17212b;
}
.chapter-trust-panel p:not(.eyebrow) {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}
.chapter-trust-panel a {
  display: inline-block;
  margin-top: 9px;
  color: #1769aa;
  font-weight: 900;
}
.chapter-final-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(110deg, #125487, #1769aa);
  color: #fff;
}
.chapter-final-cta h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}
.chapter-final-cta p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.82);
}
.chapter-final-cta > div:last-child {
  display: grid;
  gap: 9px;
}
@media (min-width: 720px) {
  .chapter-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 48px;
  }
  .chapter-actions {
    grid-template-columns: 1fr 1fr;
  }
  .chapter-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .chapter-intro-grid {
    grid-template-columns: 1fr auto;
  }
  .chapter-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .chapter-learning-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .chapter-method-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .chapter-work-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
  }
  .chapter-network-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .chapter-field-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .chapter-global-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .chapter-trust-panel {
    grid-template-columns: 96px 1fr;
    padding: 26px;
  }
  .chapter-trust-photo {
    width: 96px;
    height: 96px;
  }
  .chapter-final-cta {
    grid-template-columns: 1fr auto;
    padding: 32px;
  }
  .chapter-final-cta > div:last-child {
    grid-template-columns: repeat(2, auto);
  }
}
@media (min-width: 1024px) {
  .chapter-shell {
    min-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home-chapter--01 .chapter-shell {
    min-height: 820px;
  }
  .chapter-quick-block {
    margin-top: 42px;
  }
  .chapter-rep-mini {
    right: 24px;
    bottom: -18px;
    width: 300px;
  }
  .chapter-rep-mini picture {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .chapter-photo-stack {
    min-height: 390px;
  }
  .chapter-value-panel {
    padding: 26px;
  }
  .chapter-section-title--compact {
    margin-bottom: 15px;
  }
}
@media (max-width: 719px) {
  .chapter-shell {
    padding-top: 42px;
    padding-bottom: 62px;
  }
  .chapter-hero-visual {
    margin-bottom: 8px;
  }
  .chapter-rep-mini {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -16px 10px 0 auto;
    width: min(90%, 300px);
  }
  .chapter-rep-mini picture {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .chapter-path {
    min-height: 104px;
  }
  .chapter-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chapter-values-grid a {
    min-height: 142px;
  }
  .chapter-center-card {
    align-items: flex-start;
  }
  .chapter-center-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
  .chapter-photo-stack {
    min-height: 270px;
  }
  .chapter-network-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chapter-field-row > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }
  .chapter-trust-panel {
    grid-template-columns: 72px 1fr;
  }
  .chapter-trust-photo {
    width: 72px;
    height: 72px;
  }
  .chapter-trust-panel p:not(.eyebrow),
  .chapter-trust-panel a {
    grid-column: 1/-1;
  }
  .chapter-next {
    right: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .chapter-path,
  .chapter-network-grid a {
    transition: none;
  }
}

/* =========================================================
   14.16 Director Trust + Conversion Polish
   ========================================================= */
.chapter-hero-visual {
  align-self: center;
}
.chapter-main-photo {
  min-height: 320px;
}
.chapter-main-photo img {
  display: block;
}
.chapter-program-strip {
  display: grid;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(46, 158, 100, 0.24);
  border-radius: 20px;
  background: linear-gradient(110deg, #fff, #f2fbf6);
  box-shadow: 0 10px 26px rgba(15, 41, 64, 0.045);
}
.chapter-program-strip small,
.chapter-program-strip strong,
.chapter-program-strip em {
  display: block;
}
.chapter-program-strip small {
  color: #237a4b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.chapter-program-strip strong {
  margin-top: 5px;
  color: #17212b;
  font-size: 1.15rem;
}
.chapter-program-strip em {
  margin-top: 5px;
  color: #64748b;
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.5;
}
.chapter-program-strip b {
  color: #1769aa;
  font-size: 0.88rem;
}
.chapter-director-panel {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #dce7ef;
  border-radius: 24px;
  background: linear-gradient(135deg, #f8fbfd 0%, #f5fbf7 100%);
  box-shadow: 0 14px 34px rgba(15, 41, 64, 0.06);
}
.chapter-director-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.chapter-director-photo {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(15, 41, 64, 0.1);
}
.chapter-director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-director-panel h3 {
  margin: 2px 0 3px;
  color: #17212b;
  font-size: 1.5rem;
}
.chapter-director-role {
  margin: 0;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 800;
}
.chapter-director-tag {
  margin: 4px 0 0;
  color: #237a4b;
  font-size: 0.86rem;
  font-weight: 800;
}
.chapter-director-summary {
  margin: 17px 0 0;
  color: #475569;
  line-height: 1.75;
}
.chapter-director-facts {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.chapter-director-facts li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 3px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5edf3;
}
.chapter-director-facts span {
  grid-row: 1/3;
  color: #1769aa;
  font-size: 0.74rem;
  font-weight: 900;
}
.chapter-director-facts strong {
  color: #17212b;
  font-size: 0.92rem;
}
.chapter-director-facts small {
  color: #64748b;
  line-height: 1.4;
}
.chapter-director-panel blockquote {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid #2e9e64;
  border-radius: 0 12px 12px 0;
  background: #fff;
  color: #334155;
  font-weight: 800;
  line-height: 1.65;
}
.chapter-director-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 15px;
}
.chapter-director-links a {
  color: #1769aa;
  font-weight: 900;
  font-size: 0.86rem;
}
.chapter-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 15;
  display: none;
  transform: translateY(-50%);
  padding: 8px;
  border: 1px solid rgba(23, 105, 170, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(15, 41, 64, 0.08);
  backdrop-filter: blur(8px);
}
.chapter-rail a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: #64748b;
  font-size: 0;
  text-decoration: none;
}
.chapter-rail a::before {
  content: attr(href);
  font-size: 0.7rem;
  font-weight: 900;
  color: #1769aa;
}
.chapter-rail a:hover {
  background: #eaf4fb;
  border-radius: 12px;
}
@media (min-width: 720px) {
  .chapter-program-strip {
    grid-template-columns: 1fr auto;
  }
  .chapter-director-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1180px) {
  .chapter-rail {
    display: block;
  }
}

/* 14.17 actual education showcase */
.chapter-real-training {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid #dbe8f2;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 41, 64, 0.055);
}
.chapter-real-training__head {
  max-width: 820px;
}
.chapter-real-training__head h3 {
  margin: 4px 0 8px;
  color: #17212b;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}
.chapter-real-training__head > p:last-child {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}
.chapter-real-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.chapter-real-card {
  overflow: hidden;
  border: 1px solid #e0eaf1;
  border-radius: 22px;
  background: #f9fbfd;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.chapter-real-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 41, 64, 0.1);
}
.chapter-real-card picture {
  display: block;
  overflow: hidden;
}
.chapter-real-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/8.6;
  object-fit: cover;
}
.chapter-real-card__body {
  padding: 18px;
}
.chapter-real-card__body span {
  color: #1769aa;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.chapter-real-card--ai .chapter-real-card__body span {
  color: #237a4b;
}
.chapter-real-card__body strong {
  display: block;
  margin-top: 6px;
  color: #17212b;
  font-size: 1.12rem;
}
.chapter-real-card__body p {
  margin: 7px 0 12px;
  color: #64748b;
  line-height: 1.58;
  font-size: 0.9rem;
}
.chapter-real-card__body b {
  color: #1769aa;
  font-size: 0.86rem;
}
.chapter-real-card--ai .chapter-real-card__body b {
  color: #237a4b;
}
.chapter-program-strip--model {
  border-style: dashed;
  background: linear-gradient(110deg, #f9fcff, #f3faf6);
}
@media (min-width: 720px) {
  .chapter-real-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 14.18 field-linked curriculum */
.program-field-link {
  margin: 24px 0 14px;
  padding: 20px 22px;
  border: 1px solid rgba(23, 105, 170, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff, #eef8f2);
  box-shadow: 0 10px 30px rgba(15, 41, 64, 0.06);
}
.program-field-link span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1769aa;
}
.program-field-link strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.12rem;
  color: #17212b;
}
.program-field-link p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

/* =========================================================
   14.20 Trust · Conversion · Visual Balance Polish
   ========================================================= */
.chapter-proof-strip {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 10px;
  border: 1px solid #dfeaf2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}
.chapter-proof-strip a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  min-height: 74px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  color: #17212b;
  box-shadow: 0 4px 14px rgba(15, 41, 64, 0.035);
}
.chapter-proof-strip span {
  grid-row: 1/3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #eef6fb;
  color: #1769aa;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.chapter-proof-strip strong {
  font-size: 0.9rem;
}
.chapter-proof-strip small {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.35;
}
.chapter-proof-strip a:nth-child(2) span {
  background: #edf8f1;
  color: #237a4b;
}
.chapter-proof-strip a:nth-child(3) span {
  background: #f2effc;
  color: #6c4bc3;
}
.chapter-proof-strip a:nth-child(4) span {
  background: #fff6e8;
  color: #9a650c;
}
.chapter-principles {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #dce8ef;
  border-radius: 22px;
  background: linear-gradient(135deg, #f8fbfd, #f6faf7);
}
.chapter-principles article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 12px;
  align-content: start;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
}
.chapter-principles span {
  grid-row: 1/3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #eaf4fb;
  color: #1769aa;
  font-size: 0.72rem;
  font-weight: 900;
}
.chapter-principles strong {
  color: #17212b;
  font-size: 0.94rem;
}
.chapter-principles small {
  color: #64748b;
  line-height: 1.48;
}
.chapter-real-card,
.chapter-global-card,
.chapter-path,
.chapter-network-grid a {
  outline-offset: 3px;
}
.chapter-real-card__body p {
  max-width: 58ch;
}
.chapter-final-cta {
  box-shadow: 0 18px 42px rgba(18, 84, 135, 0.18);
}
@media (min-width: 720px) {
  .chapter-proof-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .chapter-principles {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .chapter-shell {
    min-height: auto;
    display: block;
  }
  .home-chapter--01 .chapter-shell {
    min-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home-chapter--02 .chapter-shell,
  .home-chapter--03 .chapter-shell,
  .home-chapter--04 .chapter-shell {
    padding-top: 72px;
    padding-bottom: 84px;
  }
}
@media (max-width: 719px) {
  .chapter-proof-strip {
    margin-top: 14px;
  }
  .chapter-principles {
    padding: 12px;
  }
  .chapter-principles article {
    padding: 12px;
  }
  .chapter-real-training {
    padding: 18px;
  }
  .chapter-real-card__body {
    padding: 16px;
  }
  .chapter-director-panel {
    padding: 18px;
  }
}

/* G-Bridge 15.4 migrant UX */
.language-menu__planned-link {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.language-menu__planned-link:hover,
.language-menu__planned-link:focus-visible {
  background: #eef6fb;
  transform: translateY(-1px);
}
.chapter-inclusion-note {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid #d9eadf;
  border-radius: 14px;
  background: #f6fbf8;
  color: #334155;
}
.chapter-inclusion-note strong {
  color: #237a4b;
}
.chapter-inclusion-note p {
  margin: 0;
  line-height: 1.55;
  font-size: 0.88rem;
}
.home-covenant {
  margin: 26px 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}
.home-covenant__intro {
  max-width: 780px;
}
.home-covenant__intro h3 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.home-covenant__intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}
.home-covenant__grid {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.home-covenant__grid article {
  padding: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}
.home-covenant__grid span {
  color: #8dd8ae;
  font-size: 0.72rem;
  font-weight: 900;
}
.home-covenant__grid strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 1.05rem;
}
.home-covenant__grid p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.55;
}
.home-covenant .chapter-inline-link {
  color: #fff;
}
@media (min-width: 720px) {
  .home-covenant__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.ministry-framework {
  background: #f7fbfd;
}
.ministry-framework__heading {
  max-width: 900px;
}
.ministry-framework__heading > p:last-child {
  font-size: 1.05rem;
  line-height: 1.75;
}
.ministry-declaration-grid,
.ministry-scope-grid,
.ministry-roles {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.ministry-declaration-grid article {
  padding: 24px;
  border: 1px solid #dce7ef;
  border-radius: 20px;
  background: #fff;
}
.ministry-declaration-grid span {
  color: #1769aa;
  font-size: 0.76rem;
  font-weight: 900;
}
.ministry-declaration-grid h3 {
  margin: 9px 0;
  color: #17212b;
}
.ministry-declaration-grid p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}
.ministry-journey {
  margin-top: 20px;
  padding: 22px;
  border-radius: 20px;
  background: #173b57;
}
.ministry-journey .eyebrow {
  color: #8dd8ae;
}
.ministry-journey ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.ministry-journey li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 1px 10px;
  padding: 11px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}
.ministry-journey li span {
  grid-row: 1/3;
  color: #8dd8ae;
  font-size: 0.72rem;
  font-weight: 900;
}
.ministry-journey li strong {
  color: #fff;
}
.ministry-journey li small {
  color: rgba(255, 255, 255, 0.68);
}
.ministry-scope-grid article {
  padding: 22px;
  border: 1px solid #dce7ef;
  border-radius: 18px;
  background: #fff;
}
.ministry-scope-grid h3 {
  margin: 0;
  color: #17212b;
}
.ministry-scope-grid ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #526274;
  line-height: 1.8;
}
.ministry-covenant {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid #cce8d8;
  border-radius: 18px;
  background: #f3fbf6;
}
.ministry-covenant strong {
  color: #237a4b;
  font-size: 1.08rem;
}
.ministry-covenant p {
  margin: 7px 0 0;
  color: #375c48;
  line-height: 1.75;
}
.ministry-roles article {
  padding: 16px;
  border-left: 4px solid #2e9e64;
  border-radius: 0 14px 14px 0;
  background: #fff;
}
.ministry-roles strong {
  display: block;
  color: #17212b;
}
.ministry-roles span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  line-height: 1.5;
}
@media (min-width: 720px) {
  .ministry-declaration-grid,
  .ministry-scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ministry-journey ol {
    grid-template-columns: repeat(6, 1fr);
  }
  .ministry-journey li {
    display: block;
  }
  .ministry-journey li strong,
  .ministry-journey li small {
    display: block;
    margin-top: 5px;
  }
  .ministry-roles {
    grid-template-columns: repeat(2, 1fr);
  }
}
.application-steps-strip {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #dbe8f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(15, 41, 64, 0.045);
}
.application-steps-strip__title h2 {
  margin: 0;
  color: #17212b;
  font-size: 1.08rem;
}
.application-steps-strip__title p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.5;
}
.application-steps-strip__steps {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.application-steps-strip__steps li {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7fafc;
}
.application-steps-strip__steps span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: #eaf4fb;
  color: #1769aa;
  font-size: 0.68rem;
  font-weight: 900;
}
.application-steps-strip__steps strong {
  font-size: 0.85rem;
  color: #334155;
}
.apply-next-steps {
  padding: 24px 0;
  background: #f7fbfd;
  border-bottom: 1px solid #e1eaf0;
}
.apply-next-steps h2 {
  margin: 0;
  color: #17212b;
  font-size: 1.35rem;
}
.apply-next-steps .container > p {
  margin: 7px 0 0;
  color: #64748b;
  line-height: 1.6;
}
.apply-next-steps__grid {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.apply-next-steps__grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid #e0eaf1;
  border-radius: 14px;
  background: #fff;
}
.apply-next-steps__grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #eaf4fb;
  color: #1769aa;
  font-size: 0.72rem;
  font-weight: 900;
}
.apply-access-note {
  margin-top: 12px !important;
  padding: 11px 13px;
  border-radius: 12px;
  background: #eef8f2;
  color: #237a4b !important;
  font-weight: 700;
  line-height: 1.55;
}
.simple-start-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e5edf3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}
.simple-start-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
}
.simple-language-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.simple-language-links a {
  padding: 8px 10px;
  border: 1px solid #dce6ed;
  border-radius: 10px;
  color: #334155;
  font-weight: 800;
  font-size: 0.8rem;
}

.simple-language-links--hero {
  margin-top: 20px;
}

.simple-language-links--hero a[aria-current="page"] {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.simple-start-main {
  min-height: 70vh;
}
.simple-start-hero {
  padding: 64px 0 36px;
  background: linear-gradient(135deg, #f4faff, #f2fbf6);
}
.simple-start-hero h1 {
  max-width: 850px;
  margin: 6px 0 12px;
  color: #17212b;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.12;
}
.simple-start-hero p {
  max-width: 780px;
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}
.simple-religion-note {
  max-width: 780px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #d8ebdf;
  border-radius: 14px;
  background: #fff;
  color: #237a4b;
  font-weight: 700;
  line-height: 1.6;
}
.simple-start-grid,
.jobs-guide-grid {
  display: grid;
  gap: 14px;
}
.simple-start-card,
.jobs-guide-card {
  display: block;
  padding: 22px;
  border: 1px solid #dce7ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 41, 64, 0.055);
}
.simple-start-card span,
.jobs-guide-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: #eaf4fb;
  color: #1769aa;
  font-size: 0.75rem;
  font-weight: 900;
}
.simple-start-card strong {
  display: block;
  margin-top: 14px;
  color: #17212b;
  font-size: 1.1rem;
  line-height: 1.5;
}
.simple-start-card small {
  display: block;
  margin-top: 7px;
  color: #64748b;
}
.simple-start-card--phone {
  border-color: #cce8d8;
  background: #f5fbf7;
}
.simple-start-card--phone span {
  background: #e6f5ec;
  color: #237a4b;
}
.simple-start-note {
  margin: 18px 0 0;
  padding: 13px 15px;
  border-radius: 14px;
  background: #f7fafc;
  color: #64748b;
  line-height: 1.6;
}
.simple-start-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.jobs-guide-card h2 {
  margin: 14px 0 7px;
  color: #17212b;
  font-size: 1.22rem;
}
.jobs-guide-card p {
  margin: 0 0 16px;
  color: #64748b;
  line-height: 1.6;
}
.jobs-guide-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #f0dfb9;
  border-radius: 15px;
  background: #fffaf0;
}
.jobs-guide-note strong {
  color: #9a650c;
}
.jobs-guide-note p {
  margin: 5px 0 0;
  color: #5f5136;
  line-height: 1.62;
}
.migrant-mobile-actionbar {
  display: none;
}
@media (min-width: 720px) {
  .application-steps-strip {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 18px;
    align-items: center;
  }
  .application-steps-strip__steps {
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
  }
  .application-steps-strip__steps li {
    display: grid;
    justify-items: start;
    align-content: center;
    min-height: 78px;
  }
  .apply-next-steps__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .simple-start-grid,
  .jobs-guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 719px) {
  body {
    padding-bottom: 72px;
  }
  .simple-start-header__inner {
    min-height: 72px;
  }
  .simple-start-header .brand-name {
    font-size: 0.9rem;
  }
  .simple-start-header .brand-logo {
    width: 48px;
    height: 48px;
  }
  .simple-language-links {
    display: none;
  }
  .simple-language-links--hero {
    display: flex;
  }
  .simple-start-hero {
    padding: 42px 0 28px;
  }
  .migrant-mobile-actionbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px max(10px, env(safe-area-inset-right))
      calc(8px + env(safe-area-inset-bottom))
      max(10px, env(safe-area-inset-left));
    gap: 8px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #dce6ed;
    box-shadow: 0 -8px 24px rgba(15, 41, 64, 0.12);
    backdrop-filter: blur(10px);
  }
  .migrant-mobile-actionbar a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
  }
  .migrant-mobile-actionbar__apply {
    background: #1769aa;
    color: #fff;
  }
  .migrant-mobile-actionbar__call {
    border: 2px solid #2e9e64;
    color: #237a4b;
    background: #fff;
  }
  .application-steps-strip__steps li {
    min-height: 52px;
  }
  .chapter-inclusion-note {
    font-size: 0.9rem;
  }
}

.native-jobs-section h2 {
  margin: 0;
  color: #17212b;
  font-size: 1.5rem;
}
.native-jobs-section .container > p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.65;
}
.native-jobs-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.native-jobs-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  padding: 16px;
  border: 1px solid #dce7ef;
  border-radius: 16px;
  background: #fff;
}
.native-jobs-card span {
  grid-row: 1/3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #eaf4fb;
  color: #1769aa;
  font-size: 0.72rem;
  font-weight: 900;
}
.native-jobs-card strong {
  color: #17212b;
}
.native-jobs-card small {
  color: #1769aa;
  font-weight: 800;
}
.jobs-resource-section {
  background: #f7fbfd;
}
.jobs-resource-section h2 {
  margin: 6px 0 8px;
  color: #17212b;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.jobs-resource-section > .container > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}
.jobs-resource-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.jobs-resource-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  border: 1px solid #dce7ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 41, 64, 0.045);
  text-decoration: none;
}
.jobs-resource-card:hover {
  border-color: #91bddd;
  transform: translateY(-2px);
}
.jobs-resource-card strong {
  color: #17212b;
  font-size: 1.05rem;
}
.jobs-resource-card span {
  color: #64748b;
  line-height: 1.55;
}
.jobs-resource-card small {
  margin-top: auto;
  color: #1769aa;
  font-weight: 900;
}

.migrant-link-guide{display:grid;gap:16px;margin:34px 0}.migrant-link-guide>article{display:flex;flex-direction:column;padding:26px;border:1px solid #d8e3dc;border-radius:22px;background:#fff;box-shadow:var(--shadow-sm)}.migrant-link-guide__top{display:flex;align-items:center;gap:14px}.migrant-link-guide__top>span{display:grid;width:42px;height:42px;flex:0 0 42px;place-items:center;border-radius:50%;background:#eaf5ef;color:#237a4b;font-size:.78rem;font-weight:900}.migrant-link-guide__top small{display:block;color:#1769aa;font-size:.76rem;font-weight:900}.migrant-link-guide__top h3{margin:2px 0 0;color:var(--color-heading);font-size:1.45rem}.migrant-link-guide>article>p{color:var(--color-text-secondary);line-height:1.7}.migrant-link-guide h4{margin:8px 0;color:var(--color-heading);font-size:1rem}.migrant-link-guide ul{display:grid;gap:6px;margin:0 0 18px;padding-left:20px;color:#4d5f56}.migrant-link-guide__bridge{margin-top:auto;padding:14px;border-radius:14px;background:#f3f8f5;font-size:.9rem}.migrant-link-guide__bridge strong{color:#195e3e}.migrant-link-guide .btn{align-self:flex-start;margin-top:2px}.migrant-link-flow{display:grid;gap:14px;margin:0 0 54px;padding:24px;border-radius:20px;background:#123f62;color:#fff}.migrant-link-flow>strong{font-size:1.15rem}.migrant-link-flow ol{display:grid;gap:10px;margin:0;padding:0;list-style:none}.migrant-link-flow li{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.86)}.migrant-link-flow li span{display:grid;width:28px;height:28px;place-items:center;border-radius:50%;background:#fff;color:#123f62;font-size:.75rem;font-weight:900}.jobs-resource-heading{margin:0 0 24px}.jobs-resource-heading h3{margin:4px 0 8px;color:var(--color-heading);font-size:clamp(1.5rem,4vw,2rem)}.jobs-resource-heading>p:last-child{margin:0;color:var(--color-text-secondary)}@media(min-width:900px){.migrant-link-guide{grid-template-columns:repeat(3,minmax(0,1fr))}.migrant-link-flow{grid-template-columns:auto 1fr;align-items:center;padding:24px 30px}.migrant-link-flow ol{grid-template-columns:repeat(3,minmax(0,1fr))}}
.mission-identity-note {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #cce8d8;
  border-radius: 16px;
  background: #f5fbf7;
}
.mission-identity-note strong {
  color: #237a4b;
}
.mission-identity-note p {
  margin: 6px 0 0;
  color: #375c48;
  line-height: 1.7;
}
@media (min-width: 720px) {
  .jobs-resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1040px) {
  .jobs-resource-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Living Bridge homepage */
.living-bridge-home {
  --lb-ink: #0d2138;
  --lb-green: #147549;
  --lb-gold: #ad7417;
  --lb-stone: #f6f4ef;
  --lb-line: #dfe4e1;
  color: var(--lb-ink);
  background: #fff;
}
.lb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e5e7e6;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}
.lb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}
.lb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.lb-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.lb-brand span {
  display: grid;
}
.lb-brand strong {
  color: var(--lb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.1;
}
.lb-brand small {
  margin-top: 5px;
  color: var(--lb-green);
  font-size: 0.76rem;
  font-weight: 800;
}
.lb-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.lb-nav a {
  color: #182536;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}
.lb-nav a:hover {
  color: var(--lb-green);
}
.lb-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lb-header .language-menu summary {
  padding: 11px 14px;
  border: 1px solid #dce2e0;
  border-radius: 12px;
}
.lb-header .language-menu__panel {
  right: 0;
  left: auto;
  min-width: 160px;
}
.lb-header .language-menu__panel nav {
  display: grid;
}
.lb-header .language-menu__panel a {
  padding: 9px 10px;
}
.lb-header .menu-toggle {
  display: none;
}
.lb-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  min-height: 570px;
  border-bottom: 1px solid var(--lb-line);
}
.lb-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(42px, calc((100vw - 1200px) / 2)) 64px
    max(42px, calc((100vw - 1200px) / 2));
  padding-right: 52px;
}
.lb-theology {
  margin: 0 0 24px;
  color: var(--lb-gold);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.lb-hero h1 {
  margin: 0;
  color: var(--lb-ink);
  font-family: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
  font-size: clamp(2.6rem, 3.55vw, 3.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.045em;
}
.lb-hero h1 span {
  color: var(--lb-green);
}
.lb-hero__lead {
  margin: 27px 0 0;
  color: #38485a;
  font-size: 1.1rem;
  line-height: 1.85;
}
.lb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.lb-open-promise {
  margin: 25px 0 0;
  padding-left: 13px;
  border-left: 2px solid var(--lb-gold);
  color: #53606d;
  font-size: 0.88rem;
}
.lb-hero__image {
  display: block;
  min-height: 570px;
  overflow: hidden;
}
.lb-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}
.lb-section-heading p,
.lb-identity > p {
  margin: 0;
  color: var(--lb-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.lb-section-heading h2 {
  margin: 8px 0 0;
  color: var(--lb-ink);
  font-family: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
}
.lb-pathways {
  padding: 68px 0 76px;
}
.lb-pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--lb-line);
  border-bottom: 1px solid var(--lb-line);
}
.lb-pathways__grid article {
  padding: 30px 34px 34px;
}
.lb-pathways__grid article + article {
  border-left: 1px solid var(--lb-line);
}
.lb-pathways__grid article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lb-pathways__grid span {
  color: var(--lb-green);
  font-family: Georgia, serif;
  font-size: 1.8rem;
}
.lb-pathways__grid article > div p {
  margin: 0;
  color: #89918e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.lb-pathways__grid h3 {
  margin: 38px 0 12px;
  color: var(--lb-ink);
  font-size: 1.35rem;
}
.lb-pathways__grid article > p {
  min-height: 76px;
  margin: 0;
  color: #5c6874;
  line-height: 1.7;
}
.lb-pathways__grid a {
  display: inline-block;
  margin-top: 18px;
  color: var(--lb-green);
  font-weight: 900;
}
.lb-sister-door {
  padding: 0 0 90px;
}
.lb-sister-door__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid #d8dedb;
  background: var(--lb-stone);
}
.lb-sister-door__inner > div > p {
  margin: 0;
  color: var(--lb-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.lb-sister-door h2 {
  margin: 8px 0;
  color: var(--lb-ink);
  font-size: 1.52rem;
}
.lb-sister-door__inner > div > span {
  color: #66717b;
  line-height: 1.65;
}
.lb-sister-door__inner > a {
  display: grid;
  padding-left: 36px;
  border-left: 1px solid #ccd2cf;
  text-decoration: none;
}
.lb-sister-door strong {
  color: var(--lb-ink);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}
.lb-sister-door small {
  margin-top: 5px;
  color: #6b747c;
}
.lb-sister-door b {
  margin-top: 14px;
  color: var(--lb-green);
  font-size: 0.9rem;
}
.lb-identity {
  padding: 92px 0;
  background: var(--lb-ink);
  color: #fff;
}
.lb-identity__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.lb-identity__grid > div:first-child > p {
  margin: 0;
  color: #7bd0a3;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.lb-identity h2 {
  margin: 13px 0 0;
  color: #fff;
  font-family: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.35;
}
.lb-identity__grid > div:last-child > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.85;
}
.lb-identity .btn {
  margin-top: 8px;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.lb-field {
  padding: 92px 0;
}
.lb-field__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.lb-field__grid a {
  color: inherit;
  text-decoration: none;
}
.lb-field__grid picture {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef1ef;
}
.lb-field__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.lb-field__grid a:hover img {
  transform: scale(1.025);
}
.lb-field__grid span {
  display: block;
  margin-top: 18px;
  color: var(--lb-green);
  font-size: 0.78rem;
  font-weight: 900;
}
.lb-field__grid strong {
  display: block;
  margin-top: 7px;
  color: var(--lb-ink);
  font-size: 1.15rem;
  line-height: 1.5;
}
.lb-vision-scenes {
  padding: 92px 0;
  background: var(--lb-stone);
}
.lb-vision-scenes__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
}
.lb-vision-scenes__heading > div > p {
  margin: 0;
  color: var(--lb-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.lb-vision-scenes__heading h2 {
  margin: 9px 0 0;
  color: var(--lb-ink);
  font-family: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.4;
}
.lb-vision-scenes__heading > p {
  margin: 0;
  color: #5d6973;
  line-height: 1.75;
}
.lb-vision-scenes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 38px;
}
.lb-vision-scenes figure {
  margin: 0;
  background: #fff;
}
.lb-vision-scenes figure > img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.lb-vision-scenes figcaption {
  padding: 22px 24px 25px;
}
.lb-vision-scenes figcaption span {
  color: var(--lb-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.lb-vision-scenes figcaption strong {
  display: block;
  margin-top: 7px;
  color: var(--lb-ink);
  font-size: 1.2rem;
}
.lb-vision-scenes figcaption p {
  margin: 8px 0 0;
  color: #67717a;
  line-height: 1.65;
}
.lb-vision-scenes__disclosure {
  margin: 17px 0 0;
  color: #737d84;
  font-size: 0.78rem;
  line-height: 1.6;
}
.lb-final {
  padding: 72px 0;
  background: var(--lb-green);
  color: #fff;
}
.lb-final__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.lb-final p {
  margin: 0;
  color: #c8ebd8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.lb-final h2 {
  margin: 10px 0 0;
  color: #fff;
  font-family: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.45;
}
.lb-final__inner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lb-footer .footer-brand > a {
  display: inline-block;
  margin-top: 14px;
  color: #a9d8be;
}
.lb-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.lb-footer .footer-bottom span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}
@media (max-width: 1100px) {
  .lb-nav {
    display: none;
  }
  .lb-header .menu-toggle {
    display: inline-flex;
  }
  .lb-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lb-hero__copy {
    padding: 64px max(24px, calc((100vw - 920px) / 2)) 52px;
  }
  .lb-hero__image {
    min-height: auto;
    aspect-ratio: 16/8;
  }
  .lb-identity__grid {
    gap: 45px;
  }
}
@media (max-width: 719px) {
  .living-bridge-home {
    padding-bottom: 0;
  }
  .lb-header__inner {
    min-height: 72px;
  }
  .lb-brand img {
    width: 44px;
    height: 44px;
  }
  .lb-brand strong {
    font-size: 1.05rem;
  }
  .lb-brand small {
    font-size: 0.66rem;
  }
  .lb-header__actions > .btn,
  .lb-header .language-menu {
    display: none;
  }
  .lb-hero__copy {
    padding: 52px 20px 38px;
  }
  .lb-theology {
    margin-bottom: 17px;
    font-size: 0.78rem;
  }
  .lb-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }
  .lb-hero__lead {
    font-size: 1rem;
  }
  .lb-hero__actions {
    display: grid;
  }
  .lb-hero__actions .btn {
    text-align: center;
  }
  .lb-hero__image {
    aspect-ratio: 4/3;
  }
  .lb-pathways,
  .lb-field {
    padding: 64px 0;
  }
  .lb-pathways__grid {
    grid-template-columns: 1fr;
  }
  .lb-pathways__grid article + article {
    border-top: 1px solid var(--lb-line);
    border-left: 0;
  }
  .lb-pathways__grid article > p {
    min-height: 0;
  }
  .lb-sister-door {
    padding-bottom: 64px;
  }
  .lb-sister-door__inner {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  .lb-sister-door__inner > a {
    padding: 24px 0 0;
    border-top: 1px solid #ccd2cf;
    border-left: 0;
  }
  .lb-identity {
    padding: 64px 0;
  }
  .lb-identity__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .lb-field__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .lb-vision-scenes {
    padding: 64px 0;
  }
  .lb-vision-scenes__heading,
  .lb-vision-scenes__grid {
    grid-template-columns: 1fr;
  }
  .lb-vision-scenes__heading {
    gap: 18px;
  }
  .lb-vision-scenes__grid {
    gap: 26px;
    margin-top: 28px;
  }
  .lb-final {
    padding: 55px 0;
  }
  .lb-final__inner {
    display: grid;
    gap: 28px;
  }
  .lb-final__inner > div:last-child {
    display: grid;
  }
  .lb-footer .footer-bottom {
    display: grid;
  }
  .mobile-menu .container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
@media (min-width: 720px) {
  .native-jobs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
