:root {
  color-scheme: light;
  --bg: #f6f7f3;
  --surface: #ffffff;
  --surface-soft: #f9faf7;
  --ink: #1f2523;
  --muted: #66716d;
  --line: #d9ded8;
  --green: #116a5c;
  --red: #b83636;
  --gold: #9a6a1f;
  --blue: #315c85;
  --yellow: #f3c735;
  --orange: #e9892d;
  --sky: #2e77d0;
  --focus: #0f766e;
  --shadow: 0 12px 30px rgba(24, 31, 28, 0.08);
  --rainbow: linear-gradient(90deg, #e94b4b 0%, #f6a623 18%, #f6d743 35%, #1f9d55 54%, #2e77d0 73%, #7b61ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 6% 0%, rgba(246, 166, 35, 0.11), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(46, 119, 208, 0.1), transparent 24%),
    var(--bg);
  color: var(--ink);
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

button {
  cursor: pointer;
}

.app {
  min-height: 100vh;
}

.rainbow-bar {
  background: var(--rainbow);
  height: 6px;
  width: 100%;
}

.topbar {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 12px clamp(16px, 4vw, 48px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand-lockup {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 180px;
  text-decoration: none;
}

.brand-lockup:hover {
  text-decoration: none;
}

.brand-lockup img {
  flex: 0 0 auto;
}

.brand-logo {
  height: auto;
  width: clamp(174px, 17vw, 248px);
}

.brand-text {
  display: none;
}

.brand-lockup strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.15;
}

.brand-lockup small {
  color: var(--muted);
  display: block;
  font-size: 0.8rem;
  line-height: 1.4;
}

.topbar h1,
.section-heading h2,
.lead-band h2,
.brand-intro h1,
.section-band h2 {
  letter-spacing: 0;
  margin: 0;
}

.topbar h1 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  flex: 1 1 460px;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.topnav a {
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.92rem;
  padding: 8px 10px;
}

.topnav a:hover {
  background: var(--surface-soft);
  border-color: var(--line);
  text-decoration: none;
}

.contact-pill {
  align-items: center;
  background: #141c24;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px;
  text-decoration: none;
  white-space: nowrap;
}

.contact-pill:hover {
  background: #25313d;
  text-decoration: none;
}

.contact-pill span {
  color: #dfe8e5;
  font-size: 0.82rem;
}

.contact-pill strong {
  font-size: 0.95rem;
}

.brand-intro {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
  padding: 24px clamp(16px, 4vw, 48px);
}

.intro-copy,
.intro-panel,
.intro-media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-copy {
  padding: clamp(20px, 3vw, 30px);
  position: relative;
}

.intro-copy::before,
.profile-main::before,
.news-grid article::before {
  background: var(--rainbow);
  border-radius: 999px;
  content: "";
  display: block;
  height: 5px;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 0;
}

.intro-copy h1 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.12;
  max-width: 920px;
}

.intro-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
  margin: 14px 0 0;
  max-width: 900px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof span {
  background: #fff8df;
  border: 1px solid #ead89a;
  border-radius: 999px;
  color: #6f4b10;
  font-size: 0.84rem;
  font-weight: 750;
  padding: 7px 10px;
}

.intro-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.intro-panel img {
  height: 76px;
  width: 76px;
}

.intro-panel div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.intro-panel strong {
  display: block;
  margin-bottom: 4px;
}

.intro-panel span {
  color: var(--muted);
  line-height: 1.55;
}

.intro-media {
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.intro-media img {
  display: block;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  width: 100%;
}

.media-caption {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 222, 216, 0.9);
  border-radius: 8px;
  bottom: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  padding: 12px;
  position: absolute;
}

.media-caption strong,
.media-caption span {
  display: block;
}

.media-caption span {
  color: var(--muted);
  line-height: 1.45;
  margin-top: 3px;
}

.about-company,
.company-profile,
.career-band,
.university-band,
.consulting-band {
  margin: 0 clamp(16px, 4vw, 48px) 24px;
}

.about-company,
.company-profile,
.career-band {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 2fr);
}

.about-copy,
.profile-main,
.career-copy,
.career-actions div,
.about-points article,
.profile-cards article,
.university-band,
.consulting-band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy,
.profile-main,
.career-copy {
  padding: 20px;
  position: relative;
}

.about-copy h2,
.profile-main h2,
.career-copy h2,
.university-copy h2,
.consulting-copy h2 {
  font-size: clamp(1.22rem, 2vw, 1.8rem);
  line-height: 1.22;
  margin: 0;
}

.profile-main p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.68;
  margin: 14px 0 0;
}

