:root {
  --ink: #1e302c;
  --muted: #64716d;
  --paper: #ffffff;
  --wash: #f4f6f3;
  --mist: #e8efea;
  --line: #d8dfda;
  --teal: #2f6f60;
  --teal-dark: #123f36;
  --green: #5d8f72;
  --lime: #d7d8b2;
  --amber: #c59b59;
  --coral: #c86f52;
  --blue: #4f7c8a;
  --shadow: 0 18px 40px rgba(25, 57, 49, 0.14);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.intent-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 20px;
  color: var(--ink);
  border-bottom: 1px solid rgba(216, 223, 218, 0.9);
  background: #eef1e9;
  font-weight: 760;
}

.intent-bar a {
  white-space: nowrap;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(217, 229, 211, 0.88);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px rgba(25, 57, 49, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-text {
  min-width: 0;
  line-height: 1.18;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.nav-links a,
.nav-cta {
  color: #314340;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.nav-links a {
  font-size: 15px;
}

.nav-cta,
.primary-button,
.secondary-button,
.submit-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 950;
  text-decoration: none;
}

.nav-cta,
.primary-button,
.submit-button {
  border: 0;
  color: #fff;
  background: var(--coral);
}

.secondary-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--teal-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 63, 54, 0.94) 0%, rgba(18, 63, 54, 0.82) 42%, rgba(18, 63, 54, 0.48) 72%, rgba(18, 63, 54, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 63, 54, 0.16), rgba(18, 63, 54, 0.04));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(390px, 0.76fr);
  align-items: center;
  gap: 46px;
  margin: 0 auto;
  padding: 58px 0 70px;
}

.hero-copy {
  color: #fff;
}

.eyebrow,
.section-kicker {
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: 66px;
  line-height: 1.04;
}

h2 {
  font-size: 40px;
  line-height: 1.16;
}

h3 {
  font-size: 22px;
  line-height: 1.28;
}

.hero-lede {
  max-width: 690px;
  margin-top: 20px;
  font-size: 21px;
  line-height: 1.68;
  color: #e7f0ee;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  padding: 0 12px;
  color: #f3faf7;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 850;
}

.contact-card {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(197, 155, 89, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.contact-card div {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-card .wechat-direct {
  border: 1px solid rgba(234, 216, 168, 0.38);
  background: rgba(255, 255, 255, 0.18);
}

.contact-card span {
  color: #ead8a8;
  font-size: 13px;
  font-weight: 950;
}

.contact-card strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.contact-card .wechat-id {
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
}

.contact-card small {
  color: #f0f5ef;
  font-size: 13px;
  font-weight: 780;
}

.contact-card p {
  grid-column: 1 / -1;
  color: #e5f0ea;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.form-heading,
.wide,
.submit-button,
.form-note {
  grid-column: 1 / -1;
}

.form-heading h2 {
  margin-top: 8px;
  font-size: 30px;
}

.form-heading p:not(.eyebrow),
.form-note {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.form-heading .direct-wechat-note {
  color: var(--teal-dark);
  font-weight: 850;
}

.direct-wechat-note strong {
  color: var(--coral);
  font-size: 24px;
  letter-spacing: 0;
}

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  color: #273936;
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd8d5;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 111, 96, 0.14);
}

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

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.consent input {
  min-height: auto;
  margin-top: 4px;
}

.submit-button {
  min-height: 54px;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
}

.quick-strip,
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.quick-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -42px;
}

.quick-strip div {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(25, 57, 49, 0.09);
}

.quick-strip strong {
  display: block;
  color: var(--teal);
  font-size: 25px;
}

.quick-strip span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.58;
}

.section {
  padding: 82px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: 58px;
}

.section-kicker + h2 {
  margin-top: 10px;
}

.copy-block p,
.section-heading p,
.info-card p,
.feature-list p,
.advantage-grid p,
.service-model p,
.switch-band p,
.final-cta p,
.faq-list p {
  color: var(--muted);
  line-height: 1.68;
}

.tick-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px var(--teal);
}

.pathway-section {
  padding-top: 92px;
  padding-bottom: 48px;
}

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

.pathway-grid article {
  min-height: 274px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
  box-shadow: 0 14px 30px rgba(25, 57, 49, 0.07);
}

.pathway-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--lime);
  font-weight: 950;
}

.pathway-grid h3 {
  margin-top: 18px;
}

.pathway-grid p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.68;
}

.video-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding-bottom: 34px;
}

.video-proof-copy p:not(.section-kicker) {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.68;
}

.video-frame {
  margin: 0;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--teal-dark);
  box-shadow: 0 18px 42px rgba(25, 57, 49, 0.12);
}

.video-frame figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.xhs-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 42px;
  align-items: center;
  padding-top: 34px;
}

.xhs-copy p:not(.section-kicker) {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.68;
}

.xhs-link {
  width: fit-content;
  margin-top: 22px;
  background: #fff;
}

