:root {
  color-scheme: light;
  --color-ink: #00484a;
  --color-ink-strong: #063c3d;
  --color-ink-soft: #0b5a5c;
  --color-surface: #f6efe3;
  --color-surface-bright: #fff9ef;
  --color-sand: #ead6b9;
  --color-accent: #e95a2a;
  --text-muted: rgba(0, 72, 74, 0.68);
  --text-muted-strong: rgba(0, 72, 74, 0.82);
  --text-muted-on-dark: rgba(246, 239, 227, 0.72);
  --border-subtle: rgba(0, 72, 74, 0.16);
  --border-medium: rgba(0, 72, 74, 0.18);
  --border-on-dark: rgba(246, 239, 227, 0.18);
  --shadow-panel: 0 24px 80px rgba(0, 72, 74, 0.14);
  --focus-ring: 0 0 0 3px rgba(246, 239, 227, 0.95), 0 0 0 6px rgba(233, 90, 42, 0.84);
  --ink: var(--color-ink);
  --ink-2: var(--color-ink-strong);
  --ink-3: var(--color-ink-soft);
  --cream: var(--color-surface);
  --cream-2: var(--color-surface-bright);
  --sand: var(--color-sand);
  --orange: var(--color-accent);
  --orange-2: var(--color-accent);
  --gold: var(--color-surface);
  --gold-strong: var(--color-surface);
  --muted: var(--text-muted);
  --muted-on-dark: var(--text-muted-on-dark);
  --muted-dark: var(--text-muted);
  --line: var(--border-subtle);
  --line-dark: var(--border-medium);
  --shadow: var(--shadow-panel);
  --max: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(0, 72, 74, 0.94), rgba(0, 72, 74, 0.52));
  border-bottom: 1px solid rgba(246, 239, 227, 0.14);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.brand-logo {
  width: 56px;
  height: 56px;
  padding: 4px;
  object-fit: contain;
  background: var(--cream);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.brand-name {
  white-space: nowrap;
  font-size: clamp(0.86rem, 1.4vw, 1.1rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.75vw, 30px);
  margin-left: auto;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(246, 239, 227, 0.9);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange-2);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current] {
  color: var(--cream);
}