.career-copy {
  border-top: 5px solid transparent;
  border-image: var(--rainbow) 1;
}

.career-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.68;
  margin: 14px 0 0;
}

.career-actions {
  align-self: start;
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.career-actions div {
  min-height: 0;
  padding: 18px;
}

.career-actions strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.career-actions span {
  color: var(--muted);
  line-height: 1.62;
}

.about-points,
.profile-cards {
  align-self: start;
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-points article,
.profile-cards article {
  min-height: 0;
  padding: 16px;
}

.about-points strong,
.profile-cards strong,
.university-factors strong {
  display: block;
  margin-bottom: 8px;
}

.about-points p,
.profile-cards p,
.university-copy p,
.consulting-copy p,
.university-factors span {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.mini-list {
  color: var(--muted);
  display: grid;
  gap: 6px;
  line-height: 1.45;
  margin: 12px 0 0;
  padding-left: 18px;
}

.mini-list li::marker {
  color: var(--green);
}

.career-data {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.career-data div {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.career-data strong {
  background: var(--rainbow);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

.career-data span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  line-height: 1.48;
}

.data-source-links {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 10px 0 0 !important;
}

.data-source-links a {
  font-weight: 800;
}

.ability-strip,
.summary-strip {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(16px, 4vw, 48px);
}

.ability-strip {
  background: #141c24;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ability-strip div,
.summary-strip div {
  border-left: 1px solid var(--line);
  min-height: 76px;
  padding: 14px 18px;
}

.ability-strip div {
  border-left-color: rgba(255, 255, 255, 0.16);
}

.ability-strip div:last-child,
.summary-strip div:last-child {
  border-right: 1px solid var(--line);
}

.ability-strip div:last-child {
  border-right-color: rgba(255, 255, 255, 0.16);
}

.ability-strip strong,
.summary-strip strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.ability-strip strong {
  background: var(--rainbow);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.ability-strip span,
.summary-strip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.ability-strip span {
  color: #dce7e3;
}

.workspace {
  display: grid;
  gap: 18px;
  grid-template-columns: 280px minmax(0, 1fr) minmax(320px, 430px);
  padding: 22px clamp(16px, 4vw, 48px) 30px;
}

.filters,
.results,
.detail-panel,
.lead-band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.filters {
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 16px;
  position: sticky;
  top: 92px;
}

.field-group {
  display: grid;
  gap: 6px;
}

label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid #cbd2cc;
  border-radius: 6px;
  color: var(--ink);
  min-height: 40px;
  padding: 9px 10px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.22);
  outline-offset: 2px;
}

textarea {
  min-height: 72px;
  resize: vertical;
}

.search-row {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 40px;
}

.icon-button {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  display: inline-flex;
  font-size: 1.35rem;
  justify-content: center;
  min-height: 40px;
}

.secondary-action,
.lead-form button,
.primary-link {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
}

.secondary-action {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--ink);
}

.results,
.detail-panel {
  min-height: 650px;
}

.results {
  padding: 18px;
}

.section-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-heading h2,
.lead-band h2 {
  font-size: 1.12rem;
}

.count-pill {
  background: #ecf4f1;
  border: 1px solid #c6ddd5;
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
  min-width: 42px;
  padding: 6px 10px;
  text-align: center;
}

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

.result-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  transition: border-color 0.16s ease, transform 0.16s ease;
}

.result-card[aria-current="true"] {
  border-color: var(--green);
  box-shadow: inset 4px 0 0 var(--green);
}

.result-card:hover {
  border-color: #aebbb5;
  transform: translateY(-1px);
}

.result-card button {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
  text-align: left;
  width: 100%;
}

.result-title {
  align-items: start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.result-title h3 {
  font-size: 1.02rem;
  line-height: 1.3;
  margin: 0;
}

.result-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 10px 0 12px;
}

.funding-snippet {
  background: #fff7e2;
  border: 1px solid #ead89a;
  border-radius: 6px;
  color: #6f4b10 !important;
  font-size: 0.88rem;
  margin-top: 0 !important;
  padding: 8px 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag,
.type-badge,
.status-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1;
  padding: 6px 8px;
}

.tag {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--muted);
}

.type-badge {
  background: #eef5f1;
  color: var(--green);
  white-space: nowrap;
}

.status-badge {
  background: #fff5df;
  color: var(--gold);
}

.detail-panel {
  align-self: start;
  overflow: hidden;
  position: sticky;
  top: 92px;
}

.detail-content {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.detail-content h2 {
  font-size: 1.35rem;
  line-height: 1.24;
  margin: 0;
}

.detail-content h3 {
  font-size: 0.96rem;
  margin: 0 0 8px;
}

.detail-content p,
.detail-content li {
  color: var(--muted);
  line-height: 1.58;
}

.detail-content p {
  margin: 0;
}

.detail-content ul,
.detail-content ol {
  margin: 0;
  padding-left: 20px;
}

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

.metric {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  margin-bottom: 4px;
}

.metric strong {
  font-size: 0.92rem;
}

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

.source-list a {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: block;
  padding: 8px 10px;
}

.funding-highlight {
  background: #fff7e2;
  border: 1px solid #ead89a;
  border-radius: 8px;
  padding: 12px;
}

.funding-highlight h3 {
  color: #6f4b10;
}

.funding-highlight p {
  color: #5f4514;
}

.primary-link {
  background: var(--rainbow);
  border: 0;
  color: #fff;
  text-decoration: none;
}

.primary-link:hover {
  filter: saturate(1.08) brightness(0.96);
  text-decoration: none;
}

.lead-band {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 2fr);
  margin: 0 clamp(16px, 4vw, 48px) 38px;
  padding: 20px;
}

.university-band {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  overflow: hidden;
}

.university-image {
  min-height: 410px;
}

.university-image img,
.consulting-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.university-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

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

.university-factors article {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 118px;
  padding: 12px;
}

.consulting-band {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
}

.consulting-copy {
  align-content: center;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.consulting-image {
  min-height: 360px;
}

.section-band {
  margin: 0 clamp(16px, 4vw, 48px) 24px;
  padding: 22px 0 0;
}

.block-heading {
  margin-bottom: 14px;
}

.system-grid,
.service-steps,
.trust-grid,
.news-grid,
.job-grid,
.why-china-grid {
  display: grid;
  gap: 14px;
}

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

.service-steps,
.trust-grid,
.news-grid,
.job-grid,
.why-china-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.system-grid article,
.service-steps article,
.trust-grid div,
.news-grid article,
.job-grid article,
.why-china-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 150px;
  padding: 16px;
}

.system-grid span {
  color: var(--green);
  display: block;
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 18px;
}

.system-grid h3,
.service-steps h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.system-grid p,
.service-steps p,
.trust-grid p,
.news-grid p,
.job-grid p,
.why-china-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.why-china-band {
  padding-top: 0;
}

.why-china-priority {
  margin-top: 0;
}

.why-china-heading {
  align-items: flex-start;
}

.why-china-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.15;
}

.why-china-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
  margin: 10px 0 0;
  max-width: 980px;
}

