:root {
  --canvas: #f5f1ea;
  --canvas-top: #fbf7ef;
  --canvas-bottom: #f4efe7;
  --glass: rgba(255, 255, 255, 0.48);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.64);
  --card: #f9f8f6;
  --card-green: #f2f4f0;
  --ink: #1c231a;
  --ink-soft: #5c645a;
  --muted: #8a9387;
  --forest: #2d3a29;
  --forest-mid: #4e5d49;
  --forest-light: #7d8c78;
  --gold: #d2b176;
  --gold-deep: #987437;
  --teal: #1f8b8f;
  --dark: #11140f;
  --dark-hover: #22271e;
  --footer: #0b0e0a;
  --footer-card: #141a12;
  --line: rgba(17, 20, 15, 0.12);
  --line-light: rgba(255, 255, 255, 0.5);
  --shadow-card: 0 12px 30px rgba(45, 58, 41, 0.06);
  --shadow-hover: 0 24px 60px rgba(45, 58, 41, 0.12);
  --shadow-glow: 0 0 30px rgba(210, 177, 118, 0.35);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shell: min(1720px, calc(100% - 96px));
  --content: min(1480px, calc(100% - 96px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

section[id],
article[id],
.anchor-offset {
  scroll-margin-top: 118px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(31, 139, 143, 0.1), transparent 28%),
    radial-gradient(circle at right 20%, rgba(194, 139, 69, 0.1), transparent 22%),
    linear-gradient(180deg, var(--canvas-top) 0%, var(--canvas-bottom) 100%);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(31, 139, 143, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 24px;
  top: 0;
  z-index: 50;
  padding: 10px 16px;
  color: #f2f4f1;
  background: var(--dark);
  border-radius: var(--radius-sm);
  transform: translateY(-120%);
}

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

.anchor-offset {
  position: relative;
  top: -110px;
  display: block;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: var(--shell);
  min-height: 78px;
  margin: 0 auto;
  color: var(--ink);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 19px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 9999px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px);
}

.brand,
.header-actions,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-star {
  width: 28px;
  height: 28px;
  background: var(--dark);
  clip-path: polygon(50% 0, 58% 36%, 100% 50%, 58% 64%, 50% 100%, 42% 64%, 0 50%, 42% 36%);
}

.brand-star.light {
  background: #f2f4f1;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-logo {
  filter: brightness(1.25);
}

.site-nav {
  justify-content: center;
  gap: clamp(8px, 1.5vw, 20px);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1.5px solid transparent;
  color: var(--ink-soft);
  transition: all 220ms cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--forest);
  background: rgba(45, 58, 41, 0.04);
  border-color: rgba(45, 58, 41, 0.08);
}

.site-nav a[aria-current="page"] {
  color: var(--forest);
  background: rgba(45, 58, 41, 0.08);
  border-color: rgba(45, 58, 41, 0.18);
  font-weight: 600;
}

.text-link {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.text-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  max-width: 100%;
  padding: 0 25px;
  border-radius: 9999px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 240ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 240ms ease, background 240ms ease;
}

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

.pill-dark {
  color: #f2f4f1;
  background: var(--dark);
  box-shadow: 0 16px 28px rgba(17, 20, 15, 0.18);
}

.pill-dark:hover {
  background: var(--dark-hover);
  box-shadow: var(--shadow-glow);
}

.pill-outline {
  color: var(--forest);
  background: rgba(230, 234, 227, 0.58);
  border: 1px solid rgba(17, 20, 15, 0.16);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.page-hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 22%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--canvas));
}

.page-hero-shell,
.contact-hero-shell {
  width: var(--shell);
  min-height: 94svh;
  margin: 0 auto;
  padding: clamp(130px, 15vh, 210px) 0 82px;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.86fr);
  gap: clamp(48px, 7vw, 140px);
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
  max-width: 780px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-bg {
  object-position: center;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.92) 0%, rgba(251, 247, 239, 0.74) 42%, rgba(251, 247, 239, 0.24) 100%),
    linear-gradient(180deg, rgba(251, 247, 239, 0.16) 0%, rgba(245, 241, 234, 0.88) 96%);
}

.hero::after {
  content: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(640px, 0.58fr) minmax(0, 1fr);
  column-gap: clamp(48px, 5vw, 110px);
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(104px, 11vh, 142px) 0 44px;
}

.hero-copy {
  position: relative;
  isolation: isolate;
  align-self: center;
  display: flex;
  width: min(100%, 620px);
  min-height: clamp(640px, 70vh, 760px);
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 620px;
  padding: clamp(42px, 3.6vw, 56px);
  text-shadow: 0 1px 18px rgba(246, 248, 244, 0.46);
  transform: translateX(20px);
}

.hero-copy::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(248, 246, 240, 0.62) 0%, rgba(245, 244, 238, 0.48) 40%, rgba(230, 234, 224, 0.36) 75%, rgba(220, 225, 215, 0.24) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow:
    0 40px 110px rgba(45, 58, 41, 0.1),
    0 12px 36px rgba(45, 58, 41, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 2px 24px rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(50px) saturate(1.22);
  -webkit-backdrop-filter: blur(50px) saturate(1.22);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.badge,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.badge {
  min-height: 34px;
  padding: 0 16px;
  background: rgba(229, 233, 226, 0.62);
  border: 1px solid rgba(246, 248, 244, 0.64);
  border-radius: 9999px;
  box-shadow: 0 10px 24px rgba(45, 58, 41, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #689f38;
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 4.3vw, 4.6rem);
  line-height: 0.98;
}

h1 span {
  display: block;
}

.hero-copy h1 span {
  white-space: nowrap;
}

.hero-copy h1 {
  max-width: 100%;
  font-size: clamp(2.52rem, 3.15vw, 3.64rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.2rem, 4.3vw, 4.45rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.4vw, 1.36rem);
  line-height: 1.18;
  font-weight: 600;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 455px;
  margin-top: 20px;
  color: rgba(42, 46, 41, 0.88);
  font-size: clamp(1.02rem, 1.12vw, 1.16rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
  min-width: 0;
  margin-top: 28px;
}

.hero-copy .hero-actions {
  width: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-widgets {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}

.glass-panel {
  position: relative;
  min-width: 0;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(248, 246, 240, 0.62) 0%, rgba(245, 244, 238, 0.48) 40%, rgba(230, 234, 224, 0.36) 75%, rgba(220, 225, 215, 0.24) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow:
    0 40px 110px rgba(45, 58, 41, 0.1),
    0 12px 36px rgba(45, 58, 41, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 2px 24px rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(50px) saturate(1.22);
  -webkit-backdrop-filter: blur(50px) saturate(1.22);
  overflow: hidden;
}

.glass-panel::before,
.service-card::before,
.industry-card::before,
.results-panel::before,
.testimonial-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 44%);
}

.hero-widgets .glass-panel {
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(248, 246, 240, 0.62) 0%, rgba(245, 244, 238, 0.48) 40%, rgba(230, 234, 224, 0.36) 75%, rgba(220, 225, 215, 0.24) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 40px 110px rgba(45, 58, 41, 0.1),
    0 12px 36px rgba(45, 58, 41, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 2px 24px rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(50px) saturate(1.22);
  -webkit-backdrop-filter: blur(50px) saturate(1.22);
}

.hero-widgets .glass-panel::after {
  content: none;
}

.hero-widgets .glass-panel::before {
  content: none;
}

.hero-widgets .glass-panel > * {
  position: relative;
  z-index: 2;
}

.hero-widgets .glass-panel > .add-employee {
  position: absolute;
}

.panel-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  min-width: 0;
}

.panel-head h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.panel-head a,
.panel-head button,
.status-pill {
  color: var(--forest-mid);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(17, 20, 15, 0.12);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.panel-head a,
.panel-head button {
  min-height: 30px;
  padding: 0 12px;
}

.employee-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.employee-row + .employee-row {
  border-top: 1px solid rgba(17, 20, 15, 0.08);
}

.employee-row strong,
.employee-row span,
.person-row strong,
.person-row span {
  display: block;
}

.employee-row strong {
  font-size: 0.96rem;
}

.employee-row span {
  color: var(--forest-mid);
  font-size: 0.82rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #f2f4f1;
  background: var(--forest-light);
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(45, 58, 41, 0.12);
}

.avatar.amber {
  background: #b38f4d;
}

.avatar.sage {
  background: #7d8c78;
}

.avatar.teal {
  background: #1f8b8f;
}

.avatar.photo {
  background: linear-gradient(135deg, #7d8c78, #d2b176);
}

.add-employee {
  position: absolute;
  right: 24px;
  bottom: 26px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--forest-mid);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 20, 15, 0.1);
  border-radius: 50%;
  cursor: pointer;
}

.performance-panel {
  align-self: end;
}

.big-stat {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.stat-label {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(10px, 1fr));
  align-items: end;
  gap: 9px;
  height: 112px;
  margin-top: 24px;
}

.bar-chart span {
  display: block;
  min-height: 18px;
  background: linear-gradient(180deg, #d2b176, #7d8c78);
  border-radius: 9999px 9999px 6px 6px;
  opacity: 0.66;
}

.bar-45 {
  height: 45%;
}

.bar-58 {
  height: 58%;
}

.bar-62 {
  height: 62%;
}

.bar-66 {
  height: 66%;
}

.bar-72 {
  height: 72%;
}

.bar-78 {
  height: 78%;
}

.bar-100 {
  height: 100%;
}

.bar-chart .is-active {
  opacity: 1;
  box-shadow: 0 0 18px rgba(210, 177, 118, 0.45);
}

.workflow-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(180px, 0.7fr);
  gap: 18px;
  align-items: end;
}

.service-widget-stack,
.about-widget-grid,
.contact-widgets {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.service-widget-stack {
  align-content: center;
}

.service-widget {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.service-widget.offset-widget {
  margin-left: clamp(24px, 7vw, 100px);
}

.service-widget h2,
.mini-widget h2,
.contact-form h2 {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.service-widget p,
.mini-widget p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-widget strong,
.mini-widget strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
}

.service-widget svg {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 260px;
  height: 62px;
  justify-self: end;
}

.service-widget path {
  fill: none;
  stroke: #7d8c78;
  stroke-width: 6;
  stroke-linecap: round;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-mid);
  font-size: 0.78rem;
  font-weight: 700;
}

.progress-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0% 62%, transparent 63%),
    conic-gradient(#7d8c78 0% 98%, rgba(17, 20, 15, 0.1) 98% 100%);
  box-shadow: 0 4px 12px rgba(45, 58, 41, 0.04);
}

.progress-ring strong {
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

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

.mini-widget {
  min-height: 210px;
}

.mini-widget span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.mini-widget a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--forest);
  font-weight: 700;
}

.workflow-panel .panel-head {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
}

.workflow-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  list-style: none;
}

.workflow-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.workflow-panel li span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(17, 20, 15, 0.18);
  border-radius: 50%;
}

.workflow-panel .check-dot {
  background: #689f38;
  border-color: #689f38;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.55);
}

.wave-card {
  min-height: 110px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(242, 244, 240, 0.9), rgba(210, 177, 118, 0.18));
  border-radius: var(--radius-md);
}

.wave-card svg {
  width: 100%;
  height: 100%;
}

.wave-card path {
  fill: none;
  stroke: #7d8c78;
  stroke-width: 7;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(125, 140, 120, 0.4));
}

.trusted-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.25fr repeat(5, auto);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  min-height: 76px;
  padding-top: 6px;
  color: rgba(28, 35, 26, 0.58);
}

.trusted-strip span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trusted-strip strong {
  color: rgba(28, 35, 26, 0.62);
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 600;
}

.section {
  padding: clamp(82px, 8vw, 140px) 0;
}

.section-shell {
  width: var(--content);
  margin: 0 auto;
}

.section-lead {
  max-width: 500px;
}

.wide-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-lead p:not(.kicker) {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.funnel-heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.funnel-heading .kicker {
  justify-content: center;
}

.funnel-heading h2 {
  text-align: center;
}

.funnel-intro {
  max-width: 70ch;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  line-height: 1.65;
}

.inline-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 30px;
  color: var(--forest);
  font-weight: 600;
}

.services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(245, 241, 234, 0));
}

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.supporting-line {
  margin-top: 18px;
  color: var(--forest);
  font-weight: 700;
}

.capability-shock-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(31, 139, 143, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 241, 234, 0.35));
}

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

.capability-card,
.employee-card,
.workflow-steps li,
.positioning-grid article,
.managed-grid article,
.capacity-stack article {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(28px);
  overflow: hidden;
}

.capability-card {
  min-height: 270px;
  padding: 28px;
}

