:root {
  --ink: #10245a;
  --ink-2: #18336f;
  --gold: #f2a31a;
  --green: #3d8a75;
  --text: #18213a;
  --muted: #667089;
  --line: #e3e8f1;
  --soft: #f6f8fb;
  --soft-blue: #edf3ff;
  --white: #fff;
  --shadow: 0 22px 60px rgba(16, 36, 90, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

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

img {
  max-width: 100%;
}

section {
  scroll-margin-top: 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 86px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(227, 232, 241, 0.78);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 148px;
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: #263553;
  font-size: 15px;
  white-space: nowrap;
}

.nav a {
  transition: color .2s ease;
}

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

.nav a.is-active {
  color: var(--ink);
  font-weight: 760;
}

.header-cta,
.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-cta,
.button.primary {
  padding: 15px 24px;
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(16, 36, 90, 0.22);
}

.button.secondary {
  padding: 15px 24px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(16, 36, 90, 0.08);
}

.button.light {
  padding: 16px 26px;
  color: var(--ink);
  background: white;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.section-shell {
  width: min(100% - 48px, 1296px);
  margin: 0 auto;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: clamp(38px, 4vw, 64px);
  align-items: center;
  padding-top: 70px;
  padding-bottom: 88px;
}

main {
  background:
    linear-gradient(180deg, rgba(237, 243, 255, .88) 0, rgba(255,255,255,0) 760px),
    #fff;
}

.hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4.55vw, 64px);
  line-height: 1.08;
  font-weight: 860;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #4f5d76;
  font-size: 21px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 650px;
  margin-top: 50px;
}

.hero-metrics div {
  min-height: 126px;
  padding: 22px 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(227, 232, 241, .9);
  border-radius: 8px;
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 42px 46px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7f3;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16,36,90,.22), rgba(16,36,90,.04) 52%, rgba(255,255,255,0));
}

.insight-card,
.progress-card {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(227, 232, 241, .92);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(16,36,90,.14);
  backdrop-filter: blur(12px);
}

.insight-card {
  left: -8px;
  top: 230px;
  width: 306px;
  padding: 20px;
}

.safe-card {
  transform: translateX(0);
}

.insight-card span,
.progress-card > span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.insight-card strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
  margin-bottom: 8px;
}

.insight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.progress-card {
  left: -8px;
  bottom: 4px;
  width: 306px;
  padding: 20px;
}

.progress-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  margin: 14px 0;
}

.progress-row b {
  color: #263553;
}

.progress-row i {
  height: 8px;
  border-radius: 99px;
  background: #e8edf5;
  overflow: hidden;
}

.progress-row i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  margin-bottom: 26px;
}

.section-heading h2,
.trust-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.1vw, 46px);
  line-height: 1.16;
  font-weight: 830;
}

.section-heading p,
.trust-copy p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-heading.compact p {
  margin-top: 16px;
}

.solutions,
.courses,
.mentors,
.insights {
  padding-top: 92px;
  padding-bottom: 92px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-card {
  min-height: 318px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 15px 42px rgba(16,36,90,.06);
}

.solution-card.featured {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.solution-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--soft-blue);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 850;
}

.solution-card.featured span {
  color: var(--gold);
  background: rgba(242,163,26,.18);
}

.solution-card h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 26px;
}

.solution-card.featured h3,
.solution-card.featured p,
.solution-card.featured li {
  color: white;
}

.solution-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.solution-card ul,
.mentor-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.solution-card li,
.mentor-card li {
  padding: 8px 10px;
  color: #46516a;
  background: #f2f5fa;
  border-radius: 999px;
  font-size: 13px;
}

.solution-card.featured li {
  background: rgba(255,255,255,.13);
}

.global-band,
.trust-band,
.cases-band {
  background: #f7f9fc;
}

.global-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
}

.map-carousel {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.map-carousel::before {
  inset: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(242,163,26,.22), transparent 24%),
    radial-gradient(circle at 78% 34%, rgba(61,138,117,.16), transparent 26%),
    radial-gradient(circle at 44% 74%, rgba(24,51,111,.12), transparent 28%);
}

.map-carousel::after {
  inset: 34px;
  border: 1px solid rgba(24,51,111,.06);
  border-radius: 999px;
  transform: rotate(-7deg);
}

.map-stage {
  position: relative;
  z-index: 1;
  min-height: 390px;
}

.map-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 34px 34px 76px;
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.map-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.map-copy {
  max-width: 350px;
}

