:root {
  --ink: #172b2a;
  --muted: #5f6f6b;
  --line: #d9e5e0;
  --paper: #f8fbfa;
  --surface: #ffffff;
  --green: #0f766e;
  --green-dark: #17312f;
  --amber: #b96f2b;
  --blue: #315b9d;
  --red: #d94831;
  --shadow: 0 18px 48px rgba(23, 43, 42, 0.12);
  font-family:
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  color: var(--ink);
  background: #edf3f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  color: var(--ink);
  background: #edf3f1;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 229, 224, 0.82);
  background: rgba(248, 251, 250, 0.92);
  backdrop-filter: blur(16px);
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  color: #334541;
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a:hover {
  background: #edf4f1;
}

.site-nav .nav-action {
  color: #ffffff;
  background: var(--green-dark);
}

.site-nav .nav-action:hover {
  background: #214541;
}

.site-nav .nav-phone {
  color: var(--amber);
  font-weight: 900;
}

.site-nav .nav-phone:hover {
  background: #fff3df;
}

.mobile-only {
  display: none;
}

.mobile-header-call {
  display: none;
}

.mobile-title {
  display: none;
}

.desktop-title {
  display: block;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, 76svh);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(15, 34, 33, 0.9) 0%, rgba(15, 34, 33, 0.78) 38%, rgba(15, 34, 33, 0.26) 72%, rgba(15, 34, 33, 0.08) 100%),
    url("assets/hero-dashboard.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.26);
}