.capability-card span,
.workflow-steps span,
.positioning-grid article span,
.capacity-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 48px;
  color: var(--forest);
  background: rgba(125, 140, 120, 0.14);
  border: 1px solid rgba(17, 20, 15, 0.08);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.capability-card p,
.employee-card p,
.workflow-steps strong,
.positioning-grid p,
.managed-grid p,
.capacity-stack strong {
  color: var(--ink-soft);
}

.employee-roster-section {
  position: relative;
  z-index: 3;
  overflow: visible;
  background: rgba(242, 244, 240, 0.5);
}

.employee-roster-section .section-lead {
  max-width: 760px;
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}

.employee-roster-robot-bg {
  position: absolute;
  right: -45px;
  top: clamp(-110px, -8vw, -60px);
  height: clamp(380px, 36vw, 540px);
  width: auto;
  pointer-events: none;
  z-index: 1;
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.employee-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 14px;
  transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 300ms ease;
}

.employee-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.employee-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: rgba(242, 244, 240, 0.8);
  border-radius: 22px;
}

.employee-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px 10px 10px;
}

.employee-name {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.employee-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.22rem, 1.45vw, 1.48rem);
}

.employee-card p:not(.employee-name) {
  margin-top: 14px;
}

.capability-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.capability-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--forest);
  background: rgba(125, 140, 120, 0.12);
  border: 1px solid rgba(17, 20, 15, 0.08);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.employee-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal);
  font-weight: 800;
  transition: color 200ms ease;
}

.employee-card a:hover {
  color: #136c70;
}

.employee-card a span,
.inline-link span,
.pill span {
  display: inline-block;
  transition: transform 200ms ease;
}

.employee-card a:hover span,
.inline-link:hover span,
.pill:hover span {
  transform: translateX(4px);
}

.lead-workflow-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(245, 241, 234, 0));
}

.workflow-demo-grid,
.capacity-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.workflow-demo-grid .pill {
  margin-top: 30px;
}

.workflow-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 18px 22px;
}

.workflow-steps span {
  flex: 0 0 auto;
  min-width: 48px;
  margin: 0;
}

.workflow-steps strong {
  font-weight: 700;
}

.not-chatgpt-section {
  background: rgba(242, 244, 240, 0.55);
}

.not-chatgpt-section .section-lead {
  max-width: 900px;
  margin-bottom: 34px;
}

.positioning-grid,
.managed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.positioning-grid article,
.managed-grid article {
  padding: 30px;
}

.positioning-grid article span,
.capacity-stack span {
  min-width: 0;
  padding: 0 14px;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.positioning-grid .is-featured {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(31, 139, 143, 0.24);
  box-shadow: 0 18px 50px rgba(31, 139, 143, 0.08);
}

.managed-layer-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(245, 241, 234, 0.38));
}

.managed-layer-section .section-lead {
  max-width: 860px;
  margin-bottom: 36px;
}

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

.capacity-section {
  background: rgba(17, 20, 15, 0.96);
  color: #f2f4f1;
}

.capacity-section h2,
.capacity-section h3 {
  color: #f2f4f1;
}

.capacity-section .kicker {
  color: var(--gold);
}

.capacity-section .section-lead p {
  color: rgba(242, 244, 241, 0.74);
}

.capacity-stack {
  display: grid;
  gap: 16px;
}

.capacity-stack article {
  padding: 26px;
  background: rgba(242, 244, 241, 0.06);
  border-color: rgba(242, 244, 241, 0.1);
  box-shadow: none;
}

.capacity-stack article:last-child {
  background: rgba(232, 200, 139, 0.12);
  border-color: rgba(232, 200, 139, 0.26);
}

.capacity-stack span {
  color: #f2f4f1;
  background: rgba(242, 244, 241, 0.1);
  border: 1px solid rgba(242, 244, 241, 0.18);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.capacity-stack article:last-child span {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(210, 177, 118, 0.2);
}

.capacity-stack strong {
  display: block;
  color: rgba(242, 244, 241, 0.86);
  font-size: clamp(1.1rem, 1.35vw, 1.34rem);
  line-height: 1.35;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-card,
.industry-card,
.results-panel,
.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(28px);
  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 34px;
  transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 300ms ease;
}

.service-card:hover,
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.icon-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 58px;
  background: linear-gradient(135deg, #8a9b56, #6f7f42);
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.38), 0 12px 24px rgba(45, 58, 41, 0.14);
}

.icon-badge::before,
.icon-badge::after {
  position: absolute;
  content: "";
}

.network-icon::before,
.workflow-icon::before {
  width: 26px;
  height: 26px;
  border: 2px solid #f2f4f1;
  border-radius: 50%;
  box-shadow: 18px 0 0 -9px #f2f4f1, -18px 0 0 -9px #f2f4f1, 0 18px 0 -9px #f2f4f1, 0 -18px 0 -9px #f2f4f1;
}

.headset-icon::before {
  width: 24px;
  height: 18px;
  border: 2px solid #f2f4f1;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.headset-icon::after {
  width: 20px;
  height: 12px;
  border-left: 4px solid #f2f4f1;
  border-right: 4px solid #f2f4f1;
  bottom: 16px;
}

.cog-icon::before {
  width: 26px;
  height: 26px;
  border: 8px double #f2f4f1;
  border-radius: 50%;
}

.briefcase-icon::before {
  width: 26px;
  height: 20px;
  border: 2px solid #f2f4f1;
  border-radius: 6px;
}

.finance-icon::before {
  width: 26px;
  height: 30px;
  border: 2px solid #f2f4f1;
  border-radius: 5px;
}

.finance-icon::after {
  width: 14px;
  height: 2px;
  background: #f2f4f1;
  box-shadow: 0 8px 0 #f2f4f1;
}

.home-icon::before {
  width: 25px;
  height: 20px;
  border: 2px solid #f2f4f1;
  transform: rotate(45deg);
  border-radius: 5px;
}

.health-icon::before {
  width: 24px;
  height: 24px;
  background:
    linear-gradient(#f2f4f1, #f2f4f1) center / 8px 24px no-repeat,
    linear-gradient(#f2f4f1, #f2f4f1) center / 24px 8px no-repeat;
}

.cart-icon::before {
  width: 27px;
  height: 18px;
  border: 2px solid #f2f4f1;
  border-top: 0;
  border-radius: 4px;
}

.service-card h3,
.industry-card h3 {
  margin-top: auto;
}

.service-card p,
.industry-card p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.service-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 28px;
  color: var(--forest);
  font-weight: 600;
}

.service-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 20, 15, 0.06);
  font-size: 0.88rem;
}

.service-metric span {
  color: var(--ink-soft);
}

.service-metric strong {
  color: var(--teal);
  font-weight: 700;
  text-align: right;
}

.service-card .service-card-link {
  margin-top: 16px;
}

.agent-catalog-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 241, 234, 0));
}

.agent-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.agent-service,
.feature-row article,
.values-grid article,
.ways-grid article,
.comparison-table article,
.impact-metrics article,
.stats-strip,
.faq-list details,
.contact-form,
.founder-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(28px);
}

.agent-service {
  min-height: 310px;
  padding: 32px;
}

.agent-service .icon-badge {
  width: 50px;
  height: 50px;
  margin-bottom: 46px;
}

.agent-service p {
  margin-top: 16px;
  color: var(--ink-soft);
}

.agent-service div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 20, 15, 0.1);
}

.agent-service div span {
  color: var(--muted);
  font-size: 0.82rem;
}

.agent-service div strong {
  color: var(--forest);
  font-weight: 700;
}

.agent-service-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.feature-row article,
.values-grid article,
.ways-grid article,
.impact-metrics article {
  padding: 28px;
}

.feature-row p,
.values-grid p,
.ways-grid p,
.comparison-table li,
.impact-metrics span,
.faq-list p {
  color: var(--ink-soft);
}

.feature-row p,
.values-grid p,
.ways-grid p {
  margin-top: 12px;
}

.process-section {
  background: rgba(242, 244, 240, 0.55);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.7fr);
  gap: clamp(42px, 5vw, 90px);
  align-items: start;
}

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