.map-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.map-copy strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
}

.map-copy p {
  margin: 10px 0 0;
  color: #657086;
  font-size: 14px;
  line-height: 1.75;
}

.country-map {
  align-self: center;
  justify-self: center;
  display: block;
  width: min(92%, 470px);
  height: auto;
  overflow: visible;
  filter: none;
}

.country-map path {
  fill: rgba(255,255,255,.84);
  stroke: rgba(24,51,111,.28);
  stroke-width: 2.4;
}

.country-map .map-island {
  fill: rgba(255,255,255,.72);
  stroke: rgba(24,51,111,.2);
}

.map-pin circle {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 5;
  filter: drop-shadow(0 10px 18px rgba(242,163,26,.35));
}

.map-pin text {
  fill: var(--ink);
  font-size: 18px;
  font-weight: 850;
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 7px;
  stroke-linejoin: round;
}

.uk-map path { fill: rgba(236,247,243,.86); }
.us-map path { fill: rgba(241,245,255,.88); }
.au-map path { fill: rgba(255,247,232,.9); }
.cn-map path { fill: rgba(239,248,246,.88); }

.map-controls {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.map-control {
  min-height: 42px;
  color: #5c6780;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  backdrop-filter: blur(12px);
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.map-control.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 12px 26px rgba(16,36,90,.18);
}

.path-list {
  display: grid;
  gap: 14px;
}

.path-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.path-list b {
  color: var(--gold);
  font-size: 22px;
}

.path-list h3,
.course-grid h4,
.trust-grid h3,
.mentor-card h3,
.insight-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.path-list p,
.course-grid p,
.trust-grid p,
.mentor-card p,
.insight-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.course-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
}

.course-feature {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-feature h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.course-feature p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.72;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.course-grid article,
.trust-grid article,
.insight-grid article {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.course-grid h4 {
  font-size: 21px;
}

.trust-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding-top: 104px;
  padding-bottom: 104px;
}

.trust-copy {
  position: sticky;
  top: 120px;
}

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

.trust-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--soft-blue);
  border-radius: 8px;
  font-weight: 850;
}

.trust-grid h3 {
  margin-top: 18px;
  font-size: 20px;
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mentor-card {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(16,36,90,.05);
}

.line-avatar {
  height: 210px;
  display: grid;
  place-items: center;
  margin: -22px -22px 22px;
  background: linear-gradient(135deg, rgba(16,36,90,.08), rgba(61,138,117,.14));
}

.line-avatar svg {
  width: 126px;
  height: 126px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-avatar.gold { background: linear-gradient(135deg, rgba(24,51,111,.1), rgba(242,163,26,.18)); }
.line-avatar.green { background: linear-gradient(135deg, rgba(61,138,117,.16), rgba(16,36,90,.08)); }
.line-avatar.dark { background: linear-gradient(135deg, rgba(36,48,74,.12), rgba(165,111,19,.18)); }

.mentor-card h3 {
  font-size: 22px;
}

.mentor-card p {
  margin-bottom: 14px;
  font-size: 14px;
}

.company-band {
  padding-top: 92px;
  padding-bottom: 92px;
  color: white;
  background: var(--ink);
}

.section-heading.dark h2,
.section-heading.dark p {
  color: white;
}

.section-heading.dark p {
  opacity: .78;
}

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.industry-tabs button {
  padding: 10px 16px;
  color: rgba(255,255,255,.78);
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  cursor: pointer;
}

.industry-tabs .active {
  color: var(--ink);
  background: white;
  border-color: white;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.logo-wall span {
  height: 70px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  font-weight: 760;
}

.cases-band {
  padding-top: 92px;
  padding-bottom: 92px;
}

.case-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
}

.offer-board {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: linear-gradient(145deg, rgba(242,163,26,.12), rgba(61,138,117,.06)), white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.offer-paper {
  position: absolute;
  width: 300px;
  min-height: 178px;
  padding: 24px;
  background: white;
  border: 1px solid #e5eaf2;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16,36,90,.12);
}

.offer-paper h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 24px;
}

.offer-paper p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.offer-paper.one { left: 42px; top: 64px; transform: rotate(-4deg); }
.offer-paper.two { right: 42px; top: 118px; transform: rotate(5deg); }
.offer-paper.three { left: 142px; bottom: 54px; transform: rotate(1deg); }

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

.story-list article {
  display: grid;
  grid-template-columns: 100px 1fr 110px;
  gap: 18px;
  align-items: center;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.story-list b {
  color: var(--ink);
  font-size: 18px;
}

.story-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.story-list button,
.footer button {
  color: var(--gold);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

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

.insight-grid article {
  min-height: 230px;
  padding: 28px;
}

.insight-grid span {
  color: var(--green);
  font-size: 14px;
  font-weight: 760;
}

.insight-grid h3 {
  margin-top: 18px;
  font-size: 23px;
  line-height: 1.35;
}

.contact-band {
  padding-top: 78px;
  padding-bottom: 82px;
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}

.contact-panel h2 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.18;
}

.contact-panel p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.72;
}

.footer {
  min-height: 108px;
  padding: 30px clamp(22px, 5vw, 72px);
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  align-items: center;
  color: rgba(255,255,255,.68);
  background: #0d1c47;
  font-size: 14px;
}

.footer img {
  width: 118px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.wechat-modal[hidden] {
  display: none;
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 42, .56);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(100%, 430px);
  padding: 34px;
  text-align: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  color: #667089;
  background: #f2f5fa;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.wechat-mark {
  width: 108px;
  height: 108px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 auto 22px;
  padding: 14px;
  background: var(--soft-blue);
  border-radius: 8px;
}

.wechat-mark span {
  background: var(--ink);
  border-radius: 6px;
}

.wechat-mark span:nth-child(2),
.wechat-mark span:nth-child(3) {
  background: var(--gold);
}

.modal-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 28px;
}

.modal-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.modal-card strong {
  color: var(--ink);
  font-size: 22px;
}

.modal-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.wechat-mark {
  background: #fff;
  display: block;
  object-fit: cover;
  padding: 0;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(16,36,90,.08);
}

.wechat-mark span {
  display: none;
}

.brand-story {
  padding-top: 92px;
  padding-bottom: 92px;
}

.brand-story-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.brand-story-copy {
  padding: 38px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-story-copy h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.18;
}

.brand-story-copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.75;
}

