:root {
  --green: #23783c;
  --green-dark: #145c2b;
  --green-deep: #0d3f25;
  --ink: #183126;
  --ink-soft: #486154;
  --cream: #f4f1e8;
  --paper: #fffefa;
  --lime: #c7eb7a;
  --coral: #e87c5a;
  --border: #d9e2d8;
  --white: #fff;
  --shadow: 0 24px 60px rgba(20, 60, 38, 0.13);
  --container: min(1180px, calc(100% - 48px));
  --radius: 20px;
  --radius-lg: 32px;
  --font: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.5rem);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(244, 241, 232, 0.78);
  backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(24, 49, 38, 0.12);
  background: rgba(255, 254, 250, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 150px;
  height: auto;
}

.site-header .brand-logo {
  mix-blend-mode: multiply;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.global-nav > a:not(.button) {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.global-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.global-nav > a:hover::after,
.global-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 24px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 8px 0 var(--green-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 4px 0 #0c3e1d;
  transform: translateY(4px);
}

.button-small {
  min-height: 46px;
  padding: 8px 20px;
  box-shadow: none;
  font-size: 13px;
}

.button-small:hover,
.button-small:focus-visible {
  box-shadow: none;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(199, 235, 122, 0.34), transparent 24%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 112px;
  right: -110px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(45, 143, 71, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  gap: clamp(44px, 6vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 52px;
}

.eyebrow,
.section-index {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--green);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.4vw, 5.25rem);
  line-height: 1.18;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: inherit;
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: 4px;
  left: -8px;
  height: 23%;
  background: var(--lime);
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  list-style: none;
}

.hero-notes li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
  align-self: end;
  padding: 12px 0 0;
}

.automation-demo {
  min-height: 560px;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 8%, rgba(199, 235, 122, 0.15), transparent 28%),
    var(--green-deep);
  box-shadow: 0 34px 80px rgba(14, 58, 33, 0.28), 0 0 0 1px rgba(20, 92, 43, 0.08);
  color: var(--white);
}

.demo-toolbar {
  display: grid;
  min-height: 38px;
  align-items: center;
  padding-bottom: 16px;
  grid-template-columns: 1fr auto 1fr;
}

.demo-toolbar strong {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.demo-dots {
  display: flex;
  gap: 5px;
}

.demo-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.demo-dots i:first-child {
  background: var(--coral);
}

.demo-badge {
  justify-self: end;
  padding: 5px 8px;
  border: 1px solid rgba(199, 235, 122, 0.38);
  border-radius: 999px;
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.demo-source,
.demo-result {
  border: 1px solid rgba(24, 49, 38, 0.1);
  border-radius: 17px;
  background: var(--paper);
  color: var(--ink);
}

.demo-source {
  padding: 17px;
}

.demo-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.demo-panel-heading div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.demo-panel-heading span,
.demo-result span {
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.demo-panel-heading strong {
  font-size: 14px;
}

.demo-panel-heading small {
  padding: 4px 8px;
  border-radius: 999px;
  background: #e7efe5;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 800;
}

.demo-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.demo-table > div {
  display: grid;
  min-height: 34px;
  align-items: center;
  padding: 5px 9px;
  border-bottom: 1px solid var(--border);
  font-size: 9px;
  grid-template-columns: 0.75fr 1.5fr 0.7fr 32px;
}

.demo-table > div:last-child {
  border-bottom: 0;
}

.demo-table .demo-table-head {
  min-height: 25px;
  background: #edf2e9;
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 800;
}

.demo-table strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-table > div > img,
.demo-product-pair {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  object-fit: cover;
}

.demo-product-pair {
  position: relative;
  display: block;
}

.demo-product-pair img {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--paper);
  border-radius: 4px;
  object-fit: cover;
}

.demo-product-pair img:first-child {
  top: 0;
  left: 0;
}

.demo-product-pair img:last-child {
  right: 0;
  bottom: 0;
}

.demo-processing {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.demo-processing span {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 700;
  gap: 8px;
}

.demo-processing span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 235, 122, 0.12);
}

.demo-processing b {
  color: var(--lime);
  font-size: 16px;
}

.demo-outputs {
  display: grid;
  margin-bottom: 14px;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.demo-outputs > div {
  display: grid;
  min-width: 0;
  min-height: 91px;
  align-content: center;
  justify-items: center;
  padding: 9px 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}

.demo-outputs .demo-platform-logo {
  display: grid;
  width: 27px;
  height: 27px;
  margin-bottom: 7px;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
}

.demo-platform-logo img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.demo-outputs > div:nth-child(2) .demo-platform-logo img {
  filter: invert(65%) sepia(93%) saturate(1939%) hue-rotate(358deg) brightness(101%) contrast(103%);
}

.demo-outputs > div:nth-child(3) .demo-platform-logo img {
  filter: invert(14%) sepia(98%) saturate(7458%) hue-rotate(275deg) brightness(72%) contrast(115%);
}

.demo-outputs strong {
  overflow: hidden;
  max-width: 100%;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-outputs small {
  margin-top: 4px;
  color: var(--lime);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.demo-result {
  display: grid;
  min-height: 73px;
  align-items: center;
  padding: 12px;
  gap: 11px;
  grid-template-columns: auto 1fr auto;
}

.demo-images {
  display: flex;
}

.demo-images img {
  width: 31px;
  height: 40px;
  border: 2px solid var(--paper);
  border-radius: 6px;
  object-fit: cover;
}

.demo-images img + img {
  margin-left: -15px;
}

.demo-result > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.demo-result strong {
  font-size: 11px;
}

.demo-result > b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-deep);
  font-size: 12px;
}

.proof {
  position: relative;
  z-index: 3;
  display: grid;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(20, 60, 38, 0.09);
  color: var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  display: flex;
  min-height: 154px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--border);
}

.proof-item strong {
  display: flex;
  align-items: baseline;
  color: var(--green-dark);
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.proof-item strong span {
  font-size: 58px;
}

.proof-item strong i {
  margin-inline: 8px;
  color: var(--ink-soft);
  font-size: 18px;
  font-style: normal;
}

.proof-item p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.proof-item-text strong {
  font-size: 22px;
  letter-spacing: 0.01em;
}

.proof-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 9px 18px;
  background: #edf3e8;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: right;
}

.section {
  padding: 132px 0;
}

.split-heading {
  display: grid;
  align-items: end;
  margin-bottom: 70px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 72px;
}

.section-index {
  margin-bottom: 18px;
}

.section-intro {
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
}

.problems {
  background: var(--paper);
}

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

.problem-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 330px;
  padding: 36px 38px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.8fr);
  grid-template-rows: auto 1fr;
  gap: 24px 32px;
}

.problem-card > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  grid-column: 1 / -1;
}

.problem-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  line-height: 1.35;
}