.simple-steps,
.five-step-line {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.five-step-line {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.simple-steps li,
.five-step-line li {
  padding: 28px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px);
}

.simple-steps span,
.five-step-line span {
  display: block;
  margin-bottom: 42px;
  color: rgba(28, 35, 26, 0.34);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.simple-steps p,
.five-step-line p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.process-list li {
  position: relative;
  min-width: 0;
}

.process-list li + li::before {
  position: absolute;
  top: 18px;
  left: -34px;
  color: var(--gold-deep);
  content: "->";
  font-size: 1.5rem;
}

.step-number {
  display: block;
  margin-bottom: 26px;
  color: rgba(28, 35, 26, 0.34);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 3.2vw, 3.3rem);
  line-height: 1;
}

.process-list p {
  min-height: 94px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.process-list img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.industries-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.industry-card {
  min-height: 300px;
  padding: 30px;
}

.industry-card::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  content: "";
  background: linear-gradient(180deg, rgba(242, 244, 240, 0), rgba(210, 177, 118, 0.18));
}

.industry-card .icon-badge {
  width: 48px;
  height: 48px;
  margin-bottom: 52px;
}

.results-section {
  position: relative;
  overflow: hidden;
}

.results-section::before {
  position: absolute;
  inset: 44% 0 auto;
  height: 56%;
  pointer-events: none;
  content: "";
  background: url("assets/landscape-morning-hills-optimized.jpg") center bottom / cover no-repeat;
  opacity: 0.24;
  mask-image: linear-gradient(180deg, transparent, #000 28%, #000);
}

.results-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(460px, 1.55fr) minmax(320px, 0.72fr);
  gap: 34px;
}

.results-panel {
  padding: 32px;
}

.compact-results {
  align-self: stretch;
}

.compact-results .metric-row {
  height: 100%;
  align-items: center;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.metric-row strong {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 2.9vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.line-chart {
  min-height: 280px;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 20, 15, 0.09);
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.line-chart .area {
  fill: url("#chartFill");
}

.line-chart .line {
  fill: none;
  stroke: #7d8c78;
  stroke-width: 5;
  stroke-linecap: round;
}

.testimonial-card {
  align-self: stretch;
  padding: 42px;
}

.quote-mark {
  display: block;
  color: rgba(210, 177, 118, 0.78);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
}

.testimonial-card p {
  margin-top: 20px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1.32;
}

.person-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.person-row span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.trust-anchors {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px);
}

.trust-anchors span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 16px;
  color: var(--ink-soft);
  border-right: 1px solid rgba(17, 20, 15, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.trust-anchors span:last-child {
  border-right: 0;
}

.cta-landscape {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.cta-landscape img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-landscape::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at center, rgba(251, 247, 239, 0.3), rgba(251, 247, 239, 0.82) 58%, rgba(251, 247, 239, 0.34));
}

.cta-content {
  max-width: 760px;
  padding: 64px 24px;
}

.cta-content p {
  max-width: 560px;
  margin: 18px auto 30px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.site-footer {
  color: #f2f4f1;
  background:
    radial-gradient(circle at right 20%, rgba(210, 177, 118, 0.08), transparent 25%),
    linear-gradient(180deg, #0a0d09 0%, #121811 100%);
}

.story-grid,
.comparison-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.story-copy p:not(.kicker) {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.founder-card {
  padding: 34px;
}

.founder-photo {
  width: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  color: #f2f4f1;
  background:
    radial-gradient(circle at 30% 20%, rgba(210, 177, 118, 0.34), transparent 32%),
    linear-gradient(135deg, #7d8c78, #2d3a29);
  border-radius: var(--radius-md);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
}

.founder-card blockquote {
  margin: 28px 0 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.32;
}

.signature {
  margin-top: 22px;
  color: var(--gold-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
}

.founder-card strong,
.founder-card span {
  display: block;
}

.founder-card strong {
  margin-top: 18px;
}

.founder-card span {
  color: var(--ink-soft);
}

.values-grid,
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.comparison-table article {
  padding: 32px;
}

.comparison-table ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 18px;
}

.impact-metrics {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.impact-metrics strong,
.stats-strip span {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.contact-hero {
  min-height: auto;
}

.contact-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.04fr);
  gap: clamp(38px, 5vw, 92px);
  align-items: center;
}

.contact-side {
  display: grid;
  gap: 18px;
  min-width: 0;
}

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

.contact-form {
  padding: 32px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 20, 15, 0.12);
  border-radius: var(--radius-sm);
  outline: 0;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input[aria-invalid="true"],
.form-grid select[aria-invalid="true"],
.form-grid textarea[aria-invalid="true"],
.newsletter input[aria-invalid="true"] {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(210, 177, 118, 0.24);
}

.full-field {
  grid-column: 1 / -1;
}

.contact-form .pill {
  margin-top: 22px;
}

.privacy-note,
.form-status {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.form-status {
  min-height: 22px;
  color: var(--forest);
  font-weight: 700;
}

.ways-grid article a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--forest);
  font-weight: 700;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
}

.stats-strip p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.home-faq-section {
  background: var(--canvas-bottom);
  border-top: 1px solid var(--line);
}

.home-faq-shell {
  max-width: 900px;
}

.home-faq-shell .funnel-heading {
  margin-bottom: 48px;
}

.faq-list details {
  padding: 24px 28px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-toggle {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] .faq-toggle {
  transform: rotate(225deg);
}

.faq-list p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(130px, 0.65fr)) minmax(260px, 1.15fr);
  gap: clamp(28px, 4vw, 72px);
  width: var(--content);
  margin: 0 auto;
  padding: 62px 0 50px;
}

.footer-brand p {
  max-width: 290px;
  margin-top: 32px;
  color: #b0b8ae;
  font-size: 0.95rem;
}

.social-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #f2f4f1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col h2,
.newsletter h2 {
  margin: 0 0 14px;
  color: #f2f4f1;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-col a {
  color: #b0b8ae;
  font-size: 0.9rem;
}

.newsletter {
  padding-left: clamp(0px, 3vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  width: 100%;
  max-width: 330px;
  min-height: 54px;
  padding: 6px;
  background: rgba(17, 22, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  backdrop-filter: blur(24px);
}

.newsletter input {
  min-width: 0;
  padding: 0 14px;
  color: #f2f4f1;
  background: transparent;
  border: 0;
  outline: 0;
}

.newsletter input::placeholder {
  color: #757d73;
}

.newsletter button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--dark);
  background: #f2f4f1;
  border-radius: 50%;
  cursor: pointer;
}

.newsletter p {
  min-height: 22px;
  margin-top: 12px;
  color: #e8c88b;
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  width: var(--content);
  margin: 0 auto;
  padding: 20px 0 28px;
  color: #757d73;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.footer-bottom span {
  margin-right: auto;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
}

@media (max-width: 1320px) {
  :root {
    --shell: min(calc(100% - 56px), 1180px);
    --content: min(calc(100% - 56px), 1180px);
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .page-hero-shell,
  .contact-hero-shell {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .hero-widgets {
    max-width: 840px;
  }

  .services-grid,
  .industries-grid,
  .agent-catalog,
  .feature-row,
  .values-grid,
  .ways-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-lead {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-widgets,
  .simple-steps,
  .five-step-line,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-grid .section-lead,
  .trust-anchors {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(calc(100% - 36px), 780px);
    --content: min(calc(100% - 36px), 780px);
  }

  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    padding-inline: 18px;
    padding-top: 16px;
  }

  .site-header.is-scrolled {
    top: 0;
    padding: 16px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero-shell {
    padding-top: 210px;
  }

  .trusted-strip,
  .process-grid,
  .results-grid,
  .footer-shell,
  .story-grid,
  .comparison-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .employee-roster-robot-bg {
    display: none;
  }

  .page-hero-shell,
  .contact-hero-shell {
    padding-top: 210px;
  }

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

  .process-list li + li::before {
    display: none;
  }

  .services-grid,
  .industries-grid,
  .agent-catalog,
  .feature-row,
  .values-grid,
  .ways-grid,
  .comparison-table,
  .impact-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-metrics {
    grid-column: 1;
  }

  .results-panel,
  .testimonial-card {
    grid-column: 1 / -1;
  }

  .trust-anchors {
    grid-template-columns: 1fr;
  }

  .trust-anchors span {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 20, 15, 0.08);
  }

  .trust-anchors span:last-child {
    border-bottom: 0;
  }

  .newsletter {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(calc(100% - 28px), 520px);
    --content: min(calc(100% - 28px), 520px);
  }

  .brand {
    font-size: 0.9rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 0.82rem;
  }

  .site-nav a {
    min-height: 36px;
    padding: 0 10px;
  }

  .site-header {
    left: 18px;
    right: 18px;
    width: auto;
    padding-inline: 0;
  }

  .header-actions {
    width: auto;
    min-width: 0;
  }

  .header-actions .text-link {
    display: none;
  }

  .header-actions .pill {
    min-height: 46px;
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero .hero-bg {
    object-position: 74% center;
  }

  .hero-shell {
    min-height: 0;
    padding-top: 188px;
    padding-bottom: 44px;
  }

  .hero-shell,
  .page-hero-shell,
  .contact-hero-shell,
  .section-shell,
  .footer-shell,
  .footer-bottom {
    width: calc(100% - 36px);
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero,
  .page-hero-shell,
  .contact-hero-shell {
    min-height: 0;
  }

  .page-hero-shell,
  .contact-hero-shell {
    padding-top: 188px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(2.42rem, 11.8vw, 3rem);
    line-height: 0.98;
  }

  .hero-copy h1 {
    font-size: clamp(1.82rem, 8.5vw, 2.82rem);
  }

  .hero-actions,
  .hero-widgets,
  .services-grid,
  .industries-grid,
  .process-list,
  .metric-row,
  .agent-catalog,
  .feature-row,
  .values-grid,
  .ways-grid,
  .simple-steps,
  .five-step-line,
  .comparison-table,
  .impact-metrics,
  .contact-widgets,
  .stats-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-widget.offset-widget {
    margin-left: 0;
  }

  .hero-actions {
    display: grid;
  }

  .page-hero-copy,
  .hero-copy,
  .contact-side {
    width: auto;
    max-width: 100%;
  }

  .hero-copy {
    width: min(100%, calc(100vw - 36px));
    min-height: auto;
    max-width: calc(100vw - 36px);
    padding: 22px;
    transform: none;
  }

  .hero-copy .hero-actions {
    width: 100%;
  }

  .hero-copy::before {
    border-radius: 24px;
  }

  .hero-text {
    width: auto;
    max-width: 100%;
  }

  .pill {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
    white-space: normal;
  }

  .hero-widgets {
    gap: 14px;
  }

  .glass-panel,
  .service-card,
  .industry-card,
  .results-panel,
  .testimonial-card {
    border-radius: 24px;
  }

  .glass-panel {
    max-width: 100%;
    padding: 22px;
  }

  .panel-head {
    align-items: flex-start;
    gap: 10px;
  }

  .panel-head > * {
    min-width: 0;
  }

  .panel-head a,
  .panel-head button {
    max-width: 52%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .live-sla-grid {
    grid-template-columns: 1fr;
  }

  .live-sla-item {
    text-align: left;
  }

  .trusted-strip {
    gap: 12px;
  }

  .section {
    padding: 54px 0;
  }

  .service-card,
  .industry-card {
    min-height: auto;
    padding: 28px;
  }

  .icon-badge {
    margin-bottom: 38px;
  }

  .process-list p {
    min-height: auto;
  }

  .cta-landscape {
    min-height: 380px;
  }

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

/* ==========================================================================
   B2B Psychological Funnel Enhancements
   ========================================================================== */

/* 1. Cost of Inaction / Legacy vs Modern Comparison */
.comparison-funnel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.comparison-card {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
}

.comparison-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 44%);
}

.comparison-card.legacy {
  border-color: rgba(17, 20, 15, 0.08);
  background: rgba(240, 238, 234, 0.42);
}

.comparison-card.modern {
  border-color: rgba(31, 139, 143, 0.24);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(31, 139, 143, 0.05);
}

.comparison-card.modern::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(31, 139, 143, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.comparison-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-card.legacy h3 {
  color: var(--ink-soft);
}

.comparison-card.modern h3 {
  color: var(--teal);
}

.comparison-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
}

.comparison-list li .bullet-icon {
  flex-shrink: 0;
  width: 28px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: bold;
  margin-top: 2px;
  letter-spacing: 0;
}

.comparison-card.legacy .bullet-icon {
  background: rgba(17, 20, 15, 0.08);
  color: var(--ink-soft);
}

.comparison-card.modern .bullet-icon {
  background: rgba(31, 139, 143, 0.12);
  color: var(--teal);
}

/* 2. Enterprise-Grade Security & Safety Callout */
.security-safety-section {
  background: var(--footer);
  color: #f2f4f1;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.security-safety-section h2, 
.security-safety-section h3 {
  color: #f2f4f1;
}

.security-safety-section h2 {
  margin-bottom: 20px;
}

.security-kicker {
  color: var(--gold);
}

.security-intro {
  max-width: 64ch;
  margin: 0 0 32px;
  color: rgba(242, 244, 241, 0.82);
  font-size: 1.1rem;
  line-height: 1.65;
}

.pill-gold {
  color: var(--dark);
  background: var(--gold);
  box-shadow: 0 16px 28px rgba(210, 177, 118, 0.22);
}

.pill-gold:hover {
  color: var(--dark);
  background: #e2c58e;
  box-shadow: 0 0 24px rgba(210, 177, 118, 0.34);
}

.security-safety-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.security-details {
  display: grid;
  gap: 24px;
}

.security-card {
  position: relative;
  padding: 28px;
  background: var(--footer-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.security-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.security-card p {
  color: rgba(242, 244, 241, 0.72);
  font-size: 0.98rem;
  margin-top: 0;
}

.security-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: var(--gold);
  background: rgba(232, 200, 139, 0.12);
  border: 1px solid rgba(232, 200, 139, 0.24);
  border-radius: 50%;
}

.security-icon::before,
.security-icon::after,
.security-mini-icon::before,
.security-mini-icon::after {
  position: absolute;
  content: "";
}

.shield-icon::before {
  width: 15px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(50% 0, 88% 14%, 82% 68%, 50% 100%, 18% 68%, 12% 14%);
}

.lock-icon::before {
  bottom: 7px;
  width: 15px;
  height: 12px;
  background: currentColor;
  border-radius: 4px;
}

.lock-icon::after {
  top: 6px;
  width: 13px;
  height: 12px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.guardrail-icon::before {
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.guardrail-icon::after {
  width: 22px;
  height: 3px;
  background: currentColor;
  border-radius: 9999px;
  transform: rotate(45deg);
}

/* 3. Modern Form Styling (from modern-web-guidance) */
.contact-form textarea,
.contact-form input,
.contact-form select {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 20, 15, 0.14);
  border-radius: var(--radius-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
}

.contact-form textarea {
  field-sizing: content;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235c645a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 139, 143, 0.16);
}

/* Graceful field validation on user interaction */
.contact-form input:user-invalid,
.contact-form select:user-invalid,
.contact-form textarea:user-invalid {
  border-color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.02);
}

.contact-side-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-expectation-sidebar {
  display: grid;
  gap: 24px;
}

.expectation-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(28px);
}

.expectation-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--forest);
  border-bottom: 1px solid rgba(17, 20, 15, 0.08);
  padding-bottom: 12px;
}

.expectation-steps {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expectation-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
}

.expectation-steps .step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(31, 139, 143, 0.12);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.expectation-steps .step-content h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--ink);
}

.expectation-steps .step-content {
  min-width: 0;
}

.expectation-steps .step-content p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.45;
}

.security-trust-card {
  padding: 24px;
  background: var(--footer);
  color: #f2f4f1;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(17, 20, 15, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.security-trust-card h3 {
  color: #f2f4f1;
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-mini-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--gold);
}

.security-mini-icon::before {
  left: 5px;
  bottom: 3px;
  width: 14px;
  height: 11px;
  background: currentColor;
  border-radius: 4px;
}

.security-mini-icon::after {
  left: 6px;
  top: 3px;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.security-trust-card p {
  color: rgba(242, 244, 241, 0.76);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.live-sla-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(28px);
  display: grid;
  gap: 20px;
}

.live-sla-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  margin: 0;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-sla-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.live-sla-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(17, 20, 15, 0.05);
  border-radius: var(--radius-md);
  text-align: center;
}

.live-sla-item span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.live-sla-item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--forest);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.live-sla-item.pulse-item strong {
  color: var(--teal);
}

@media (max-width: 960px) {
  .comparison-funnel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .security-safety-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-side-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 1100px) {
  .capability-grid,
  .managed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .workflow-demo-grid,
  .capacity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .capability-grid,
  .employee-grid,
  .positioning-grid,
  .managed-grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .positioning-grid article,
  .managed-grid article,
  .capacity-stack article {
    padding: 22px;
    border-radius: 24px;
  }

  .capability-card span,
  .positioning-grid article span {
    margin-bottom: 28px;
  }

  .capacity-stack span {
    margin-bottom: 16px;
  }

  .employee-card {
    padding: 10px;
    border-radius: 24px;
  }

  .employee-card > img {
    border-radius: 18px;
  }

  .workflow-steps li {
    align-items: flex-start;
    min-height: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .comparison-card,
  .security-card,
  .expectation-card,
  .security-trust-card,
  .live-sla-card,
  .contact-form,
  .agent-service,
  .faq-list details {
    padding: 22px;
    border-radius: 24px;
  }

  .live-sla-grid {
    grid-template-columns: 1fr;
  }

  .live-sla-item {
    text-align: left;
  }

  .live-sla-item strong {
    font-size: 1.18rem;
    overflow-wrap: anywhere;
  }

  .comparison-card h3,
  .security-card h3 {
    align-items: flex-start;
    font-size: 1.2rem;
  }

  .comparison-list li {
    font-size: 0.98rem;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(1.3rem, 6.3vw, 1.72rem);
    line-height: 1.04;
  }

  .hero-text {
    font-size: 0.98rem;
  }
}

/* ==========================================================================
   Services Showroom Page
   ========================================================================== */

.services-showroom-page {
  background:
    linear-gradient(135deg, rgba(125, 140, 120, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(210, 177, 118, 0.14), transparent 32%),
    linear-gradient(180deg, #fbf7ef 0%, #f5f1ea 42%, #f2f4f0 100%);
}

.services-showroom-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(124px, 12vh, 160px) 0 clamp(46px, 7vw, 82px);
  isolation: isolate;
}

.services-showroom-intro::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(242, 244, 240, 0.22), rgba(245, 241, 234, 0.58));
}

.services-showroom-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.72fr);
  gap: clamp(40px, 7vw, 118px);
  align-items: center;
  width: var(--shell);
  margin: 0 auto;
}