.brand-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.brand-proof {
  min-height: 158px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-proof strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 12px;
}

.brand-proof span {
  color: var(--muted);
  line-height: 1.6;
}

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

.lop-card {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16,36,90,.055);
}

.lop-card b {
  display: block;
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
}

.lop-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
}

.lop-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.office-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: repeat(2, 230px);
  gap: 16px;
}

.office-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #e9edf4;
}

.office-grid figure:first-child {
  grid-row: span 2;
}

.office-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.office-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(227,232,241,.9);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.mentor-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mentor-photo-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 38px rgba(16,36,90,.055);
}

.mentor-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-asset-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-asset-showcase img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16,36,90,.055);
}

.subpage-main {
  background:
    linear-gradient(180deg, rgba(237, 243, 255, .88) 0, rgba(255,255,255,0) 620px),
    #fff;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: end;
  padding-top: 86px;
  padding-bottom: 76px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4.7vw, 72px);
  line-height: 1.05;
  font-weight: 860;
}

.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #516078;
  font-size: 20px;
  line-height: 1.72;
}

.hero-note {
  padding: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(227,232,241,.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  margin-bottom: 10px;
}

.hero-note span {
  color: var(--muted);
  line-height: 1.65;
}

.subpage-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.subpage-band {
  background: #f7f9fc;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-card,
.process-card,
.article-card,
.faq-card,
.profile-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16,36,90,.055);
}

.detail-card {
  min-height: 300px;
  padding: 30px;
}

.detail-card b,
.process-card b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(242,163,26,.13);
  border-radius: 8px;
  font-size: 18px;
}

.detail-card h3,
.process-card h3,
.article-card h3,
.faq-card h3,
.profile-card h3 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.28;
}

.detail-card p,
.process-card p,
.article-card p,
.faq-card p,
.profile-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.feature-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: stretch;
}

.feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 36px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel h2 {
  margin: 0;
  color: white;
  font-size: 38px;
  line-height: 1.18;
}

.feature-panel p {
  color: rgba(255,255,255,.78);
  line-height: 1.72;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  align-items: start;
}

.process-card h3 {
  margin-top: 0;
}

.clean-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.clean-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.clean-row:first-child {
  border-top: 0;
  color: white;
  background: var(--ink);
  font-weight: 760;
}

.clean-row span {
  padding: 20px;
  border-left: 1px solid var(--line);
  line-height: 1.55;
}

.clean-row:first-child span {
  border-left-color: rgba(255,255,255,.16);
}