.page-subnav a[aria-current] {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(246, 239, 227, 0.36);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.08);
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  height: clamp(560px, 43vw, 660px);
  min-height: 0;
  background: var(--ink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/hero-scene-clean.png") center top / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 72, 74, 0.36), rgba(0, 72, 74, 0.06) 58%, rgba(0, 72, 74, 0)),
    linear-gradient(180deg, rgba(0, 72, 74, 0.14), rgba(0, 72, 74, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 20vh;
  background: linear-gradient(180deg, rgba(0, 72, 74, 0), rgba(0, 72, 74, 0.14));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 185px;
  bottom: auto;
  left: clamp(20px, 5vw, 72px);
  z-index: 3;
  width: min(980px, calc(100% - 40px));
  padding: 0;
  margin: 0;
}

.section-code {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(3.35rem, 6vw, 6.55rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-content p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted-on-dark);
  font-size: clamp(1.05rem, 1.35vw, 1.34rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-highlights {
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.highlight-shell {
  width: min(1400px, calc(100% - clamp(40px, 8vw, 120px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 184px;
  padding: 34px clamp(18px, 2.5vw, 32px);
  border-left: 1px solid rgba(0, 72, 74, 0.12);
}

.highlight-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.highlight-item:last-child {
  padding-right: 0;
}

.highlight-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(246, 239, 227, 0.82);
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: inset 0 0 0 6px rgba(246, 239, 227, 0.08);
}

.highlight-item:nth-child(even) .highlight-mark {
  background: var(--orange);
}

.highlight-copy h2 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.highlight-copy p {
  margin: 0;
  color: rgba(0, 72, 74, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.highlight-copy a {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight-copy a::after {
  content: "->";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff9ef;
}

.button-secondary {
  background: rgba(0, 72, 74, 0.08);
  border-color: rgba(0, 72, 74, 0.34);
  color: var(--ink);
}

.service-consult-cta {
  margin-top: 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.service-consult-cta span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-consult-cta p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted-dark);
}

.service-consult-cta .button {
  display: inline-flex;
  white-space: nowrap;
  word-break: keep-all;
}

.consulting-page {
  background: var(--cream);
}

.consult-hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(58px, 8vw, 92px)) 0 clamp(64px, 8vw, 108px);
  background:
    radial-gradient(circle at 78% 20%, rgba(233, 90, 42, 0.14), transparent 30%),
    linear-gradient(180deg, var(--cream-2), var(--cream));
  color: var(--ink);
}

.consult-hero-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(270px, 0.5fr) minmax(330px, 0.78fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
}

.consult-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.consult-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.05rem, 6vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.consult-hero-copy > p {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(0, 72, 74, 0.78);
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.45;
}

.consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.consult-price-card,
.consult-visual {
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.consult-price-card {
  display: flex;
  flex-direction: column;
  align-self: center;
  min-height: 420px;
  padding: 30px;
  background: var(--ink);
  color: var(--cream);
}

.consult-price-card > span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consult-price-card strong {
  margin-top: 32px;
  color: var(--cream);
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.consult-price-card p {
  margin: 22px 0 0;
  color: var(--muted-on-dark);
}

.consult-price-card dl {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid rgba(246, 239, 227, 0.18);
}

.consult-price-card div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(246, 239, 227, 0.14);
}

.consult-price-card dt {
  color: rgba(246, 239, 227, 0.56);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consult-price-card dd {
  margin: 6px 0 0;
  color: var(--cream);
  font-weight: 760;
  line-height: 1.32;
}

.consult-visual {
  display: flex;
  flex-direction: column;
  align-self: center;
  min-height: 420px;
  padding: 20px;
  background: var(--cream);
}

.consult-visual-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 16px;
  color: var(--orange);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consult-visual svg {
  flex: 1;
  width: 100%;
  min-height: 260px;
}

.consult-visual path {
  fill: none;
  stroke: rgba(0, 72, 74, 0.3);
  stroke-width: 5;
}

.consult-visual circle {
  fill: var(--orange);
  stroke: var(--cream-2);
  stroke-width: 8;
}

.consult-visual text {
  fill: var(--ink);
  font-size: 19px;
  font-weight: 900;
  text-anchor: middle;
}

.consult-visual-note {
  padding-top: 16px;
  color: rgba(0, 72, 74, 0.72);
  border-top: 1px solid var(--line-dark);
  font-size: 0.94rem;
  font-weight: 740;
}

.page-subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  padding: 15px 20px;
  background: rgba(246, 239, 227, 0.94);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.page-subnav a {
  position: relative;
  color: rgba(0, 72, 74, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-subnav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

.page-subnav a:hover {
  color: var(--orange);
}

.page-subnav a.is-active::after,
.page-subnav a[aria-current]::after {
  transform: scaleX(1);
}

html[lang="zh-Hant-HK"] .site-nav,
html[lang="zh-Hant-HK"] .section-code,
html[lang="zh-Hant-HK"] .highlight-copy h2,
html[lang="zh-Hant-HK"] .highlight-copy a,
html[lang="zh-Hant-HK"] .page-subnav a {
  letter-spacing: 0.06em;
}

html[lang="zh-Hant-HK"] .button,
html[lang="zh-Hant-HK"] .contact-actions .button {
  letter-spacing: 0.08em;
}

.audience-grid,
.diagnose-grid,
.after-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.audience-grid article,
.after-service-list article {
  min-height: 250px;
  padding: 30px clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line-dark);
}

.audience-grid article:last-child,
.after-service-list article:last-child {
  border-right: 0;
}

.audience-grid span,
.diagnose-grid span,
.diagnostic-path span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-grid h3,
.diagnose-grid h3,
.after-service-list h3 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-size: clamp(1.34rem, 2.1vw, 2.05rem);
  line-height: 1.08;
}

.audience-grid p,
.after-service-list p {
  margin: 0;
  color: var(--muted-dark);
}

.consult-dark-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(233, 90, 42, 0.18), transparent 32%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
  color: var(--cream);
}

.consult-dark-section .section-code {
  color: var(--orange);
}

.consult-dark-section h2,
.consult-dark-section h3 {
  color: var(--cream);
}

.diagnose-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
  border-color: rgba(246, 239, 227, 0.18);
}

.diagnose-grid article {
  min-height: 270px;
  padding: 28px clamp(18px, 2.4vw, 30px);
  border-right: 1px solid rgba(246, 239, 227, 0.18);
}

.diagnose-grid article:last-child {
  border-right: 0;
}

.diagnose-grid p {
  margin: 0;
  color: var(--muted-on-dark);
}

.consult-output-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.consult-output-grid h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.1vw, 4.4rem);
  line-height: 1.02;
}

.consult-output-grid > div > p:not(.section-code) {
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.diagnostic-path {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.diagnostic-path li {
  display: grid;
  grid-template-columns: 76px minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 23px 0;
  border-bottom: 1px solid var(--line-dark);
}

.diagnostic-path strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.diagnostic-path p {
  margin: 0;
  color: var(--muted-dark);
}

.consult-after-section {
  background: var(--cream-2);
}

.after-service-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section {
  position: relative;
  scroll-margin-top: var(--header-height);
  padding: clamp(78px, 10vw, 132px) 0;
}

.hero {
  scroll-margin-top: 0;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(42px, 8vw, 104px);
  align-items: start;
}

.section-intro h2,
.solution-copy h2,
.workflow-heading h2,
.section-heading-row h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.1vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-intro p:not(.section-code),
.solution-copy > p,
.section-heading-row > p,
.contact-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.services-section,
.solution-section,
.about-section,
.setupai-section,
.insights-section,
.contact-section {
  background: var(--cream);
  color: var(--ink);
}

.workflow-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(233, 90, 42, 0.16), transparent 34%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
  color: var(--cream);
}

.workflow-section .section-code {
  color: var(--orange);
}

.workflow-section .workflow-heading h2,
.workflow-section .workflow-steps h3 {
  color: var(--cream);
}

.workflow-section .workflow-steps p {
  color: var(--muted-on-dark);
}

.service-lanes {
  border-top: 1px solid var(--line);
}

.service-lanes article {
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-lanes span,
.workflow-steps span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-lanes h3,
.workflow-steps h3,
.insight-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
}

.service-lanes p,
.workflow-steps p,
.insight-list p,
.about-copy p {
  margin: 0;
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
}

.solution-section .section-code,
.about-section .section-code,
.setupai-section .section-code,
.insights-section .section-code,
.contact-section .section-code {
  color: var(--orange);
}

.setupai-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding-block: clamp(18px, 3vw, 34px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.setupai-panel h2 {
  max-width: 880px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 5.35rem);
  line-height: 0.94;
}

.setupai-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.setupai-link-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(145deg, rgba(0, 72, 74, 0.96), rgba(0, 58, 59, 0.96)),
    var(--ink);
  color: var(--cream);
  box-shadow: 16px 16px 0 rgba(233, 90, 42, 0.16);
}

.setupai-link-card span {
  color: var(--orange-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.setupai-link-card strong {
  display: block;
  color: var(--cream);
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
}

.setupai-link-card p {
  color: var(--muted-on-dark);
}

.setupai-link-card .button {
  justify-self: start;
}

.solution-copy > p {
  color: var(--muted-dark);
}

.custom-services {
  margin-top: clamp(46px, 7vw, 86px);
  padding-top: clamp(32px, 5vw, 54px);
  border-top: 1px solid var(--line-dark);
}

.custom-services-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  margin-bottom: 34px;
}

.custom-services-heading h2 {
  margin: 0;
  font-size: clamp(1.82rem, 3.1vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.custom-services-heading > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
}

.custom-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.custom-service-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 330px;
  padding: 30px clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--line-dark);
}

.custom-service-card:last-child {
  border-right: 0;
}

.product-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--cream-2);
  border: 1px solid rgba(0, 72, 74, 0.16);
}

.product-logo-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.custom-service-card span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.24;
  text-transform: uppercase;
}

.custom-service-card h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.86rem);
  line-height: 1.08;
}

