:root {
  --teal: #0ea5a4;
  --teal-dark: #087f7d;
  --teal-soft: #dff8f7;
  --navy: #07111f;
  --navy-2: #0f172a;
  --text: #101827;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --panel: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.09);
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.07);
  --radius: 16px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(14, 165, 164, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 44%, #ffffff 100%);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  width: 184px;
  flex: 0 0 184px;
}

.brand img {
  width: 168px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.lang-current {
  color: var(--navy);
  font-size: 13px;
  font-weight: 760;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  transition: transform .22s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  cursor: pointer;
}

.btn:hover,
.card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  border-color: rgba(14, 165, 164, .25);
  background: linear-gradient(135deg, #0ea5a4, #087f7d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(14, 165, 164, .22);
}

.btn-secondary:hover,
.btn-primary:hover {
  box-shadow: var(--shadow-soft);
}

.lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-inline {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 36px;
  padding: 3px;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.lang-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: rgba(7, 17, 31, .62);
  font-size: 11px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: .02em;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.lang-link + .lang-link::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 9px;
  bottom: 9px;
  width: 1px;
  background: rgba(15, 23, 42, .09);
  transition: opacity .18s ease;
}

.lang-link:hover {
  color: var(--teal-dark);
  background: rgba(14, 165, 164, .08);
}

.lang-link:hover::before,
.lang-link:hover + .lang-link::before,
.lang-link.is-active::before,
.lang-link.is-active + .lang-link::before {
  opacity: 0;
}

.lang-link.is-active {
  color: var(--teal-dark);
  background: rgba(14, 165, 164, .12);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 164, .16);
}

.lang-current {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
  transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.lang-current:hover,
.lang-current[aria-expanded="true"] {
  border-color: rgba(14, 165, 164, .24);
  background: rgba(14, 165, 164, .08);
  color: var(--teal-dark);
}

.lang-globe {
  font-size: 13px;
  line-height: 1;
}

.lang-chevron {
  display: inline-block;
  color: rgba(7, 17, 31, .46);
  font-size: 13px;
  transform: translateY(-1px);
  transition: transform .18s ease, color .18s ease;
}

.lang-current[aria-expanded="true"] .lang-chevron {
  color: var(--teal-dark);
  transform: translateY(0) rotate(180deg);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  min-width: 176px;
  padding: 7px;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 56px rgba(15, 23, 42, .14), inset 0 1px 0 rgba(255,255,255,.72);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.lang.is-open .lang-menu,
.lang:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 10px;
  border-radius: 11px;
  color: rgba(7, 17, 31, .72);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.lang-menu a:hover,
.lang-menu a:focus-visible {
  color: var(--teal-dark);
  background: rgba(14, 165, 164, .09);
  outline: 0;
}

.lang-menu a.is-active {
  color: var(--teal-dark);
  background: rgba(14, 165, 164, .12);
}

.lang-check {
  color: var(--teal);
  font-size: 9px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding: 50px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: .91;
  font-weight: 900;
  letter-spacing: -0.055em;
}

h1 .accent,
h2 .accent {
  color: var(--teal);
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero {
  position: relative;
  padding: 54px 0 40px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: none;
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 90px;
  border-radius: 999px;
  background: rgba(14, 165, 164, .11);
  transform: rotate(-48deg);
}

.hero::before {
  right: 110px;
  top: 48px;
}

.hero::after {
  right: 34%;
  top: 210px;
  opacity: .55;
}

.hero-grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 18px;
  align-items: center;
}

.hero-copy {
  padding-top: 6px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 38px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  margin-right: -128px;
}

.hero-visual img {
  width: 121%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 30px 48px rgba(15, 23, 42, .16));
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 30px;
  max-width: 660px;
}

.mini-point {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.mini-point svg,
.icon {
  width: 28px;
  height: 28px;
  color: var(--teal);
  stroke-width: 1.8;
}

.mini-point strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
}

.mini-point span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  max-width: 150px;
}

.logo-band {
  padding: 28px 0 38px;
  border-bottom: 1px solid var(--line);
}

.logo-band .eyebrow {
  text-align: center;
  color: #94a3b8;
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 18px;
}

.logos span {
  color: #334155;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 900;
  text-align: center;
  opacity: .88;
}

.logos span:nth-child(5) {
  letter-spacing: .09em;
}

.center {
  text-align: center;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(14, 165, 164, .28);
  box-shadow: var(--shadow-soft);
}

.industry-card {
  min-height: 232px;
  padding: 30px 26px 24px;
}

.industry-card p,
.service-card p,
.case-card p,
.process-step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 860;
}

.split-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 38px;
  align-items: center;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ba-card {
  position: relative;
  min-height: 248px;
  border-radius: 16px;
  overflow: hidden;
  background: #111827;
  box-shadow: var(--shadow-soft);
}

.ba-card img {
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
}

.services-row {
  display: grid;
  grid-template-columns: 260px repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-intro,
.service-card {
  padding: 34px 22px;
}

.services-intro h2 {
  font-size: 31px;
  line-height: 1.08;
}

.service-card {
  border-left: 1px solid var(--line);
}

.service-card .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--navy-2);
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  margin-top: 58px;
}

.process::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  padding-top: 82px;
  text-align: center;
}

.process-step .bubble {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(14, 165, 164, .55);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 26px rgba(14, 165, 164, .12);
}