.hero-content {
  position: relative;
  width: min(740px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd59a;
}

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

.section-inner,
.pain-card,
.module-card,
.role-grid article,
.timeline article,
.scenario-grid article,
.adoption-grid article,
.monitoring-grid article,
.case-grid article,
.case-scenarios article,
.native-grid article,
.capability-grid article,
.rollout-strip div,
.reason-grid article,
.workflow-list li,
.package-card,
.pricing-grid article,
.security-grid article,
.value-list article,
.contact-panel {
  min-width: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.08;
}

h2 {
  max-width: 960px;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.12;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.24;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.button-primary {
  color: #ffffff;
  background: var(--amber);
}

.button-primary:hover {
  background: #9d5d20;
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-ghost {
  color: #fff4e5;
  border-color: rgba(255, 213, 154, 0.52);
  background: rgba(185, 111, 43, 0.16);
}

.button-ghost:hover {
  background: rgba(185, 111, 43, 0.28);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 42px 0 0;
}

.hero-metrics div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(15, 34, 33, 0.56);
}

.hero-metrics dt {
  font-size: 19px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

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

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 840px;
  margin: 0;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.evidence-band {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 18px 0;
}

.evidence-grid span {
  color: var(--muted);
  font-size: 14px;
}

.evidence-grid strong {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  font-size: 14px;
  text-align: center;
}

.problem-section,
.delivery-section,
.commercial-section,
.value-section {
  background: var(--paper);
}

.pain-grid,
.module-grid,
.role-grid,
.scenario-grid,
.adoption-grid,
.timeline {
  display: grid;
  gap: 16px;
}

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

.pain-card,
.module-card,
.role-grid article,
.timeline article,
.scenario-grid article,
.adoption-grid article,
.value-list article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.pain-card {
  min-height: 250px;
  padding: 22px;
}

.pain-card span {
  display: inline-flex;
  width: 42px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  font-weight: 900;
}

.pain-card h3 {
  margin-top: 26px;
}

.pain-card p,
.module-card li,
.role-grid p,
.adoption-grid p,
.timeline p,
.scenario-grid p,
.value-list span,
.contact-panel li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.scenario-section {
  background: #ffffff;
}

.monitoring-section {
  background: #ffffff;
}

.monitoring-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.monitoring-copy {
  position: sticky;
  top: 96px;
}

.monitoring-copy p {
  margin-top: 22px;
}

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

.monitoring-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.monitoring-grid strong,
.monitoring-grid span {
  display: block;
}

.monitoring-grid strong {
  font-size: 19px;
}

.monitoring-grid span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.case-section {
  background: var(--paper);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.case-copy {
  position: sticky;
  top: 96px;
}

.case-copy p {
  margin-top: 22px;
}

.case-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.case-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 8px;
  background: #ffffff;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

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

.case-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.case-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.case-grid article:nth-child(2n) span {
  background: var(--blue);
}

.case-grid h3 {
  margin-top: 22px;
}

.case-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.case-note {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(185, 111, 43, 0.3);
  border-radius: 8px;
  background: #fffaf2;
}

.case-note strong {
  flex: 0 0 auto;
  color: var(--amber);
}

.case-note span {
  color: #735a42;
  line-height: 1.7;
}

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

.case-scenarios article {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.case-scenarios strong,
.case-scenarios span {
  display: block;
}

.case-scenarios strong {
  font-size: 17px;
}

.case-scenarios span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.native-section {
  background: var(--paper);
}

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

.native-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.native-grid span {
  display: inline-flex;
  width: 42px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  font-weight: 900;
}

.native-grid h3 {
  margin-top: 24px;
}

.native-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.capability-section {
  background: #ffffff;
}

.capability-section .section-heading p {
  max-width: 920px;
}

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

.capability-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.capability-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.capability-grid article:nth-child(3n + 1) span {
  background: var(--green-dark);
}

.capability-grid article:nth-child(3n) span {
  background: var(--amber);
}

.capability-grid h3 {
  margin-top: 22px;
}

.capability-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.rollout-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.rollout-strip div {
  min-height: 122px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.rollout-strip strong,
.rollout-strip span {
  display: block;
}

.rollout-strip strong {
  font-size: 18px;
}

.rollout-strip span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.reason-section {
  background: var(--paper);
}

.landing-entry-section {
  background: #eef6ff;
}

.landing-entry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.landing-entry-grid a {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid #cfe0f6;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.landing-entry-grid a:hover {
  border-color: rgba(21, 92, 255, 0.36);
  box-shadow: 0 14px 32px rgba(21, 92, 255, 0.11);
  transform: translateY(-2px);
}

.landing-entry-grid span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.landing-entry-grid a:nth-child(2n) span {
  background: var(--green-dark);
}

.landing-entry-grid a:nth-child(5n) span {
  background: var(--amber);
}

.landing-entry-grid strong {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.28;
}

.landing-entry-grid small {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.reason-copy {
  position: sticky;
  top: 96px;
}

.reason-copy p {
  margin-top: 22px;
}

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

.reason-grid article {
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.reason-grid strong,
.reason-grid span {
  display: block;
}

.reason-grid strong {
  font-size: 19px;
}

.reason-grid span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.roi-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(185, 111, 43, 0.32);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.roi-panel h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.roi-panel p {
  margin: 16px 0 0;
  font-size: 16px;
}

.roi-formula {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  color: var(--green-dark);
}

.roi-formula strong {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.25;
  white-space: nowrap;
}

.roi-formula span {
  color: var(--amber);
  font-size: 22px;
  font-weight: 900;
}

.roi-note {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(185, 111, 43, 0.24);
  color: #735a42;
  font-size: 14px;
}

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

.scenario-grid article {
  min-height: 245px;
  padding: 24px;
}

.scenario-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.scenario-grid h3 {
  margin-top: 22px;
}

.scenario-grid p {
  margin: 16px 0 0;
}

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

.module-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.module-card.accent {
  border-color: rgba(185, 111, 43, 0.42);
  background: #fffaf2;
}

.module-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.module-card.accent .module-kicker {
  color: var(--amber);
}

.module-card h3 {
  margin-top: 12px;
}

.module-card ul,
.contact-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.module-card li,
.contact-panel li {
  position: relative;
  padding-left: 22px;
}

.module-card li::before,
.contact-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--green);
}

.workflow-section,
.role-section,
.adoption-section,
.deliverables,
.contact-section {
  background: #ffffff;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 96px;
}

.workflow-copy p {
  margin-top: 22px;
}

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

.workflow-list li {
  position: relative;
  min-height: 104px;
  padding: 22px 24px 22px 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  counter-increment: workflow;
}

.workflow-list li::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  content: counter(workflow);
  background: var(--green-dark);
  font-weight: 900;
}

.workflow-list strong,
.workflow-list span {
  display: block;
}

.workflow-list strong {
  font-size: 19px;
}

.workflow-list span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

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

.role-grid article {
  min-height: 230px;
  padding: 24px;
}

.role-grid p {
  margin: 18px 0 0;
}

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

.adoption-grid article {
  min-height: 260px;
  padding: 24px;
}

.adoption-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.adoption-grid h3 {
  margin-top: 22px;
}

.adoption-grid p {
  margin: 16px 0 0;
}

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

.timeline article {
  min-height: 260px;
  padding: 24px;
}

.timeline span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.timeline h3 {
  margin-top: 24px;
}

.commercial-section .section-heading p {
  max-width: 860px;
}

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

.package-card,
.security-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.package-card {
  display: grid;
  min-height: 360px;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.package-card.highlighted {
  border-color: rgba(185, 111, 43, 0.48);
  background: #fffaf2;
  box-shadow: var(--shadow);
}

.package-label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.package-card.highlighted .package-label {
  background: var(--amber);
}

.package-card p {
  margin: 0;
  font-size: 15px;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.package-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--green);
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(185, 111, 43, 0.28);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(23, 43, 42, 0.04);
}

.pricing-panel h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.pricing-panel p {
  margin: 18px 0 0;
}

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

.pricing-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.pricing-grid strong,
.pricing-grid span {
  display: block;
}

.pricing-grid strong {
  font-size: 17px;
}

.pricing-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.security-section {
  background: #ffffff;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.security-grid article {
  min-height: 142px;
  padding: 22px;
}

.security-grid strong,
.security-grid span {
  display: block;
}

.security-grid strong {
  font-size: 18px;
}

.security-grid span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.deliverables-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 36px;
  align-items: start;
}

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

.deliverable-list span {
  min-height: 58px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}

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

.materials-grid a {
  display: grid;
  min-height: 150px;
  gap: 12px;
  align-content: start;
  padding: 22px;
}

.materials-grid a:hover {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.materials-grid strong {
  font-size: 20px;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.value-list article {
  min-height: 158px;
  padding: 22px;
  background: #ffffff;
}

.value-list strong,
.value-list span {
  display: block;
}

.value-list strong {
  font-size: 19px;
}

.value-list span {
  margin-top: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-layout p {
  max-width: 760px;
  margin-top: 22px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-direct a,
.contact-direct span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #344541;
  font-size: 14px;
  font-weight: 800;
}

.contact-direct a {
  color: #ffffff;
  border-color: transparent;
  background: var(--green-dark);
}

.contact-panel {
  padding: 26px;
}

.contact-panel h3 {
  font-size: 22px;
}

.contact-panel .button {
  margin-top: 26px;
  border: 0;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form .form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form label span {
  color: #344541;
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  outline: 0;
}

.lead-form input,
.lead-form select {
  min-height: 44px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 108px;
  resize: vertical;
  padding: 12px;
  line-height: 1.55;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(15, 118, 110, 0.78);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.contact-panel hr {
  height: 1px;
  margin: 28px 0 24px;
  border: 0;
  background: var(--line);
}

.copy-status {
  min-height: 26px;
  margin: 10px 0 0;
  color: var(--green);
  font-size: 14px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--green-dark);
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.footer-layout strong,
.footer-layout span,
.footer-links a {
  display: block;
}

.footer-layout strong {
  color: #ffffff;
}

.footer-layout span {
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links a:hover {
  color: #ffffff;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(217, 229, 224, 0.68);
  border-radius: 10px;
  background: rgba(248, 251, 250, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-cta a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.floating-cta a:first-child {
  background: var(--amber);
}

.legal-page {
  background: var(--paper);
}

.legal-content {
  max-width: 920px;
  padding: clamp(56px, 8vw, 96px) 0;
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p {
  margin: 18px 0 0;
}

.legal-nav {
  display: flex;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
    flex: 0 0 42px;
    border-color: transparent;
    background: var(--green-dark);
  }

  .nav-toggle span {
    background: #ffffff;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero {
    min-height: min(690px, 74svh);
    background-position: center right 42%;
  }

  .hero-metrics,
  .evidence-grid,
  .pain-grid,
  .module-grid,
  .role-grid,
  .adoption-grid,
  .monitoring-layout,
  .monitoring-grid,
  .case-layout,
  .case-grid,
  .case-scenarios,
  .native-grid,
  .capability-grid,
  .rollout-strip,
  .landing-entry-grid,
  .reason-layout,
  .reason-grid,
  .roi-panel,
  .timeline,
  .materials-grid,
  .scenario-grid,
  .workflow-layout,
  .deliverables-layout,
  .contact-layout,
  .package-grid,
  .pricing-panel,
  .pricing-grid,
  .security-layout,
  .value-layout {
    grid-template-columns: 1fr;
  }

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

  .workflow-copy {
    position: static;
  }

  .monitoring-copy {
    position: static;
  }

  .case-copy {
    position: static;
  }

  .reason-copy {
    position: static;
  }

  .pain-card,
  .module-card,
  .role-grid article,
  .adoption-grid article,
  .monitoring-grid article,
  .case-grid article,
  .case-scenarios article,
  .native-grid article,
  .capability-grid article,
  .rollout-strip div,
  .landing-entry-grid a,
  .reason-grid article,
  .timeline article,
  .scenario-grid article,
  .package-card,
  .pricing-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  main,
  section {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    min-height: 64px;
    padding: 10px 14px;
    max-width: 100vw;
    overflow: visible;
    justify-content: flex-start;
    gap: 8px;
  }

  .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 25;
    display: inline-block;
    margin-left: auto;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 15px;
  }

  .mobile-header-call {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 0 14px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--green-dark);
    font-size: 14px;
    font-weight: 900;
  }

  .site-nav {
    top: 64px;
  }

  .hero {
    width: 100%;
    min-height: min(660px, 72svh);
    padding: 44px 20px;
    background-position: center right 34%;
    overflow: hidden;
  }

  .hero .eyebrow {
    max-width: 340px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  h1 {
    max-width: 340px;
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.12;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  h2 {
    max-width: calc(100vw - 32px);
    font-size: clamp(24px, 6.6vw, 28px);
    line-height: 1.18;
    line-break: anywhere;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .mobile-only {
    display: block;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .section-inner {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .section-heading p,
  .workflow-list span,
  .pain-card p,
  .scenario-grid p,
  .adoption-grid p,
  .monitoring-grid span,
  .case-grid p,
  .case-note span,
  .case-scenarios span,
  .native-grid p,
  .capability-grid p,
  .rollout-strip span,
  .reason-grid span,
  .roi-panel p,
  .roi-note,
  .role-grid p,
  .timeline p,
  .package-card li,
  .pricing-grid span,
  .security-grid span,
  .value-list span,
  .contact-layout p {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: anywhere;
  }

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

  .case-note {
    flex-direction: column;
  }

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

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

  .roi-formula {
    grid-template-columns: 1fr;
  }

  .roi-formula span {
    line-height: 1;
  }

  .workflow-list li {
    padding-left: 72px;
  }

  .contact-direct {
    flex-direction: column;
  }

  .contact-direct a,
  .contact-direct span {
    justify-content: center;
  }

  .footer-layout,
  .footer-links {
    justify-content: flex-start;
  }

  .floating-cta {
    display: none;
  }
}