.xhs-screenshot {
  margin: 0;
}

.xhs-screenshot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(25, 57, 49, 0.12);
}

.xhs-screenshot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.advantage-section {
  padding-top: 52px;
}

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

.advantage-grid article {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(25, 57, 49, 0.07);
}

.advantage-grid strong {
  display: block;
  color: var(--green);
  font-size: 42px;
  line-height: 1.14;
  font-weight: 950;
}

.advantage-grid h3 {
  margin-top: 18px;
}

.advantage-grid p {
  margin-top: 10px;
}

.soft-band {
  width: 100%;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: var(--wash);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.compact-heading {
  max-width: 760px;
}

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

.info-card {
  min-height: 235px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(25, 57, 49, 0.07);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 950;
}

.card-number + h3,
.feature-list h3 + p,
.info-card h3 + p {
  margin-top: 14px;
}

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

.feature-list article {
  min-height: 170px;
  padding: 24px;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: var(--mist);
}

.service-model {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.service-model-copy h2 {
  margin-top: 10px;
}

.service-model-copy p:not(.section-kicker) {
  margin-top: 16px;
}

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

.model-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 57, 49, 0.06);
}

.model-list span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--lime);
  font-weight: 950;
}

.model-list strong {
  color: var(--teal-dark);
  font-size: 20px;
}

.model-list p {
  margin: 0;
}

.switch-band,
.final-cta {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 62px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: linear-gradient(120deg, var(--teal-dark), #275d50);
}

.switch-band p,
.final-cta p {
  max-width: 840px;
  margin-top: 12px;
  color: #dceae7;
}

.switch-band h2,
.final-cta h2 {
  margin-top: 10px;
}

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

.process-list li {
  counter-increment: steps;
  min-height: 198px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(25, 57, 49, 0.06);
}

.process-list li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font-weight: 950;
}

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

.process-list span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.62;
}

.faq-section {
  padding-top: 40px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--teal-dark);
  font-weight: 950;
}

details p {
  padding: 0 20px 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(200px, 0.4fr);
  gap: 30px;
  padding: 38px max(20px, calc((100vw - 1180px) / 2));
  color: #dceae7;
  background: #172a26;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  max-width: 720px;
  margin-top: 12px;
  color: #c6d5d2;
  line-height: 1.65;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer a {
  color: #c6d5d2;
  text-decoration: none;
}

.site-footer strong {
  color: #fff;
}

.mobile-sticky {
  display: none;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(18, 63, 54, 0.92), rgba(47, 111, 96, 0.72)),
    url("./assets/hero/chinese-child-ndis-plan-manager-family-ai.png") center / cover;
}

.thanks-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.thanks-panel {
  width: min(720px, 100%);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  color: #fff;
  background: rgba(18, 49, 43, 0.84);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  margin-top: 12px;
  font-size: 44px;
}

.thanks-panel p:not(.eyebrow) {
  margin-top: 16px;
  color: #e7f0ee;
  font-size: 18px;
  line-height: 1.68;
}

.thanks-panel .primary-button {
  margin-top: 26px;
}

.policy-page {
  background: var(--wash);
}

.policy-inner {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 92px;
}

.policy-inner h1 {
  margin-top: 12px;
  font-size: 54px;
}

.policy-inner h2 {
  margin-top: 34px;
  font-size: 28px;
}

.policy-inner p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}

.policy-inner .primary-button {
  margin-top: 32px;
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 70px;
  }

  .lead-form {
    max-width: 720px;
  }

  .quick-strip,
  .pathway-grid,
  .card-grid,
  .advantage-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .intent-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .site-nav {
    position: static;
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(18, 63, 54, 0.93), rgba(18, 63, 54, 0.72));
  }

  .hero-inner {
    width: min(680px, calc(100% - 32px));
    padding: 46px 0 42px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lede {
    font-size: 18px;
  }

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

  .contact-card .wechat-id {
    font-size: 34px;
  }

  .contact-card p {
    grid-column: auto;
  }

  .lead-form,
  .quick-strip,
  .two-column,
  .video-proof,
  .xhs-proof,
  .pathway-grid,
  .card-grid,
  .advantage-grid,
  .feature-list,
  .service-model,
  .switch-band,
  .process-list,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .switch-band,
  .final-cta {
    align-items: start;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
  }

  .brand {
    align-items: center;
    font-size: 17px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    width: calc(100% - 28px);
    padding-top: 34px;
    padding-bottom: 74px;
  }

  .hero-actions {
    display: grid;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .lead-form {
    padding: 18px;
  }

  .form-heading h2 {
    font-size: 26px;
  }

  .quick-strip,
  .section {
    width: calc(100% - 28px);
  }

  .info-card,
  .advantage-grid article,
  .feature-list article,
  .process-list li {
    min-height: auto;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 26px rgba(25, 57, 49, 0.14);
  }

  .mobile-sticky a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--coral);
    text-decoration: none;
    font-weight: 950;
  }
}
