:root {
  --bc-ink: #253432;
  --bc-ink-soft: #425652;
  --bc-forest: #2f4641;
  --bc-forest-deep: #1c2927;
  --bc-mint: #95c1a7;
  --bc-mint-deep: #5f8f76;
  --bc-sage: #7fa08f;
  --bc-mist: #e7f1eb;
  --bc-mist-2: #f0f6f2;
  --bc-ivory: #f8faf8;
  --bc-white: #ffffff;
  --bc-line: rgba(37, 52, 50, 0.14);
  --bc-line-light: rgba(255, 255, 255, 0.18);
  --bc-shadow-sm: 0 8px 24px rgba(29, 49, 43, 0.07);
  --bc-shadow: 0 20px 60px rgba(29, 49, 43, 0.11);
  --bc-shadow-lg: 0 34px 90px rgba(29, 49, 43, 0.16);
  --bc-radius-sm: 12px;
  --bc-radius: 22px;
  --bc-radius-lg: 34px;
  --bc-container: 1180px;
  --bc-header-height: 86px;
  --bc-transition: 180ms ease;
  --bc-font: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --bc-font-zh: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", "Heiti TC", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bc-header-height) + 18px);
}

body {
  margin: 0;
  color: var(--bc-ink);
  background: var(--bc-white);
  font-family: var(--bc-font);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.bc-lang-zh {
  font-family: var(--bc-font-zh);
  line-height: 1.78;
}

body.admin-bar .bc-site-header {
  top: 32px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

a {
  color: var(--bc-mint-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--bc-forest-deep);
}

p,
ul,
ol {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.72em;
  color: var(--bc-ink);
  font-weight: 720;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.bc-lang-zh h1,
.bc-lang-zh h2,
.bc-lang-zh h3,
.bc-lang-zh h4 {
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.bc-lang-zh h1 {
  font-size: clamp(2.7rem, 5.2vw, 5rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.bc-lang-zh h2 {
  font-size: clamp(2rem, 3.7vw, 3.25rem);
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.55rem);
}

::selection {
  color: var(--bc-forest-deep);
  background: var(--bc-mint);
}

:focus-visible {
  outline: 3px solid #2e7760;
  outline-offset: 4px;
}

.bc-container {
  width: min(calc(100% - 40px), var(--bc-container));
  margin-inline: auto;
}

.bc-main {
  overflow: clip;
}

.bc-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--bc-white);
  background: var(--bc-forest-deep);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform var(--bc-transition);
}

.bc-skip-link:focus {
  color: var(--bc-white);
  transform: translateY(0);
}

/* Header and navigation */
.bc-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--bc-header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(37, 52, 50, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow var(--bc-transition), background var(--bc-transition);
}

.bc-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 36px rgba(31, 52, 46, 0.08);
}

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

.bc-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.bc-brand__image {
  width: min(310px, 28vw);
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.bc-primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.bc-menu,
.bc-menu ul,
.bc-footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.bc-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.bc-menu > li {
  position: relative;
}

.bc-menu > li > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 12px;
  color: var(--bc-ink);
  border-radius: 9px;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--bc-transition), background var(--bc-transition);
}

.bc-lang-zh .bc-menu > li > a {
  font-size: 0.94rem;
}

.bc-menu > li > a:hover,
.bc-menu > li.current-menu-item > a,
.bc-menu > li.current-menu-ancestor > a {
  color: var(--bc-forest-deep);
  background: var(--bc-mist-2);
}

.bc-menu .menu-item-has-children > a::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.bc-menu .sub-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  width: 250px;
  padding: 10px;
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: 16px;
  box-shadow: var(--bc-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--bc-transition), transform var(--bc-transition);
}

.bc-menu li:hover > .sub-menu,
.bc-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bc-menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--bc-ink);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 580;
  text-decoration: none;
}

.bc-menu .sub-menu a:hover,
.bc-menu .sub-menu .current-menu-item > a {
  color: var(--bc-forest-deep);
  background: var(--bc-mist-2);
}

