:root {
  --navy: #062d4d;
  --navy-deep: #031d34;
  --teal: #00677a;
  --teal-bright: #0793a1;
  --gold: #dbb253;
  --ink: #0b2337;
  --muted: #5b6d78;
  --paper: #f4f6f3;
  --white: #fff;
  --line: rgba(6, 45, 77, 0.14);
  --max: 1180px;
  --pad: clamp(22px, 5vw, 72px);
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  box-shadow: 0 8px 30px #0002;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: rgba(244, 246, 243, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 35px rgba(3, 29, 52, 0.06);
}
.nav-shell {
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand img {
  width: 206px;
  height: auto;
}
.nav-shell nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.nav-shell nav > a:not(.nav-cta) {
  position: relative;
}
.nav-shell nav > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--teal);
  transition: 0.25s;
}
.nav-shell nav > a:hover:after {
  right: 0;
}
.nav-cta {
  border: 1px solid var(--navy);
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s;
}
.nav-cta:hover {
  background: var(--navy);
  color: #fff;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px;
}
.hero {
  min-height: 820px;
  padding: 145px var(--pad) 88px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 76% 36%, rgba(0, 103, 122, 0.1), transparent 32%),
    linear-gradient(125deg, #f7f8f5 0%, #eef3f0 100%);
}
.hero-grid {
  max-width: var(--max);
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}
.eyebrow,
.kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--gold);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 0.97;
  letter-spacing: -0.055em;
  max-width: 700px;
  margin: 26px 0 30px;
  font-weight: 720;
  color: var(--navy-deep);
}
h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--teal);
}
.hero-copy > p {
  max-width: 650px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 38px 0 48px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 19px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: 0.25s;
}
.button.primary {
  background: var(--navy);
  color: #fff;
}
.button.primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
}
.text-link {
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.text-link span {
  display: inline-block;
  margin-left: 12px;
  transition: 0.2s;
}
.text-link:hover span {
  transform: translateX(5px);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #59707d;
}
.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-proof span:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.signal-stage {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 560px;
  width: 100%;
  margin: auto;
  color: var(--navy);
  border: 1px solid rgba(6, 45, 77, 0.1);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.22)
  );
  box-shadow: 0 35px 100px rgba(3, 29, 52, 0.1);
  overflow: hidden;
}
.signal-stage:before,
.signal-stage:after {
  content: "";
  position: absolute;
  background: var(--line);
}
.signal-stage:before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}
.signal-stage:after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}
.stage-label {
  position: absolute;
  z-index: 3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #6a7d87;
}
.stage-label.top {
  top: 18px;
  left: 20px;
}
.stage-label.bottom {
  bottom: 18px;
  right: 20px;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(0, 103, 122, 0.22);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.orbit-one {
  width: 68%;
  height: 68%;
}
.orbit-two {
  width: 43%;
  height: 43%;
  border-style: dashed;
  animation: spin 28s linear infinite;
}
.core {
  position: absolute;
  z-index: 2;
  width: 150px;
  height: 150px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 25px 55px rgba(3, 29, 52, 0.26);
}
.core svg {
  width: 76px;
}
.core span {
  position: absolute;
  bottom: 15px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b8d2dc;
}
.node {
  position: absolute;
  z-index: 4;
  padding: 12px 15px;
  background: #fff;
  border: 1px solid var(--line);
  min-width: 130px;
  box-shadow: 0 12px 30px rgba(3, 29, 52, 0.08);
}
.node i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 8px;
  box-shadow: 0 0 0 5px rgba(219, 178, 83, 0.18);
}
.node strong,
.node small {
  display: block;
}
.node strong {
  font-size: 12px;
  color: var(--navy);
}
.node small {
  font-size: 9px;
  color: #788991;
  margin-top: 2px;
}
.node-a {
  left: 8%;
  top: 17%;
}
.node-b {
  right: 6%;
  top: 30%;
}
.node-c {
  right: 13%;
  bottom: 12%;
}
@keyframes spin {
  to {
    rotate: 360deg;
  }
}
.marquee {
  overflow: hidden;
  background: var(--navy);
  color: #cfe2e6;
  padding: 16px 0;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.marquee i {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: 120px var(--pad);
}
.section-heading {
  max-width: var(--max);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 0.75fr 1.45fr 0.8fr;
  gap: 45px;
  align-items: start;
}
.section-heading > div {
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-no {
  font-size: 11px;
  border: 1px solid var(--line);
  padding: 5px 8px;
  color: var(--navy);
  font-weight: 800;
}
.section-heading h2,
.approach h2,
.company h2 {
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--navy-deep);
}
.section-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.capability-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cap-card {
  position: relative;
  background: #fff;
  padding: 42px 34px 38px;
  border-top: 3px solid var(--navy);
  min-height: 390px;
  transition: 0.3s;
}
.cap-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(3, 29, 52, 0.1);
}
.cap-card.featured {
  background: var(--navy);
  color: #d7e3e7;
  border-color: var(--gold);
}
.card-icon {
  font: italic 38px var(--serif);
  color: var(--gold);
  margin-bottom: 70px;
}
.cap-card h3 {
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 15px;
}
.cap-card.featured h3 {
  color: #fff;
}
.cap-card p {
  font-size: 14px;
  color: #65757d;
  min-height: 70px;
}
.cap-card.featured p {
  color: #adbec5;
}
.cap-card ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
}
.cap-card.featured ul {
  border-color: #ffffff24;
}
.cap-card li {
  font-size: 12px;
  margin: 10px 0;
  padding-left: 14px;
  position: relative;
}
.cap-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  background: var(--teal);
}
.cap-card.featured li:before {
  background: var(--gold);
}
.approach {
  background: var(--navy-deep);
  color: #fff;
}
.approach-intro {
  max-width: var(--max);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: auto 1fr 0.7fr;
  gap: 30px 50px;
  align-items: start;
}
.section-no.light {
  color: #fff;
  border-color: #ffffff35;
}
.kicker.light {
  color: #91c8cf;
}
.approach h2 {
  color: #fff;
  margin-top: 20px;
  max-width: 700px;
}
.approach-intro > p {
  color: #9fb2bc;
  font-size: 14px;
  line-height: 1.75;
  padding-top: 34px;
}
.steps {
  max-width: var(--max);
  margin: auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ffffff24;
}
.steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #ffffff24;
  transition: 0.25s;
}
.steps li:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, #ffffff08, transparent);
}
.steps li > span {
  font: italic 22px var(--serif);
  color: var(--gold);
}
.steps h3 {
  font-size: 21px;
  margin: 0 0 5px;
}
.steps p {
  margin: 0;
  color: #9fb2bc;
  font-size: 13px;
}
.assurance {
  background: #f8f9f7;
}
.assurance-layout {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.assurance-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 500px;
  background: radial-gradient(circle, rgba(0, 103, 122, 0.09), transparent 63%);
  margin: auto;
}
.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: start center;
}
.ring span {
  background: #f8f9f7;
  padding: 0 10px;
  translate: 0 -8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.ring-outer {
  width: 92%;
  height: 92%;
}
.ring-mid {
  width: 64%;
  height: 64%;
  border-color: rgba(0, 103, 122, 0.35);
}
.ring-inner {
  width: 34%;
  height: 34%;
  background: var(--navy);
  border: 8px solid #fff;
  box-shadow: 0 20px 50px rgba(3, 29, 52, 0.22);
}
.ring-inner span {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: none;
  color: #fff;
  font: italic 20px var(--serif);
  letter-spacing: 0;
  text-transform: none;
}
.axis {
  position: absolute;
  background: var(--line);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.x-axis {
  height: 1px;
  width: 100%;
}
.y-axis {
  width: 1px;
  height: 100%;
}
.assurance-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.assurance-list article > span {
  font: italic 18px var(--serif);
  color: var(--gold);
}
.assurance-list h3 {
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--navy);
}
.assurance-list p {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
}
.company {
  padding: 120px var(--pad);
  background: linear-gradient(125deg, var(--teal), var(--navy));
  color: #fff;
}
.company-inner {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: end;
}
.company h2 {
  color: #fff;
  margin: 20px 0 30px;
}
.company h2 em {
  color: #d9bd74;
}
.company-copy > p {
  max-width: 680px;
  color: #c2d6dc;
  line-height: 1.8;
}
.button.ghost {
  color: #fff;
  border: 1px solid #ffffff50;
  margin-top: 25px;
}
.button.ghost:hover {
  background: #fff;
  color: var(--navy);
}
.company-details {
  margin: 0;
  border-top: 1px solid #ffffff40;
}
.company-details div {
  padding: 20px 0;
  border-bottom: 1px solid #ffffff40;
}
.company-details dt {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #97c7ce;
  margin-bottom: 5px;
}
.company-details dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}
footer {
  padding: 55px var(--pad) 30px;
  background: #fff;
  text-align: center;
}
.footer-brand {
  display: inline-block;
}
.footer-brand img {
  width: 240px;
}
.footer-brand + p {
  margin: 24px 0 42px;
  color: var(--muted);
  font: italic 18px var(--serif);
}
.footer-privacy {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.footer-meta {
  max-width: var(--max);
  margin: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #71818a;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reveal {
  opacity: 1;
  transform: none;
}
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .signal-stage {
    max-width: 620px;
  }
  .section-heading {
    grid-template-columns: 1fr 1fr;
  }
  .section-heading > p {
    grid-column: 2;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .cap-card {
    min-height: auto;
  }
  .card-icon {
    margin-bottom: 32px;
  }
  .approach-intro {
    grid-template-columns: auto 1fr;
  }
  .approach-intro > p {
    grid-column: 2;
    padding-top: 0;
  }
  .company-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 74px;
  }
  .site-header {
    background: rgba(244, 246, 243, 0.95);
  }
  .nav-shell {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .brand img {
    width: 165px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-shell nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 22px var(--pad) 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 35px #0012;
  }
  .nav-shell nav.open {
    display: flex;
  }
  .nav-shell nav a {
    padding: 13px 0;
  }
  .nav-cta {
    margin-top: 10px;
    padding: 12px !important;
    justify-content: space-between;
  }
  .hero {
    padding-top: 115px;
  }
  .hero-grid {
    gap: 55px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .hero-proof {
    gap: 10px 18px;
  }
  .signal-stage {
    max-width: 500px;
  }
  .node {
    min-width: 105px;
    padding: 9px 10px;
  }
  .node small {
    display: none;
  }
  .core {
    width: 120px;
    height: 120px;
  }
  .core svg {
    width: 60px;
  }
  .section {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .section-heading > p {
    grid-column: auto;
  }
  .approach-intro {
    grid-template-columns: 1fr;
  }
  .approach-intro .section-no {
    width: max-content;
  }
  .approach-intro > p {
    grid-column: auto;
  }
  .assurance-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .company {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .company-inner {
    grid-template-columns: 1fr;
  }
  .footer-meta {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 48px;
  }
  .signal-stage {
    width: calc(100% + 16px);
    margin-left: -8px;
  }
  .node-a {
    left: 4%;
  }
  .node-b {
    right: 3%;
  }
  .node-c {
    right: 5%;
  }
  .section-heading h2,
  .approach h2,
  .company h2 {
    font-size: 39px;
  }
  .steps li {
    grid-template-columns: 52px 1fr;
  }
  .assurance-visual {
    width: 110%;
    margin-left: -5%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .orbit-two,
  .marquee-track {
    animation: none;
  }
  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Standalone deployment refinements. */
.assurance-visual {
  width: 100%;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}
.approach a:focus-visible,
.company a:focus-visible {
  outline-color: var(--gold);
}
@media (max-width: 760px) {
  .nav-shell nav {
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 480px) {
  .assurance-visual {
    width: 110%;
  }
}

/* Bilingual navigation, enquiry pages, and readable answers. */
.nav-shell {
  gap: 22px;
}
.brand {
  flex-shrink: 0;
}
.nav-shell nav {
  gap: 24px;
  margin-left: auto;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.language-switch a {
  padding: 8px 4px;
  color: var(--muted);
}
.language-switch a[aria-current="page"] {
  color: var(--teal);
  border-bottom: 1px solid var(--gold);
}
.language-switch > span {
  color: #89969c;
}
.nav-cta {
  white-space: nowrap;
}
.nav-cta[aria-current="page"] {
  background: var(--navy);
  color: white;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 0 auto 34px;
  font-size: 12px;
  color: var(--navy);
}
.footer-links a:hover {
  color: var(--teal);
}
.questions {
  background: #fff;
}
.faq-layout {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 75px;
}
.faq-layout h2,
.contact-layout h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  color: var(--teal);
  font-size: 20px;
  font-weight: 400;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding-right: 30px;
}
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}
.content-shell {
  max-width: var(--max);
  margin: auto;
}
.contact-hero {
  padding: 165px var(--pad) 75px;
  background: radial-gradient(circle at 85% 50%, #dceae7, transparent 50%);
  border-bottom: 1px solid var(--line);
}
.contact-hero h1 {
  max-width: 1000px;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.04;
}
.contact-lede {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.contact-section {
  padding-top: 75px;
}
.contact-layout {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 90px;
  align-items: start;
}
.contact-layout > div > p:not(.kicker) {
  color: var(--muted);
  max-width: 560px;
}
#contact-form {
  margin-top: 32px;
}
#contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
#contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
#contact-form label > span {
  color: var(--teal);
}
#contact-form input:not([type="hidden"]),
#contact-form select,
#contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #b9c8cb;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  border-radius: 0;
  padding: 12px 14px;
  margin-bottom: 22px;
}
#contact-form textarea {
  resize: vertical;
  min-height: 160px;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
#contact-form button {
  border: 1px solid var(--navy);
  cursor: pointer;
}
#contact-form fieldset:disabled {
  opacity: 0.6;
}
.form-status {
  min-height: 24px;
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.form-status[data-state="success"] {
  color: #09624c;
}
.form-status[data-state="error"] {
  color: #a43325;
}
.form-honeypot {
  display: none;
}
.contact-context {
  background: #e8efec;
  padding: 36px;
  border-top: 3px solid var(--gold);
}
.contact-context h3 {
  font-size: 23px;
  line-height: 1.3;
  color: var(--navy);
}
.contact-context ul {
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.contact-context li {
  margin: 14px 0;
}
.contact-context dl {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin: 26px 0;
}
.contact-context dt {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--teal);
  margin-top: 18px;
}
.contact-context dd {
  margin: 5px 0 0;
  font-size: 13px;
}
html[lang^="zh"] .keep-together,
html[lang^="zh"] .ring-inner span {
  white-space: nowrap;
}
html[lang^="zh"] body {
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    sans-serif;
}
html[lang^="zh"] h1 {
  font-size: clamp(45px, 5.4vw, 76px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}
html[lang^="zh"] h1 em,
html[lang^="zh"] h2 em {
  font-family: "Songti SC", "Noto Serif CJK SC", serif;
}
html[lang^="zh"] .section-heading h2,
html[lang^="zh"] .approach h2,
html[lang^="zh"] .company h2 {
  line-height: 1.2;
  letter-spacing: -0.025em;
}
html[lang^="zh"] .cap-card p,
html[lang^="zh"] .steps p {
  line-height: 1.9;
}
@media (max-width: 1100px) {
  .nav-shell nav {
    gap: 16px;
  }
  .nav-shell {
    gap: 16px;
  }
  .brand img {
    width: 180px;
  }
}
@media (max-width: 1040px) {
  .nav-shell {
    min-height: 78px;
    padding-block: 12px;
  }
  .header-tools {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .nav-shell nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px var(--pad) 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 35px #0012;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
  }
  .nav-shell nav.open {
    display: flex;
  }
  .nav-shell nav a {
    padding: 13px 0;
  }
  .nav-shell nav .nav-cta {
    padding: 12px;
    margin-top: 10px;
    justify-content: space-between;
  }
}
@media (max-width: 760px) {
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-hero {
    padding-top: 125px;
    padding-bottom: 45px;
  }
  .contact-section {
    padding-top: 45px;
  }
  .contact-context {
    padding: 28px;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-lede {
    font-size: 16px;
  }
  .brand img {
    width: 150px;
  }
  .nav-shell {
    gap: 8px;
  }
  .header-tools {
    gap: 4px;
  }
  .menu-toggle {
    padding: 6px;
  }
  html[lang^="zh"] h1 {
    font-size: 45px;
  }
}
@media (max-width: 380px) {
  .brand img {
    width: 133px;
  }
  .language-switch {
    font-size: 11px;
  }
  html[lang^="zh"] h1 {
    font-size: 40px;
  }
}