.services-intro-copy {
  max-width: 940px;
}

.services-showroom-intro h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 6vw, 6.75rem);
  line-height: 0.96;
}

.services-intro-text {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(42, 46, 41, 0.82);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  font-weight: 500;
  line-height: 1.62;
}

.intro-roster-panel {
  position: relative;
  min-width: 0;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(237, 240, 231, 0.44)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 52px rgba(45, 58, 41, 0.11);
  backdrop-filter: blur(24px);
  align-self: end;
}

.intro-avatar-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.intro-avatar-strip img {
  width: 100%;
  height: clamp(220px, 24vw, 340px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.intro-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.intro-proof-grid span {
  display: grid;
  gap: 2px;
  min-height: 76px;
  padding: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 20, 15, 0.06);
  border-radius: 20px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.intro-proof-grid strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.featured-selector-section {
  padding-top: clamp(54px, 7vw, 96px);
}

.featured-employee-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: stretch;
  padding: clamp(22px, 3vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 242, 235, 0.52)),
    rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 72px rgba(45, 58, 41, 0.12);
  backdrop-filter: blur(28px);
}

.featured-employee-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(8px, 2vw, 18px);
}

.selector-label {
  width: max-content;
  margin-bottom: 20px;
  padding: 7px 12px;
  color: var(--forest);
  background: rgba(125, 140, 120, 0.16);
  border: 1px solid rgba(45, 58, 41, 0.08);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-employee-copy h2 {
  font-size: clamp(3rem, 5.5vw, 6.2rem);
  line-height: 0.92;
}

.featured-profession {
  margin-top: 12px;
  color: var(--gold-deep);
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  font-weight: 700;
}

.featured-outcome {
  max-width: 780px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.22vw, 1.24rem);
  line-height: 1.62;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 30px;
}

.featured-employee-visual {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 480px;
  overflow: hidden;
  padding: 18px;
  background: rgba(242, 244, 240, 0.78);
  border: 1px solid rgba(17, 20, 15, 0.07);
  border-radius: 30px;
}

.featured-employee-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-status,
.featured-employee-visual p {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
}

.featured-status {
  align-self: start;
  justify-self: end;
  padding: 8px 12px;
  color: #f2f4f1;
  background: rgba(17, 20, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.featured-employee-visual p {
  padding: 9px 13px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.employee-selector-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  padding: 8px 4px 12px;
  scrollbar-width: none;
}

.employee-selector-row button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 20, 15, 0.1);
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.employee-selector-row button:hover,
.employee-selector-row button.is-active {
  color: #f2f4f1;
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
}

.integration-ecosystem-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(31, 139, 143, 0.08), transparent 28%),
    radial-gradient(circle at 76% 20%, rgba(182, 217, 94, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(242, 244, 240, 0.74));
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.integration-copy {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 22px;
  align-self: start;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(239, 242, 235, 0.42)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px);
}

.integration-copy h2 {
  font-size: clamp(2.5rem, 4.4vw, 5.1rem);
  line-height: 0.98;
}

.integration-copy p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.62;
}

.integration-copy .integration-support {
  padding-top: 18px;
  border-top: 1px solid rgba(17, 20, 15, 0.08);
  color: rgba(45, 58, 41, 0.86);
  font-weight: 600;
}

.integration-copy .pill {
  width: max-content;
}

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

.integration-card,
.stack-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(245, 248, 241, 0.52)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.integration-card {
  display: grid;
  min-height: 292px;
  align-content: start;
  padding: 28px;
}

.integration-card::before,
.stack-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 46%);
}

.integration-card:hover,
.stack-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 217, 94, 0.45);
  box-shadow: 0 22px 54px rgba(45, 58, 41, 0.11);
}

.integration-dot {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  margin-bottom: 34px;
  background: #b6d95e;
  border: 1px solid rgba(104, 159, 56, 0.38);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(182, 217, 94, 0.13);
}

.integration-logo-strip {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 328px);
  height: 56px;
  margin: 0 0 30px;
  object-fit: contain;
  object-position: left center;
}

.integration-card h3,
.stack-card h4 {
  position: relative;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  line-height: 1.14;
}

.integration-card h3 {
  font-size: clamp(1.18rem, 1.35vw, 1.42rem);
}

.integration-card p,
.stack-card p {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
}

.integration-card p {
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.integration-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.integration-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: var(--forest);
  background: rgba(242, 244, 240, 0.82);
  border: 1px solid rgba(17, 20, 15, 0.08);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.common-stacks {
  margin-top: clamp(48px, 7vw, 92px);
}

.common-stacks .wide-heading {
  margin-bottom: 24px;
}

.common-stacks h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.stack-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stack-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
}

.stack-card h4 {
  font-size: 1.1rem;
}

.stack-card p {
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.52;
}

.stack-card .stack-tools {
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

.showroom-workflow-section {
  background: rgba(242, 244, 240, 0.58);
}

.showroom-managed-section {
  background: rgba(255, 255, 255, 0.46);
}

.showroom-managed-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.services-final-cta {
  padding-bottom: clamp(76px, 9vw, 132px);
}

.services-final-cta-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  min-height: clamp(360px, 34vw, 500px);
  padding: clamp(28px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.92) 0%, rgba(251, 247, 239, 0.7) 42%, rgba(251, 247, 239, 0.18) 100%),
    url("assets/optimized/services-final-cta-bg.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 72px rgba(45, 58, 41, 0.16);
}

.services-final-cta-inner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.services-final-cta-inner > * {
  position: relative;
  z-index: 1;
}

.services-final-cta h2 {
  max-width: 860px;
  color: var(--ink);
}

.services-final-cta p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(42, 46, 41, 0.82);
  font-size: clamp(1.02rem, 1.24vw, 1.2rem);
}

.services-final-cta .pill-outline {
  background: rgba(251, 247, 239, 0.72);
  border-color: rgba(17, 20, 15, 0.22);
  color: var(--ink);
}

@media (max-width: 1180px) {
  .services-showroom-shell,
  .featured-employee-panel,
  .integration-layout,
  .services-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .integration-copy {
    position: relative;
    top: auto;
  }

  .intro-roster-panel {
    max-width: 760px;
  }

  .featured-employee-visual {
    min-height: 420px;
  }

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

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

@media (max-width: 760px) {
  .services-showroom-intro {
    padding-top: 188px;
  }

  .services-showroom-shell,
  .featured-selector-section .section-shell,
  .integration-ecosystem-section .section-shell,
  .showroom-workflow-section .section-shell,
  .showroom-managed-section .section-shell,
  .services-final-cta-inner {
    width: calc(100% - 36px);
  }

  .services-final-cta-inner {
    min-height: 480px;
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.94) 0%, rgba(251, 247, 239, 0.78) 50%, rgba(251, 247, 239, 0.28) 100%),
      url("assets/optimized/services-final-cta-bg.webp") 58% center / cover no-repeat;
  }

  .services-showroom-intro h1 {
    font-size: clamp(2.28rem, 11vw, 3.28rem);
  }

  .services-intro-text,
  .featured-outcome {
    font-size: 1rem;
  }

  .intro-avatar-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .intro-avatar-strip img {
    height: 230px;
  }

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

  .featured-employee-panel {
    padding: 14px;
    border-radius: 28px;
  }

  .featured-employee-copy {
    padding: 8px;
  }

  .featured-employee-copy h2 {
    font-size: clamp(2.7rem, 18vw, 4rem);
  }

  .featured-employee-visual {
    min-height: 340px;
    border-radius: 24px;
  }

  .featured-actions,
  .services-final-cta .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .integration-card-grid,
  .stack-card-grid {
    grid-template-columns: 1fr;
  }

  .integration-copy {
    padding: 24px;
  }

  .integration-copy .pill {
    width: 100%;
  }

  .integration-card,
  .stack-card {
    min-height: 0;
    padding: 22px;
    border-radius: 24px;
  }

  .integration-logo-strip {
    width: min(100%, 300px);
    height: 52px;
    margin-bottom: 26px;
  }

  .showroom-managed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .services-showroom-intro h1 {
    font-size: clamp(2rem, 10.6vw, 2.62rem);
  }

}

/* ==========================================================================
   About Trust Page
   ========================================================================== */

.about-trust-page {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(242, 244, 240, 0.28) 46%, rgba(229, 212, 182, 0.16)),
    linear-gradient(180deg, #fbf7ef 0%, #f5f1ea 52%, #f2eee6 100%);
}

.about-trust-hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.about-trust-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(118deg, rgba(242, 244, 240, 0.86) 0%, rgba(255, 255, 255, 0.28) 42%, rgba(210, 177, 118, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
}

.about-trust-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.86fr);
  align-items: center;
  gap: clamp(44px, 6vw, 108px);
  width: var(--content);
  margin: 0 auto;
  min-height: 100svh;
  box-sizing: border-box;
  padding-top: clamp(120px, 8vh, 160px);
  padding-bottom: 0;
}

.about-hero-copy {
  max-width: 900px;
  transform: translateY(calc(-0.5 * clamp(120px, 8vh, 160px)));
}

.about-hero-copy h1 {
  max-width: 940px;
  font-size: clamp(3.05rem, 6.1vw, 6.35rem);
  line-height: 0.95;
}

.about-hero-copy p:not(.kicker) {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(42, 46, 41, 0.82);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 500;
  line-height: 1.6;
}

.about-trust-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-trust-card {
  position: relative;
  min-height: 218px;
  padding: 27px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(241, 242, 238, 0.52)),
    rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(45, 58, 41, 0.08);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.about-trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 140, 120, 0.34);
  box-shadow: 0 26px 62px rgba(45, 58, 41, 0.12);
}

.about-trust-card > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  background: rgba(229, 212, 182, 0.42);
  border: 1px solid rgba(45, 58, 41, 0.1);
  border-radius: 9999px;
}

.about-trust-card > span::after {
  width: 8px;
  height: 8px;
  content: "";
  background: #81a84c;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(129, 168, 76, 0.12);
}

.about-trust-card h2,
.about-trust-card h3,
.about-problem-grid h3,
.about-difference-grid h3,
.operator-panel h3,
.standard-grid h3,
.do-not-grid h3,
.about-work-steps h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  letter-spacing: 0;
}

.about-trust-card h2 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.about-trust-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.operator-visual,
.contact-hero-visual,
.audit-map-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 76px rgba(45, 58, 41, 0.14);
  isolation: isolate;
}

.operator-visual img,
.contact-hero-visual img,
.audit-map-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-visual {
  position: relative;
  margin: 0;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  z-index: 2;
  overflow: visible;
}

.about-hero-visual img {
  display: block;
  width: 100%;
  max-height: calc(100svh - clamp(120px, 8vh, 160px));
  object-fit: contain;
  object-position: bottom center;
}

.operator-visual::after,
.contact-hero-visual::after,
.audit-map-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 56%, rgba(17, 20, 15, 0.34) 100%),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.26), transparent 32%);
}

.operator-visual figcaption,
.contact-hero-visual figcaption,
.audit-map-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
}