.bc-nav-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.bc-lang-switch {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 7px 10px;
  color: var(--bc-ink);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.bc-lang-switch:hover {
  background: var(--bc-mist-2);
}

.bc-menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  color: var(--bc-ink);
  background: transparent;
  border: 1px solid var(--bc-line);
  border-radius: 10px;
  cursor: pointer;
}

.bc-menu-toggle__lines {
  display: grid;
  width: 21px;
  gap: 4px;
}

.bc-menu-toggle__lines i {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--bc-transition), opacity var(--bc-transition);
}

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

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

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

/* Buttons and links */
.bc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.bc-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform var(--bc-transition), box-shadow var(--bc-transition), background var(--bc-transition), color var(--bc-transition), border-color var(--bc-transition);
}

.bc-button:hover {
  transform: translateY(-2px);
}

.bc-button .bc-icon {
  width: 18px;
  height: 18px;
}

.bc-button--small {
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.bc-button--primary {
  color: var(--bc-white);
  background: var(--bc-forest);
  box-shadow: 0 10px 24px rgba(37, 52, 50, 0.16);
}

.bc-button--primary:hover {
  color: var(--bc-white);
  background: var(--bc-forest-deep);
  box-shadow: 0 14px 32px rgba(37, 52, 50, 0.21);
}

.bc-button--secondary {
  color: var(--bc-forest-deep);
  background: var(--bc-white);
  border-color: rgba(37, 52, 50, 0.24);
}

.bc-button--secondary:hover {
  color: var(--bc-forest-deep);
  background: var(--bc-mist-2);
  border-color: var(--bc-sage);
}

.bc-button--light {
  color: var(--bc-forest-deep);
  background: var(--bc-white);
}

.bc-button--light:hover {
  color: var(--bc-forest-deep);
  background: var(--bc-mist);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.bc-button--ghost-light {
  color: var(--bc-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.bc-button--ghost-light:hover {
  color: var(--bc-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--bc-white);
}

.bc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bc-forest-deep);
  font-weight: 720;
  text-decoration: none;
}

.bc-text-link .bc-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--bc-transition);
}

.bc-text-link:hover .bc-icon {
  transform: translateX(4px);
}

/* Icons */
.bc-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.bc-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hero */
.bc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(149, 193, 167, 0.35), transparent 32%),
    radial-gradient(circle at 12% 92%, rgba(231, 241, 235, 0.88), transparent 32%),
    linear-gradient(135deg, #fbfdfb 0%, #f4f9f6 52%, #edf6f0 100%);
}

.bc-hero::before {
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(95, 143, 118, 0.13);
  border-radius: 50%;
  content: "";
}

.bc-hero__grid {
  display: grid;
  min-height: calc(100vh - var(--bc-header-height));
  max-height: 920px;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  padding-block: 84px;
}

.bc-hero__copy {
  position: relative;
  z-index: 2;
}

.bc-hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
}

.bc-lang-zh .bc-hero h1 {
  max-width: 760px;
}

.bc-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--bc-ink-soft);
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.62;
}

.bc-lang-zh .bc-lead {
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.8;
}

.bc-lead-sm {
  color: var(--bc-ink-soft);
  font-size: 1.16rem;
  line-height: 1.72;
}

.bc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--bc-mint-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bc-eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.bc-lang-zh .bc-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.bc-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 26px 0 0;
  color: var(--bc-ink-soft);
  font-size: 0.91rem;
  list-style: none;
}

.bc-hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.bc-hero-points .bc-icon {
  width: 19px;
  height: 19px;
  color: var(--bc-mint-deep);
}