.problem-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.problem-impact {
  padding-top: 15px;
  margin-top: 20px !important;
  border-top: 1px solid var(--border);
}

.problem-impact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.problem-card-accent {
  background: #fff3ef;
}

.mini-visual {
  position: relative;
  align-self: end;
  width: 100%;
  height: 132px;
}

.transfer {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  gap: 5px;
}

.transfer i {
  height: 44px;
  border: 1px solid #cbd7cb;
  border-radius: 5px;
  background: repeating-linear-gradient(to bottom, #ecf1eb 0 4px, transparent 4px 9px);
}

.transfer b {
  color: var(--green);
}

.resize i:first-child {
  position: absolute;
  top: 0;
  left: 2px;
  width: 70px;
  height: 70px;
  border: 1px solid #cbd7cb;
  background: #eef4ed;
}

.resize i:last-child {
  position: absolute;
  right: 2px;
  bottom: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--green);
  background: #d7e8d8;
}

.resize b {
  position: absolute;
  top: 31px;
  left: 50%;
  color: var(--green);
}

.csv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
}

.csv i {
  border-radius: 4px;
  background: #e6eee5;
}

.csv .is-error {
  border: 2px solid var(--coral);
  background: #ffe8e0;
}

.queue {
  display: flex;
  align-items: flex-end;
}

.queue i {
  width: 55px;
  height: 64px;
  margin-right: -25px;
  border: 1px solid #d7c8c1;
  border-radius: 6px;
  background: #fff9f6;
  box-shadow: -4px 3px 0 rgba(232, 124, 90, 0.12);
  transform: rotate(-3deg);
}

.queue i:nth-child(2) {
  height: 72px;
  transform: rotate(1deg);
}

.queue i:nth-child(3) {
  height: 80px;
  transform: rotate(4deg);
}

.queue b {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #0a2e1c;
  font-size: 12px;
}

.problem-answer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 38px;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #edf3e8;
  gap: 36px;
  line-height: 1.65;
}

.problem-answer strong {
  max-width: 650px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.problem-answer span {
  max-width: 380px;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}

.workflow {
  overflow: hidden;
  background: var(--green-deep);
  color: var(--white);
}

.split-heading-light .section-index,
.workflow .section-index,
.cases .section-index {
  color: var(--lime);
}

.final-cta .section-index {
  color: var(--white);
}

.split-heading-light .section-intro,
.cases .section-intro {
  color: rgba(255, 255, 255, 0.86);
}

.workflow-board {
  position: relative;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(4, 30, 17, 0.26);
  color: var(--ink);
}

.workflow-row {
  display: grid;
  align-items: start;
  grid-template-columns: 160px 1fr;
  gap: 30px;
}

.workflow-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}

.workflow-label span {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  letter-spacing: 0.18em;
}

.workflow-label strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.workflow-before .workflow-label strong {
  color: #4f5d55;
}

.workflow-before .workflow-label span {
  color: #65746b;
}

.workflow-label small {
  display: block;
  color: var(--ink-soft);
  font-size: 10px;
}

.workflow-after .workflow-label strong {
  color: var(--green-dark);
}

.workflow-row ol {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.workflow-row li {
  position: relative;
  min-height: 96px;
  padding: 21px 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  line-height: 1.55;
}

.workflow-row li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.workflow-row li::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -5px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  transform: rotate(45deg);
}

.workflow-row li:last-child::after {
  display: none;
}

.workflow-row li i {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-style: normal;
}

.workflow-row.workflow-before li {
  border-color: #bfc7c0;
  background: #e4e7e4;
  color: var(--ink);
}

.workflow-row.workflow-before li:last-child {
  border-color: #bfc7c0;
}

.workflow-row.workflow-before li i {
  color: var(--ink-soft);
  font-weight: 800;
}

.workflow-row.workflow-before li::after {
  border-color: #87988a;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 82px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
}

.workflow-arrow span {
  padding: 7px 15px;
  border: 1px solid var(--green-dark);
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.workflow-after ol {
  grid-template-columns: 1fr 1.5fr 1.2fr;
}

.workflow-row.workflow-after li {
  border-color: #9bc574;
  background: #dff1c8;
  color: var(--ink);
  font-weight: 700;
}

.workflow-row.workflow-after li:last-child {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--green-deep);
}

.workflow-row.workflow-after li i {
  color: var(--green-dark);
  font-weight: 800;
}

.workflow-row.workflow-after li::after {
  border-color: var(--green);
}

.workflow-row.workflow-after li:last-child i {
  color: var(--green-deep);
}

.safety-note {
  display: flex;
  max-width: 850px;
  align-items: flex-start;
  gap: 20px;
  margin: 42px auto 0;
}

.safety-note > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-deep);
  font-weight: 900;
}

.safety-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.safety-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 16px;
}

.services {
  background: var(--cream);
}

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