.operator-visual img,
.contact-hero-visual img,
.audit-map-visual img {
  max-width: min(88%, 620px);
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(17, 20, 15, 0.22));
}

.contact-hero-visual figcaption span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  color: #f7f4ed;
  background: rgba(17, 20, 15, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-belief-section {
  padding-top: clamp(64px, 7vw, 112px);
}

.belief-panel {
  padding: clamp(34px, 5vw, 68px);
  color: #f7f4ed;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(210, 177, 118, 0.14) 42%, rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, #151c12 0%, #25321f 56%, #34422d 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 34px 86px rgba(17, 20, 15, 0.2);
}

.belief-panel .kicker,
.belief-panel h2 {
  color: #f7f4ed;
}

.belief-panel h2 {
  max-width: 1040px;
  font-size: clamp(2.55rem, 5.2vw, 5.15rem);
}

.belief-copy {
  display: grid;
  grid-template-columns: 0.72fr 1.18fr 0.54fr;
  gap: clamp(22px, 4vw, 64px);
  margin-top: 34px;
  color: rgba(247, 244, 237, 0.78);
}

.belief-copy p {
  font-size: clamp(1.02rem, 1.22vw, 1.18rem);
  line-height: 1.62;
}

.about-split,
.operator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.why-exist-section .section-lead {
  max-width: 760px;
}

.why-exist-section .section-lead h2 {
  max-width: 820px;
}

.why-exist-section .section-lead p {
  max-width: 68ch;
}

.implementation-gap-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(242, 244, 240, 0.66)),
    linear-gradient(118deg, rgba(125, 140, 120, 0.1), rgba(210, 177, 118, 0.08));
}

.implementation-gap-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.48;
  background:
    linear-gradient(90deg, rgba(45, 58, 41, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(45, 58, 41, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 72% 42%, #000 0, transparent 62%);
}

.implementation-gap-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.implementation-gap-copy {
  max-width: 760px;
}

.implementation-gap-copy h2 {
  max-width: 780px;
}

.implementation-gap-copy h2 span {
  display: block;
}

.implementation-gap-copy p:not(.kicker) {
  max-width: 65ch;
}

.implementation-gap-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 40px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(242, 244, 240, 0.58)),
    rgba(249, 248, 246, 0.76);
  border: 1px solid rgba(45, 58, 41, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 72px rgba(45, 58, 41, 0.1);
}

.implementation-gap-panel::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background: radial-gradient(circle, rgba(129, 168, 76, 0.32), transparent 66%);
}

.implementation-panel-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(45, 58, 41, 0.1);
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.implementation-panel-label span {
  width: 8px;
  height: 8px;
  background: #99bd40;
  border-radius: 9999px;
  box-shadow: 0 0 0 7px rgba(153, 189, 64, 0.14);
}

.implementation-gap-panel h3 {
  position: relative;
  max-width: 620px;
  margin-top: 24px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.25vw, 3.3rem);
  line-height: 1.02;
}

.implementation-gap-rows {
  position: relative;
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(45, 58, 41, 0.12);
}

.implementation-gap-rows article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(45, 58, 41, 0.12);
}

.implementation-gap-rows article > span {
  display: inline-flex;
  width: 40px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  background: rgba(210, 177, 118, 0.16);
  border: 1px solid rgba(179, 143, 77, 0.18);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 850;
}

.implementation-gap-rows h4 {
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.implementation-gap-rows p {
  max-width: 58ch;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.56;
}

.implementation-solution {
  position: relative;
  margin-top: 24px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(242, 244, 240, 0.92), rgba(231, 238, 213, 0.72)),
    rgba(153, 189, 64, 0.1);
  border: 1px solid rgba(129, 168, 76, 0.22);
  border-radius: 24px;
}

.implementation-solution span {
  display: block;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.implementation-solution p {
  max-width: 64ch;
  margin-top: 9px;
  color: var(--forest);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.implementation-note {
  max-width: 62ch;
  margin-top: 16px;
  color: rgba(42, 46, 41, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
}

.about-problem-grid {
  display: grid;
  gap: 16px;
}

.about-problem-grid article,
.about-difference-grid article,
.standard-grid article,
.do-not-grid article {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(45, 58, 41, 0.06);
}

.about-problem-grid article:nth-child(2) {
  margin-left: clamp(0px, 4vw, 54px);
}

.about-problem-grid article:nth-child(3) {
  margin-left: clamp(0px, 8vw, 108px);
}

.about-problem-grid h3,
.about-difference-grid h3,
.standard-grid h3,
.do-not-grid h3,
.about-work-steps h3 {
  font-size: 1.08rem;
}

.about-problem-grid p,
.about-difference-grid p,
.standard-grid p,
.do-not-grid p,
.about-work-steps p {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.58;
}

.about-proof-list {
  display: grid;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(45, 58, 41, 0.12);
  border-radius: 30px;
  box-shadow: 0 18px 52px rgba(45, 58, 41, 0.07);
}

.about-proof-list article {
  padding: clamp(24px, 3vw, 34px);
}

.about-proof-list article + article {
  border-top: 1px solid rgba(45, 58, 41, 0.12);
}

.about-proof-list h3,
.about-difference-ledger h3,
.operator-visual strong {
  font-family: "DM Sans", system-ui, sans-serif;
  letter-spacing: 0;
}

.about-proof-list h3 {
  color: var(--ink);
  font-size: 1.1rem;
}

.about-proof-list p,
.about-difference-ledger p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.different-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(242, 244, 240, 0.62));
}

.about-difference-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr 1.12fr;
  gap: 18px;
  align-items: stretch;
}

.about-difference-grid article {
  min-height: 306px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-difference-grid article:nth-child(1),
.about-difference-grid article:nth-child(4) {
  background:
    linear-gradient(150deg, rgba(242, 244, 240, 0.78), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.6);
}

.about-difference-grid span,
.standard-grid span,
.about-work-steps span {
  display: inline-flex;
  width: max-content;
  margin-bottom: auto;
  color: rgba(45, 58, 41, 0.46);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.about-difference-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(45, 58, 41, 0.16);
  border-bottom: 1px solid rgba(45, 58, 41, 0.16);
}

.about-difference-ledger article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-difference-ledger article + article {
  border-left: 1px solid rgba(45, 58, 41, 0.12);
}

.about-difference-ledger span {
  color: rgba(179, 143, 77, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
}

.about-difference-ledger h3 {
  color: var(--ink);
  font-size: clamp(1.16rem, 1.5vw, 1.42rem);
  line-height: 1.1;
}

.operator-section {
  background: rgba(255, 255, 255, 0.38);
}

.operator-copy {
  max-width: 760px;
}

.operator-copy p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.16vw, 1.13rem);
  line-height: 1.65;
}

.operator-copy .founder-line {
  margin-top: 28px;
  padding-top: 24px;
  color: var(--forest);
  border-top: 1px solid rgba(45, 58, 41, 0.14);
  font-weight: 650;
}