.bc-hero__visual {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.bc-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(95, 143, 118, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bc-orbit--outer {
  width: 96%;
  height: 96%;
}

.bc-orbit--inner {
  width: 67%;
  height: 67%;
  border-style: dashed;
}

.bc-visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48%;
  aspect-ratio: 1;
  place-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(95, 143, 118, 0.2);
  border-radius: 50%;
  box-shadow: var(--bc-shadow-lg);
  transform: translate(-50%, -50%);
}

.bc-visual-core::before {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(149, 193, 167, 0.5);
  border-radius: inherit;
  content: "";
}

.bc-visual-core img {
  width: 88%;
  max-height: 88%;
  object-fit: contain;
}

.bc-float-card {
  position: absolute;
  display: flex;
  min-width: 174px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--bc-forest-deep);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 52, 50, 0.08);
  border-radius: 15px;
  box-shadow: var(--bc-shadow);
  font-size: 0.88rem;
  font-weight: 740;
}

.bc-float-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--bc-forest);
  background: var(--bc-mist);
  border-radius: 11px;
}

.bc-float-card__icon .bc-icon {
  width: 23px;
  height: 23px;
}

.bc-float-card--one {
  top: 7%;
  left: -5%;
}

.bc-float-card--two {
  right: -7%;
  bottom: 13%;
}

.bc-float-card--three {
  bottom: -1%;
  left: 2%;
}

.bc-visual-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--bc-mint);
  border: 4px solid var(--bc-white);
  border-radius: 50%;
  box-shadow: var(--bc-shadow-sm);
}

.bc-visual-dot--one {
  top: 18%;
  right: 5%;
}

.bc-visual-dot--two {
  top: 55%;
  left: 0;
}

/* Trust bar */
.bc-trustbar {
  position: relative;
  z-index: 4;
  background: var(--bc-white);
  border-top: 1px solid rgba(37, 52, 50, 0.06);
  border-bottom: 1px solid rgba(37, 52, 50, 0.08);
  box-shadow: 0 15px 45px rgba(31, 52, 46, 0.05);
}

.bc-trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bc-trustbar a {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: var(--bc-ink);
  border-right: 1px solid var(--bc-line);
  font-size: 0.96rem;
  font-weight: 720;
  text-align: center;
  text-decoration: none;
  transition: color var(--bc-transition), background var(--bc-transition);
}

.bc-trustbar a:last-child {
  border-right: 0;
}

.bc-trustbar a:hover {
  color: var(--bc-forest-deep);
  background: var(--bc-mist-2);
}

.bc-trustbar .bc-icon {
  width: 31px;
  height: 31px;
  color: var(--bc-mint-deep);
}

/* Sections and layouts */
.bc-section {
  padding-block: clamp(82px, 9vw, 132px);
}

.bc-section--mist {
  background: var(--bc-mist-2);
}

.bc-section--dark {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 85% 15%, rgba(149, 193, 167, 0.18), transparent 30%),
    linear-gradient(135deg, var(--bc-forest-deep), var(--bc-forest));
}

.bc-section--dark h2,
.bc-section--dark h3,
.bc-section--dark .bc-eyebrow {
  color: var(--bc-white);
}

.bc-section-head {
  max-width: 830px;
  margin-bottom: 46px;
}

.bc-section-head > p:last-child {
  color: var(--bc-ink-soft);
  font-size: 1.05rem;
}

.bc-section-head--split {
  display: grid;
  max-width: none;
  align-items: end;
  gap: 60px;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
}

.bc-section-head--split h2,
.bc-section-head--center h2 {
  margin-bottom: 0;
}

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

.bc-section-head--center .bc-eyebrow {
  justify-content: center;
}

.bc-section-head--light > p:last-child,
.bc-section--dark .bc-section-head > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.bc-two-col {
  display: grid;
  align-items: start;
  gap: clamp(42px, 7vw, 88px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bc-two-col--balanced {
  align-items: center;
}

.bc-card-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.bc-card {
  position: relative;
  padding: 30px;
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow-sm);
  transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition);
}

.bc-card:hover {
  border-color: rgba(95, 143, 118, 0.35);
  box-shadow: var(--bc-shadow);
  transform: translateY(-5px);
}

.bc-card > .bc-icon:first-child {
  width: 49px;
  height: 49px;
  padding: 10px;
  margin-bottom: 24px;
  color: var(--bc-forest);
  background: var(--bc-mist);
  border-radius: 14px;
}