.clean-row span:first-child {
  border-left: 0;
  color: var(--ink);
  font-weight: 760;
}

.clean-row:first-child span:first-child {
  color: white;
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-card {
  min-height: 260px;
  padding: 28px;
}

.article-card time,
.article-card span {
  color: var(--green);
  font-weight: 760;
  font-size: 14px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.profile-card {
  overflow: hidden;
}

.profile-card .line-avatar {
  margin: 0;
}

.profile-card .profile-body {
  padding: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-card {
  padding: 26px;
}

.sub-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  border-radius: 8px;
}

.sub-cta h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.18;
}

.sub-cta p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 160px auto auto;
  }

  .menu-toggle {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .menu-toggle span {
    height: 2px;
    background: var(--ink);
  }

  .nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 94px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .hero,
  .global-layout,
  .trust-layout,
  .course-layout,
  .case-layout,
  .page-hero,
  .feature-split,
  .brand-story-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .trust-copy {
    position: static;
  }

  .mentor-grid,
  .solution-grid,
  .detail-grid,
  .profile-grid,
  .story-strip,
  .lop-grid,
  .mentor-photo-grid,
  .brand-asset-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 76px;
    grid-template-columns: 132px 1fr;
    gap: 14px;
  }

  .brand img {
    width: 126px;
  }

  .header-cta {
    display: none;
  }

  .section-shell {
    width: min(100% - 32px, 1296px);
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 64px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions,
  .section-heading,
  .contact-panel,
  .footer,
  .sub-cta {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-metrics,
  .solution-grid,
  .course-grid,
  .trust-grid,
  .mentor-grid,
  .insight-grid,
  .logo-wall,
  .detail-grid,
  .profile-grid,
  .story-strip,
  .faq-grid,
  .brand-proof-grid,
  .lop-grid,
  .mentor-photo-grid,
  .brand-asset-showcase {
    grid-template-columns: 1fr;
  }

  .office-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .office-grid figure,
  .office-grid figure:first-child {
    grid-row: auto;
    height: 260px;
  }

  .brand-story-copy {
    padding: 28px;
  }

  .brand-story-copy h2 {
    font-size: 34px;
  }

  .hero-visual {
    min-height: 610px;
  }

  .hero-photo {
    inset: 0;
    height: 390px;
  }

  .insight-card {
    top: 318px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .progress-card {
    left: 14px;
    right: 14px;
    bottom: 0;
    width: auto;
  }

  .solutions,
  .courses,
  .mentors,
  .insights,
  .subpage-section,
  .company-band,
  .cases-band,
  .global-layout,
  .trust-layout {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .page-hero {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .clean-row {
    grid-template-columns: 1fr;
  }

  .clean-row span,
  .clean-row span:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .clean-row span:first-child {
    border-top: 0;
  }

  .process-card {
    grid-template-columns: 1fr;
  }

  .map-carousel {
    min-height: 340px;
  }

  .map-stage {
    min-height: 440px;
  }

  .map-slide {
    padding: 24px 20px 80px;
  }

  .map-copy strong {
    font-size: 24px;
  }

  .country-map {
    width: min(100%, 410px);
  }

  .map-controls {
    left: 14px;
    right: 14px;
    bottom: 16px;
    gap: 6px;
  }

  .map-control {
    min-height: 38px;
    font-size: 13px;
  }

  .path-list article,
  .story-list article {
    grid-template-columns: 1fr;
  }

  .offer-board {
    min-height: 520px;
  }

  .offer-paper {
    width: min(82%, 300px);
  }

  .offer-paper.one { left: 20px; top: 40px; }
  .offer-paper.two { right: 20px; top: 185px; }
  .offer-paper.three { left: 46px; bottom: 40px; }

  .contact-panel {
    padding: 28px;
  }

  .contact-panel h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Goodpep-inspired refresh, guided by DESIGN.md */
:root {
  --ink: #10245a;
  --ink-2: #1d1d1f;
  --blue: #345ec9;
  --blue-2: #0066cc;
  --gold: #f2a31a;
  --paper: #ffffff;
  --pearl: #f5f5f7;
  --mist: #f7f9fc;
  --soft-line: #e5e7ee;
  --muted: #6e7688;
  --soft-shadow: 0 28px 90px rgba(16,36,90,.10);
}

body {
  color: var(--ink-2);
  background: var(--paper);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

main {
  background: var(--paper);
}

.site-header {
  height: 74px;
  grid-template-columns: 180px 1fr auto;
  background: rgba(255,255,255,.92);
  border-bottom: 0;
  box-shadow: none;
}

.brand img {
  width: 156px;
}

.nav {
  gap: clamp(22px, 2.4vw, 36px);
  color: #3f4044;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a.is-active,
.nav a:hover {
  color: var(--ink);
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: none;
}

.header-cta {
  padding: 15px 30px;
  font-size: 15px;
}

.button,
.header-cta {
  border-radius: 999px;
  font-weight: 700;
}

.button.primary,
.button.secondary,
.button.light {
  padding: 15px 28px;
}

.button.secondary {
  color: var(--blue);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 74px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  place-items: center;
  padding: 170px 24px 132px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.76) 28%, rgba(255,255,255,.46) 58%, rgba(255,255,255,.22) 100%),
    radial-gradient(ellipse at 50% 57%, rgba(255,255,255,.76) 0%, rgba(255,255,255,.58) 34%, rgba(255,255,255,.16) 68%),
    url("./assets/brand/hero-office-collaboration.webp") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.9) 86%, #fff);
}

.hero-content {
  width: min(100%, 1000px);
  margin: 16vh auto 0;
  text-align: center;
  justify-self: center;
}

.hero-content h1 {
  margin: 0;
  text-align: center;
  color: #3f4044;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -0.01em;
}

.hero-content p {
  width: min(100%, 760px);
  margin: 30px auto 0;
  color: #767b85;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.45;
  font-weight: 400;
}

.hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.hero-trust {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(100% - 48px, 940px);
  transform: translateX(-50%);
  text-align: center;
}

.hero-trust > span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.hero-trust div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 62px);
  color: rgba(29,29,31,.62);
  filter: grayscale(1);
}

.hero-trust b {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  white-space: nowrap;
}

.proof-strip {
  padding: 34px 0;
  background: #fff;
}

.proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 54px);
  flex-wrap: wrap;
  color: rgba(29,29,31,.42);
  font-size: 18px;
  font-weight: 800;
  filter: grayscale(1);
}

