:root {
  --ink: #17342c;
  --ink-2: #25483e;
  --forest: #0e4336;
  --forest-dark: #082f27;
  --sage: #dce9df;
  --sage-light: #edf3ec;
  --paper: #f8f8f3;
  --white: #fffef9;
  --coral: #e16a45;
  --coral-dark: #bc4d2e;
  --citrus: #ddea73;
  --sky: #cce6e4;
  --muted: #63756f;
  --line: rgba(23, 52, 44, 0.15);
  --shadow: 0 24px 70px rgba(14, 67, 54, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 7%, rgba(221, 234, 115, 0.2), transparent 24rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-180%);
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(23, 52, 44, 0.1);
  background: rgba(248, 248, 243, 0.92);
  backdrop-filter: blur(16px);
}

.nav-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--citrus);
}

.brand-mark::before {
  width: 6px;
  height: 18px;
  left: 14px;
  top: 8px;
}

.brand-mark::after {
  width: 18px;
  height: 6px;
  left: 8px;
  top: 14px;
}

.nav-links {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-links > a,
.nav-menu > button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  color: var(--ink-2);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links > a:hover,
.nav-links > a[aria-current="page"],
.nav-menu > button:hover,
.nav-menu > button[aria-expanded="true"] {
  background: var(--sage-light);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid var(--forest);
  border-radius: 12px;
  color: var(--white);
  background: var(--forest);
  font-size: 15px;
  font-weight: 740;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.nav-cta:hover {
  background: var(--forest-dark);
  box-shadow: 0 12px 30px rgba(14, 67, 54, 0.18);
  transform: translateY(-1px);
}

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

.button.secondary:hover {
  background: var(--white);
}

.button.coral {
  color: #fff;
  border-color: var(--coral);
  background: var(--coral);
}

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

.nav-menu {
  position: relative;
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 350px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-menu-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu-panel a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  padding: 10px;
  border-radius: 11px;
}

.nav-menu-panel a:hover {
  background: var(--sage-light);
}

.nav-menu-panel span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--forest);
  background: var(--sage);
  font-weight: 800;
}

.nav-menu-panel strong,
.nav-menu-panel small {
  display: block;
}

.nav-menu-panel small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

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

.hero {
  padding: 78px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--coral);
}

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

h1,
h2,
h3 {
  font-family: "DM Sans", Inter, ui-sans-serif, sans-serif;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.5vw, 79px);
  line-height: 0.98;
  letter-spacing: -0.062em;
}

h1 em {
  color: var(--coral-dark);
  font-style: normal;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

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

.hero-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.operation-map {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  padding: 24px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(221, 234, 115, 0.23), transparent 17rem),
    var(--forest-dark);
  box-shadow: var(--shadow);
}

.operation-map::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -115px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255,255,255,0.035), 0 0 0 70px rgba(255,255,255,0.025);
}

.map-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(221,234,115,0.3);
  border-radius: 999px;
  color: var(--citrus);
  background: rgba(221,234,115,0.08);
  font-weight: 700;
}

.live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--citrus);
  box-shadow: 0 0 0 5px rgba(221,234,115,0.11);
}

.request-card,
.map-result {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}

.request-card small,
.map-result small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.request-card strong,
.map-result strong {
  display: block;
  font-size: 17px;
  line-height: 1.4;
}

.map-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.map-step {
  min-height: 86px;
  padding: 12px 9px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 13px;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.04);
  font-size: 11px;
  line-height: 1.35;
}

.map-step b {
  display: grid;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  color: var(--forest-dark);
  background: var(--citrus);
  font-size: 11px;
}

.map-result {
  border-color: rgba(221,234,115,0.3);
  background: rgba(221,234,115,0.1);
}

.map-result strong {
  color: var(--citrus);
}

.proof-strip {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.42);
}

.proof-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.proof-strip strong {
  font-size: 14px;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.proof-list span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 12px;
  font-weight: 650;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 70px 0;
}

.section.dark {
  color: var(--white);
  background: var(--forest-dark);
}

.section.sage {
  background: var(--sage-light);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.55fr);
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.section-head h2,
.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.section-head p {
  align-self: end;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.dark .section-head p {
  color: rgba(255,255,255,0.66);
}

.pain-grid,
.workflow-grid,
.principle-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pain-card,
.workflow-card,
.principle-card,
.team-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pain-card .number,
.process-step .number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 46px;
  place-items: center;
  border-radius: 12px;
  color: var(--forest);
  background: var(--citrus);
  font-size: 13px;
  font-weight: 800;
}

.pain-card h3,
.workflow-card h3,
.principle-card h3,
.process-step h3,
.team-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.pain-card p,
.workflow-card p,
.principle-card p,
.process-step p,
.team-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.operating-loop {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}

.loop-step {
  padding: 23px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}

.loop-step span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 10px;
  color: var(--forest-dark);
  background: var(--citrus);
  font-size: 12px;
  font-weight: 800;
}