.bc-card h3 {
  margin-bottom: 13px;
}

.bc-card p {
  color: var(--bc-ink-soft);
}

.bc-service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.bc-service-card .bc-text-link {
  margin-top: auto;
  padding-top: 18px;
}

.bc-service-card--large {
  display: grid;
  align-items: start;
  gap: 24px;
  grid-template-columns: 56px 1fr;
  padding: 34px;
}

.bc-service-card--large > .bc-icon:first-child {
  width: 56px;
  height: 56px;
  margin: 0;
}

.bc-service-card--large ul {
  padding-left: 1.15rem;
  color: var(--bc-ink-soft);
}

.bc-card-kicker {
  margin-bottom: 8px;
  color: var(--bc-mint-deep) !important;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bc-audience-card {
  text-align: left;
}

.bc-small-note {
  margin-top: 24px;
  color: var(--bc-ink-soft);
  font-size: 0.86rem;
}

.bc-panel {
  height: 100%;
  padding: clamp(32px, 5vw, 54px);
  border-radius: var(--bc-radius-lg);
}

.bc-panel--mint {
  background: linear-gradient(145deg, var(--bc-mist), #f4faf6);
  border: 1px solid rgba(95, 143, 118, 0.18);
}

.bc-panel--outline {
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  box-shadow: var(--bc-shadow-sm);
}

.bc-quote-card {
  position: relative;
  padding: clamp(38px, 5vw, 62px);
  overflow: hidden;
  color: var(--bc-white);
  background: linear-gradient(140deg, var(--bc-forest), var(--bc-forest-deep));
  border-radius: var(--bc-radius-lg);
  box-shadow: var(--bc-shadow-lg);
}

.bc-quote-card::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.bc-quote-card img {
  width: 86px;
  height: 86px;
  margin-bottom: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.bc-quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 620;
  line-height: 1.5;
}

.bc-lang-zh .bc-quote-card blockquote {
  line-height: 1.75;
}

/* Steps and process */
.bc-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bc-steps li {
  display: grid;
  align-items: start;
  gap: 18px;
  padding: 20px 22px;
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: 16px;
  box-shadow: var(--bc-shadow-sm);
  grid-template-columns: 48px 1fr;
}

.bc-steps > li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--bc-forest-deep);
  background: var(--bc-mist);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.bc-steps h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.bc-steps p {
  color: var(--bc-ink-soft);
  font-size: 0.94rem;
}

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

.bc-process-grid li {
  position: relative;
  padding: 31px 26px;
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow-sm);
}

.bc-process-grid li > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--bc-forest-deep);
  background: var(--bc-mist);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.bc-process-grid h3 {
  margin-bottom: 11px;
}

.bc-process-grid p {
  color: var(--bc-ink-soft);
  font-size: 0.94rem;
}

.bc-check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.bc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.bc-check-list .bc-icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--bc-mint-deep);
}

/* Flow card */
.bc-flow-card {
  display: grid;
  gap: 7px;
  padding: 30px;
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-lg);
  box-shadow: var(--bc-shadow);
}

.bc-flow-card > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  background: var(--bc-mist-2);
  border-radius: 13px;
  font-weight: 700;
}

.bc-flow-card .bc-icon {
  width: 30px;
  height: 30px;
  color: var(--bc-mint-deep);
}

.bc-flow-card > i {
  width: 1px;
  height: 16px;
  margin-left: 32px;
  background: var(--bc-sage);
}

/* Allied health discipline grid */
.bc-discipline-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bc-discipline-grid article {
  padding: 27px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--bc-line-light);
  border-radius: var(--bc-radius);
  backdrop-filter: blur(5px);
}

.bc-discipline-grid article > .bc-icon {
  width: 43px;
  height: 43px;
  padding: 8px;
  margin-bottom: 22px;
  color: var(--bc-white);
  background: rgba(255, 255, 255, 0.11);
  border-radius: 13px;
}

.bc-discipline-grid h3 {
  margin-bottom: 10px;
  color: var(--bc-white);
}

