:root {
  --ink: #182126;
  --ink-soft: #334047;
  --muted: #5f6d73;
  --paper: #ffffff;
  --soft: #f2f6f4;
  --soft-warm: #f8f3ef;
  --line: #d5dfdc;
  --rust: #ad402d;
  --rust-dark: #7f2d20;
  --teal: #12665f;
  --teal-dark: #0d4e49;
  --teal-pale: #dcefeb;
  --yellow: #f0c74b;
  --focus: #176fba;
  --shadow: 0 16px 44px rgba(24, 33, 38, 0.1);
  --header-height: 72px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 54px;
  font-weight: 750;
}

h2 {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 730;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(800px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(213, 223, 220, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

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

.brand img {
  width: 40px;
  height: 40px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 17px;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--rust);
}

.desktop-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -25px;
  left: 0;
  height: 3px;
  background: var(--rust);
  content: "";
}

.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.nav-menu__panel {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  display: grid;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(20, 38, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.nav-menu__panel a {
  padding: 10px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.nav-menu__panel a:hover,
.nav-menu__panel a:focus-visible {
  color: var(--teal);
  background: var(--soft);
}

.nav-menu:hover .nav-menu__panel,
.nav-menu:focus-within .nav-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--soft);
}

.language-switch a {
  display: grid;
  min-width: 34px;
  height: 26px;
  place-items: center;
  border-radius: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.language-switch a[aria-current="true"] {
  color: var(--paper);
  background: var(--teal);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.mobile-nav__label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  color: var(--paper);
  background: var(--rust);
}

.button--primary:hover {
  background: var(--rust-dark);
}

.button--secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper);
}

.button--secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--paper);
  background: rgba(10, 22, 28, 0.34);
}

.button--small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 13px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.hero-home {
  position: relative;
  display: grid;
  height: calc(100svh - var(--header-height));
  min-height: 600px;
  max-height: 720px;
  align-items: center;
  color: var(--paper);
  background: #0a171d;
  overflow: hidden;
  isolation: isolate;
}

.hero-home::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(9, 22, 28, 0.72);
  content: "";
}

.hero-home::after {
  position: absolute;
  z-index: -2;
  inset: -4.5%;
  background-image: url("assets/generated/hero-business-scene.f707835ba4.webp");
  background-position: center;
  background-size: cover;
  content: "";
}

.hero-content {
  width: min(780px, 100%);
  padding-block: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  background: currentColor;
  content: "";
}

.hero-home .eyebrow {
  color: #f4c75d;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-proof div {
  min-height: 88px;
  padding: 16px 18px;
  background: rgba(10, 25, 31, 0.58);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 15px;
}

.hero-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.page-hero {
  padding: 82px 0 68px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero--warm {
  background: var(--soft-warm);
}

.page-hero--compact {
  padding-block: 58px 50px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--teal);
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  color: var(--paper);
  background: var(--ink);
}

.section--compact {
  padding-block: 58px;
}

.proof-bar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-bar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 18px 0 0;
}

.proof-bar__links a {
  color: var(--teal);
  font-weight: 720;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 44px;
}

.section-heading > div {
  min-width: 0;
}

.section-heading p {
  color: var(--muted);
}

.section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.answer-strip {
  border-bottom: 1px solid var(--line);
}

.answer-strip .container {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  padding-block: 34px;
}

.answer-strip strong {
  color: var(--teal);
  font-size: 14px;
  text-transform: uppercase;
}

.answer-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.service-grid,
.case-grid,
.article-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.case-grid {
  align-items: start;
}

.service-card,
.case-card,
.article-card,
.value-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.service-card,
.article-card,
.value-card {
  padding: 28px;
}

.article-card--with-image {
  padding-top: 0;
}

.article-card__media {
  display: block;
  width: calc(100% + 56px);
  margin: 0 -28px 24px;
  overflow: hidden;
}

.article-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 180ms ease;
}

.article-card__media:hover .article-card__image {
  transform: scale(1.015);
}

.article-card__media:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--rust);
  content: "";
}

.service-card:nth-child(2)::before {
  background: var(--teal);
}