.loop-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.loop-step p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.5;
}

.loop-arrow {
  align-self: center;
  color: var(--citrus);
  font-size: 20px;
}

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

.workflow-card {
  min-height: 260px;
  overflow: hidden;
}

.workflow-card::after {
  content: attr(data-index);
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(23,52,44,0.08);
  font-size: 72px;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.workflow-card .tag {
  display: inline-flex;
  margin-bottom: 55px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 760;
}

.workflow-card a:hover,
.text-link:hover {
  color: var(--coral-dark);
}

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

.process-step {
  padding: 30px 26px 20px 0;
  border-right: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 26px;
}

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

.process-step .number {
  margin-bottom: 34px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.trust-layout h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,0.58);
}

.trust-item > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
  color: var(--forest);
  background: var(--sage);
  font-weight: 850;
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.fit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 70px;
  padding: 54px;
  border-radius: 28px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.fit-card h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.fit-card p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.6;
}

.fit-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.fit-list div {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
  font-size: 14px;
}

.cta-band {
  padding: 88px 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: center;
  padding: 54px;
  border-radius: 28px;
  background: var(--citrus);
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  top: -100px;
  border: 1px solid rgba(23,52,44,0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(23,52,44,0.04), 0 0 0 70px rgba(23,52,44,0.03);
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 700px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.2vw, 51px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.cta-card p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(23,52,44,0.72);
  font-size: 17px;
  line-height: 1.55;
}

.page-hero {
  padding: 82px 0 68px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.page-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.detail-band {
  padding: 55px 0;
  color: var(--white);
  background: var(--forest-dark);
}

.detail-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.detail-band article {
  padding: 21px;
  border-left: 2px solid var(--citrus);
}

.detail-band strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
}

.detail-band p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 80px;
}

.content-nav {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 7px;
}

.content-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.content-nav a:hover {
  color: var(--ink);
  background: var(--sage-light);
}

.content-main h2 {
  margin-bottom: 16px;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.content-main > section {
  padding-bottom: 66px;
  scroll-margin-top: 110px;
}

.content-main > section + section {
  padding-top: 66px;
  border-top: 1px solid var(--line);
}

.content-main p,
.content-main li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.content-main ul {
  padding-left: 20px;
}

.scenario {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.scenario-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.scenario-head span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.scenario-flow div {
  padding: 13px;
  border-radius: 11px;
  color: var(--ink-2);
  background: var(--sage-light);
  font-size: 13px;
  line-height: 1.45;
}

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

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

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

.faq-list details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.contact-panel h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.contact-panel > p {
  margin-bottom: 25px;
  color: var(--muted);
  line-height: 1.6;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

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

.field label {
  font-size: 13px;
  font-weight: 720;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(14,67,54,0.1);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

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

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.form-status.success {
  color: var(--forest);
}

.form-status.error {
  color: #a63321;
}

[data-contact-form] button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,47,39,0.72);
  backdrop-filter: blur(7px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 35px 100px rgba(0,0,0,0.25);
}

.modal-card h2 {
  margin-bottom: 8px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.modal-card > p {
  color: var(--muted);
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.5fr);
  gap: 50px;
  padding-bottom: 48px;
}

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

.footer-intro p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

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

.footer-column a {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--citrus);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(14,67,54,0.1);
    white-space: normal;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links > a,
  .nav-menu > button {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .nav-menu-panel {
    position: static;
    display: none;
    width: 100%;
    margin: 5px 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu-panel.open {
    display: block;
    transform: none;
  }
}

@media (max-width: 980px) {
  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(14,67,54,0.1);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links > a,
  .nav-menu > button {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .nav-menu-panel {
    position: static;
    width: 100%;
    margin: 5px 0;
    box-shadow: none;
    opacity: 1;
    display: none;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu-panel.open {
    display: block;
    transform: none;
  }

  .hero-grid,
  .page-hero-grid,
  .section-head,
  .trust-layout,
  .fit-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .section-head {
    gap: 20px;
  }

  .pain-grid,
  .principle-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .operating-loop {
    grid-template-columns: 1fr 1fr;
  }

  .loop-arrow {
    display: none;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .content-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 680px) {
  .wrap,
  .nav-inner {
    width: min(calc(100% - 28px), var(--max));
  }

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

  .nav-links {
    top: 68px;
  }

  .hero,
  .page-hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

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

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

  .operation-map {
    min-height: 0;
    padding: 18px;
  }

  .map-flow {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip .wrap,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-list {
    justify-content: flex-start;
  }

  .section {
    padding: 72px 0;
  }

  .pain-grid,
  .workflow-grid,
  .principle-grid,
  .team-grid,
  .process-grid,
  .detail-band-grid,
  .scenario-flow,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step + .process-step {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .fit-card,
  .cta-card {
    padding: 32px 24px;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .content-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .content-nav a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-card {
    width: 100%;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
  }
}