.bc-discipline-grid p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.92rem;
}

.bc-discipline-grid--detailed article {
  min-height: 255px;
}

.bc-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

/* FAQ */
.bc-faq-layout {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.bc-faq {
  display: grid;
  gap: 12px;
}

.bc-faq details {
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: 15px;
  box-shadow: var(--bc-shadow-sm);
}

.bc-faq summary {
  position: relative;
  padding: 21px 56px 21px 22px;
  color: var(--bc-ink);
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

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

.bc-faq summary::before,
.bc-faq summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 16px;
  height: 2px;
  background: var(--bc-mint-deep);
  content: "";
  transform: translateY(-50%);
  transition: transform var(--bc-transition);
}

.bc-faq summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.bc-faq details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.bc-faq details p {
  padding: 0 22px 22px;
  color: var(--bc-ink-soft);
}

/* CTA */
.bc-cta {
  color: var(--bc-white);
  background:
    radial-gradient(circle at 10% 50%, rgba(149, 193, 167, 0.2), transparent 25%),
    linear-gradient(125deg, var(--bc-forest-deep), var(--bc-forest));
}

.bc-cta__inner {
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 60px;
}

.bc-cta h2,
.bc-cta .bc-eyebrow {
  color: var(--bc-white);
}

.bc-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

/* Page hero */
.bc-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(149, 193, 167, 0.28), transparent 27%),
    linear-gradient(135deg, #fbfdfb, #eef6f1);
  border-bottom: 1px solid rgba(37, 52, 50, 0.08);
}

.bc-page-hero::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(95, 143, 118, 0.17);
  border-radius: 50%;
  content: "";
}

.bc-page-hero__inner {
  max-width: 960px;
  padding-block: clamp(84px, 11vw, 150px);
}

.bc-page-hero h1 {
  margin-bottom: 24px;
}

.bc-page-hero .bc-lead {
  max-width: 830px;
  margin-bottom: 0;
}

/* Forms */
.bc-form-section {
  display: grid;
  align-items: start;
  gap: 60px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.bc-form-wrap {
  color: var(--bc-ink);
  background: var(--bc-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--bc-radius-lg);
  box-shadow: var(--bc-shadow-lg);
}

.bc-form-wrap .bc-emergency-note {
  margin: 28px 28px 0;
}

.bc-form {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 30px;
}

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

.bc-field {
  display: grid;
  gap: 7px;
}

.bc-field label {
  color: var(--bc-ink);
  font-size: 0.88rem;
  font-weight: 720;
}

.bc-field input,
.bc-field select,
.bc-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--bc-ink);
  background: #fbfdfb;
  border: 1px solid rgba(37, 52, 50, 0.21);
  border-radius: 10px;
  transition: border-color var(--bc-transition), box-shadow var(--bc-transition), background var(--bc-transition);
}

.bc-field textarea {
  min-height: 145px;
  resize: vertical;
}

.bc-field input:focus,
.bc-field select:focus,
.bc-field textarea:focus {
  background: var(--bc-white);
  border-color: var(--bc-mint-deep);
  box-shadow: 0 0 0 4px rgba(95, 143, 118, 0.13);
  outline: none;
}

.bc-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--bc-ink-soft);
  font-size: 0.88rem;
  cursor: pointer;
}

.bc-checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--bc-forest);
}

.bc-form-privacy {
  padding: 14px 16px;
  margin: 0;
  color: var(--bc-ink-soft);
  background: var(--bc-mist-2);
  border-left: 3px solid var(--bc-mint-deep);
  border-radius: 7px;
  font-size: 0.84rem;
}

.bc-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.bc-form-notice {
  padding: 16px 18px;
  margin: 28px 28px 0;
  border-radius: 10px;
  font-weight: 650;
}

.bc-form-notice--success {
  color: #174e36;
  background: #e4f5eb;
  border: 1px solid #add7bd;
}

.bc-form-notice--error {
  color: #772f2f;
  background: #fff0f0;
  border: 1px solid #e7bcbc;
}