.audience-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.audience-row span {
  background: #fff8df;
  border: 1px solid #ead89a;
  border-radius: 8px;
  color: #6f4b10;
  font-weight: 800;
  line-height: 1.45;
  padding: 12px 14px;
}

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

.why-china-grid article {
  border-top: 4px solid transparent;
  min-height: 250px;
}

.why-china-grid article:nth-child(1) {
  border-top-color: var(--red);
}

.why-china-grid article:nth-child(2) {
  border-top-color: var(--orange);
}

.why-china-grid article:nth-child(3) {
  border-top-color: var(--yellow);
}

.why-china-grid article:nth-child(4) {
  border-top-color: var(--green);
}

.why-china-grid article:nth-child(5) {
  border-top-color: var(--sky);
}

.why-china-grid article:nth-child(6) {
  border-top-color: #7b61ff;
}

.why-china-grid span {
  background: var(--rainbow);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.why-china-grid h3 {
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.job-band {
  padding-top: 0;
}

.skill-band {
  padding-top: 0;
}

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

.skill-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-top: 4px solid var(--green);
  box-shadow: var(--shadow);
  min-height: 0;
  padding: 16px;
}

.skill-grid article:nth-child(2) {
  border-top-color: var(--sky);
}

.skill-grid article:nth-child(3) {
  border-top-color: var(--yellow);
}

.skill-grid article:nth-child(4) {
  border-top-color: #7b61ff;
}

.skill-grid span {
  color: var(--blue);
  display: block;
  font-size: 0.8rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.skill-grid h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 10px;
}

.salary-range {
  background: #fff7e2;
  border: 1px solid #ead89a;
  border-radius: 6px;
  color: #6f4b10;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.35;
  margin: 10px 0;
  padding: 8px 10px;
}

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

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

.job-grid article {
  border-top: 4px solid var(--green);
  min-height: 230px;
}

.job-grid article:nth-child(2) {
  border-top-color: var(--sky);
}

.job-grid article:nth-child(3) {
  border-top-color: var(--yellow);
}

.job-grid article:nth-child(4) {
  border-top-color: var(--orange);
}

.job-grid article:nth-child(5) {
  border-top-color: #7b61ff;
}

.job-grid span {
  color: var(--blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.job-grid h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 10px;
}

.job-grid a {
  border-top: 1px solid var(--line);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 12px;
  padding-top: 10px;
}

.job-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 12px 0 0;
}

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

.service-steps.expanded article {
  border-top: 4px solid transparent;
}

.service-steps.expanded article:nth-child(1) {
  border-top-color: var(--red);
}

.service-steps.expanded article:nth-child(2) {
  border-top-color: var(--orange);
}

.service-steps.expanded article:nth-child(3) {
  border-top-color: var(--yellow);
}

.service-steps.expanded article:nth-child(4) {
  border-top-color: var(--green);
}

.service-steps.expanded article:nth-child(5) {
  border-top-color: var(--sky);
}

.service-steps.expanded article:nth-child(6) {
  border-top-color: #7b61ff;
}

.service-band {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 2fr);
}