.operator-panel {
  position: sticky;
  top: 122px;
  padding: clamp(24px, 3vw, 36px);
  color: #f7f4ed;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(129, 168, 76, 0.12)),
    linear-gradient(145deg, #131a10, #27341f 62%, #3e4e36);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 76px rgba(17, 20, 15, 0.18);
}

.operator-orb {
  min-height: 310px;
  margin-bottom: 30px;
  overflow: hidden;
  background:
    linear-gradient(126deg, rgba(247, 244, 237, 0.18), rgba(210, 177, 118, 0.24) 30%, rgba(125, 140, 120, 0.24) 58%, rgba(20, 28, 16, 0.72)),
    repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(247, 244, 237, 0.16);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.operator-panel h3 {
  max-width: 410px;
  color: #f7f4ed;
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.12;
}

.operator-panel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.operator-panel-list span {
  padding: 8px 12px;
  color: rgba(247, 244, 237, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.operator-visual {
  position: relative;
  top: auto;
  min-height: auto;
  display: block;
  background: none;
}

.operator-visual::after {
  display: none !important;
}

.operator-visual img {
  object-position: center;
  max-width: 100%;
  max-height: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: none;
}

.operator-visual figcaption {
  display: grid;
  gap: 8px;
  max-width: 460px;
  padding: 22px;
  color: #f7f4ed;
  background: rgba(17, 20, 15, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.operator-visual strong {
  font-size: clamp(1.24rem, 1.7vw, 1.7rem);
  line-height: 1.12;
}

.operator-visual span {
  color: rgba(247, 244, 237, 0.78);
  line-height: 1.5;
}

.standard-section {
  background:
    linear-gradient(180deg, rgba(245, 241, 234, 0.2), rgba(255, 255, 255, 0.54)),
    linear-gradient(115deg, rgba(125, 140, 120, 0.08), rgba(210, 177, 118, 0.08));
}

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

.standard-grid article {
  min-height: 238px;
  display: flex;
  flex-direction: column;
}

.standard-grid span {
  margin-bottom: 34px;
}

.do-not-section {
  background:
    linear-gradient(180deg, rgba(45, 58, 41, 0.08), rgba(45, 58, 41, 0.02)),
    rgba(242, 244, 240, 0.66);
}

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

.do-not-grid article {
  min-height: 230px;
  background: rgba(249, 248, 246, 0.72);
  border-color: rgba(45, 58, 41, 0.1);
  box-shadow: none;
}

.do-not-grid article::before {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 42px;
  content: "";
  background:
    linear-gradient(45deg, transparent 45%, rgba(45, 58, 41, 0.74) 45% 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(45, 58, 41, 0.74) 45% 55%, transparent 55%),
    rgba(210, 177, 118, 0.18);
  border: 1px solid rgba(45, 58, 41, 0.14);
  border-radius: 9999px;
}

.controlled-ai-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(45, 58, 41, 0.08), rgba(45, 58, 41, 0.02)),
    linear-gradient(122deg, rgba(210, 177, 118, 0.1), rgba(242, 244, 240, 0.82));
}

.controlled-ai-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.48;
  background:
    linear-gradient(90deg, rgba(45, 58, 41, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(45, 58, 41, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 28% 42%, #000 0, transparent 58%);
}

.controlled-ai-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(40px, 6vw, 94px);
  align-items: center;
}

.controlled-ai-copy {
  max-width: 760px;
}

.controlled-ai-copy h2 {
  max-width: 820px;
  font-size: clamp(2.55rem, 5.15vw, 5.1rem);
  line-height: 1;
}

.controlled-ai-copy p:not(.kicker) {
  max-width: 63ch;
  margin-top: 22px;
  color: rgba(42, 46, 41, 0.78);
  font-size: clamp(1.03rem, 1.18vw, 1.14rem);
  line-height: 1.64;
}

.controlled-ai-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  color: #f7f4ed;
  background:
    radial-gradient(circle at 86% 10%, rgba(210, 177, 118, 0.18), transparent 30%),
    linear-gradient(145deg, #11180f 0%, #26331f 62%, #3b4932 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 82px rgba(17, 20, 15, 0.2);
}

.controlled-panel-head {
  display: grid;
  gap: 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.controlled-panel-head span {
  color: #e8c88b;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.controlled-panel-head strong {
  max-width: 620px;
  color: #f7f4ed;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 2.7vw, 2.7rem);
  font-weight: 600;
  line-height: 1.06;
}

.controlled-ai-rows {
  display: grid;
  margin-top: 4px;
}

.controlled-ai-rows article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.controlled-ai-rows article > span {
  display: inline-flex;
  width: 40px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #e8c88b;
  background: rgba(232, 200, 139, 0.12);
  border: 1px solid rgba(232, 200, 139, 0.18);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 850;
}

.controlled-ai-rows h3 {
  color: #f7f4ed;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.controlled-ai-rows p {
  max-width: 62ch;
  margin-top: 8px;
  color: rgba(247, 244, 237, 0.72);
  font-size: 0.96rem;
  line-height: 1.58;
}

.controlled-ai-standard {
  margin-top: 26px;
  padding: 22px;
  color: var(--forest);
  background:
    linear-gradient(145deg, rgba(242, 244, 240, 0.94), rgba(231, 238, 213, 0.78)),
    rgba(153, 189, 64, 0.12);
  border: 1px solid rgba(129, 168, 76, 0.22);
  border-radius: 24px;
}

.controlled-ai-standard span {
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.controlled-ai-standard p {
  max-width: 66ch;
  margin-top: 9px;
  color: var(--forest);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.about-work-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  border-top: 1px solid rgba(45, 58, 41, 0.16);
}

.about-work-steps li {
  min-height: 278px;
  padding: 28px 28px 0 0;
  border-right: 1px solid rgba(45, 58, 41, 0.12);
}

.about-work-steps li + li {
  padding-left: 28px;
}

.about-work-steps li:last-child {
  border-right: 0;
}

.about-work-steps span {
  margin-bottom: 74px;
  color: var(--gold-deep);
}

.promise-section {
  padding-top: clamp(64px, 7vw, 112px);
}

.promise-panel {
  max-width: 1010px;
  padding: clamp(8px, 1vw, 14px) 0 clamp(8px, 1vw, 14px);
  border-top: 1px solid rgba(45, 58, 41, 0.18);
  border-bottom: 1px solid rgba(45, 58, 41, 0.18);
}

.promise-panel h2 {
  max-width: 920px;
}

.promise-panel p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.22vw, 1.18rem);
}

.about-final-cta {
  padding-bottom: clamp(76px, 9vw, 132px);
}

.about-final-cta-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  min-height: clamp(360px, 34vw, 500px);
  padding: clamp(30px, 5vw, 62px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96) 0%, rgba(251, 247, 239, 0.86) 52%, rgba(251, 247, 239, 0.62) 100%),
    url("assets/optimized/about-final-cta-bg.webp") 92% 54% / 420px auto no-repeat,
    linear-gradient(145deg, #fbf7ef, #e8ecdc);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 72px rgba(45, 58, 41, 0.16);
}

.about-final-cta-inner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.about-final-cta-inner > * {
  position: relative;
  z-index: 1;
}

.about-final-cta h2 {
  max-width: 880px;
  color: var(--ink);
}

.about-final-cta p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(42, 46, 41, 0.82);
  font-size: clamp(1.02rem, 1.24vw, 1.2rem);
}

.about-final-cta .pill-outline {
  background: rgba(251, 247, 239, 0.72);
  border-color: rgba(17, 20, 15, 0.22);
  color: var(--ink);
}

@media (max-width: 1180px) {
  .about-trust-shell,
  .about-split,
  .implementation-gap-layout,
  .controlled-ai-layout,
  .operator-grid,
  .about-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .about-trust-hero {
    height: auto;
    min-height: auto;
    padding: 0;
  }

  .about-hero-copy {
    transform: none;
  }

  .about-trust-shell {
    height: auto;
    min-height: auto;
    padding-top: clamp(100px, 10vw, 130px);
    padding-bottom: 0;
    gap: 30px;
  }

  .about-hero-visual {
    height: auto;
    align-self: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
    overflow: visible;
  }

  .about-hero-visual img {
    max-height: 420px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .about-trust-card-grid {
    max-width: 780px;
  }

  .belief-copy {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .about-difference-grid,
  .about-difference-ledger,
  .standard-grid,
  .do-not-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operator-panel,
  .operator-visual {
    position: relative;
    top: auto;
  }

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

  .about-work-steps li:nth-child(2) {
    border-right: 0;
  }

  .about-work-steps li:nth-child(n + 3) {
    border-top: 1px solid rgba(45, 58, 41, 0.12);
  }
}

@media (max-width: 760px) {
  .about-trust-hero {
    padding: 0;
  }

  .about-trust-shell,
  .about-belief-section .section-shell,
  .why-exist-section .section-shell,
  .implementation-gap-layout,
  .different-section .section-shell,
  .operator-section .section-shell,
  .standard-section .section-shell,
  .do-not-section .section-shell,
  .work-section .section-shell,
  .promise-section .section-shell,
  .about-final-cta-inner {
    width: calc(100% - 36px);
  }

  .about-hero-copy h1 {
    font-size: clamp(2.6rem, 12.2vw, 3.82rem);
  }

  .implementation-gap-copy h2 {
    font-size: clamp(2.26rem, 10.8vw, 3.15rem);
    line-height: 1.02;
  }

  .implementation-gap-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .controlled-ai-copy h2 {
    font-size: clamp(2.25rem, 10.8vw, 3.12rem);
    line-height: 1.02;
  }

  .controlled-ai-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .controlled-panel-head strong {
    font-size: clamp(1.7rem, 8.2vw, 2.55rem);
  }

  .controlled-ai-rows article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .controlled-ai-standard {
    padding: 20px;
    border-radius: 22px;
  }

  .implementation-gap-rows article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .implementation-solution {
    padding: 20px;
    border-radius: 22px;
  }

  .about-trust-card-grid,
  .about-difference-grid,
  .about-difference-ledger,
  .standard-grid,
  .do-not-grid,
  .about-work-steps {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    min-height: auto;
    max-width: 400px;
  }

  .about-hero-visual img {
    max-height: 340px;
  }

  .about-difference-ledger article + article {
    border-top: 1px solid rgba(45, 58, 41, 0.12);
    border-left: 0;
  }

  .about-trust-card,
  .about-problem-grid article,
  .about-difference-grid article,
  .standard-grid article,
  .do-not-grid article {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .about-trust-card > span,
  .do-not-grid article::before {
    margin-bottom: 28px;
  }

  .belief-panel,
  .operator-panel,
  .about-final-cta-inner {
    padding: 26px;
    border-radius: 28px;
    min-height: 480px;
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.96) 0%, rgba(251, 247, 239, 0.88) 56%, rgba(251, 247, 239, 0.68) 100%),
      url("assets/optimized/about-final-cta-bg.webp") 50% 96% / 260px auto no-repeat,
      linear-gradient(145deg, #fbf7ef, #e8ecdc);
  }

  .belief-panel h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .about-problem-grid article:nth-child(2),
  .about-problem-grid article:nth-child(3) {
    margin-left: 0;
  }

  .operator-orb {
    min-height: 230px;
  }

  .about-work-steps li,
  .about-work-steps li + li {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid rgba(45, 58, 41, 0.12);
  }

  .about-work-steps li:first-child {
    border-top: 0;
  }

  .about-work-steps span,
  .standard-grid span {
    margin-bottom: 28px;
  }

  .about-final-cta .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .about-hero-copy h1 {
    font-size: clamp(2.26rem, 11.8vw, 3rem);
  }

  .about-hero-copy p:not(.kicker),
  .promise-panel p {
    font-size: 1rem;
  }

  .about-trust-card-grid {
    gap: 12px;
  }
}

/* ==========================================================================
   Contact Audit Page
   ========================================================================== */

.contact-audit-page {
  background:
    linear-gradient(126deg, rgba(251, 247, 239, 0.96) 0%, rgba(242, 244, 240, 0.72) 48%, rgba(229, 212, 182, 0.18) 100%),
    linear-gradient(180deg, #fbf7ef 0%, #f5f1ea 58%, #f2eee6 100%);
}

.contact-audit-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: clamp(150px, 12vw, 190px) 0 clamp(54px, 6vw, 84px);
}

.contact-audit-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 10%, rgba(210, 177, 118, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 48%, rgba(125, 140, 120, 0.1) 100%),
    repeating-linear-gradient(118deg, rgba(45, 58, 41, 0.02) 0 1px, transparent 1px 30px);
}

.contact-audit-shell {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: var(--content);
  margin: 0 auto;
}

.contact-audit-copy {
  display: grid;
  justify-items: center;
  max-width: 1120px;
  text-align: center;
}

.contact-audit-copy h1 {
  max-width: 1060px;
  font-size: clamp(3rem, 6vw, 6.15rem);
  line-height: 0.96;
}

.contact-audit-copy p:not(.kicker) {
  max-width: 820px;
  margin-top: 24px;
  color: rgba(42, 46, 41, 0.84);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 500;
  line-height: 1.6;
}

.contact-form-arrow {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  color: var(--forest);
  animation: contact-arrow-float 1.9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.contact-form-arrow::before {
  position: absolute;
  content: "";
  pointer-events: none;
}

.contact-form-arrow::before {
  top: 9px;
  width: 2px;
  height: 35px;
  background: linear-gradient(180deg, rgba(45, 58, 41, 0.18), rgba(45, 58, 41, 0.78));
  border-radius: 9999px;
}

.contact-form-arrow span {
  width: 18px;
  height: 18px;
  margin-top: 24px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
}

.contact-form-arrow:hover {
  color: #81a84c;
}

@keyframes contact-arrow-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(9px);
  }
}

.audit-preview-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 244, 240, 0.56)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 74px rgba(45, 58, 41, 0.12);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.audit-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 14px;
  color: var(--forest);
  background: rgba(242, 244, 240, 0.78);
  border: 1px solid rgba(45, 58, 41, 0.1);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.audit-status span {
  width: 8px;
  height: 8px;
  background: #81a84c;
  border-radius: 9999px;
  box-shadow: 0 0 0 6px rgba(129, 168, 76, 0.13);
}

.audit-preview-card h2 {
  max-width: 420px;
  margin-top: 36px;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1;
}

.audit-preview-card ol,
.booking-process-card ol,
.contact-path-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.audit-preview-card ol {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.audit-preview-card li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(45, 58, 41, 0.1);
}

.audit-preview-card li > span,
.audit-map-grid span,
.booking-process-card li span,
.contact-path-steps span {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.audit-preview-card strong,
.audit-map-grid h3,
.booking-process-card h3,
.fit-grid h3,
.contact-path-steps h3 {
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  letter-spacing: 0;
}

.audit-preview-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.25;
}

.audit-preview-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.52;
}

.contact-hero-visual {
  min-height: clamp(500px, 52vw, 690px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 38%, rgba(210, 177, 118, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(242, 244, 240, 0.58));
}

.contact-hero-visual img {
  object-position: center;
}

.contact-hero-visual::after {
  background:
    linear-gradient(180deg, transparent 56%, rgba(17, 20, 15, 0.38) 100%),
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.28), transparent 30%);
}

.contact-hero-visual figcaption {
  display: grid;
  gap: 10px;
  max-width: 500px;
}

.contact-hero-visual figcaption strong {
  color: #f7f4ed;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.52rem, 2.2vw, 2.26rem);
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(17, 20, 15, 0.28);
}

.contact-section-heading {
  max-width: 900px;
  margin-bottom: clamp(32px, 4.5vw, 58px);
}

.contact-section-heading p:not(.kicker) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.22vw, 1.18rem);
  line-height: 1.62;
}

.contact-map-section {
  background: rgba(255, 255, 255, 0.36);
}