.bc-emergency-note {
  padding: 13px 15px;
  color: #68441e;
  background: #fff7e8;
  border: 1px solid #eddbb5;
  border-radius: 10px;
  font-size: 0.85rem;
}

/* Contact */
.bc-contact-layout {
  display: grid;
  align-items: start;
  gap: 66px;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.bc-contact-layout .bc-form-wrap {
  border-color: var(--bc-line);
}

.bc-contact-cards {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.bc-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 17px;
  background: var(--bc-mist-2);
  border: 1px solid rgba(95, 143, 118, 0.15);
  border-radius: 13px;
}

.bc-contact-card .bc-icon {
  width: 28px;
  height: 28px;
  color: var(--bc-mint-deep);
}

.bc-contact-card div {
  display: grid;
  gap: 2px;
}

.bc-contact-card strong {
  color: var(--bc-ink);
  font-size: 0.86rem;
}

.bc-contact-card span {
  color: var(--bc-ink-soft);
  font-size: 0.91rem;
}

/* Prose and generic content */
.bc-prose {
  max-width: 820px;
}

.bc-prose > * + * {
  margin-top: 1.3em;
}

.bc-prose h2 {
  margin-top: 1.8em;
  margin-bottom: 0.55em;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}

.bc-prose h3 {
  margin-top: 1.5em;
}

.bc-prose p,
.bc-prose li {
  color: var(--bc-ink-soft);
}

.bc-prose a {
  font-weight: 700;
}

.bc-version-note {
  padding: 18px 20px;
  color: var(--bc-ink) !important;
  background: var(--bc-mist-2);
  border-left: 4px solid var(--bc-mint-deep);
  border-radius: 9px;
}

.bc-post-card {
  padding-block: 28px;
  border-bottom: 1px solid var(--bc-line);
}

.bc-post-card h2 {
  font-size: 1.8rem;
}

.bc-post-card h2 a {
  color: inherit;
  text-decoration: none;
}

.bc-404 {
  min-height: 62vh;
  display: grid;
  place-items: center;
}

/* Footer */
.bc-site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #172421;
}

.bc-footer-grid {
  display: grid;
  gap: 60px;
  padding-block: 78px 58px;
  grid-template-columns: minmax(300px, 1.25fr) minmax(180px, 0.65fr) minmax(260px, 1fr);
}