.intro-section {
  padding: 120px 0 96px;
  text-align: center;
}

.intro-kicker,
.section-title-row > span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.intro-section h2,
.section-title-row h2 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ink-2);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.intro-section p,
.section-title-row p {
  width: min(100%, 820px);
  margin: 28px auto 0;
  color: #6f7480;
  font-size: 22px;
  line-height: 1.6;
}

.work-section {
  padding: 100px 0 124px;
  background: var(--pearl);
}

.section-title-row {
  text-align: center;
  margin-bottom: 56px;
}

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

.work-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  filter: saturate(.92);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.03) 18%, rgba(16,36,90,.74));
}

.work-card div {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 32px;
  color: #fff;
}

.work-card span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 800;
}

.work-card h3 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 700;
}

.work-card p {
  max-width: 580px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.65;
}

.work-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  color: var(--blue);
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.growth-band {
  padding: 116px 0;
  color: #fff;
  background: #10245a;
}

.growth-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.section-title-row.light {
  text-align: left;
  margin-bottom: 0;
}

.section-title-row.light h2,
.section-title-row.light p {
  margin-left: 0;
  color: #fff;
}

.section-title-row.light span {
  color: #83a6ff;
}

.growth-cards {
  display: grid;
  gap: 18px;
}

.growth-cards article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  padding: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
}

.growth-cards span {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 800;
}

.growth-cards p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.65;
}

.growth-cards strong {
  color: var(--gold);
  font-size: 52px;
  line-height: 1;
}

.global-band {
  padding: 104px 0;
  background: var(--pearl);
}

.global-layout {
  padding: 0;
  gap: 64px;
}

.map-carousel {
  border: 0;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.path-list article {
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.method-section {
  padding: 118px 0 130px;
  background: #fff;
}

.method-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 62px;
  align-items: start;
}

.method-layout .section-title-row {
  position: sticky;
  top: 108px;
  text-align: left;
  margin-bottom: 0;
}

.method-layout .section-title-row h2,
.method-layout .section-title-row p {
  margin-left: 0;
}

.method-grid {
  display: grid;
  gap: 18px;
}

.method-grid article {
  padding: 34px;
  background: var(--pearl);
  border-radius: 18px;
}

.method-grid b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 20px;
}

.method-grid h3 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: 28px;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.team-section {
  padding: 110px 0 128px;
  background: var(--pearl);
}

.team-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 58px;
  align-items: center;
}

.team-layout .section-title-row {
  text-align: left;
  margin: 0;
}