.process-step .num {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

html[lang="zh"] h1 {
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

html[lang="zh"] .page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

html[lang="zh"] .lead {
  font-size: 17px;
  line-height: 1.85;
}

html[lang="zh"] .eyebrow {
  letter-spacing: .08em;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.case-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.case-card:hover {
  box-shadow: none;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.16 / .9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
}

.case-card h3 {
  margin-top: 18px;
  font-size: 15px;
}

.about-copy {
  max-width: 980px;
}

.about-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.about-section h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.about-section p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.about-list {
  columns: 2;
  column-gap: 52px;
  margin-top: 22px;
}

.about-company {
  border-bottom: 0;
}

html[lang="zh"] .about-section h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

html[lang="zh"] .about-section p {
  font-size: 16px;
  line-height: 1.9;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 46px 0;
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(circle at 55% 40%, rgba(14, 165, 164, .3), transparent 20rem),
    linear-gradient(135deg, #073543 0%, #041a26 100%);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 32px;
  width: 390px;
  height: 220px;
  opacity: .18;
  background-image:
    radial-gradient(circle, #ffffff 1.2px, transparent 1.5px);
  background-size: 13px 13px;
  clip-path: polygon(10% 18%, 98% 4%, 90% 82%, 52% 95%, 8% 70%);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: center;
}

.cta-band h2,
.site-footer h3 {
  color: #fff;
}

.cta-band p,
.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(226, 232, 240, .82);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric {
  text-align: center;
}

.metric .bubble {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #bff6f2;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.metric span {
  font-size: 11px;
  color: rgba(226, 232, 240, .78);
}

.site-footer {
  padding: 42px 0 40px;
  background: linear-gradient(135deg, #051321 0%, #062937 100%);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, .8fr) 1.65fr;
  gap: 34px;
}

.footer-logo {
  width: 188px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 13px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 9px;
}

.footer-col a {
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.copyright {
  margin-top: 24px;
  font-size: 13px;
}

.page-hero {
  padding: 84px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 18%, rgba(14, 165, 164, .12), transparent 24rem),
    linear-gradient(180deg, #fff, #fbfdff);
}

.page-hero h1 {
  max-width: 820px;
}

.content-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.statement {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.list-check {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.list-check li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 13px 14px;
  color: var(--navy);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(14, 165, 164, .52);
  box-shadow: 0 0 0 4px rgba(14, 165, 164, .1);
}

.contact-form-card .form-wrapper,
.contact-form-card form {
  width: 100%;
}

.contact-form-card {
  padding: 34px;
}

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

.contact-form-card .form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form-card .form-field > div,
.contact-form-card .form-field .form-input-wrapper,
.contact-form-card .form-field [class*="form-input"],
.contact-form-card .form-field [class*="form-data"],
.contact-form-card .form-field .medium,
.contact-form-card .form-field .large,
.contact-form-card .form-field .long {
  width: 100%;
  max-width: none;
}

.contact-form-card .contact-message,
.contact-form-card .form-field:has(textarea),
.contact-form-card .buttons {
  grid-column: 1 / -1;
}

.contact-form-card label {
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: 0;
}

.contact-form-card .required {
  color: var(--teal);
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fdfefe;
  color: var(--navy);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  padding: 14px 15px;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  appearance: none;
}

.contact-form-card select {
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #8a9aac;
}

.contact-form-card textarea {
  min-height: 168px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  background: #fff;
  border-color: rgba(14, 165, 164, .52);
  box-shadow: 0 0 0 4px rgba(14, 165, 164, .1);
}

.contact-form-card .buttons {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

.contact-form-card button,
.contact-form-card .button,
.contact-form-card input[type="submit"] {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 760;
  padding: 14px 24px;
  box-shadow: 0 14px 30px rgba(14, 165, 164, .24);
}

.contact-form-card .form-message,
.contact-form-card .alert {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  color: var(--muted);
}

form[name^="bismatic-contact"] {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  width: 100%;
}

form[name^="bismatic-contact"] .form-field,
form[name^="bismatic-contact"] .field {
  display: grid !important;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

form[name^="bismatic-contact"] .form-field > div,
form[name^="bismatic-contact"] .form-field .form-input-wrapper,
form[name^="bismatic-contact"] .form-field [class*="wrapper"],
form[name^="bismatic-contact"] .form-field [class*="input"],
form[name^="bismatic-contact"] .form-field [class*="data"],
form[name^="bismatic-contact"] .form-field .medium,
form[name^="bismatic-contact"] .form-field .large,
form[name^="bismatic-contact"] .form-field .long,
form[name^="bismatic-contact"] .field > div {
  width: 100% !important;
  max-width: none !important;
}

form[name^="bismatic-contact"] .contact-message,
form[name^="bismatic-contact"] .buttons {
  grid-column: 1 / -1;
}

form[name^="bismatic-contact"] input:not([type="hidden"]):not([type="submit"]),
form[name^="bismatic-contact"] select,
form[name^="bismatic-contact"] textarea {
  box-sizing: border-box;
  display: block;
  width: 100% !important;
  min-width: 0;
  max-width: none !important;
  border: 1px solid rgba(9, 22, 41, .13);
  border-radius: 12px;
  background-color: #fbfefe;
  color: var(--navy);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  padding: 14px 15px;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

form[name^="bismatic-contact"] input[type="hidden"] {
  display: none !important;
}

form[name^="bismatic-contact"] textarea {
  min-height: 172px;
  resize: vertical;
}

form[name^="bismatic-contact"] select {
  min-height: 51px;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  appearance: none;
}

form[name^="bismatic-contact"] label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.25;
}

form[name^="bismatic-contact"] input::placeholder,
form[name^="bismatic-contact"] textarea::placeholder {
  color: #8a9aac;
}

form[name^="bismatic-contact"] input:not([type="hidden"]):not([type="submit"]):focus,
form[name^="bismatic-contact"] select:focus,
form[name^="bismatic-contact"] textarea:focus {
  background-color: #fff;
  border-color: rgba(14, 165, 164, .58);
  box-shadow: 0 0 0 4px rgba(14, 165, 164, .11);
}

form[name^="bismatic-contact"] .buttons {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}

form[name^="bismatic-contact"] button,
form[name^="bismatic-contact"] .button,
form[name^="bismatic-contact"] input[type="submit"] {
  width: auto !important;
  min-width: 180px;
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 780;
  line-height: 1.2;
  padding: 14px 24px;
  box-shadow: 0 16px 34px rgba(14, 165, 164, .25);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

form[name^="bismatic-contact"] button:hover,
form[name^="bismatic-contact"] .button:hover,
form[name^="bismatic-contact"] input[type="submit"]:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(14, 165, 164, .3);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
}

.legal-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.legal-nav span {
  display: block;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-size: 12px;
  font-weight: 820;
}

.legal-copy {
  color: #334155;
  max-width: 860px;
}

.legal-copy section {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  font-size: 25px;
}

.legal-copy h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.legal-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-copy li {
  position: relative;
  padding-left: 20px;
}

.legal-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.legal-updated {
  margin: 0 0 30px;
  color: var(--teal) !important;
  font-size: 13px !important;
  font-weight: 820;
}

html[lang="zh"] .legal-copy h2 {
  font-size: 24px;
  line-height: 1.28;
}

html[lang="zh"] .legal-copy p,
html[lang="zh"] .legal-copy li {
  font-size: 16px;
  line-height: 1.9;
}

.blog-shell {
  background:
    radial-gradient(circle at 82% 4%, rgba(14, 165, 164, .08), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f8fafc 38%, #fff 100%);
}

.blog-hero {
  padding: 92px 0 54px;
  border-bottom: 1px solid var(--line);
}

.blog-hero h1 {
  max-width: 980px;
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: .96;
}

.blog-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #64748b;
  font-size: 13px;
  font-weight: 760;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.blog-card.featured {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}

.blog-card img,
.article-figure img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
}

.blog-card img {
  aspect-ratio: 1.3 / .86;
  object-fit: cover;
}

.blog-index-grid {
  align-items: stretch !important;
}

.blog-card {
  gap: 16px !important;
  padding: 18px !important;
  grid-template-rows: auto 1fr !important;
  min-height: 0 !important;
}

.blog-card img {
  aspect-ratio: 16 / 10 !important;
  height: clamp(220px, 22vw, 290px) !important;
  max-height: 290px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 12px !important;
}

.blog-card > div {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
}

.blog-card .text-link {
  margin-top: auto !important;
  padding-top: 18px !important;
}

.blog-card h2 {
  margin-top: 8px !important;
}

.blog-card p:not(.eyebrow) {
  max-width: 62ch;
}

.article-wrap {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

.article-wrap > p,
.article-wrap li {
  color: #334155;
  font-size: 18px;
  line-height: 1.9;
}

.article-wrap h2 {
  margin-top: 78px;
  font-size: clamp(32px, 4vw, 52px);
}

.article-wrap h3 {
  margin-top: 34px;
  font-size: 24px;
}

.article-figure {
  margin: 58px 0;
}

.article-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-figure figcaption {
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
}

.image-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 54px 0;
}

.pullquote {
  margin: 60px 0;
  padding: 34px 0 34px 34px;
  border-left: 4px solid var(--teal);
  color: var(--navy);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 900;
}

.editor-note {
  margin: 46px 0;
  padding: 28px;
  border: 1px solid rgba(14, 165, 164, .22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,165,164,.08), rgba(255,255,255,.9));
}

.article-divider {
  height: 1px;
  margin: 70px 0;
  background: linear-gradient(90deg, transparent, rgba(14,165,164,.42), transparent);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-visual { margin-right: 0; }
  .hero-visual img { width: 100%; }
  .case-card img { height: auto; }
  .nav-links {
    gap: 18px;
  }

  .hero-grid,
  .content-grid,
  .cta-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
  }

  .grid-5,
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-intro {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .case-card img { height: auto; aspect-ratio: 1.1 / .9; }
  .container {
    width: min(100% - 32px, 1180px);
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .lang-inline {
    display: none;
  }

  .lang-current {
    display: inline-flex;
  }

  .lang-menu {
    display: block;
    right: -4px;
    min-width: 172px;
  }

  .hero {
    padding-top: 38px;
  }

  .trust-points,
  .logos,
  .grid-5,
  .grid-3,
  .grid-2,
  .before-after,
  .process,
  .case-grid,
  .metrics,
  .footer-grid,
  .form-grid,
  .contact-form-card form,
  form[name^="bismatic-contact"],
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .services-row {
    grid-template-columns: 1fr;
    border: 0;
  }

  .service-card,
  .services-intro {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 14px;
    background: #fff;
  }

  .process::before {
    display: none;
  }

  .process-step {
    padding: 0 0 0 78px;
    min-height: 70px;
  }

  .process-step .bubble {
    left: 0;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .section {
    padding: 64px 0;
  }

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    max-height: 320px;
    overflow: auto;
  }

  .blog-index-grid,
  .blog-card.featured,
  .image-pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 148px;
  }

  .brand img {
    width: 138px;
  }

  .nav-actions {
    gap: 12px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-card {
    min-height: 0;
  }
}

/* Multilingual typography refinements for the CMS build. */
html[lang="zh"] h1,
html[lang="zh"] h2,
html[lang="zh"] h3 {
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

html[lang="zh"] .hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.08;
}

html[lang="zh"] .hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

html[lang="zh"] h2 {
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.16;
}

html[lang="zh"] .eyebrow {
  font-size: 10px;
  line-height: 1.5;
}

html[lang="zh"] .btn,
html[lang="zh"] .nav-links a,
html[lang="zh"] .lang-current {
  letter-spacing: 0;
}

html[lang="de"] h1,
html[lang="fr"] h1,
html[lang="es"] h1,
html[lang="it"] h1 {
  max-width: 760px;
  font-size: clamp(50px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -0.035em;
}

html[lang="de"] .page-hero h1,
html[lang="fr"] .page-hero h1,
html[lang="es"] .page-hero h1,
html[lang="it"] .page-hero h1,
html[lang="de"] .blog-hero h1,
html[lang="fr"] .blog-hero h1,
html[lang="es"] .blog-hero h1,
html[lang="it"] .blog-hero h1 {
  max-width: 980px;
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.07;
}

.card h3,
.service-card h3,
.case-card h3,
.blog-card h2 {
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  html[lang="zh"] .hero-grid {
    grid-template-columns: 1fr;
  }

  html[lang="zh"] .hero h1 {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  html[lang="zh"] .hero {
    padding-top: 30px;
  }

  html[lang="zh"] .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(34px, 8.4vw, 46px);
    line-height: 1.12;
  }

  html[lang="zh"] .lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.8;
  }

  html[lang="zh"] .eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }

  html[lang="de"] h1,
  html[lang="fr"] h1,
  html[lang="es"] h1,
  html[lang="it"] h1 {
    font-size: clamp(38px, 9.4vw, 54px);
    line-height: 1.04;
  }

  html[lang="de"] .page-hero h1,
  html[lang="fr"] .page-hero h1,
  html[lang="es"] .page-hero h1,
  html[lang="it"] .page-hero h1,
  html[lang="de"] .blog-hero h1,
  html[lang="fr"] .blog-hero h1,
  html[lang="es"] .blog-hero h1,
  html[lang="it"] .blog-hero h1 {
    font-size: clamp(34px, 8vw, 48px);
  }
}

@media (max-width: 520px) {
  html[lang="zh"] .hero h1 {
    font-size: clamp(31px, 8vw, 39px);
    line-height: 1.14;
  }

  html[lang="zh"] h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  html[lang="zh"] .btn {
    min-height: 46px;
    padding-inline: 16px;
    white-space: normal;
  }
}

/* Final multilingual layout pass: closer to the approved balanced homepage mockup. */
body {
  overflow-x: hidden;
}

.hero-copy,
.hero-visual,
.nav-links,
.nav-actions,
.footer-col,
.card,
.service-card,
.case-card {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: minmax(420px, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 3vw, 54px);
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -0.045em;
}

.hero .lead {
  max-width: 590px;
}

.hero-visual {
  min-height: 600px;
  margin-right: max(-90px, -6vw);
}

.hero-visual img {
  width: min(116%, 900px);
}

.nav-links {
  gap: clamp(16px, 2vw, 28px);
}

.nav-links a,
.lang-current {
  white-space: nowrap;
}

.footer-grid {
  grid-template-columns: minmax(230px, 1.25fr) repeat(4, minmax(130px, .72fr)) minmax(230px, 1.08fr);
  gap: clamp(24px, 3vw, 46px);
}

.footer-col a,
.footer-col p,
.metric span {
  overflow-wrap: anywhere;
}

.footer-col h3 {
  line-height: 1.25;
}

html[lang="zh"] body {
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", "Inter", sans-serif;
}

html[lang="zh"] .hero h1 {
  max-width: 590px;
  font-size: clamp(38px, 4.35vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

html[lang="zh"] .hero .lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.82;
}

html[lang="zh"] .hero-grid {
  grid-template-columns: minmax(390px, .78fr) minmax(0, 1.22fr);
}

html[lang="zh"] .nav-links a,
html[lang="zh"] .footer-col a {
  font-weight: 760;
}

html[lang="zh"] .footer-grid {
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(120px, .65fr)) minmax(230px, 1.05fr);
}

html[lang="es"] .hero h1,
html[lang="fr"] .hero h1,
html[lang="de"] .hero h1,
html[lang="it"] .hero h1 {
  max-width: 650px;
  font-size: clamp(44px, 4.9vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.032em;
}

html[lang="de"] .nav-links,
html[lang="fr"] .nav-links,
html[lang="es"] .nav-links,
html[lang="it"] .nav-links {
  gap: clamp(12px, 1.5vw, 22px);
}

html[lang="de"] .nav-links a,
html[lang="fr"] .nav-links a,
html[lang="es"] .nav-links a,
html[lang="it"] .nav-links a {
  font-size: 12px;
}

@media (max-width: 1180px) {
  .nav {
    gap: 16px;
  }

  .brand {
    width: 162px;
    flex-basis: 162px;
  }

  .brand img {
    width: 152px;
  }

  .nav-actions .btn {
    padding-inline: 14px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  html[lang="zh"] .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    margin-right: 0;
  }

  .hero-visual img {
    width: 100%;
    max-width: 860px;
    margin-inline: auto;
  }

  .footer-grid,
  html[lang="zh"] .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero h1,
  html[lang="es"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="it"] .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.04;
  }

  html[lang="zh"] .hero h1 {
    font-size: clamp(32px, 8.2vw, 44px);
    line-height: 1.16;
  }

  .footer-grid,
  html[lang="zh"] .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-col,
  .footer-legal-col {
    max-width: 620px;
  }
}

@media (max-width: 520px) {
  .hero h1,
  html[lang="es"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="it"] .hero h1 {
    font-size: clamp(34px, 9vw, 46px);
  }

  html[lang="zh"] .hero h1 {
    font-size: clamp(29px, 7.6vw, 37px);
    line-height: 1.18;
  }

  .hero .lead,
  html[lang="zh"] .hero .lead {
    font-size: 15.5px;
    line-height: 1.76;
  }

  .eyebrow,
  html[lang="zh"] .eyebrow {
    font-size: 9px;
    letter-spacing: .08em;
  }
}

/* Authoritative cross-language sizing. Keep this at the end of the file. */
.hero {
  padding-top: clamp(42px, 5vw, 64px) !important;
}

.hero-grid {
  grid-template-columns: minmax(360px, .58fr) minmax(0, 1.42fr) !important;
  gap: clamp(34px, 4.4vw, 74px) !important;
}

.hero-copy {
  max-width: 560px !important;
}

.hero h1 {
  max-width: 560px !important;
  font-size: clamp(46px, 4.65vw, 68px) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

.hero .lead {
  max-width: 540px !important;
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.68 !important;
}

.hero-visual {
  min-height: clamp(520px, 48vw, 650px) !important;
  margin-right: clamp(-118px, -7vw, -54px) !important;
}

.hero-visual img {
  width: min(118%, 920px) !important;
}

html[lang="es"] .hero-copy,
html[lang="fr"] .hero-copy,
html[lang="de"] .hero-copy,
html[lang="it"] .hero-copy {
  max-width: 500px !important;
}

html[lang="es"] .hero h1,
html[lang="fr"] .hero h1,
html[lang="de"] .hero h1,
html[lang="it"] .hero h1 {
  max-width: 500px !important;
  font-size: clamp(40px, 4.05vw, 56px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.025em !important;
}

html[lang="es"] .hero .lead,
html[lang="fr"] .hero .lead,
html[lang="de"] .hero .lead,
html[lang="it"] .hero .lead {
  max-width: 520px !important;
  font-size: clamp(15.5px, 1.16vw, 17px) !important;
  line-height: 1.72 !important;
}

html[lang="zh"] .hero-copy {
  max-width: 500px !important;
}

html[lang="zh"] .hero h1 {
  max-width: 500px !important;
  font-size: clamp(36px, 3.75vw, 50px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  font-weight: 900 !important;
}

html[lang="zh"] .hero .lead {
  max-width: 540px !important;
  font-size: clamp(16px, 1.15vw, 17px) !important;
  line-height: 1.9 !important;
}

html[lang="zh"] .eyebrow {
  letter-spacing: .06em !important;
  line-height: 1.55 !important;
}

html[lang="zh"] .card h3,
html[lang="zh"] .service-card h3,
html[lang="zh"] .case-card h3,
html[lang="zh"] .footer-col h3 {
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

html[lang="zh"] .card p,
html[lang="zh"] .service-card p,
html[lang="zh"] .footer-col p,
html[lang="zh"] .footer-col a {
  line-height: 1.78 !important;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(330px, .62fr) minmax(0, 1.38fr) !important;
    gap: 34px !important;
  }

  .hero h1 {
    font-size: clamp(42px, 4.15vw, 58px) !important;
  }

  html[lang="es"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="it"] .hero h1 {
    font-size: clamp(36px, 3.75vw, 50px) !important;
  }

  html[lang="zh"] .hero h1 {
    font-size: clamp(34px, 3.35vw, 44px) !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-copy,
  .hero h1,
  .hero .lead,
  html[lang="es"] .hero-copy,
  html[lang="fr"] .hero-copy,
  html[lang="de"] .hero-copy,
  html[lang="it"] .hero-copy,
  html[lang="zh"] .hero-copy,
  html[lang="es"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="it"] .hero h1,
  html[lang="zh"] .hero h1 {
    max-width: 720px !important;
  }

  .hero-visual {
    min-height: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: clamp(36px, 9.2vw, 50px) !important;
    line-height: 1.05 !important;
  }

  html[lang="es"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="it"] .hero h1 {
    font-size: clamp(32px, 8.2vw, 44px) !important;
    line-height: 1.1 !important;
  }

  html[lang="zh"] .hero h1 {
    font-size: clamp(30px, 7.35vw, 40px) !important;
    line-height: 1.2 !important;
  }

  .hero .lead,
  html[lang="zh"] .hero .lead {
    font-size: 15.5px !important;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 28px !important;
  }

  .hero h1 {
    font-size: clamp(32px, 8.6vw, 42px) !important;
  }

  html[lang="es"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="it"] .hero h1 {
    font-size: clamp(29px, 7.6vw, 37px) !important;
  }

  html[lang="zh"] .hero h1 {
    font-size: clamp(27px, 7vw, 34px) !important;
    line-height: 1.22 !important;
  }
}

/* Site-wide language typography QA. This final block governs every page type. */
:is(h1, h2, h3, .lead, .btn, .nav-links a, .footer-col a, .footer-col p, .article-wrap p, .legal-copy p, .legal-copy li) {
  text-wrap: pretty;
}

.hero h1 {
  font-size: clamp(46px, 4.35vw, 64px) !important;
  line-height: 1.02 !important;
}

.page-hero h1 {
  max-width: 900px !important;
  font-size: clamp(40px, 4.3vw, 60px) !important;
  line-height: 1.08 !important;
}

.blog-hero h1 {
  max-width: 940px !important;
  font-size: clamp(40px, 4.8vw, 66px) !important;
  line-height: 1.05 !important;
}

h2 {
  font-size: clamp(30px, 2.65vw, 40px) !important;
  line-height: 1.12 !important;
}

.article-wrap > p,
.article-wrap li,
.legal-copy p,
.legal-copy li,
.about-section p {
  font-size: clamp(16px, 1.08vw, 17px) !important;
  line-height: 1.84 !important;
}

.article-wrap h2 {
  font-size: clamp(30px, 3.2vw, 42px) !important;
  line-height: 1.14 !important;
}

.article-wrap h3 {
  font-size: clamp(20px, 2vw, 24px) !important;
  line-height: 1.28 !important;
}

.pullquote {
  font-size: clamp(24px, 2.6vw, 34px) !important;
  line-height: 1.25 !important;
}

.card h3,
.service-card h3,
.case-card h3,
.blog-card h2 {
  font-size: clamp(16px, 1.35vw, 18px) !important;
  line-height: 1.32 !important;
}

.industry-card p,
.service-card p,
.case-card p,
.blog-card p {
  font-size: 14px !important;
  line-height: 1.68 !important;
}

.footer-col h3 {
  font-size: 13px !important;
  line-height: 1.3 !important;
}

.footer-col a,
.footer-col p,
.footer-col li {
  font-size: 13px !important;
  line-height: 1.68 !important;
}

.cta-band h2 {
  font-size: clamp(28px, 2.6vw, 38px) !important;
  line-height: 1.16 !important;
}

.cta-band p {
  font-size: 15px !important;
  line-height: 1.68 !important;
}

html[lang="zh"] body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang="zh"] :is(h1, h2, h3, .lead, p, a, li, .btn) {
  letter-spacing: 0 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-break: strict;
  word-wrap: break-word !important;
}

html[lang="zh"] :is(h1, h2, h3, h4, .btn, .nav-links a, .eyebrow) {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif !important;
}

html[lang="zh"] .hero h1 {
  max-width: 500px !important;
  font-size: clamp(35px, 3.55vw, 48px) !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
}

html[lang="zh"] .page-hero h1,
html[lang="zh"] .blog-hero h1 {
  max-width: 820px !important;
  font-size: clamp(30px, 3.45vw, 44px) !important;
  line-height: 1.22 !important;
}

html[lang="zh"] h2,
html[lang="zh"] .article-wrap h2,
html[lang="zh"] .about-section h2,
html[lang="zh"] .legal-copy h2 {
  font-size: clamp(24px, 2.45vw, 34px) !important;
  line-height: 1.24 !important;
  font-weight: 760 !important;
}

html[lang="zh"] h3,
html[lang="zh"] .article-wrap h3,
html[lang="zh"] .card h3,
html[lang="zh"] .service-card h3,
html[lang="zh"] .case-card h3,
html[lang="zh"] .blog-card h2 {
  font-size: clamp(16px, 1.35vw, 19px) !important;
  line-height: 1.45 !important;
  font-weight: 720 !important;
}

html[lang="zh"] .lead,
html[lang="zh"] .article-wrap > p,
html[lang="zh"] .article-wrap li,
html[lang="zh"] .legal-copy p,
html[lang="zh"] .legal-copy li,
html[lang="zh"] .about-section p {
  font-size: clamp(15.5px, 1.08vw, 17px) !important;
  line-height: 1.82 !important;
  font-weight: 400 !important;
}

html[lang="zh"] .industry-card p,
html[lang="zh"] .service-card p,
html[lang="zh"] .case-card p,
html[lang="zh"] .blog-card p,
html[lang="zh"] .footer-col p,
html[lang="zh"] .footer-col a,
html[lang="zh"] .footer-col li {
  font-size: 14px !important;
  line-height: 1.72 !important;
  font-weight: 400 !important;
}

html[lang="zh"] .service-card,
html[lang="zh"] .industry-card,
html[lang="zh"] .card {
  min-width: 0;
}

html[lang="zh"] .service-card p,
html[lang="zh"] .industry-card p,
html[lang="zh"] .card p,
html[lang="zh"] .services-intro p,
html[lang="zh"] .mini-point span {
  text-wrap: pretty;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-break: strict;
  hanging-punctuation: allow-end;
}

html[lang="zh"] .services-row {
  grid-template-columns: minmax(240px, 1.12fr) repeat(6, minmax(126px, 1fr)) !important;
}

html[lang="zh"] .service-card {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

html[lang="zh"] .service-card p {
  font-size: 13px !important;
  line-height: 1.74 !important;
}

html[lang="zh"] :is(main, footer, header) :is(p, li, a, span, strong, h1, h2, h3, h4, .lead, .btn, .text-link, .eyebrow) {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-break: strict;
}

html[lang="zh"] :is(.card, .service-card, .industry-card, .case-card, .blog-card, .process-step, .mini-point, .footer-col, .legal-copy) {
  text-wrap: pretty;
}

html[lang="zh"] .eyebrow {
  font-size: 10px !important;
  line-height: 1.6 !important;
  letter-spacing: .06em !important;
}

html[lang="zh"] .cta-band h2 {
  font-size: clamp(24px, 2.4vw, 32px) !important;
  line-height: 1.3 !important;
}

html[lang="zh"] .metric span {
  font-size: 12px !important;
  line-height: 1.5 !important;
}

html[lang="es"] .hero h1,
html[lang="fr"] .hero h1,
html[lang="de"] .hero h1,
html[lang="it"] .hero h1 {
  max-width: 500px !important;
  font-size: clamp(36px, 3.65vw, 52px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.022em !important;
}

html[lang="es"] .page-hero h1,
html[lang="fr"] .page-hero h1,
html[lang="de"] .page-hero h1,
html[lang="it"] .page-hero h1,
html[lang="es"] .blog-hero h1,
html[lang="fr"] .blog-hero h1,
html[lang="de"] .blog-hero h1,
html[lang="it"] .blog-hero h1 {
  max-width: 900px !important;
  font-size: clamp(34px, 3.8vw, 54px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
}

html[lang="es"] h2,
html[lang="fr"] h2,
html[lang="de"] h2,
html[lang="it"] h2 {
  font-size: clamp(28px, 2.45vw, 38px) !important;
  line-height: 1.16 !important;
}

html[lang="de"] .footer-col a,
html[lang="fr"] .footer-col a,
html[lang="es"] .footer-col a,
html[lang="it"] .footer-col a {
  font-size: 12.5px !important;
}

html:not([lang="zh"]) body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html:not([lang="zh"]) :is(h1, h2, h3, h4, .btn, .nav-links a, .eyebrow) {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

html:not([lang="zh"]) .hero h1 {
  font-weight: 760 !important;
  letter-spacing: -0.028em !important;
}

html:not([lang="zh"]) h2,
html:not([lang="zh"]) .page-hero h1,
html:not([lang="zh"]) .blog-hero h1,
html:not([lang="zh"]) .article-wrap h2 {
  font-weight: 740 !important;
  letter-spacing: -0.024em !important;
}

html:not([lang="zh"]) h3,
html:not([lang="zh"]) .card h3,
html:not([lang="zh"]) .service-card h3,
html:not([lang="zh"]) .case-card h3,
html:not([lang="zh"]) .blog-card h2 {
  font-weight: 680 !important;
  letter-spacing: -0.01em !important;
}

html:not([lang="zh"]) p,
html:not([lang="zh"]) li,
html:not([lang="zh"]) .lead,
html:not([lang="zh"]) .article-wrap > p,
html:not([lang="zh"]) .legal-copy p,
html:not([lang="zh"]) .about-section p {
  font-weight: 400 !important;
}

html:not([lang="zh"]) .lead {
  line-height: 1.62 !important;
}

html:not([lang="zh"]) .btn,
html:not([lang="zh"]) .nav-links a,
html:not([lang="zh"]) .text-link {
  font-weight: 650 !important;
}

@media (max-width: 1080px) {
  .page-hero h1,
  .blog-hero h1,
  html[lang="zh"] .page-hero h1,
  html[lang="zh"] .blog-hero h1,
  html[lang="es"] .page-hero h1,
  html[lang="fr"] .page-hero h1,
  html[lang="de"] .page-hero h1,
  html[lang="it"] .page-hero h1,
  html[lang="es"] .blog-hero h1,
  html[lang="fr"] .blog-hero h1,
  html[lang="de"] .blog-hero h1,
  html[lang="it"] .blog-hero h1 {
    max-width: 760px !important;
  }
}

@media (max-width: 820px) {
  .page-hero h1,
  .blog-hero h1 {
    font-size: clamp(32px, 7.4vw, 44px) !important;
    line-height: 1.14 !important;
  }

  h2,
  .article-wrap h2 {
    font-size: clamp(26px, 6vw, 34px) !important;
  }

  html[lang="zh"] .hero h1 {
    font-size: clamp(29px, 7.1vw, 38px) !important;
    line-height: 1.24 !important;
  }

  html[lang="zh"] .page-hero h1,
  html[lang="zh"] .blog-hero h1 {
    font-size: clamp(27px, 6.4vw, 36px) !important;
  }

  html[lang="es"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="it"] .hero h1 {
    font-size: clamp(30px, 7.2vw, 40px) !important;
  }
}

@media (max-width: 520px) {
  .page-hero h1,
  .blog-hero h1 {
    font-size: clamp(28px, 7.8vw, 36px) !important;
  }

  .article-wrap {
    width: min(100% - 32px, 920px) !important;
  }

  .article-wrap > p,
  .article-wrap li,
  .legal-copy p,
  .legal-copy li {
    font-size: 15.5px !important;
  }

  html[lang="zh"] .hero h1 {
    font-size: clamp(26px, 6.8vw, 33px) !important;
    line-height: 1.26 !important;
  }

  html[lang="zh"] .lead,
  html[lang="zh"] .article-wrap > p,
  html[lang="zh"] .article-wrap li,
  html[lang="zh"] .legal-copy p,
  html[lang="zh"] .legal-copy li {
    font-size: 15px !important;
    line-height: 1.9 !important;
  }
}

/* Home hero visual alignment: match the approved first-screen mockup. */
.hero {
  padding-bottom: clamp(18px, 2.2vw, 30px) !important;
}

.hero-grid {
  align-items: start !important;
}

.hero-visual {
  min-height: 0 !important;
  height: clamp(520px, 42vw, 620px) !important;
  margin-right: clamp(-112px, -6vw, -52px) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: stretch !important;
}

.hero-visual img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  filter: drop-shadow(0 30px 48px rgba(15, 23, 42, .12)) !important;
}

.logo-band {
  display: none !important;
}

.section-tight {
  padding-top: clamp(30px, 3.6vw, 48px) !important;
}

@media (min-width: 1280px) {
  .hero-visual {
    height: 640px !important;
  }
}

@media (max-width: 1080px) {
  .hero-visual {
    height: auto !important;
    margin-right: 0 !important;
    overflow: visible !important;
  }

  .hero-visual img {
    height: auto !important;
    object-fit: contain !important;
  }
}

/* Blend the hero product image into the white page, like the approved mockup. */
.hero-visual {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  align-items: flex-start !important;
  isolation: isolate !important;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -8% 4% -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 66% 20%, rgba(14, 165, 164, .11), transparent 32%),
    radial-gradient(circle at 84% 74%, rgba(14, 165, 164, .08), transparent 28%);
  filter: blur(12px);
}

.hero-visual img {
  width: min(126%, 1050px) !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center top !important;
  margin-top: clamp(6px, 1vw, 16px) !important;
  margin-left: clamp(-16px, -1.2vw, -8px) !important;
  filter: drop-shadow(0 24px 34px rgba(15, 23, 42, .10)) !important;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 90%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

@media (min-width: 1280px) {
  .hero-visual img {
    width: min(128%, 1120px) !important;
  }
}

@media (max-width: 1080px) {
  .hero-visual::before {
    inset: -4%;
  }

  .hero-visual img {
    width: 100% !important;
    margin-left: 0 !important;
    -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 94%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0, #000 94%, transparent 100%);
  }
}

/* Keep journal pages on the same typography system as the rest of the site. */
.blog-shell,
.blog-shell :is(p, a, li, span, strong, h1, h2, h3, h4, .lead, .eyebrow, .text-link) {
  font-family: inherit !important;
  letter-spacing: 0 !important;
}

.blog-hero {
  padding: clamp(72px, 7vw, 104px) 0 clamp(48px, 5vw, 68px) !important;
}

.blog-hero h1 {
  max-width: 900px !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(38px, 4.25vw, 60px) !important;
  line-height: 1.08 !important;
  font-weight: 740 !important;
  letter-spacing: 0 !important;
}

.blog-hero .lead {
  max-width: 720px !important;
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.68 !important;
  font-weight: 400 !important;
}

.blog-card h2 {
  font-family: inherit !important;
  font-size: clamp(17px, 1.35vw, 20px) !important;
  line-height: 1.34 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.blog-card p:not(.eyebrow) {
  font-size: 14px !important;
  line-height: 1.72 !important;
}

.article-wrap h2 {
  font-family: inherit !important;
  font-size: clamp(28px, 2.7vw, 38px) !important;
  line-height: 1.18 !important;
  font-weight: 720 !important;
  letter-spacing: 0 !important;
}

.article-wrap > p,
.article-wrap li {
  font-family: inherit !important;
  font-size: clamp(16px, 1.05vw, 17px) !important;
  line-height: 1.86 !important;
  font-weight: 400 !important;
}

html[lang="zh"] .blog-hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif !important;
  max-width: 820px !important;
  font-size: clamp(30px, 3.4vw, 44px) !important;
  line-height: 1.22 !important;
  font-weight: 760 !important;
}

html[lang="zh"] .blog-hero .lead,
html[lang="zh"] .article-wrap > p,
html[lang="zh"] .article-wrap li {
  font-size: clamp(15.5px, 1.05vw, 17px) !important;
  line-height: 1.88 !important;
}

html[lang="zh"] .article-wrap h2 {
  font-size: clamp(24px, 2.35vw, 34px) !important;
  line-height: 1.28 !important;
  font-weight: 720 !important;
}

html[lang="es"] .blog-hero h1,
html[lang="fr"] .blog-hero h1,
html[lang="de"] .blog-hero h1,
html[lang="it"] .blog-hero h1 {
  max-width: 900px !important;
  font-size: clamp(34px, 3.65vw, 52px) !important;
  line-height: 1.14 !important;
  font-weight: 720 !important;
}

@media (max-width: 820px) {
  .blog-hero h1 {
    font-size: clamp(30px, 7vw, 42px) !important;
    line-height: 1.16 !important;
  }

  html[lang="zh"] .blog-hero h1 {
    font-size: clamp(27px, 6.4vw, 36px) !important;
  }
}