.bc-footer-brand .bc-brand__image {
  width: 290px;
  max-width: 100%;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.bc-footer-brand > p {
  max-width: 470px;
  margin-bottom: 24px;
}

.bc-footer-column h2 {
  margin-bottom: 20px;
  color: var(--bc-white);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bc-lang-zh .bc-footer-column h2 {
  letter-spacing: 0.1em;
}

.bc-footer-menu {
  display: grid;
  gap: 10px;
}

.bc-footer-menu a,
.bc-footer-details a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.bc-footer-menu a:hover,
.bc-footer-details a:hover {
  color: var(--bc-white);
}

.bc-footer-details {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bc-footer-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bc-footer-details .bc-icon {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--bc-mint);
}

.bc-footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-block: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.bc-footer-bottom p {
  margin-bottom: 4px;
}

.bc-footer-disclaimer {
  max-width: 540px;
  text-align: right;
}

.bc-legal-line {
  color: rgba(255, 255, 255, 0.55);
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* WordPress helpers */
.alignwide {
  width: min(calc(100% - 40px), var(--bc-container));
  max-width: none;
  margin-inline: auto;
}

.alignfull {
  width: 100%;
  max-width: none;
}

.wp-caption,
.wp-caption-text,
.gallery-caption {
  max-width: 100%;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --bc-header-height: 78px;
  }

  .bc-brand__image {
    width: 255px;
  }

  .bc-menu-toggle {
    display: inline-flex;
  }

  .bc-primary-nav {
    position: fixed;
    z-index: 1001;
    top: var(--bc-header-height);
    right: 0;
    left: 0;
    display: block;
    max-height: calc(100vh - var(--bc-header-height));
    padding: 20px;
    overflow-y: auto;
    background: var(--bc-white);
    border-bottom: 1px solid var(--bc-line);
    box-shadow: var(--bc-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--bc-transition), transform var(--bc-transition);
  }

  body.admin-bar .bc-primary-nav {
    top: calc(var(--bc-header-height) + 32px);
  }

  .bc-primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .bc-menu {
    display: grid;
    align-items: stretch;
  }

  .bc-menu > li > a {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    font-size: 1rem;
  }

  .bc-menu .sub-menu {
    position: static;
    width: auto;
    padding: 2px 0 8px 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .bc-menu .sub-menu a {
    padding: 9px 12px;
  }

  .bc-nav-actions {
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid var(--bc-line);
  }

  .bc-hero__grid {
    gap: 35px;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  }

  .bc-card-grid--4,
  .bc-discipline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .bc-hero__grid {
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    padding-block: 72px 40px;
  }

  .bc-hero__visual {
    width: min(82vw, 520px);
    margin-top: 15px;
  }

  .bc-trustbar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-trustbar a:nth-child(2) {
    border-right: 0;
  }

  .bc-trustbar a:nth-child(-n+2) {
    border-bottom: 1px solid var(--bc-line);
  }

  .bc-section-head--split,
  .bc-two-col,
  .bc-faq-layout,
  .bc-form-section,
  .bc-contact-layout,
  .bc-footer-grid {
    grid-template-columns: 1fr;
  }

  .bc-section-head--split {
    align-items: start;
    gap: 20px;
  }

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

  .bc-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .bc-footer-grid {
    gap: 38px;
  }

  .bc-footer-bottom {
    flex-direction: column;
  }

  .bc-footer-disclaimer {
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --bc-header-height: 70px;
    --bc-radius: 18px;
    --bc-radius-lg: 24px;
  }

  body {
    font-size: 16px;
  }

  body.admin-bar .bc-site-header {
    top: 46px;
  }

  body.admin-bar .bc-primary-nav {
    top: calc(var(--bc-header-height) + 46px);
  }

  .bc-container {
    width: min(calc(100% - 28px), var(--bc-container));
  }

  .bc-brand__image {
    width: 218px;
    max-height: 52px;
  }

  .bc-menu-toggle__label {
    display: none;
  }

  .bc-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .bc-lang-zh .bc-hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.7rem);
  }

  .bc-hero__grid {
    padding-block: 60px 28px;
  }

  .bc-hero__visual {
    width: min(94vw, 430px);
  }

  .bc-float-card {
    min-width: 142px;
    padding: 9px 10px;
    font-size: 0.76rem;
  }

  .bc-float-card__icon {
    width: 32px;
    height: 32px;
  }

  .bc-float-card--one {
    left: -2%;
  }

  .bc-float-card--two {
    right: -3%;
  }

  .bc-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bc-actions .bc-button {
    width: 100%;
  }

  .bc-hero-points {
    display: grid;
  }

  .bc-trustbar a {
    min-height: 86px;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 14px 9px;
    font-size: 0.82rem;
  }

  .bc-trustbar .bc-icon {
    width: 27px;
    height: 27px;
  }

  .bc-section {
    padding-block: 72px;
  }

  .bc-card-grid--2,
  .bc-card-grid--4,
  .bc-discipline-grid,
  .bc-process-grid,
  .bc-form-grid {
    grid-template-columns: 1fr;
  }

  .bc-card,
  .bc-service-card--large {
    padding: 25px;
  }

  .bc-service-card--large {
    grid-template-columns: 1fr;
  }

  .bc-panel {
    padding: 30px 25px;
  }

  .bc-page-hero__inner {
    padding-block: 72px;
  }

  .bc-form,
  .bc-form-wrap .bc-emergency-note,
  .bc-form-notice {
    margin-inline: 20px;
  }

  .bc-form {
    padding: 24px 0 26px;
  }

  .bc-footer-grid {
    padding-block: 58px 42px;
  }

  .bc-footer-brand .bc-brand__image {
    width: 255px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .bc-site-header {
    top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