.service-card:nth-child(3)::before {
  background: var(--yellow);
}

.card-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--rust);
  font-weight: 750;
}

.card-link:hover {
  color: var(--rust-dark);
}

.scope-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  background: var(--soft);
  color: var(--ink-soft);
}

.check-list,
.plain-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 72px;
}

.detail-aside {
  align-self: start;
  padding: 26px;
  border-left: 4px solid var(--teal);
  background: var(--soft);
}

.detail-aside h2 {
  font-size: 24px;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.deliverable-list article {
  min-height: 168px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  list-style: none;
}

.process-list li {
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.process-list h3 {
  font-size: 18px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric {
  min-height: 138px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric strong {
  display: block;
  color: var(--teal);
  font-size: 28px;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.case-card img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}

.case-card__body {
  padding: 24px;
}

.case-card__body p {
  color: var(--muted);
}

.case-card--featured {
  grid-column: span 2;
}

.case-card--featured .case-card__body {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.6fr);
  gap: 28px;
}

body[data-page-variant^="cases-"] .case-card--featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

body[data-page-variant^="cases-"] .case-card--featured .case-card__body {
  grid-template-columns: 1fr;
  align-content: center;
}

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

.case-visual-pair figure,
.article-figure {
  margin: 0;
}

.case-visual-pair img,
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 0;
}

.case-mobile-proof {
  width: min(380px, 100%);
  margin: 42px auto;
}

.case-mobile-proof img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.evidence-note {
  padding: 24px 26px;
  border-left: 4px solid var(--yellow);
  background: #fff9df;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 22px 54px 22px 0;
  font-size: 18px;
  font-weight: 720;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 8px;
  width: 30px;
  height: 30px;
  color: var(--teal);
  content: "+";
  font-size: 24px;
  line-height: 28px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 860px;
  padding: 0 48px 24px 0;
  color: var(--ink-soft);
}

.faq-groups {
  display: grid;
  gap: 64px;
}

.faq-group-heading {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  margin-bottom: 18px;
}

.faq-group-heading span {
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 240px;
  justify-content: space-between;
  gap: 72px;
}

.article-body h2 {
  margin-top: 54px;
  font-size: 30px;
}

.article-byline {
  margin: 0 0 24px;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.article-byline a {
  color: var(--teal);
}

.article-lead-media {
  margin: 0 0 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.article-lead-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-lead-media figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.article-inline-media {
  margin: 42px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.article-inline-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body[data-page-variant^="case-ayouhuo-"] .article-inline-media img {
  aspect-ratio: auto;
  object-fit: contain;
}

.article-inline-media figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.article-body h3 {
  margin-top: 34px;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 17px;
}

.article-body pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.article-body li + li {
  margin-top: 8px;
}

.article-body blockquote {
  margin-block: 34px;
  padding: 24px 28px;
  border-left: 4px solid var(--rust);
  background: var(--soft-warm);
  font-size: 19px;
  font-weight: 650;
}

.article-next-step {
  margin-top: 54px;
  padding: 28px;
  border-top: 4px solid var(--teal);
  background: var(--soft);
}

.article-next-step h2 {
  margin-top: 0;
  font-size: 26px;
}

.article-next-step > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.table-scroll {
  margin-block: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.decision-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--paper);
  text-align: left;
}

.decision-table th,
.decision-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.decision-table th {
  background: var(--soft-warm);
  color: var(--ink);
  font-size: 14px;
}

.decision-table tr:last-child td {
  border-bottom: 0;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  padding-left: 18px;
  border-left: 2px solid var(--line);
}

.article-toc strong {
  display: block;
  margin-bottom: 12px;
}

.article-toc a {
  display: block;
  padding-block: 5px;
  color: var(--muted);
  font-size: 13px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 72px;
}

.contact-direct {
  align-self: start;
}

.contact-direct a {
  color: var(--teal);
  font-weight: 720;
}

.contact-layout--single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 0.55fr);
  align-items: start;
  gap: 56px;
}

.geo-check {
  display: grid;
  gap: 22px;
}

.geo-check__progress {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.geo-check__progress strong {
  color: var(--teal);
  font-size: 22px;
}

.geo-check__progress > span {
  color: var(--muted);
  font-size: 13px;
}

.geo-check fieldset {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
}

.geo-check legend {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  font-size: 20px;
  font-weight: 760;
}

.geo-check legend span {
  margin-right: 10px;
  color: var(--rust);
  font-size: 13px;
}

.geo-check fieldset label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
}

.geo-check fieldset label:has(input:checked) {
  border-color: var(--teal);
  background: var(--soft);
}

.geo-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.geo-check__actions,
.geo-check-result__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.geo-check-result {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  background: var(--paper);
}

.geo-check-score {
  display: flex;
  align-items: baseline;
  margin-bottom: 14px;
}

.geo-check-score strong {
  color: var(--teal);
  font-size: 58px;
  line-height: 1;
}

.geo-check-score span {
  color: var(--muted);
  font-size: 18px;
}

.geo-check-result h2 {
  font-size: 25px;
}

.geo-check-result h3 {
  margin-top: 24px;
  font-size: 17px;
}

.geo-check-result ol {
  padding-left: 22px;
  color: var(--ink-soft);
}

.geo-check-result li + li {
  margin-top: 14px;
}

.geo-check-result li strong,
.geo-check-result li span {
  display: block;
}

.geo-check-result li span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.intake-form {
  display: grid;
  gap: 22px;
}

.form-options {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
}

.form-options summary {
  padding: 16px 18px;
  color: var(--teal);
  font-weight: 720;
  cursor: pointer;
}

.form-options__body {
  display: grid;
  gap: 20px;
  padding: 4px 18px 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field > span,
.field legend {
  font-size: 14px;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #b9c6c2;
  border-radius: 4px;
  background: var(--paper);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
}

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

.checkbox-option {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.checkbox-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.form-note,
.form-status,
.copy-status {
  color: var(--muted);
  font-size: 13px;
}

.form-status[role="alert"] {
  color: var(--rust-dark);
}

.submission-result {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 4px;
  background: var(--soft);
}

.submission-result[hidden],
[hidden] {
  display: none !important;
}

.result-code {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 3px;
  color: var(--paper);
  background: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.result-grid div {
  min-height: 110px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.result-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.result-grid dd {
  margin: 7px 0 0;
  white-space: pre-wrap;
}

.ops-page {
  background: #f2f5f3;
}

.ops-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.ops-header .container,
.ops-toolbar,
.ops-lead > header,
.ops-lead > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ops-header .container {
  min-height: 64px;
}

.ops-header strong,
.ops-header span {
  margin-right: 12px;
}

.ops-header span {
  color: var(--muted);
}

.ops-main {
  padding-block: 48px 80px;
}

.ops-login {
  max-width: 420px;
  margin: 8vh auto 0;
}

.ops-login form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.ops-filters,
.ops-actions {
  display: flex;
  align-items: end;
  gap: 8px;
  flex-wrap: wrap;
}

.ops-filters .field {
  min-width: 150px;
}

.ops-lead-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.ops-lead {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.ops-lead--requested {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(22, 107, 91, 0.12);
}

.ops-lead > header span,
.ops-lead > footer > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.ops-lead dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ops-lead dl > div {
  min-width: 0;
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ops-lead dt {
  color: var(--muted);
  font-size: 12px;
}

.ops-lead dd {
  margin: 5px 0 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.ops-lead .ops-lead-wide {
  grid-column: 1 / -1;
}

.ops-lead-edit {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--soft);
}

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

.ops-lead-edit textarea {
  min-height: 82px;
}

.ops-lead-edit .button {
  justify-self: start;
}

.ops-status-badge {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink) !important;
  background: var(--soft);
}

.ops-status-badge[data-status="new"] {
  border-color: #d59a57;
  background: #fff3df;
}

.ops-actions button {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  cursor: pointer;
}

.ops-actions button:disabled {
  color: var(--paper);
  border-color: var(--teal);
  background: var(--teal);
  cursor: default;
}

.ops-empty {
  padding: 28px;
  border: 1px dashed var(--line);
  text-align: center;
}

.cta-band {
  padding: 62px 0;
  color: var(--paper);
  background: var(--teal-dark);
}

.cta-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: #111a1e;
}

.site-footer--compact {
  padding: 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.5fr));
  gap: 44px;
}

.footer-brand .brand {
  color: var(--paper);
}

.footer-brand .brand-copy span {
  color: #b8c4c8;
}

.footer-brand p {
  max-width: 400px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-column strong {
  display: block;
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 13px;
}

.footer-column a {
  display: block;
  padding-block: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-legal a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--paper);
}

.x-default-page {
  min-height: 100svh;
  color: var(--paper);
  background: var(--ink);
}

.language-entry {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
}

.language-entry__visual {
  position: relative;
  display: flex;
  align-items: end;
  padding: 60px;
  background: #0a171d;
  overflow: hidden;
  isolation: isolate;
}

.language-entry__visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(8, 20, 25, 0.64);
  content: "";
}

.language-entry__visual::after {
  position: absolute;
  z-index: -2;
  inset: -4.5%;
  background-image: url("assets/generated/hero-business-scene.f707835ba4.webp");
  background-position: center;
  background-size: cover;
  content: "";
}

.language-entry__visual h1 {
  max-width: 700px;
  margin-bottom: 0;
}

.language-entry__choices {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 60px;
  background: var(--paper);
  color: var(--ink);
}

.language-choice {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}

.language-choice:hover {
  border-color: var(--teal);
  background: var(--soft);
}

.language-choice strong,
.language-choice span {
  display: block;
}

.language-choice span {
  color: var(--muted);
  font-size: 13px;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
  background: var(--soft);
}

.error-page main {
  width: min(620px, 100%);
}

.error-code {
  color: var(--rust);
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-nav {
    position: absolute;
    z-index: 90;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100dvh - var(--header-height));
    padding: 24px;
    background: var(--paper);
    overflow-y: auto;
  }

  .mobile-nav[data-open="true"] {
    display: grid;
    align-content: start;
    gap: 6px;
  }

  .mobile-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav__label {
    margin-top: 14px;
    padding: 8px 4px 2px;
  }

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

  .process-list li:nth-child(3) {
    border-right: 0;
  }

  .process-list li:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-toc {
    position: static;
    order: -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .container,
  .narrow {
    width: min(100% - 32px, 1180px);
  }

  .brand-copy span {
    display: none;
  }

  .hero-home {
    height: auto;
    min-height: 590px;
    max-height: none;
  }

  .hero-home::after {
    background-position: 58% center;
  }

  .hero-content {
    padding-block: 74px 46px;
  }

  .hero-lead,
  .page-hero p {
    font-size: 18px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: auto;
  }

  .page-hero {
    padding: 58px 0 48px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading,
  .detail-grid,
  .contact-layout,
  .tool-layout,
  .cta-band .container,
  .case-card--featured .case-card__body,
  .language-entry {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .geo-check-result {
    position: static;
  }

  .answer-strip .container,
  .faq-group-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-grid,
  .case-grid,
  .article-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .case-card--featured {
    grid-column: auto;
  }

  body[data-page-variant^="cases-"] .case-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

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

  .language-entry__visual {
    min-height: 52svh;
    padding: 32px;
  }

  .language-entry__choices {
    min-height: 48svh;
    padding: 34px 24px;
  }

  .ops-toolbar,
  .ops-lead > header,
  .ops-lead > footer {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .ops-lead .ops-lead-wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 36px;
  }

  .hero-home h1 {
    font-size: 32px;
    line-height: 1.28;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .nav-shell {
    gap: 12px;
  }

  .language-switch {
    display: none;
  }

  .hero-home {
    min-height: 620px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .deliverable-list,
  .form-grid,
  .checkbox-group,
  .result-grid,
  .case-visual-pair,
  .metrics,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ops-edit-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .service-card,
  .article-card,
  .value-card {
    padding: 23px;
  }

  .article-card.article-card--with-image {
    padding: 0 23px 23px;
  }

  .article-card__media {
    width: calc(100% + 46px);
    margin: 0 -23px 20px;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