.custom-service-card p {
  margin: 0;
  color: var(--muted-dark);
}

.custom-service-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(0, 72, 74, 0.56);
  font-size: 0.82rem;
}

.solution-facts {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--line-dark);
}

.solution-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.solution-facts dt {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.solution-facts dd {
  margin: 0;
  color: rgba(0, 72, 74, 0.86);
  font-weight: 700;
}

.review-console {
  position: relative;
  padding: 18px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(0, 72, 74, 0.2);
  box-shadow: var(--shadow);
}

.review-console::before {
  content: "";
  position: absolute;
  inset: -13px 18px auto;
  height: 13px;
  background: var(--orange);
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(246, 239, 227, 0.18);
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-body {
  display: grid;
  gap: 16px;
  padding-top: 18px;
}

.console-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.console-panel {
  min-height: 146px;
  padding: 20px;
  background: rgba(246, 239, 227, 0.07);
  border: 1px solid rgba(246, 239, 227, 0.15);
}

.console-panel-wide {
  min-height: 116px;
}

.accent-panel {
  background: rgba(233, 90, 42, 0.82);
  border-color: rgba(246, 239, 227, 0.32);
}

.console-label {
  display: block;
  margin-bottom: 16px;
  color: rgba(246, 239, 227, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.console-panel strong {
  color: var(--cream);
  font-size: clamp(1.18rem, 2vw, 1.72rem);
  line-height: 1.15;
}

.workflow-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
}

.workflow-map-wrap {
  margin: 42px 0 10px;
}

.workflow-map {
  width: 100%;
  height: auto;
}

.workflow-map path {
  fill: none;
  stroke: rgba(246, 239, 227, 0.38);
  stroke-width: 3;
}

.workflow-map circle {
  fill: var(--orange);
  stroke: var(--cream);
  stroke-width: 4;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-steps li {
  min-height: 190px;
  padding: 22px 18px;
  border-left: 1px solid var(--line);
}

.workflow-steps h3 {
  margin: 18px 0 12px;
}

.about-copy {
  display: grid;
  gap: 24px;
  padding-top: 8px;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
}

.about-copy p {
  color: rgba(0, 72, 74, 0.82);
}

.about-logo {
  width: min(280px, 62vw);
  height: auto;
  margin-bottom: 8px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: end;
  margin-bottom: 42px;
}

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

.insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.insight-list article {
  min-height: 250px;
  padding: 32px clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line-dark);
}

.insight-list article:last-child {
  border-right: 0;
}

.insight-list span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.insight-list h3 {
  margin: 44px 0 18px;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.08;
}

.insight-list p {
  color: var(--muted-dark);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 6vw, 84px);
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.faq-item h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.25;
}

.faq-item p {
  margin: 0;
  color: var(--muted-dark);
}

.contact-section {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-top: 40px;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(34px, 6vw, 64px);
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 720px;
  color: var(--muted-on-dark);
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: min(100%, 330px);
}

.contact-actions .button {
  width: 100%;
  gap: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
  white-space: nowrap;
}

.button-contact-alt {
  background: rgba(246, 239, 227, 0.06);
  border-color: rgba(246, 239, 227, 0.36);
  color: var(--cream);
}

.contact-panel .button-secondary {
  background: rgba(246, 239, 227, 0.08);
  border-color: rgba(246, 239, 227, 0.34);
  color: var(--cream);
}

.button-contact-alt:hover {
  background: rgba(246, 239, 227, 0.1);
  border-color: rgba(246, 239, 227, 0.68);
}

.button-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(246, 239, 227, 0.68);
  border-top: 1px solid rgba(246, 239, 227, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
    font-size: 0.68rem;
  }

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

  .consult-hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  }

  .consult-visual {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .diagnose-grid,
  .after-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diagnose-grid article:nth-child(2),
  .after-service-list article:nth-child(2) {
    border-right: 0;
  }

  .diagnose-grid article:nth-child(-n + 2),
  .after-service-list article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(246, 239, 227, 0.18);
  }

  .after-service-list article:nth-child(-n + 2) {
    border-bottom-color: var(--line-dark);
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    gap: 10px;
    letter-spacing: 0.08em;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 33;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 8px 18px 22px;
    background: var(--ink);
    border-bottom: 1px solid rgba(246, 239, 227, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    transform: translateY(-120%);
    visibility: hidden;
    transition:
      transform 220ms ease,
      visibility 220ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(246, 239, 227, 0.12);
  }

  .hero {
    height: 70svh;
    min-height: 590px;
  }

  .hero-bg {
    background: url("images/hero-scene-clean.png") 84% top / cover no-repeat;
  }

  .hero-content {
    top: 132px;
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
  }

  .hero-content p {
    max-width: 320px;
  }

  .highlight-shell {
    width: min(var(--max), calc(100% - 40px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-item {
    min-height: 0;
    padding: 26px 20px;
    border-top: 1px solid rgba(0, 72, 74, 0.12);
  }

  .highlight-item:nth-child(odd) {
    border-left: 0;
  }

  .highlight-item:first-child,
  .highlight-item:nth-child(2) {
    border-top: 0;
  }

  .split-layout,
  .solution-grid,
  .workflow-heading,
  .section-heading-row,
  .custom-services-heading,
  .setupai-panel,
  .consult-hero-shell,
  .consult-output-grid {
    grid-template-columns: 1fr;
  }

  .page-subnav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 18px;
  }

  .consult-hero {
    min-height: 0;
  }

  .consult-hero-copy {
    min-height: 0;
  }

  .consult-price-card,
  .consult-visual {
    min-height: 0;
  }

  .consult-visual {
    grid-column: auto;
  }

  .custom-service-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .diagnose-grid,
  .after-service-list {
    grid-template-columns: 1fr;
  }

  .audience-grid article,
  .diagnose-grid article,
  .after-service-list article,
  .audience-grid article:last-child,
  .diagnose-grid article:last-child,
  .after-service-list article:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .diagnose-grid article,
  .diagnose-grid article:nth-child(-n + 2) {
    border-bottom-color: rgba(246, 239, 227, 0.18);
  }

  .audience-grid article:last-child,
  .diagnose-grid article:last-child,
  .after-service-list article:last-child {
    border-bottom: 0;
  }

  .custom-service-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .custom-service-card:last-child {
    border-bottom: 0;
  }

  .service-lanes article {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .service-lanes p {
    grid-column: 2;
  }

  .console-row {
    grid-template-columns: 1fr;
  }

  .workflow-map-wrap {
    display: none;
  }

  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

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

  .insight-list article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .insight-list article:last-child {
    border-bottom: 0;
  }

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

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-content p {
    max-width: 310px;
    margin-top: 20px;
    font-size: 1rem;
  }

  .highlight-shell {
    grid-template-columns: 1fr;
  }

  .highlight-item,
  .highlight-item:first-child,
  .highlight-item:last-child {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 24px 0;
    border-top: 1px solid rgba(0, 72, 74, 0.12);
    border-left: 0;
  }

  .highlight-item:first-child {
    border-top: 0;
  }

  .highlight-mark {
    width: 52px;
    height: 52px;
  }

  .solution-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .consult-hero {
    padding-top: calc(var(--header-height) + 42px);
  }

  .consult-hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.25rem);
  }

  .consult-actions {
    width: 100%;
  }

  .consult-price-card {
    padding: 24px;
  }

  .consult-visual {
    padding: 16px;
  }

  .consult-visual svg {
    min-height: 220px;
  }

  .consult-visual text {
    font-size: 22px;
  }

  .diagnostic-path li {
    grid-template-columns: 54px 1fr;
    gap: 10px 16px;
  }

  .diagnostic-path p {
    grid-column: 2;
  }

  .review-console {
    padding: 14px;
  }

  .console-panel {
    min-height: 128px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps li {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions .button {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