.service-core {
  background: #141c24;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 0;
  overflow: hidden;
  padding: 22px;
}

.service-core .eyebrow,
.service-core h2,
.service-core p {
  color: #fff;
}

.service-core .eyebrow {
  color: #aee7d3;
}

.service-intro {
  display: grid;
  gap: 14px;
}

.service-intro p:not(.eyebrow) {
  color: #d4dfdc;
  line-height: 1.68;
  margin: 0;
}

.service-slogan {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
}

.service-slogan strong,
.service-slogan span {
  display: block;
}

.service-slogan strong {
  background: var(--rainbow);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.service-slogan span {
  color: #e8f1ee;
  line-height: 1.55;
}

.service-core .service-steps article {
  background: #ffffff;
  box-shadow: none;
}

.service-core .service-steps h3 {
  color: var(--ink);
}

.service-core .service-steps p {
  color: var(--muted);
}

.service-band h2,
.trust-band h2 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.trust-band {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.8fr);
}

.trust-grid div {
  min-height: 130px;
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
}

.news-band {
  padding-top: 10px;
}

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

.news-grid article {
  min-height: 230px;
  position: relative;
}

.news-grid time {
  color: var(--blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.news-grid h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 10px;
}

.news-grid span {
  border-top: 1px solid var(--line);
  color: #52615b;
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 12px;
  padding-top: 10px;
}

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

.lead-form label {
  display: grid;
  gap: 6px;
}

.lead-form button {
  align-self: end;
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
}

.lead-message {
  color: var(--green);
  font-weight: 700;
  grid-column: 2;
  margin: 0;
}

.lead-band p {
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0 0;
}

.contact-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 16px;
}