.audit-map-showcase {
  display: grid;
  grid-template-columns: minmax(420px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.audit-map-visual {
  min-height: clamp(520px, 48vw, 720px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 54% 38%, rgba(129, 168, 76, 0.22), transparent 34%),
    linear-gradient(145deg, #fbf7ef, #e7ebdc 58%, #d5ddbd);
}

.audit-map-visual img {
  object-position: center;
}

.audit-map-visual figcaption {
  max-width: 420px;
  padding: 18px 20px;
  color: #f7f4ed;
  background: rgba(17, 20, 15, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  font-weight: 800;
  line-height: 1.42;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.audit-map-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 0;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(45, 58, 41, 0.12);
  border-radius: 30px;
  overflow: hidden;
}

.audit-map-list article {
  min-height: 180px;
  padding: clamp(22px, 2.5vw, 30px);
}

.audit-map-list article:nth-child(2n) {
  border-left: 1px solid rgba(45, 58, 41, 0.1);
}

.audit-map-list article:nth-child(n + 3) {
  border-top: 1px solid rgba(45, 58, 41, 0.1);
}

.audit-map-list h3 {
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.audit-map-list p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.58;
}

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

.audit-map-grid article,
.fit-grid article {
  position: relative;
  min-height: 258px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(45, 58, 41, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.audit-map-grid article:hover,
.fit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 140, 120, 0.34);
  box-shadow: 0 24px 54px rgba(45, 58, 41, 0.1);
}

.audit-map-grid h3,
.fit-grid h3 {
  margin-top: 74px;
  font-size: 1.12rem;
}

.audit-map-grid p,
.fit-grid p,
.contact-path-steps p {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.58;
}

.contact-booking-section {
  background:
    linear-gradient(180deg, rgba(242, 244, 240, 0.62), rgba(251, 247, 239, 0.82)),
    linear-gradient(112deg, rgba(125, 140, 120, 0.09), rgba(210, 177, 118, 0.08));
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.audit-form-card {
  scroll-margin-top: 128px;
  padding: clamp(24px, 3.5vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(249, 248, 246, 0.64)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(45, 58, 41, 0.1);
}

.audit-form-grid {
  margin-top: 0;
}

.audit-form-card label {
  color: var(--forest);
}

.audit-form-card input,
.audit-form-card select,
.audit-form-card textarea {
  min-height: 54px;
  background: rgba(252, 251, 247, 0.92);
  border-color: rgba(45, 58, 41, 0.12);
  border-radius: 16px;
}

.audit-form-card textarea {
  min-height: 126px;
}

.automation-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 22px;
  background: rgba(242, 244, 240, 0.62);
  border: 1px solid rgba(45, 58, 41, 0.1);
  border-radius: 22px;
}

.automation-options legend {
  grid-column: 1 / -1;
  padding: 0 0 12px;
  color: var(--forest);
  font-weight: 800;
}

.automation-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.automation-options input {
  width: 16px;
  height: 16px;
  min-height: auto;
  accent-color: var(--forest);
}

.booking-process-card {
  position: sticky;
  top: 122px;
  padding: clamp(26px, 3.4vw, 42px);
  color: #f7f4ed;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(210, 177, 118, 0.12)),
    linear-gradient(145deg, #11180f 0%, #26331f 64%, #3d4c34 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 76px rgba(17, 20, 15, 0.18);
}

.booking-process-card h3 {
  color: #f7f4ed;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  line-height: 1.15;
}

.booking-process-card ol {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.booking-process-card li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(1.1rem, 1.25vw, 1.32rem);
  line-height: 1.45;
}

.booking-process-card li span {
  color: #ffd54f;
  font-weight: 800;
  font-size: clamp(1.15rem, 1.35vw, 1.42rem);
}

.booking-process-card p {
  color: rgba(255, 255, 255, 0.92);
}

.booking-process-card .trust-line {
  margin-top: 42px;
  padding: 24px;
  color: #f7f4ed;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  font-weight: 700;
  font-size: clamp(1.08rem, 1.2vw, 1.28rem);
  line-height: 1.55;
}

.fit-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(210, 177, 118, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(242, 244, 240, 0.68));
}

.qualification-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(620px, 1.24fr);
  gap: clamp(34px, 5.4vw, 86px);
  align-items: start;
}

.qualification-copy {
  position: sticky;
  top: 126px;
  max-width: 670px;
}

.qualification-copy h2 {
  max-width: 680px;
  font-size: clamp(2.44rem, 4.8vw, 4.72rem);
  line-height: 1;
}

.qualification-copy p:not(.kicker) {
  max-width: 58ch;
  margin-top: 20px;
  color: rgba(42, 46, 41, 0.78);
  font-size: clamp(1.02rem, 1.16vw, 1.13rem);
  line-height: 1.64;
}

.qualification-copy .pill {
  margin-top: 30px;
}

.qualification-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 16px;
}

.qualification-column {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 70px rgba(45, 58, 41, 0.1);
}

.qualification-column.is-fit {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(242, 244, 240, 0.58)),
    rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.qualification-column.is-not-fit {
  color: #f7f4ed;
  background:
    radial-gradient(circle at 86% 6%, rgba(232, 200, 139, 0.16), transparent 30%),
    linear-gradient(145deg, #12180f 0%, #24301e 68%, #35432d 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.qualification-column-head {
  display: grid;
  gap: 13px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(45, 58, 41, 0.12);
}

.qualification-column.is-not-fit .qualification-column-head {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.qualification-column-head span,
.qualification-decision span {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.qualification-column.is-not-fit .qualification-column-head span {
  color: #e8c88b;
}

.qualification-column-head h3 {
  max-width: 520px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.74rem, 2.35vw, 2.42rem);
  font-weight: 600;
  line-height: 1.06;
}

.qualification-column.is-not-fit h3,
.qualification-column.is-not-fit h4 {
  color: #f7f4ed;
}

.qualification-rows {
  display: grid;
}

.qualification-rows article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(45, 58, 41, 0.1);
}

.qualification-column.is-not-fit .qualification-rows article {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.qualification-rows article:last-child {
  border-bottom: 0;
}

.qualification-rows article > span {
  display: inline-flex;
  width: 36px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  background: rgba(210, 177, 118, 0.15);
  border: 1px solid rgba(210, 177, 118, 0.2);
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 850;
}

.qualification-column.is-not-fit .qualification-rows article > span {
  color: #e8c88b;
  background: rgba(232, 200, 139, 0.12);
  border-color: rgba(232, 200, 139, 0.2);
}

.qualification-rows h4 {
  color: var(--forest);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0;
  line-height: 1.22;
}

.qualification-rows p {
  max-width: 56ch;
  margin-top: 8px;
  color: rgba(42, 46, 41, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

.qualification-column.is-not-fit .qualification-rows p {
  color: rgba(247, 244, 237, 0.72);
}

.qualification-decision {
  grid-column: 1 / -1;
  padding: 24px 28px;
  background:
    linear-gradient(145deg, rgba(231, 238, 213, 0.82), rgba(249, 248, 246, 0.72)),
    rgba(153, 189, 64, 0.12);
  border: 1px solid rgba(129, 168, 76, 0.22);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(45, 58, 41, 0.08);
}

.qualification-decision p {
  max-width: 82ch;
  margin-top: 9px;
  color: var(--forest);
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  font-weight: 750;
  line-height: 1.55;
}

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

.fit-grid article {
  min-height: 236px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(242, 244, 240, 0.52)),
    rgba(255, 255, 255, 0.62);
}

.fit-note {
  max-width: 940px;
  margin-top: 24px;
  padding: 22px 26px;
  color: var(--forest);
  background: rgba(229, 212, 182, 0.18);
  border: 1px solid rgba(45, 58, 41, 0.1);
  border-radius: 24px;
  font-weight: 750;
}

.contact-path-section {
  background:
    linear-gradient(180deg, rgba(245, 241, 234, 0.2), rgba(242, 244, 240, 0.54)),
    linear-gradient(116deg, rgba(210, 177, 118, 0.08), rgba(125, 140, 120, 0.08));
}

.contact-path-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(45, 58, 41, 0.16);
}

.contact-path-steps li {
  min-height: 266px;
  padding: 28px 28px 0 0;
  border-right: 1px solid rgba(45, 58, 41, 0.12);
}

.contact-path-steps li + li {
  padding-left: 28px;
}

.contact-path-steps li:last-child {
  border-right: 0;
}

.contact-path-steps h3 {
  margin-top: 72px;
  font-size: 1.08rem;
}

.contact-faq-section .faq-list details {
  background: rgba(255, 255, 255, 0.68);
}

.contact-final-cta {
  padding-bottom: clamp(76px, 9vw, 132px);
}

.contact-final-cta-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  justify-items: start;
  min-height: clamp(350px, 32vw, 470px);
  padding: clamp(30px, 5vw, 62px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96) 0%, rgba(251, 247, 239, 0.82) 48%, rgba(251, 247, 239, 0.4) 100%),
    url("assets/landscape-morning-hills-optimized.jpg") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 72px rgba(45, 58, 41, 0.16);
}

.contact-final-cta-inner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.contact-final-cta-inner > * {
  position: relative;
  z-index: 1;
}

.contact-final-cta h2 {
  max-width: 860px;
  color: var(--ink);
}

.contact-final-cta p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(42, 46, 41, 0.82);
  font-size: clamp(1.02rem, 1.24vw, 1.2rem);
}

.contact-final-cta .pill {
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .contact-audit-shell,
  .audit-map-showcase,
  .booking-layout,
  .qualification-layout {
    grid-template-columns: 1fr;
  }

  .qualification-copy {
    position: relative;
    top: auto;
  }

  .audit-preview-card,
  .contact-hero-visual,
  .audit-map-visual,
  .booking-process-card {
    max-width: 820px;
  }

  .booking-process-card {
    position: relative;
    top: auto;
  }

  .audit-map-grid,
  .audit-map-list,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-path-steps li:nth-child(2) {
    border-right: 0;
  }

  .contact-path-steps li:nth-child(n + 3) {
    border-top: 1px solid rgba(45, 58, 41, 0.12);
  }
}

@media (max-width: 760px) {
  .contact-audit-hero {
    min-height: 100svh;
    padding-top: 172px;
    padding-bottom: 52px;
  }

  .contact-audit-shell,
  .contact-map-section .section-shell,
  .contact-booking-section .section-shell,
  .fit-section .section-shell,
  .contact-path-section .section-shell,
  .contact-faq-section .section-shell,
  .contact-final-cta-inner {
    width: calc(100% - 36px);
  }

  .contact-audit-copy h1 {
    font-size: clamp(2.42rem, 11vw, 3.42rem);
  }

  .contact-hero-visual,
  .audit-map-visual {
    min-height: 460px;
  }

  .audit-preview-card,
  .audit-form-card,
  .booking-process-card,
  .contact-final-cta-inner {
    padding: 26px;
    border-radius: 28px;
  }

  .contact-final-cta-inner {
    min-height: 460px;
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.96) 0%, rgba(251, 247, 239, 0.88) 56%, rgba(251, 247, 239, 0.6) 100%),
      url("assets/landscape-morning-hills-optimized.jpg") center / cover no-repeat;
  }

  .audit-map-grid,
  .audit-map-list,
  .fit-grid,
  .qualification-panel,
  .audit-form-grid,
  .automation-options,
  .contact-path-steps {
    grid-template-columns: 1fr;
  }

  .audit-map-list article:nth-child(n) {
    border-left: 0;
  }

  .audit-map-list article + article {
    border-top: 1px solid rgba(45, 58, 41, 0.1);
  }

  .audit-map-grid article,
  .fit-grid article {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .qualification-column {
    padding: 24px;
    border-radius: 28px;
  }

  .qualification-copy h2 {
    font-size: clamp(2.22rem, 10.8vw, 3.16rem);
    line-height: 1.02;
  }

  .qualification-rows article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .qualification-decision {
    padding: 22px;
    border-radius: 24px;
  }

  .audit-map-grid h3,
  .fit-grid h3,
  .contact-path-steps h3 {
    margin-top: 28px;
  }

  .automation-options {
    padding: 18px;
  }

  .contact-path-steps li,
  .contact-path-steps li + li {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid rgba(45, 58, 41, 0.12);
  }

  .contact-path-steps li:first-child {
    border-top: 0;
  }
}

@media (max-width: 440px) {
  .contact-audit-copy h1 {
    font-size: clamp(2.16rem, 10.6vw, 2.82rem);
  }

  .contact-audit-copy p:not(.kicker),
  .contact-section-heading p:not(.kicker) {
    font-size: 1rem;
  }

  .audit-preview-card li,
  .booking-process-card li {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UI/UX Pro Max Conversion Polish
   ========================================================================== */

.reveal-item {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index, 0) * 58ms);
  will-change: opacity, filter, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.reveal-motion-disabled .reveal-item {
  opacity: 1;
  filter: none;
  transform: none;
}

.capability-card {
  min-height: 310px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 92% 8%, rgba(129, 168, 76, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(245, 248, 241, 0.5)),
    rgba(255, 255, 255, 0.62);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.capability-card::before,
.capability-card::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.capability-card::before {
  top: 26px;
  right: 24px;
  width: 110px;
  height: 74px;
  opacity: 0.72;
  border-radius: 24px;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease;
}

.capability-card::after {
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.58) 42%, transparent 68%);
  transform: translateX(-110%);
  transition: opacity 220ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:nth-child(1)::before {
  background:
    radial-gradient(circle at 16px 52px, #1f8b8f 0 5px, transparent 6px),
    linear-gradient(90deg, transparent 0 6px, rgba(31, 139, 143, 0.5) 6px 10px, transparent 10px 18px, rgba(31, 139, 143, 0.9) 18px 24px, transparent 24px 34px, rgba(31, 139, 143, 0.38) 34px 38px, transparent 38px 48px, rgba(31, 139, 143, 0.7) 48px 54px, transparent 54px 66px, rgba(31, 139, 143, 0.44) 66px 70px, transparent 70px),
    rgba(242, 244, 240, 0.72);
  background-size: auto, 100% 34px, auto;
  background-position: center, center 22px, center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(31, 139, 143, 0.14);
}

.capability-card:nth-child(2)::before {
  background:
    linear-gradient(90deg, rgba(45, 58, 41, 0.18) 0 54%, transparent 54%),
    linear-gradient(90deg, rgba(45, 58, 41, 0.13) 0 72%, transparent 72%),
    linear-gradient(90deg, rgba(45, 58, 41, 0.1) 0 44%, transparent 44%),
    rgba(251, 247, 239, 0.74);
  background-size: 76px 7px, 86px 7px, 64px 7px, auto;
  background-position: 18px 22px, 18px 38px, 18px 54px, center;
  background-repeat: no-repeat;
  box-shadow: -12px 10px 0 rgba(229, 212, 182, 0.38), inset 0 0 0 1px rgba(45, 58, 41, 0.1);
}

.capability-card:nth-child(3)::before {
  background:
    linear-gradient(145deg, transparent 0 48%, rgba(31, 139, 143, 0.3) 49% 52%, transparent 53%),
    linear-gradient(90deg, rgba(45, 58, 41, 0.18) 18px, transparent 18px),
    rgba(251, 247, 239, 0.78);
  box-shadow: 0 16px 0 -8px rgba(210, 177, 118, 0.42), inset 0 0 0 1px rgba(45, 58, 41, 0.1);
}

.capability-card:nth-child(4)::before {
  background:
    linear-gradient(180deg, transparent 0 42px, rgba(45, 58, 41, 0.16) 42px 43px, transparent 43px),
    linear-gradient(90deg, rgba(129, 168, 76, 0.6) 0 14px, transparent 14px 22px, rgba(31, 139, 143, 0.52) 22px 42px, transparent 42px 50px, rgba(210, 177, 118, 0.62) 50px 82px),
    rgba(242, 244, 240, 0.72);
  background-size: auto, 82px 36px, auto;
  background-position: center, 18px 24px, center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(45, 58, 41, 0.1);
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 168, 76, 0.42);
  box-shadow: 0 28px 68px rgba(45, 58, 41, 0.13);
}

.capability-card:hover::before {
  opacity: 0.94;
  transform: translate3d(-4px, 4px, 0);
}

.capability-card:hover::after {
  opacity: 1;
  transform: translateX(110%);
}

.capability-card > * {
  position: relative;
  z-index: 1;
}

.capability-card span {
  margin-bottom: 72px;
}

.workflow-steps {
  position: relative;
}

.workflow-steps::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 46px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(31, 139, 143, 0.48), rgba(129, 168, 76, 0.28), rgba(210, 177, 118, 0.4));
}

