:root {
  --bg: #ffffff;
  --ink: #0d1b16;
  --muted: #46615a;
  --soft: #f7fbf9;
  --line: #dfe9e5;
  --green: #033f32;
  --green-2: #078932;
  --green-soft: #eafbf5;
  --shadow: 0 18px 54px rgba(3, 63, 50, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site {
  min-height: 100vh;
  background: #ffffff;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  width: min(1440px, calc(100% - 32px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(222, 232, 228, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

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

.brand img {
  display: block;
  width: clamp(220px, 25vw, 350px);
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #18332b;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.nav a:hover {
  border-color: rgba(7, 137, 50, 0.2);
  background: rgba(239, 253, 246, 0.84);
  color: #06664c;
}

.section {
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
}

.hero {
  display: flex;
  min-height: clamp(620px, 78vh, 780px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  width: min(960px, calc(100% - 32px));
}

.kicker {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-inline: auto;
  font-size: clamp(38px, 5.1vw, 66px);
  font-weight: 900;
  line-height: 1.04;
}

h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 900;
  line-height: 1.08;
}

h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.08;
}

.hero p:not(.kicker),
.lead {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  text-decoration: none;
}

.button-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(3, 63, 50, 0.16);
}

.button-primary:hover {
  background: #06664c;
}

.button-secondary {
  border-color: rgba(7, 137, 50, 0.24);
  background: #ffffff;
  color: var(--green);
}

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

.snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1260px, calc(100% - 32px));
  margin: -54px auto 0;
  overflow: hidden;
  border: 1px solid rgba(222, 232, 228, 0.92);
  border-radius: 8px;
  background: rgba(222, 232, 228, 0.92);
  box-shadow: 0 24px 80px rgba(3, 63, 50, 0.05);
}

.snapshot div {
  min-width: 0;
  background: #ffffff;
  padding: clamp(18px, 3vw, 28px);
}

.snapshot span {
  display: block;
  margin: 0 0 6px;
  color: #61766e;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot strong {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.split,
.process,
.company,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

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

.copy-stack p,
.process-copy,
.contact-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
}

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

.card,
.step,
.company-table,
.contact-form {
  border: 1px solid rgba(222, 232, 228, 0.96);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.card {
  min-height: 300px;
  padding: clamp(22px, 3vw, 34px);
}

.card .number {
  margin: 0 0 28px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.process {
  border-top: 1px solid rgba(222, 232, 228, 0.92);
  border-bottom: 1px solid rgba(222, 232, 228, 0.92);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 16px;
  min-height: 96px;
  padding: 20px;
}

.step span {
  grid-row: 1 / span 2;
  color: var(--green-2);
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
}

.step strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.step p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.business-row {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(222, 232, 228, 0.96);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  padding: 22px 24px;
  text-decoration: none;
}

.business-row:hover {
  border-color: rgba(7, 137, 50, 0.3);
  background: #f9fffc;
}

.business-row span {
  display: grid;
  gap: 4px;
}

.business-row strong {
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 900;
}

.business-row small,
.business-row em {
  color: #61766e;
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
}

.company {
  border-top: 1px solid rgba(222, 232, 228, 0.92);
}

.company-table {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
}

.company-table div {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  border-bottom: 1px solid rgba(222, 232, 228, 0.92);
}

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

.company-table dt,
.company-table dd {
  margin: 0;
  padding: 16px 18px;
}

.company-table dt {
  background: #f7fffb;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-table dd {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.contact-band {
  display: flex;
  width: min(1260px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #033f32 0%, #067047 58%, #02443f 100%);
  padding: clamp(32px, 6vw, 70px);
}

.contact-band .kicker,
.contact-band h2 {
  color: #ffffff;
}

.contact-band .button {
  flex-shrink: 0;
  background: #ffffff;
  color: var(--green);
  box-shadow: none;
}

.contact-page {
  min-height: calc(100vh - 156px);
  padding-top: clamp(58px, 8vw, 108px);
}

.contact-page h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.04;
}

.contact-page .contact-copy {
  max-width: 560px;
  margin: 20px 0 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: #376155;
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(186, 205, 197, 0.9);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(7, 137, 50, 0.14);
}

select {
  min-height: 46px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  padding: 12px 18px;
  box-shadow: 0 14px 30px rgba(3, 63, 50, 0.14);
}

button:hover {
  background: #06664c;
}

button:disabled {
  cursor: not-allowed;
  background: #9ab2aa;
}

.form-footer p,
.form-note {
  margin: 0;
  color: #61766e;
  font-size: 13px;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin: 0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.form-status.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.footer {
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(222, 232, 228, 0.92);
  color: #61766e;
  padding: 22px 0 32px;
}

.footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    position: static;
    padding-bottom: 14px;
  }

  .nav {
    justify-content: flex-start;
  }

  .snapshot,
  .split,
  .process,
  .company,
  .contact-layout,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .snapshot {
    margin-top: -28px;
  }

  .contact-band,
  .business-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topbar {
    width: min(100% - 24px, 1440px);
    min-height: auto;
    padding-top: 16px;
  }

  .brand img {
    width: min(270px, 100%);
  }

  .nav {
    width: 100%;
  }

  .nav a {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
    min-width: 120px;
  }

  .hero {
    min-height: 650px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.02;
  }

  .actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  button {
    width: min(100%, 300px);
  }

  .field-grid,
  .step,
  .company-table div {
    grid-template-columns: 1fr;
  }

  .step p {
    grid-column: 1;
  }
}