.team-layout .section-title-row h2,
.team-layout .section-title-row p {
  margin-left: 0;
}

.team-collage {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  grid-template-rows: 240px 240px;
  gap: 18px;
}

.team-collage figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.team-collage figure:first-child {
  grid-row: span 2;
}

.team-collage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.insights-section {
  padding: 116px 0;
  background: #fff;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.insight-grid article {
  padding: 34px;
  background: var(--pearl);
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.insight-grid span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.insight-grid h3 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.insight-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-band {
  padding: 92px 0;
  background: #10245a;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 54px 62px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
}

.contact-panel h2,
.contact-panel p {
  margin-left: 0;
}

.contact-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.contact-panel p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}

.footer {
  background: #0f1e47;
}

.page-hero {
  background: linear-gradient(180deg, #f5f5f7, #fff);
}

.page-hero h1 {
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.detail-card,
.article-card,
.faq-card,
.process-card,
.clean-table,
.hero-note {
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 156px 1fr;
  }

  .header-cta {
    display: none;
  }

  .work-grid,
  .growth-layout,
  .method-layout,
  .team-layout,
  .global-layout {
    grid-template-columns: 1fr;
  }

  .section-title-row.light,
  .method-layout .section-title-row,
  .team-layout .section-title-row {
    position: static;
    text-align: center;
  }

  .section-title-row.light h2,
  .section-title-row.light p,
  .method-layout .section-title-row h2,
  .method-layout .section-title-row p,
  .team-layout .section-title-row h2,
  .team-layout .section-title-row p {
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 76px;
  }

  .nav {
    text-transform: none;
  }

  .hero {
    min-height: 760px;
    padding: 118px 18px 110px;
  }

  .hero-content {
    margin-top: 14vh;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .button {
    width: min(100%, 240px);
    text-align: center;
  }

  .hero-trust {
    bottom: 20px;
  }

  .hero-trust div,
  .proof-row {
    gap: 16px 24px;
  }

  .hero-trust div {
    display: grid;
    grid-template-columns: repeat(3, auto);
  }

  .hero-trust b {
    font-size: 21px;
  }

  .intro-section,
  .work-section,
  .growth-band,
  .global-band,
  .method-section,
  .team-section,
  .insights-section {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .intro-section h2,
  .section-title-row h2 {
    font-size: 40px;
  }

  .intro-section p,
  .section-title-row p {
    font-size: 18px;
  }

  .work-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card img {
    min-height: 440px;
  }

  .work-card div {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .growth-cards article {
    grid-template-columns: 1fr;
  }

  .team-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }

  .team-collage figure:first-child {
    grid-row: auto;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 34px;
  }
}

/* Product/service content expansion */
.service-flow-section {
  padding: 112px 0 122px;
  background: #fff;
}

.service-flow-layout .section-title-row p {
  max-width: 760px;
}

.flow-grid,
.timeline-grid,
.course-service-grid {
  display: grid;
  gap: 18px;
}

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

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

.flow-grid article,
.timeline-grid article,
.course-service-grid article {
  min-height: 248px;
  padding: 30px;
  background: var(--pearl);
  border-radius: 18px;
}

.timeline-grid article,
.course-service-grid article {
  background: #fff;
  border: 1px solid rgba(226, 232, 242, .82);
}

.flow-grid b,
.timeline-grid span,
.course-service-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  color: var(--gold);
  background: rgba(242, 163, 26, .13);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
}

.flow-grid h3,
.timeline-grid h3,
.course-service-grid h3 {
  margin: 26px 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.flow-grid p,
.timeline-grid p,
.course-service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.course-service-section {
  padding-top: 28px;
}

@media (max-width: 1020px) {
  .flow-grid,
  .timeline-grid,
  .course-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-flow-section {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .flow-grid,
  .timeline-grid,
  .course-service-grid {
    grid-template-columns: 1fr;
  }

  .flow-grid article,
  .timeline-grid article,
  .course-service-grid article {
    min-height: 0;
    padding: 26px;
  }

  .clean-table {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .clean-row {
    display: block;
    border: 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(16, 36, 90, .06);
  }

  .clean-row:first-child {
    display: none;
  }

  .clean-row span {
    display: block;
    padding: 10px 20px;
    border-left: 0;
  }

  .clean-row span:first-child {
    padding-top: 20px;
    color: var(--ink);
    font-weight: 850;
  }

  .clean-row span:last-child {
    padding-bottom: 20px;
  }
}