.service-card {
  position: relative;
  min-height: 390px;
  padding: 36px 40px 34px;
  border: 1px solid var(--border);
  border-top: 4px solid #9fc88a;
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(45, 143, 71, 0.45);
  box-shadow: 0 20px 45px rgba(20, 60, 38, 0.09);
  transform: translateY(-3px);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-top > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card-image {
  display: block;
  width: 100%;
  height: clamp(170px, 22vw, 250px);
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f1f3ed;
  object-fit: cover;
  object-position: center;
}

.service-icon {
  position: relative;
  display: flex;
  width: 104px;
  height: 74px;
  align-items: flex-end;
  justify-content: center;
}

.service-icon i {
  width: 42px;
  height: 50px;
  margin: 0 -13px;
  border: 1px solid #a9c5ae;
  border-radius: 5px;
  background: #e8f3e8;
}

.service-icon i:nth-child(2) {
  z-index: 2;
  height: 63px;
  background: var(--lime);
}

.service-icon-transform {
  align-items: center;
  gap: 7px;
}

.service-icon-transform i {
  width: 35px;
  height: 54px;
  margin: 0;
}

.service-icon-transform i:last-child {
  background: var(--lime);
}

.service-icon-transform b {
  color: var(--green);
}

.service-icon-image i:first-child {
  width: 62px;
  height: 62px;
  margin: 0;
  background: linear-gradient(145deg, #c6dcbc 0 48%, #7fae83 49% 100%);
}

.service-icon-image i:nth-child(2) {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 3px solid var(--paper);
  background: var(--lime);
}

.service-icon-image b {
  position: absolute;
  top: 2px;
  right: 0;
  color: var(--green);
  font-size: 20px;
}

.service-icon-check {
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  place-items: center;
  border: 1px solid #a9c5ae;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-deep);
  font-size: 34px;
  font-weight: 800;
}

.service-card h3 {
  margin: 24px 0 15px;
  font-size: 26px;
}

.service-card > p {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.service-card > .service-output-label {
  padding-top: 19px;
  margin: 24px 0 0;
  border-top: 1px solid var(--border);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.service-card li {
  padding: 5px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #edf3e8;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
}

.service-card:nth-child(2) {
  border-top-color: #74ad78;
}

.service-card:nth-child(3) {
  border-top-color: #b7dc70;
}

.service-card:nth-child(4) {
  border-top-color: var(--green-dark);
}

.platforms {
  display: grid;
  align-items: center;
  padding: 42px;
  margin-top: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.platforms .section-index {
  margin-bottom: 9px;
}

.platforms h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.platforms p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.platform-list {
  min-width: 0;
}

.platform-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
}

.platform-primary li {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #b9cdbb;
  border-radius: 13px;
  background: #f5f9f3;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
}

.platform-primary img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.platform-secondary {
  margin: 12px 0 0 !important;
  color: var(--ink-soft);
  font-size: 11px !important;
  text-align: right;
}

.platform-secondary span {
  margin-right: 8px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.offer-guide {
  display: grid;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  grid-template-columns: 0.72fr 1.28fr;
}

.offer-guide-heading {
  padding: 42px;
  border-right: 1px solid var(--border);
  background: #edf3e8;
}

.offer-guide-heading .section-index {
  margin-bottom: 10px;
}

.offer-guide-heading h3 {
  margin-bottom: 18px;
  font-size: 28px;
}

.offer-guide-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.9;
}

.offer-guide dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
}

.offer-guide dl > div {
  display: block;
  min-height: 180px;
  padding: 27px 26px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.offer-guide dl > div:nth-child(2n) {
  border-right: 0;
}

.offer-guide dl > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.offer-guide dt {
  display: flex;
  align-items: center;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  gap: 9px;
}

.offer-guide dt span {
  color: var(--green-dark);
  font-size: 9px;
}

.offer-guide dd {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.offer-guide dd strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.estimate-examples {
  margin-top: 28px;
}

.estimate-examples-heading {
  display: grid;
  align-items: end;
  margin-bottom: 22px;
  grid-template-columns: 1fr auto;
  gap: 6px 30px;
}

.estimate-examples-heading .section-index {
  margin-bottom: 0;
  grid-column: 1 / -1;
}

.estimate-examples-heading h3 {
  margin: 0;
  font-size: 28px;
}

.estimate-examples-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.estimate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.estimate-cards article {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--border);
  border-right: 0;
  background: var(--paper);
}

.estimate-cards article:first-child {
  border-radius: 18px 0 0 18px;
}

.estimate-cards article:last-child {
  border-right: 1px solid var(--border);
  border-radius: 0 18px 18px 0;
}

.estimate-number {
  margin: 0 0 17px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.estimate-cards h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.estimate-scope {
  min-height: 48px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.75;
}

.estimate-price {
  padding: 18px 0;
  margin: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--green-deep);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.estimate-price span {
  margin-right: 8px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.estimate-cards ul {
  padding: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.7;
  list-style: none;
}

.estimate-cards li {
  margin-top: 7px;
}

.estimate-cards li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
}

.estimate-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  text-align: right;
}

.deliverable-preview {
  background: #edf3e8;
}

.deliverable-window {
  overflow: hidden;
  border: 1px solid rgba(13, 63, 37, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.deliverable-toolbar {
  display: grid;
  min-height: 52px;
  align-items: center;
  padding: 0 20px;
  background: var(--green-deep);
  color: var(--white);
  grid-template-columns: 1fr auto 1fr;
}

.deliverable-toolbar > span {
  display: flex;
  gap: 5px;
}

.deliverable-toolbar > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.deliverable-toolbar > span i:nth-child(2) {
  background: #e9bd65;
}

.deliverable-toolbar > span i:nth-child(3) {
  background: #7ab98b;
}

.deliverable-toolbar p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
}

.deliverable-toolbar b {
  justify-self: end;
  padding: 3px 9px;
  border: 1px solid rgba(199, 235, 122, 0.5);
  border-radius: 999px;
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.deliverable-workspace {
  display: grid;
  min-height: 650px;
  background: #f8faf5;
  grid-template-columns: 235px minmax(0, 1fr);
}

.file-tree {
  padding: 27px 18px;
  border-right: 1px solid rgba(13, 63, 37, 0.15);
  background: #143e28;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.file-root {
  margin: 0 0 18px;
  color: var(--white);
  font-weight: 800;
}

.file-tree ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.file-tree li {
  min-height: 29px;
  padding: 6px 8px;
  border-radius: 5px;
  line-height: 1.5;
}

.file-tree .is-folder {
  margin-top: 5px;
  color: var(--lime);
  font-weight: 800;
}

.file-tree .is-file {
  padding-left: 29px;
}

.file-tree .is-file::before {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.36);
  content: "▤";
}

.file-tree .is-active {
  background: rgba(199, 235, 122, 0.15);
  color: var(--white);
}

.file-tree .is-muted {
  color: rgba(255, 255, 255, 0.72);
}

.file-tree .file-readme {
  margin-top: 10px;
  color: var(--white);
}

.deliverable-canvas {
  min-width: 0;
  padding: 28px;
}

.data-preview,
.image-output,
.document-output > article {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.data-preview > header,
.image-output > header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
}

.data-preview > header div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.data-preview > header span,
.image-output > header span {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.data-preview > header strong {
  font-size: 12px;
}

.data-preview > header p,
.image-output > header b {
  margin: 0;
  color: var(--ink-soft);
  font-size: 8px;
}

.data-table {
  padding: 12px 16px 16px;
}

.data-row {
  display: grid;
  min-width: 600px;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 9px;
  grid-template-columns: 0.75fr 1.4fr 0.75fr 1fr 48px;
  gap: 10px;
}

.data-row:last-child {
  border-bottom: 0;
}

.data-row strong {
  color: var(--ink);
  font-size: 10px;
}

.data-row i {
  padding: 3px 5px;
  border-radius: 999px;
  background: #e7f2e5;
  color: var(--green);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.data-head {
  min-height: 34px;
  border-radius: 6px;
  background: #eef3ec;
  color: var(--green-dark);
  font-size: 8px;
  font-weight: 800;
}

.artifact-grid {
  display: grid;
  margin-top: 18px;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
}

.image-output > div {
  display: grid;
  padding: 16px;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.image-output figure {
  margin: 0;
}

.image-output img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  object-fit: contain;
}

.image-output figcaption {
  margin-top: 7px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
}

.image-output figcaption span {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 500;
}

.document-output {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.document-output > article {
  padding: 18px;
}

.document-output p {
  margin: 0 0 13px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 800;
}

.document-output p span {
  padding: 3px 5px;
  margin-right: 6px;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
}

.document-output h3 {
  margin-bottom: 14px;
  font-size: 15px;
}

.document-output ol {
  padding-left: 18px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.8;
}

.document-output .log-sample {
  background: #163d29;
  color: var(--white);
}

.log-sample p {
  color: rgba(255, 255, 255, 0.68);
}

.log-sample p span {
  background: var(--lime);
  color: var(--green-deep);
}

.log-sample code {
  color: rgba(255, 255, 255, 0.8);
  font-size: 8px;
  line-height: 1.8;
}

.deliverable-points {
  display: grid;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: 0 0 18px 18px;
  background: var(--paper);
  grid-template-columns: repeat(4, 1fr);
}

.deliverable-points p {
  display: grid;
  min-height: 88px;
  align-content: center;
  padding: 15px 20px;
  margin: 0;
  border-right: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 9px;
  grid-template-columns: 32px 1fr;
}

.deliverable-points p:last-child {
  border-right: 0;
}

.deliverable-points p > span {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  grid-row: 1 / 3;
}

.deliverable-points strong {
  color: var(--ink);
  font-size: 11px;
}

.deliverable-note {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 9px;
  text-align: right;
}

.cases {
  background: #163d29;
  color: var(--white);
}

.case-number {
  margin-bottom: 7px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.case-industry {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
}

.case-study {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 32px 80px rgba(4, 28, 16, 0.25);
  color: var(--ink);
}

.case-list {
  display: grid;
  gap: 42px;
}

.case-study-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 34px;
  border-bottom: 1px solid var(--border);
  background: #edf3e8;
}

.case-study-header ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.case-study-header li {
  padding: 7px 11px;
  border: 1px solid #b8cdb9;
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 800;
}

.case-study-title {
  display: grid;
  align-items: end;
  padding: 54px 34px 48px;
  gap: 50px;
  grid-template-columns: 1.25fr 0.75fr;
}

.case-study-title h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.35;
}

.case-study-title p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.case-story-grid {
  display: grid;
  align-items: stretch;
  padding: 44px 34px;
  grid-template-columns: 1fr 72px 1fr 72px 1fr;
}

.case-stage {
  min-width: 0;
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f0f1ee;
}

.case-stage > p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.case-stage > p span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #dce6d8;
  font-size: 8px;
}

.case-stage h4 {
  min-height: 70px;
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.55;
}

.case-stage ul {
  padding: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.7;
  list-style: none;
}

.case-stage li {
  position: relative;
  padding: 9px 0 9px 16px;
  border-top: 1px solid #d2d8d1;
}

.case-stage li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.case-solution {
  border-color: #a9c7a5;
  background: #e1eedc;
}

.case-after {
  border-color: rgba(199, 235, 122, 0.42);
  background: var(--lime);
  color: var(--green-deep);
}

.case-after > p,
.case-after ul {
  color: var(--green-deep);
}

.case-after > p span {
  background: rgba(13, 63, 37, 0.12);
}

.case-after li {
  border-color: rgba(13, 63, 37, 0.15);
}

.case-after li::before {
  background: var(--green-deep);
}

.case-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--green);
}

.case-transition span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.case-transition b {
  font-size: 18px;
}

.case-kpis {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--green-deep);
  grid-template-columns: repeat(4, 1fr);
}

.case-kpis-two {
  grid-template-columns: repeat(2, 1fr);
}

.case-kpis-two > div:nth-child(2) {
  border-right: 0;
}

.case-story-grid-two {
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.case-kpis > div {
  display: flex;
  min-width: 0;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  flex-direction: column;
}

.case-kpis > div:last-child {
  border-right: 0;
}

.case-kpis span {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.case-kpis strong {
  display: flex;
  align-items: baseline;
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.case-kpis small {
  margin-left: 2px;
  font-size: 10px;
}

.case-kpis i {
  margin: 0 6px;
  color: var(--lime);
  font-size: 12px;
  font-style: normal;
}

.case-kpis b {
  margin-top: 8px;
  color: var(--lime);
  font-size: 9px;
}

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

.case-deliverables,
.case-proof-grid blockquote {
  padding: 40px 34px;
  margin: 0;
}

.case-deliverables {
  border-right: 1px solid var(--border);
}

.case-subheading {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.case-deliverables h4 {
  margin-bottom: 22px;
  font-size: 22px;
}

.case-deliverables ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.case-deliverables li {
  display: flex;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 11px;
  gap: 13px;
}

.case-deliverables li span {
  color: var(--green-dark);
  font-size: 8px;
  font-weight: 900;
}

.case-proof-grid blockquote > p:nth-child(2) {
  margin: 0;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  font-weight: 700;
  line-height: 1.8;
}

.case-proof-grid cite {
  display: block;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 9px;
  font-style: normal;
}

.case-links {
  display: flex;
  justify-content: flex-end;
  padding: 22px 34px;
  border-top: 1px solid var(--border);
  gap: 28px;
}

.case-links a {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(20, 92, 43, 0.42);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.case-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  text-align: right;
}

.approach {
  background: var(--paper);
}

.approach-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 6vw, 86px);
}

.approach-photo {
  position: sticky;
  top: 110px;
}

.approach-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.65;
  border-radius: 220px 220px 24px 24px;
  object-fit: cover;
  object-position: 54% center;
}

.approach-photo p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}

.approach-content h2 {
  margin-bottom: 34px;
}

.profile-summary {
  overflow: hidden;
  padding: 0;
  margin-bottom: 42px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.profile-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 26px 28px 18px;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}

.profile-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.profile-heading h3 {
  margin: 0;
  font-size: 24px;
}

.profile-lead {
  padding: 0 28px;
  margin: 20px 0 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.profile-scope {
  padding: 14px 28px;
  margin: 0;
  border-top: 1px solid var(--border);
  background: #edf3e8;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.7;
}

.profile-scope span {
  margin-right: 10px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.profile-facts {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green-deep);
}

.profile-facts > div {
  padding: 21px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.profile-facts > div:first-child {
  padding-left: 16px;
  border-left: 0;
}

.profile-facts dt {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.profile-facts dt span {
  margin-left: 2px;
  font-family: var(--font-sans);
  font-size: 10px;
}

.profile-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
}

.profile-links {
  display: flex;
  padding: 20px 28px 24px;
  margin-top: 0;
  gap: 22px;
  flex-wrap: wrap;
}

.profile-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--green);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.approach-label {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.approach-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.approach-list li {
  display: grid;
  min-height: 190px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f7f7f2;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.approach-list > li > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.approach-list h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.approach-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.process {
  background: var(--cream);
}

.process-list {
  display: grid;
  padding: 0;
  margin-bottom: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 250px;
  padding: 28px 24px 24px;
  border-top: 1px solid #aec3b0;
  border-right: 1px solid var(--border);
  background: var(--paper);
}

.process-list li:first-child {
  border-left: 1px solid var(--border);
  background: var(--green);
  color: var(--white);
}

.process-list li:nth-child(2) {
  background: #edf3e8;
}

.process-list li::before {
  position: absolute;
  z-index: 2;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.process-list li:first-child::before {
  background: var(--lime);
}

.process-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.process-list small {
  display: block;
  min-height: 31px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.process-list li:first-child small {
  color: var(--white);
}

.process-list li:first-child span {
  color: var(--white);
}

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

.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.8;
}

.process-list li:first-child p {
  color: var(--white);
}

.process-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #edf3e8;
  gap: 30px;
}

.process-entry div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.process-entry div > span {
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.process-entry strong {
  font-size: 14px;
  line-height: 1.6;
}

.process-entry a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.faq {
  background: #f1f3ed;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(60px, 10vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading p:last-child {
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 13px;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: #9fbe9d;
  box-shadow: 0 12px 28px rgba(20, 60, 38, 0.07);
}

.faq-list summary {
  position: relative;
  display: grid;
  min-height: 96px;
  align-items: center;
  padding: 22px 58px 22px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  grid-template-columns: 45px 1fr;
  list-style: none;
}

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

.faq-list summary span,
.faq-list details > div > span {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 700;
}

.faq-list summary i,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 20px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.faq-list summary i::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > div {
  display: grid;
  padding: 0 40px 25px 22px;
  grid-template-columns: 45px 1fr;
}

.faq-list details > div p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.final-cta {
  padding: 110px 0;
  background: var(--green);
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  align-items: start;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.final-cta h2 {
  margin-bottom: 26px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.final-cta-inner > div:first-child > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.final-steps {
  display: grid;
  padding: 0;
  margin: 38px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.final-steps li {
  display: grid;
  padding: 18px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  grid-template-columns: 28px 1fr;
}

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

.final-steps span {
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
}

.final-steps strong {
  font-size: 12px;
}

.final-steps small {
  margin-top: 5px;
  color: var(--white);
  font-size: 9px;
  grid-column: 2;
}

.final-action {
  display: flex;
  align-items: center;
  padding: 28px;
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: var(--paper);
  flex-direction: column;
}

.diagnostic-card {
  width: 100%;
  max-width: 390px;
  padding: 0 0 22px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

.diagnostic-card > p {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.diagnostic-card > p span {
  display: inline-block;
  padding: 4px 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: #e2f1ca;
  color: var(--green-deep);
  font-size: 8px;
}

.diagnostic-card ul {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 9px 14px;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.diagnostic-card li {
  position: relative;
  padding-left: 15px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
}

.diagnostic-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.button-light {
  width: 100%;
  max-width: 390px;
  border-color: var(--green-deep);
  background: var(--green-deep);
  box-shadow: 0 8px 0 #082a19;
  color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--green-deep);
}

.final-action > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
}

.site-footer {
  padding: 70px 0 20px;
  background: #0a2e1c;
  color: var(--white);
}

.footer-main {
  display: grid;
  align-items: start;
  grid-template-columns: 0.65fr 1fr 0.8fr;
  gap: 60px;
}

.brand-footer .brand-logo {
  width: 184px;
  border-radius: 8px;
  background: var(--white);
}

.footer-main > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .global-nav {
    gap: 20px;
  }

  .global-nav > a:not(.button) {
    font-size: 11px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 36px;
  }

  .automation-demo {
    min-height: 530px;
    padding: 16px;
  }

  .proof-item {
    min-height: 142px;
    padding: 22px 16px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .proof-item p {
    line-height: 1.55;
  }

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

  .workflow-row {
    grid-template-columns: 120px 1fr;
  }

  .workflow-row li {
    min-height: 105px;
    padding-inline: 9px;
  }

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

  .process-list li:nth-child(4) {
    border-left: 1px solid var(--border);
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 36px, 680px);
  }

  .section {
    padding: 95px 0;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--paper);
  }

  .menu-button span[aria-hidden] {
    position: absolute;
    width: 19px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .menu-button span[aria-hidden]:first-of-type {
    transform: translateY(-4px);
  }

  .menu-button span[aria-hidden]:last-of-type {
    transform: translateY(4px);
  }

  .menu-button[aria-expanded="true"] span[aria-hidden]:first-of-type {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span[aria-hidden]:last-of-type {
    transform: rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    justify-content: center;
    padding: 110px 28px 40px;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .global-nav > a:not(.button) {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 20px;
  }

  .global-nav .button {
    margin-top: 28px;
  }

  .hero {
    padding-top: 116px;
  }

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

  .hero-copy {
    max-width: 680px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero-visual {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .automation-demo {
    min-height: 520px;
    border-radius: 28px 28px 0 0;
  }

  .proof {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .proof-item {
    min-height: 130px;
    padding: 20px 16px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .proof-item strong span {
    font-size: 43px;
  }

  .split-heading {
    margin-bottom: 48px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-board {
    padding: 28px;
  }

  .workflow-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .workflow-row ol {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-row li:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  .workflow-row li:nth-child(3)::after {
    display: none;
  }

  .workflow-after ol {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-after li:nth-child(2) {
    border-right: 0;
  }

  .workflow-after li:nth-child(2)::after {
    display: block;
  }

  .platforms {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .platform-primary {
    justify-content: flex-start;
  }

  .offer-guide {
    grid-template-columns: 1fr;
  }

  .offer-guide-heading {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .estimate-cards {
    grid-template-columns: 1fr;
  }

  .estimate-cards article,
  .estimate-cards article:first-child,
  .estimate-cards article:last-child {
    border-right: 1px solid var(--border);
    border-bottom: 0;
    border-radius: 0;
  }

  .estimate-cards article:first-child {
    border-radius: 18px 18px 0 0;
  }

  .estimate-cards article:last-child {
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 18px 18px;
  }

  .estimate-scope {
    min-height: 0;
  }

  .case-study-title {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-story-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .case-stage h4 {
    min-height: 0;
  }

  .case-transition {
    min-height: 62px;
  }

  .case-transition b {
    transform: rotate(90deg);
  }

  .case-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-kpis > div:nth-child(2) {
    border-right: 0;
  }

  .case-kpis > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .case-deliverables {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .approach-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 50px;
  }

  .approach-photo {
    top: 100px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .final-action {
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  html {
    scroll-padding-top: 75px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 118px;
  }

  .hero {
    padding-top: 103px;
  }

  .hero::before {
    display: none;
  }

  .eyebrow {
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 9px;
  }

  .eyebrow span {
    margin-top: 6px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 12vw, 3.5rem);
    line-height: 1.2;
  }

  .hero h1 em::after {
    bottom: 2px;
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

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

  .text-link {
    align-self: center;
  }

  .hero-notes {
    display: grid;
    margin-top: 24px;
    gap: 5px;
  }

  .hero-visual {
    width: calc(100% + 32px);
    margin-top: 10px;
    margin-left: -16px;
  }

  .automation-demo {
    min-height: 500px;
    padding: 14px;
    border-radius: 24px 24px 0 0;
  }

  .demo-source {
    padding: 13px;
  }

  .demo-table > div {
    padding-inline: 7px;
    grid-template-columns: 0.7fr 1.45fr 0.72fr 23px;
  }

  .demo-outputs > div {
    min-height: 82px;
  }

  .demo-result {
    padding: 10px;
    gap: 8px;
  }

  .demo-images img {
    width: 27px;
    height: 36px;
  }

  .proof {
    display: block;
  }

  .proof-item {
    min-height: 90px;
    align-items: center;
    justify-content: flex-start;
    padding: 17px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    flex-direction: row;
    gap: 18px;
    text-align: left;
  }

  .proof-item strong {
    min-width: 136px;
  }

  .proof-item strong span {
    font-size: 40px;
  }

  .proof-item-text strong {
    font-size: 17px;
  }

  .proof-note {
    padding: 9px 16px;
    text-align: left;
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .section-index {
    margin-bottom: 13px;
    font-size: 9px;
  }

  .section-intro {
    font-size: 13px;
    line-height: 1.9;
  }

  .problem-grid {
    display: block;
    border-left: 0;
  }

  .problem-card {
    min-height: 280px;
    padding: 25px 22px;
    border-left: 1px solid var(--border);
  }

  .problem-card h3 {
    margin: 21px 0 10px;
    font-size: 22px;
  }

  .problem-card p {
    max-width: 260px;
  }

  .mini-visual {
    right: 22px;
    bottom: 22px;
    left: auto;
    width: 125px;
    height: 75px;
    opacity: 1;
  }

  .problem-answer {
    margin-top: 38px;
    font-size: 1.25rem;
    text-align: left;
  }

  .workflow-board {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .workflow-row ol,
  .workflow-after ol {
    display: block;
  }

  .workflow-row li,
  .workflow-row li:nth-child(3),
  .workflow-after li:nth-child(2) {
    min-height: 0;
    padding: 13px 15px 13px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 0;
  }

  .workflow-row li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .workflow-row li::after,
  .workflow-row li:nth-child(3)::after,
  .workflow-after li:nth-child(2)::after {
    top: auto;
    right: 50%;
    bottom: -4px;
    display: block;
    transform: rotate(135deg);
  }

  .workflow-row li:last-child::after {
    display: none;
  }

  .workflow-row li i {
    position: absolute;
    top: 14px;
    left: 15px;
    margin: 0;
  }

  .workflow-arrow {
    min-height: 70px;
  }

  .safety-note {
    gap: 14px;
    margin-top: 28px;
  }

  .safety-note > span {
    width: 34px;
    height: 34px;
  }

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

  .service-card {
    min-height: 380px;
    padding: 27px 24px;
  }

  .service-icon {
    transform: scale(0.85);
    transform-origin: top right;
  }

  .service-card h3 {
    margin-top: 35px;
    font-size: 23px;
  }

  .platforms {
    padding: 28px 22px;
  }

  .platform-primary li {
    padding: 8px 11px;
    font-size: 10px;
  }

  .offer-guide-heading {
    padding: 30px 22px;
  }

  .offer-guide dl > div {
    padding: 18px 22px;
  }

  .estimate-examples-heading {
    display: block;
  }

  .estimate-examples-heading h3 {
    margin: 8px 0 12px;
    font-size: 24px;
  }

  .estimate-cards article {
    padding: 26px 22px;
  }

  .estimate-note {
    line-height: 1.7;
    text-align: left;
  }

  .offer-price dd {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .case-study {
    width: calc(100% - 20px);
    border-radius: 22px;
  }

  .case-study-header {
    align-items: flex-start;
    padding: 24px 20px;
    flex-direction: column;
    gap: 18px;
  }

  .case-study-header ul {
    justify-content: flex-start;
  }

  .case-study-title {
    padding: 38px 20px 32px;
  }

  .case-study-title h3 {
    font-size: 1.75rem;
  }

  .case-story-grid {
    padding: 0 20px 34px;
  }

  .case-stage {
    padding: 24px 20px;
  }

  .case-kpis > div {
    padding: 22px 15px;
  }

  .case-kpis {
    grid-template-columns: 1fr;
  }

  .case-kpis > div,
  .case-kpis > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .case-kpis > div:last-child {
    border-bottom: 0;
  }

  .case-kpis strong {
    font-size: 1.45rem;
  }

  .case-deliverables,
  .case-proof-grid blockquote {
    padding: 32px 20px;
  }

  .case-links {
    align-items: flex-start;
    padding: 22px 20px 28px;
    flex-direction: column;
    gap: 16px;
  }

  .case-note {
    text-align: left;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .approach-photo {
    position: static;
  }

  .approach-photo img {
    aspect-ratio: 4 / 4.2;
    border-radius: 140px 140px 20px 20px;
  }

  .approach-content h2 {
    margin-bottom: 32px;
  }

  .profile-summary {
    padding: 0;
    margin-bottom: 34px;
  }

  .profile-heading {
    display: block;
    padding: 24px 20px 18px;
  }

  .profile-heading h3 {
    margin: 0;
  }

  .profile-heading p {
    margin-top: 7px;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-facts > div,
  .profile-facts > div:first-child {
    display: flex;
    align-items: baseline;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    gap: 14px;
  }

  .profile-facts dd {
    margin: 0;
  }

  .profile-links {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .approach-list li {
    padding: 22px 0;
  }

  .process-list {
    display: block;
  }

  .process-list li,
  .process-list li:nth-child(4) {
    display: grid;
    min-height: 0;
    padding: 22px 18px;
    border-top: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    grid-template-columns: 42px 1fr;
  }

  .process-list li::before {
    top: 0;
    left: 34px;
    width: 1px;
    height: 100%;
    border-radius: 0;
    background: rgba(45, 143, 71, 0.28);
  }

  .process-list li:first-child::before {
    background: rgba(255, 255, 255, 0.3);
  }

  .process-list span {
    z-index: 2;
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .process-list small {
    min-height: 0;
    margin-bottom: 8px;
    grid-column: 2;
    grid-row: 1;
  }

  .process-list h3 {
    margin: 0 0 7px;
    grid-column: 2;
    grid-row: 2;
  }

  .process-list p {
    grid-column: 2;
    grid-row: 3;
  }

  .process-entry {
    align-items: stretch;
    padding: 22px 18px;
    flex-direction: column;
    gap: 18px;
  }

  .process-entry div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .process-entry div > span {
    white-space: normal;
  }

  .process-entry a {
    text-align: center;
  }

  .faq-list summary {
    min-height: 84px;
    padding: 18px 42px 18px 16px;
    font-size: 13px;
    grid-template-columns: 34px 1fr;
  }

  .faq-list details > div {
    padding: 0 15px 20px 16px;
    grid-template-columns: 34px 1fr;
  }

  .final-cta {
    padding: 78px 0 92px;
  }

  .final-cta h2 br {
    display: none;
  }

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

  .final-steps li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .final-steps li:last-child {
    border-bottom: 0;
  }

  .final-action {
    width: 100%;
    padding: 22px 18px;
    margin-top: 0;
  }

  .button-light {
    max-width: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main nav {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 900;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(20, 92, 43, 0.95);
    box-shadow: 0 12px 30px rgba(10, 46, 28, 0.28);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .mobile-cta.is-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

/* Mobile content compression: preserve readable type while reducing repetition and dead space. */
@media (max-width: 640px) {
  .hero {
    padding-top: 88px;
  }

  .hero h1 {
    margin-bottom: 16px;
  }

  .hero-lead {
    margin-bottom: 20px;
    line-height: 1.75;
  }

  .hero-notes {
    margin-top: 17px;
  }

  .automation-demo {
    min-height: 400px;
  }

  .section {
    padding: 52px 0;
  }

  .split-heading {
    margin-bottom: 27px;
    gap: 13px;
  }

  .section-intro {
    line-height: 1.7;
  }

  .problem-card {
    min-height: 205px;
  }

  .problem-card h3 {
    margin-top: 11px;
  }

  .problem-impact {
    padding-top: 9px;
    margin-top: 10px !important;
  }

  .workflow-row li,
  .workflow-row li:nth-child(3),
  .workflow-after li:nth-child(2) {
    padding-block: 10px;
  }

  .workflow-arrow {
    min-height: 44px;
  }

  .safety-note {
    margin-top: 20px;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    min-height: 0;
    padding: 17px 18px 19px;
  }

  .service-card-image {
    margin-top: 12px;
  }

  .service-card h3 {
    margin: 12px 0 7px;
  }

  .platforms {
    padding: 18px;
    margin-top: 18px;
  }

  .offer-guide {
    margin-top: 18px;
  }

  .offer-guide-heading {
    padding: 19px 18px;
  }

  .offer-guide dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-guide dl > div {
    padding: 17px 15px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .offer-guide dl > div:last-child {
    border-right: 0;
  }

  .offer-guide dd {
    margin-top: 8px;
  }

  .estimate-cards article {
    padding: 17px 18px;
  }

  .estimate-price {
    padding: 10px 0;
    margin: 10px 0;
  }

  .deliverable-canvas {
    padding: 10px;
  }

  .deliverable-points p {
    min-height: 78px;
    padding: 10px;
  }

  .case-list {
    gap: 26px;
  }

  .case-study-header {
    padding: 17px 18px;
    gap: 12px;
  }

  .case-study-title {
    padding: 22px 18px 20px;
  }

  .case-study-title h3 {
    font-size: 1.55rem;
  }

  .case-story-grid {
    padding: 0 14px 18px;
    gap: 10px;
  }

  .case-story-grid-two {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-stage {
    padding: 15px 13px;
  }

  .case-stage h4 {
    font-size: 14px;
  }

  .case-stage ul {
    font-size: 9px;
  }

  .case-deliverables,
  .case-proof-grid blockquote {
    padding: 20px 18px;
  }

  .case-links {
    padding: 17px 18px 20px;
  }

  .approach-grid {
    gap: 24px;
  }

  .approach-photo img {
    height: 185px;
  }

  .profile-summary {
    margin-bottom: 18px;
  }

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

  .approach-list li {
    padding: 15px 13px;
  }

  .approach-list p {
    font-size: 9px;
  }

  .process-list li,
  .process-list li:nth-child(4) {
    padding: 16px 15px;
  }

  .process-entry {
    padding: 17px 15px;
    gap: 13px;
  }

  .faq-list summary {
    min-height: 68px;
    padding-block: 14px;
  }

  .final-cta {
    padding: 60px 0 74px;
  }

  .final-cta-inner {
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .deliverable-workspace {
    grid-template-columns: 178px minmax(0, 1fr);
  }

  .deliverable-canvas {
    padding: 20px;
  }

  .data-table {
    overflow-x: auto;
  }

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

  .document-output {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .deliverable-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .deliverable-points p:nth-child(2) {
    border-right: 0;
  }

  .deliverable-points p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

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

  .split-heading {
    margin-bottom: 34px;
    gap: 18px;
  }

  .automation-demo {
    min-height: 430px;
  }

  .proof-item {
    min-height: 76px;
    padding: 12px 20px;
  }

  .proof-item strong {
    min-width: 124px;
  }

  .proof-item strong span {
    font-size: 35px;
  }

  .proof {
    margin-top: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 0 16px 36px rgba(20, 60, 38, 0.08);
    color: var(--ink);
  }

  .proof-item {
    border-bottom-color: var(--border);
  }

  .proof-item strong,
  .proof-item-text strong {
    color: var(--green-dark);
  }

  .proof-item strong i {
    color: var(--ink-soft);
  }

  .proof-item p {
    color: var(--ink);
  }

  .proof-note {
    background: #edf3e8;
    color: var(--ink-soft);
  }

  .demo-panel-heading strong {
    font-size: 14px;
  }

  .demo-table > div {
    min-height: 38px;
    font-size: 9px;
  }

  .demo-table .demo-table-head {
    font-size: 8px;
  }

  .demo-table strong {
    font-size: 9px;
  }

  .demo-outputs strong,
  .demo-result strong {
    font-size: 10px;
  }

  .problem-card {
    display: block;
    min-height: 280px;
    padding: 21px 20px;
  }

  .problem-card h3 {
    margin: 13px 0 9px;
    font-size: 20px;
  }

  .problem-copy > p {
    max-width: 195px;
    font-size: 12px;
    line-height: 1.7;
  }

  .problem-impact {
    padding-top: 11px;
    margin-top: 13px !important;
  }

  .mini-visual {
    position: absolute;
    right: 16px;
    bottom: 20px;
    width: 88px;
    height: 68px;
  }

  .problem-answer {
    align-items: flex-start;
    padding: 22px 20px;
    margin-top: 26px;
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }

  .problem-answer strong {
    font-size: 1.08rem;
  }

  .problem-answer span {
    max-width: none;
    font-size: 12px;
    text-align: left;
  }

  .workflow-board {
    padding: 16px 12px;
  }

  .workflow-arrow {
    min-height: 54px;
  }

  .service-card {
    min-height: 280px;
    padding: 21px 20px;
  }

  .service-icon {
    transform: scale(0.68);
  }

  .service-card h3 {
    margin: 14px 0 10px;
    font-size: 21px;
  }

  .service-card > p {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.75;
  }

  .service-card ul {
    margin-top: 15px;
  }

  .platforms,
  .offer-guide-heading {
    padding: 22px 18px;
  }

  .platforms {
    margin-top: 24px;
    gap: 18px;
  }

  .platform-primary {
    display: grid;
    grid-template-columns: 1fr;
  }

  .platform-primary li {
    justify-content: flex-start;
  }

  .platform-secondary {
    text-align: left;
  }

  .offer-guide dl {
    display: block;
  }

  .offer-guide dl > div {
    min-height: 0;
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .offer-guide dl > div:nth-last-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .offer-guide dd {
    margin-top: 12px;
  }

  .offer-guide dd strong {
    font-size: 15px;
  }

  .estimate-examples {
    margin-top: 22px;
  }

  .estimate-cards article {
    padding: 20px 18px;
  }

  .estimate-price {
    padding: 13px 0;
    margin: 14px 0;
  }

  .case-study-title {
    padding: 28px 18px 25px;
  }

  .case-story-grid {
    padding: 0 18px 24px;
  }

  .case-stage {
    padding: 19px 17px;
  }

  .case-stage h4 {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .case-stage li {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .case-transition {
    min-height: 42px;
  }

  .case-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-kpis > div,
  .case-kpis > div:nth-child(2) {
    padding: 18px 11px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .case-kpis > div:nth-child(even) {
    border-right: 0;
  }

  .case-kpis > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .case-kpis span {
    margin-bottom: 8px;
  }

  .case-kpis strong {
    font-size: 1.08rem;
  }

  .case-kpis i {
    margin-inline: 3px;
    font-size: 10px;
  }

  .case-kpis small {
    font-size: 8px;
  }

  .case-deliverables,
  .case-proof-grid blockquote {
    padding: 25px 18px;
  }

  .approach-grid {
    gap: 30px;
  }

  .approach-photo img {
    height: 225px;
    aspect-ratio: auto;
    border-radius: 110px 110px 18px 18px;
    object-position: center 58%;
  }

  .approach-content h2 {
    margin-bottom: 24px;
  }

  .profile-summary {
    padding: 0;
    margin-bottom: 26px;
  }

  .profile-heading {
    padding: 20px 17px 16px;
  }

  .profile-lead {
    padding-inline: 17px;
    margin: 15px 0 18px;
    line-height: 1.75;
  }

  .profile-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-facts > div,
  .profile-facts > div:first-child {
    display: block;
    padding: 10px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
  }

  .profile-facts > div:first-child {
    border-left: 0;
  }

  .profile-facts dt {
    font-size: 21px;
  }

  .profile-facts dd {
    margin-top: 6px;
    font-size: 8px;
  }

  .profile-links {
    padding: 18px 17px 20px;
    margin-top: 19px;
  }

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

  .approach-list li {
    min-height: 0;
    padding: 19px 17px;
  }

  .deliverable-toolbar {
    grid-template-columns: 1fr auto;
  }

  .deliverable-toolbar > p {
    display: none;
  }

  .deliverable-workspace {
    display: block;
    min-height: 0;
  }

  .file-tree {
    display: none;
  }

  .deliverable-canvas {
    padding: 14px;
  }

  .data-preview > header,
  .image-output > header {
    padding: 0 14px;
  }

  .data-preview > header p {
    display: none;
  }

  .data-table {
    padding: 9px 9px 12px;
  }

  .data-row {
    min-width: 0;
    padding: 0 7px;
    font-size: 8px;
    grid-template-columns: 0.8fr 1.4fr 0.7fr 34px;
    gap: 6px;
  }

  .data-row > :nth-child(4) {
    display: none;
  }

  .data-row strong {
    font-size: 8px;
  }

  .image-output > div {
    padding: 11px;
    gap: 9px;
  }

  .document-output {
    grid-template-columns: 1fr;
  }

  .deliverable-points p {
    min-height: 92px;
    padding: 14px 12px;
    grid-template-columns: 24px 1fr;
  }

  .deliverable-note {
    line-height: 1.7;
    text-align: left;
  }
}

@media (min-width: 481px) and (max-width: 820px) {
  .mobile-cta {
    right: 16px;
    left: auto;
    width: 210px;
    min-height: 50px;
    gap: 14px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final mobile density overrides — kept last so earlier responsive rules cannot undo them. */
@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }

  .split-heading {
    margin-bottom: 25px;
    gap: 12px;
  }

  .problem-card {
    min-height: 190px;
    padding: 18px;
  }

  .problem-card h3 {
    margin: 10px 0 7px;
  }

  .problem-impact {
    padding-top: 7px;
    margin-top: 8px !important;
  }

  .mini-visual {
    bottom: 14px;
    width: 76px;
    height: 58px;
  }

  .problem-answer {
    padding: 18px;
    margin-top: 20px;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    min-height: 0;
    padding: 16px 18px 18px;
  }

  .service-card-image {
    margin-top: 10px;
  }

  .service-card h3 {
    margin: 10px 0 6px;
  }

  .platforms {
    padding: 17px;
    margin-top: 18px;
  }

  .offer-guide {
    margin-top: 18px;
  }

  .offer-guide-heading {
    padding: 18px;
  }

  .offer-guide dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-guide dl > div,
  .offer-guide dl > div:nth-last-child(2) {
    padding: 15px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .offer-guide dl > div:last-child {
    border-right: 0;
  }

  .offer-guide dd {
    margin-top: 7px;
  }

  .estimate-cards article {
    padding: 16px 18px;
  }

  .estimate-price {
    padding: 9px 0;
    margin: 9px 0;
  }

  .case-list {
    gap: 24px;
  }

  .case-study-header {
    padding: 16px 18px;
    gap: 10px;
  }

  .case-study-title {
    padding: 20px 18px 18px;
  }

  .case-study-title h3 {
    font-size: 1.48rem;
  }

  .case-story-grid {
    padding: 0 12px 16px;
    gap: 8px;
  }

  .case-story-grid-two {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-stage {
    padding: 13px 11px;
  }

  .case-stage > p {
    margin-bottom: 12px;
  }

  .case-stage h4 {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .case-stage ul {
    font-size: 10px;
  }

  .case-deliverables,
  .case-proof-grid blockquote {
    padding: 18px;
  }

  .case-links {
    padding: 15px 18px 18px;
  }

  .approach-grid {
    gap: 22px;
  }

  .approach-photo img {
    height: 170px;
  }

  .profile-summary {
    margin-bottom: 17px;
  }

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

  .approach-list li {
    padding: 14px 12px;
  }

  .approach-list p {
    font-size: 10px;
  }

  .process-list li,
  .process-list li:nth-child(4) {
    padding: 14px 15px;
  }

  .process-entry {
    padding: 15px;
    gap: 12px;
  }

  .faq-list summary {
    min-height: 64px;
    padding-block: 12px;
  }

  .final-cta {
    padding: 56px 0 70px;
  }

  .final-cta-inner {
    gap: 24px;
  }
}