.workflow-steps li {
  border-color: rgba(255, 255, 255, 0.78);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.workflow-steps li:hover {
  transform: translateX(8px);
  border-color: rgba(129, 168, 76, 0.42);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 48px rgba(45, 58, 41, 0.1);
}

.workflow-steps span {
  z-index: 1;
  color: #f7f4ed;
  background: linear-gradient(135deg, #11180f, #34422d);
  box-shadow: 0 0 0 7px rgba(245, 241, 234, 0.78);
}

.employee-card::before,
.about-trust-card::before,
.about-problem-grid article::before,
.about-difference-grid article::before,
.standard-grid article::before,
.do-not-grid article::before,
.audit-map-grid article::before,
.fit-grid article::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  pointer-events: none;
  content: none;
  border: 1px solid rgba(45, 58, 41, 0.1);
  border-radius: 9999px;
  background:
    radial-gradient(circle at center, rgba(129, 168, 76, 0.82) 0 4px, transparent 5px),
    radial-gradient(circle at center, rgba(129, 168, 76, 0.15) 0 13px, transparent 14px),
    rgba(251, 247, 239, 0.58);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
}

.employee-card::before {
  top: 24px;
  right: 24px;
  z-index: 2;
  opacity: 0.82;
  backdrop-filter: blur(14px);
}

.employee-card:hover::before,
.about-trust-card:hover::before,
.about-problem-grid article:hover::before,
.about-difference-grid article:hover::before,
.standard-grid article:hover::before,
.do-not-grid article:hover::before,
.audit-map-grid article:hover::before,
.fit-grid article:hover::before {
  transform: scale(1.08);
  opacity: 1;
}

.integration-card,
.stack-card,
.about-problem-grid article,
.about-difference-grid article,
.standard-grid article,
.do-not-grid article,
.audit-map-grid article,
.fit-grid article {
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.integration-card:hover,
.stack-card:hover,
.about-problem-grid article:hover,
.about-difference-grid article:hover,
.standard-grid article:hover,
.do-not-grid article:hover,
.audit-map-grid article:hover,
.fit-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 168, 76, 0.42);
  box-shadow: 0 26px 62px rgba(45, 58, 41, 0.12);
}

.standard-grid article,
.audit-map-grid article,
.fit-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(245, 248, 241, 0.48)),
    rgba(255, 255, 255, 0.62);
}

.standard-grid article::after,
.audit-map-grid article::after,
.fit-grid article::after {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(31, 139, 143, 0.42), rgba(210, 177, 118, 0.34), transparent);
  transform: scaleX(0.62);
  transform-origin: left;
  transition: transform 260ms ease;
}

.standard-grid article:hover::after,
.audit-map-grid article:hover::after,
.fit-grid article:hover::after {
  transform: scaleX(1);
}

.audit-map-grid span,
.standard-grid span,
.about-difference-grid span,
.about-work-steps span,
.contact-path-steps span {
  color: rgba(179, 143, 77, 0.92);
}

.automation-options label {
  min-height: 42px;
  padding: 8px 10px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.automation-options label:has(input:checked) {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(129, 168, 76, 0.36);
}

.contact-path-steps {
  position: relative;
  border-top: 0;
}

.contact-path-steps::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(31, 139, 143, 0.42), rgba(210, 177, 118, 0.34), rgba(129, 168, 76, 0.28));
}

.capability-proof-panel {
  position: relative;
  display: grid;
  min-height: clamp(420px, 44vw, 660px);
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 84px rgba(45, 58, 41, 0.13);
  isolation: isolate;
}

.capability-proof-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.9) 0%, rgba(251, 247, 239, 0.7) 34%, rgba(251, 247, 239, 0.08) 72%),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.36), transparent 28%);
}

.capability-proof-panel > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-proof-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(620px, 52%);
  padding: clamp(30px, 4.5vw, 62px);
}

.proof-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(45, 58, 41, 0.1);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.proof-eyebrow span {
  width: 8px;
  height: 8px;
  background: #81a84c;
  border-radius: 9999px;
  box-shadow: 0 0 0 7px rgba(129, 168, 76, 0.13);
}

.capability-proof-copy h3 {
  max-width: 600px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.18rem, 4.2vw, 4.4rem);
  line-height: 1;
}

.capability-proof-copy > p:not(.proof-eyebrow) {
  max-width: 56ch;
  margin-top: 18px;
  color: rgba(42, 46, 41, 0.84);
  font-size: clamp(1rem, 1.16vw, 1.14rem);
  line-height: 1.62;
}

.proof-route {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.proof-route span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  color: #f7f4ed;
  background: rgba(17, 20, 15, 0.92);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.employee-proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 24px;
}

.employee-proof-strip article {
  position: relative;
  min-height: 150px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(242, 244, 240, 0.52)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(45, 58, 41, 0.06);
}

.employee-proof-strip article::before {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 76px;
  height: 34px;
  content: "";
  opacity: 0.46;
  background:
    linear-gradient(90deg, rgba(31, 139, 143, 0.46) 0 18%, transparent 18% 28%, rgba(129, 168, 76, 0.54) 28% 52%, transparent 52% 62%, rgba(210, 177, 118, 0.62) 62% 100%);
  border-radius: 9999px;
}

.employee-proof-strip span {
  display: block;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.employee-proof-strip strong {
  display: block;
  margin-top: 16px;
  color: var(--forest);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.45;
}

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

.employee-grid-featured .employee-card > img {
  aspect-ratio: 1 / 1.12;
}

.workflow-proof-grid {
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
}

.lead-flow-board {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(242, 244, 240, 0.34)),
    rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(45, 58, 41, 0.08);
}

.lead-flow-board::before {
  position: absolute;
  top: 72px;
  bottom: 72px;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(31, 139, 143, 0.42), rgba(129, 168, 76, 0.34), rgba(210, 177, 118, 0.42));
}

.lead-flow-card {
  position: relative;
  z-index: 1;
  max-width: 68%;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(45, 58, 41, 0.07);
}

.lead-flow-report {
  justify-self: end;
  background:
    linear-gradient(145deg, rgba(17, 20, 15, 0.94), rgba(45, 58, 41, 0.92));
}

.lead-flow-card span {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lead-flow-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.1rem;
}

.lead-flow-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.lead-flow-report strong,
.lead-flow-report p {
  color: #f7f4ed;
}

.lead-flow-report p {
  color: rgba(247, 244, 237, 0.76);
}

.lead-flow-board .workflow-steps {
  width: min(100%, 760px);
  justify-self: center;
}

.lead-flow-board .workflow-steps::before {
  left: 48px;
}

.lead-flow-board .workflow-steps li {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.76);
}

.positioning-proof-grid {
  grid-template-columns: 0.82fr 0.82fr 1.36fr;
  align-items: stretch;
}

.comparison-state {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.comparison-state::before {
  position: absolute;
  top: 28px;
  right: 28px;
  left: 28px;
  height: 92px;
  content: "";
  opacity: 0.5;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(45, 58, 41, 0.12), transparent),
    repeating-linear-gradient(90deg, rgba(45, 58, 41, 0.14) 0 1px, transparent 1px 14px);
}

.comparison-state.is-after::before {
  opacity: 0.82;
  background:
    radial-gradient(circle at 22% 50%, rgba(129, 168, 76, 0.72) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 50%, rgba(31, 139, 143, 0.54) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 50%, rgba(210, 177, 118, 0.72) 0 5px, transparent 6px),
    linear-gradient(90deg, rgba(129, 168, 76, 0.3), rgba(31, 139, 143, 0.24), rgba(210, 177, 118, 0.26));
}

.operating-layer-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: 24px;
  align-items: stretch;
}

.operating-core {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 392px;
  padding: 30px;
  color: #f7f4ed;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 34%, rgba(129, 168, 76, 0.4), transparent 28%),
    linear-gradient(145deg, #11180f, #26331f 64%, #3d4c34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 76px rgba(17, 20, 15, 0.16);
}

.operating-core::before {
  position: absolute;
  inset: 32px;
  content: "";
  opacity: 0.74;
  background:
    radial-gradient(circle at center, rgba(232, 200, 139, 0.2), transparent 34%),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 22px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
}

.operating-core span,
.operating-core strong {
  position: relative;
  z-index: 1;
}

.operating-core span {
  color: #e8c88b;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.operating-core strong {
  max-width: 280px;
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 2.6vw, 2.68rem);
  line-height: 1.02;
}

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

.managed-layer-grid article {
  min-height: 184px;
}

.managed-layer-grid article > span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 38px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.capacity-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.74fr) minmax(0, 0.72fr);
  align-items: stretch;
}

.capacity-metrics {
  display: grid;
  gap: 14px;
}

.capacity-metrics article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.capacity-metrics strong {
  display: block;
  color: #f7f4ed;
  font-size: 1rem;
}

.capacity-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(247, 244, 237, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .capability-proof-grid,
  .employee-grid-featured,
  .managed-layer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .positioning-proof-grid,
  .capacity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .reveal-item {
    transform: translate3d(0, 18px, 0);
  }

  .capability-card {
    min-height: 250px;
  }

  .capability-card span {
    margin-bottom: 46px;
  }

  .workflow-steps::before {
    left: 40px;
  }

  .workflow-steps li:hover {
    transform: translateY(-3px);
  }

  .contact-path-steps::before {
    content: none;
  }

  .capability-proof-panel {
    min-height: 610px;
  }

  .capability-proof-panel::after {
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.94) 0%, rgba(251, 247, 239, 0.78) 52%, rgba(251, 247, 239, 0.18) 100%);
  }

  .capability-proof-panel > img {
    object-position: 64% center;
  }

  .capability-proof-copy {
    align-self: start;
    width: 100%;
    padding: 24px;
  }

  .proof-route {
    gap: 7px;
  }

  .proof-route span {
    min-height: 32px;
    padding: 0 11px;
  }

  .capability-proof-grid,
  .employee-proof-strip,
  .employee-grid-featured,
  .workflow-proof-grid,
  .positioning-proof-grid,
  .operating-layer-map,
  .managed-layer-grid,
  .capacity-grid {
    grid-template-columns: 1fr;
  }

  .employee-proof-strip article,
  .lead-flow-card,
  .comparison-state,
  .operating-core {
    min-height: 0;
  }

  .employee-grid-featured .employee-card > img {
    aspect-ratio: 1;
  }

  .lead-flow-board::before {
    left: 40px;
  }

  .lead-flow-card {
    max-width: 100%;
  }

  .lead-flow-report {
    justify-self: stretch;
  }

  .positioning-proof-grid .comparison-state {
    min-height: 260px;
  }

  .operating-core {
    min-height: 320px;
  }

  .capacity-metrics {
    order: 3;
  }
}

.about-trust-page .standard-grid article::before,
.about-trust-page .do-not-grid article::before,
.contact-audit-page .fit-grid article::before,
.about-trust-page .standard-grid article::after,
.contact-audit-page .fit-grid article::after {
  content: none;
}

.contact-audit-page .fit-grid h3 {
  margin-top: 0;
}

html,
body,
* {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.reveal-item,
.reveal-item.is-visible,
.reveal-motion-disabled .reveal-item {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