.contact-grid article {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 180px;
  padding: 14px;
}

.contact-grid strong {
  display: block;
  margin-bottom: 6px;
}

.contact-grid a {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-grid img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  margin-top: 10px;
  max-height: 340px;
  object-fit: contain;
  padding: 6px;
  width: 100%;
}

.site-footer {
  background: #141c24;
  color: #eef4f2;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(200px, 0.8fr));
  padding: 28px clamp(16px, 4vw, 48px);
}

.site-footer p {
  color: #c9d7d2;
  line-height: 1.6;
  margin: 8px 0 0;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
}

.empty-state {
  align-items: center;
  border: 1px dashed #bac4be;
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  min-height: 200px;
  padding: 24px;
}

@media (max-width: 1180px) {
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .topnav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .brand-intro,
  .about-company,
  .company-profile,
  .career-band,
  .university-band,
  .consulting-band,
  .service-band,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .about-points,
  .profile-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-grid,
  .why-china-grid,
  .skill-grid,
  .career-data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .workspace {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .detail-panel {
    grid-column: 1 / -1;
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar,
  .lead-band,
  .site-footer {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
    gap: 12px;
    position: static;
    grid-template-columns: 1fr;
  }

  .brand-lockup {
    min-width: 0;
  }

  .topnav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .contact-pill {
    justify-content: center;
    width: fit-content;
  }

  .brand-intro {
    grid-template-columns: 1fr;
    padding-top: 16px;
  }

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

  .workspace {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-message {
    grid-column: 1;
  }

  .system-grid,
  .service-steps,
  .service-steps.expanded,
  .trust-grid,
  .news-grid,
  .job-grid,
  .why-china-grid,
  .audience-row,
  .skill-grid,
  .career-data,
  .contact-grid,
  .about-points,
  .profile-cards,
  .career-actions,
  .university-factors {
    grid-template-columns: 1fr;
  }

  .university-image,
  .consulting-image {
    min-height: 260px;
  }
}

@media (max-width: 460px) {
  .ability-strip,
  .summary-strip {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026 conversion-focused homepage */
html {
  scroll-behavior: smooth;
}

.conversion-hero {
  min-height: min(720px, calc(100vh - 92px));
}

.conversion-hero .intro-copy {
  align-content: center;
  display: grid;
}

.conversion-hero .intro-copy h1 {
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  max-width: 980px;
}

.conversion-hero .hero-summary {
  font-size: clamp(1rem, 1.45vw, 1.28rem) !important;
  max-width: 780px !important;
}

.hero-benefits {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.hero-benefits li {
  color: #35433e;
  font-weight: 700;
  padding-left: 28px;
  position: relative;
}

.hero-benefits li::before {
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  content: "✓";
  font-size: 0.72rem;
  height: 19px;
  left: 0;
  line-height: 19px;
  position: absolute;
  text-align: center;
  top: 2px;
  width: 19px;
}

.primary-link {
  background: var(--rainbow);
  border: 0;
  color: #fff;
  min-width: 210px;
}

.primary-link:hover,
.zalo-action:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.zalo-action {
  align-items: center;
  background: #0866ff;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  min-width: 180px;
  padding: 10px 14px;
}

.micro-trust {
  font-size: 0.78rem !important;
  margin-top: 12px !important;
}

.trust-ribbon {
  background: #141c24;
  color: #eaf2ef;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  margin: 0 clamp(16px, 4vw, 48px) 24px;
  padding: 16px 20px;
}

.trust-ribbon span {
  border-left: 3px solid #f3c735;
  font-size: 0.88rem;
  padding-left: 10px;
}

.trust-ribbon a {
  color: #fff;
  font-weight: 800;
}

.compact-section {
  margin: 0 clamp(16px, 4vw, 48px) 24px;
}

.compact-section .block-heading h2,
.contact-location h2,
.tool-heading h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.7rem);
  line-height: 1.15;
}

.compact-section .block-heading p,
.tool-heading p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 760px;
}

.concise-grid article {
  min-height: 0;
}

.concise-grid article p {
  font-size: 0.94rem;
  line-height: 1.6;
}

.concise-grid article a,
.text-cta {
  display: inline-block;
  font-weight: 800;
  margin-top: 10px;
}

.concise-services article {
  min-height: 180px;
}

.content-hub,
.process-section,
.case-section,
.faq-section,
.scholarship-tool {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 36px);
}

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

.hub-grid a {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 120px;
  padding: 18px;
}

.hub-grid a:hover {
  border-color: var(--green);
  text-decoration: none;
}

.hub-grid strong,
.hub-grid span {
  display: block;
}

.hub-grid strong {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hub-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.tool-heading {
  margin-bottom: 18px;
}

.scholarship-tool .workspace {
  margin: 0;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.process-list li {
  border-top: 4px solid var(--green);
  min-height: 170px;
  padding: 18px 18px 18px 0;
}

.process-list li:nth-child(2) { border-color: var(--sky); }
.process-list li:nth-child(3) { border-color: var(--yellow); }
.process-list li:nth-child(4) { border-color: var(--orange); }
.process-list li:nth-child(5) { border-color: #7b61ff; }

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

.process-list strong {
  font-size: 1rem;
  margin-bottom: 9px;
}

.process-list span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.case-grid article {
  background: #fff9e8;
  border: 1px solid #ead89a;
  border-radius: 8px;
  padding: 20px;
}

.case-label {
  color: #805b17;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-grid h3 {
  line-height: 1.35;
}

.case-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.compact-about {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
}

.about-visuals {
  display: grid;
  gap: 12px;
}

.about-visuals figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.about-visuals img {
  display: block;
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.about-visuals figcaption {
  color: var(--muted);
  padding: 10px 14px;
}

.team-roles {
  display: grid;
  gap: 8px;
}

.team-roles article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
}

.team-roles span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 920px;
}

.assessment-band {
  align-items: start;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.assessment-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.assessment-form .full-field {
  grid-column: 1 / -1;
}

.privacy-consent {
  align-items: start;
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  line-height: 1.5;
}

.privacy-consent input {
  margin-top: 4px;
}

.direct-contact,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.direct-contact a,
.contact-buttons a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  padding: 10px 12px;
}

.contact-location {
  align-items: stretch;
  background: #fff;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  padding: 32px clamp(16px, 4vw, 48px);
}

.contact-location p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-location iframe {
  border: 0;
  min-height: 320px;
  width: 100%;
}

.site-footer a {
  color: #dceae5;
}

.floating-zalo {
  align-items: center;
  background: #0866ff;
  border: 2px solid #fff;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 8px 24px rgba(8, 102, 255, 0.32);
  color: #fff;
  display: flex;
  gap: 9px;
  padding: 10px 15px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.floating-zalo:hover {
  text-decoration: none;
}

.floating-zalo span {
  background: #fff;
  border-radius: 50%;
  color: #0866ff;
  font-size: 0.72rem;
  font-weight: 900;
  height: 34px;
  line-height: 34px;
  text-align: center;
  width: 34px;
}

@media (max-width: 1180px) {
  .trust-ribbon,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .conversion-hero {
    min-height: 0;
  }

  .conversion-hero .intro-copy h1 {
    font-size: 2.2rem;
  }

  .trust-ribbon,
  .hub-grid,
  .process-list,
  .case-grid,
  .compact-about,
  .assessment-band,
  .contact-location {
    grid-template-columns: 1fr;
  }

  .about-visuals,
  .team-roles {
    min-width: 0;
  }

  .concise-services article,
  .process-list li {
    min-height: 0;
  }

  .assessment-form .full-field {
    grid-column: 1;
  }

  .floating-zalo strong {
    display: none;
  }
}
