:root {
  --ink: #18322b;
  --muted: #5d6f68;
  --line: #dbe3de;
  --paper: #f6f4ec;
  --white: #ffffff;
  --green: #1f714b;
  --green-dark: #103f2e;
  --lime: #bfd46a;
  --clay: #b9643e;
  --blue: #2c6f8e;
  --shadow: 0 22px 60px rgba(18, 42, 33, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(16, 63, 46, 0.1);
  background: rgba(246, 244, 236, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a,
.header-cta,
.button {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--green-dark);
}

.header-cta,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.header-cta,
.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(31, 113, 75, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: clamp(92px, 12vw, 144px) clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
  background: #10271f;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 31, 24, 0.92), rgba(12, 31, 24, 0.58) 48%, rgba(12, 31, 24, 0.18)),
    linear-gradient(0deg, rgba(12, 31, 24, 0.72), rgba(12, 31, 24, 0.04) 50%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(820px, 100%);
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(820px, 100%);
  margin-top: 92px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-panel div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.hero-panel span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--white);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) repeat(2, minmax(240px, 1fr));
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.intro p,
.docs p,
.contact-copy p,
.media-copy p,
.comparison p,
.seo-copy p,
.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.seo-copy {
  background: #f0eee5;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
  margin-top: 34px;
}

.benefits {
  background: #e8efe8;
}

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

.benefit-grid article {
  min-height: 290px;
  padding: 26px;
  border: 1px solid rgba(23, 48, 40, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(18, 42, 33, 0.06);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(191, 212, 106, 0.35);
  color: var(--green-dark);
  font-weight: 850;
}

.benefit-grid h3 {
  margin: 36px 0 12px;
  font-size: 1.28rem;
  line-height: 1.14;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.process-layout,
.media-layout,
.comparison {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-top: 44px;
}

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

.steps li {
  position: relative;
  padding: 22px 22px 22px 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.steps li::before {
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  content: counter(step);
  counter-increment: step;
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 6px;
  color: var(--muted);
}

.equipment-shot,
.media-layout video,
.comparison img,
.gallery figure {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #d7ddd8;
}

.equipment-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.benefit-list {
  background: #f0eee5;
}

.benefit-list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  min-height: 118px;
  padding: 20px 20px 20px 48px;
  border: 1px solid rgba(23, 48, 40, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 720;
  position: relative;
}

.benefit-list li::before {
  position: absolute;
  left: 18px;
  top: 23px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  box-shadow: inset 0 0 0 4px rgba(16, 63, 46, 0.16);
}

.media-band {
  background: var(--green-dark);
  color: var(--white);
}

.media-band .section-heading h2,
.media-copy h3 {
  color: var(--white);
}

.media-layout video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-copy {
  display: grid;
  gap: 18px;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: #e8efe8;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery figcaption {
  padding: 16px 18px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 760;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.data-grid article {
  min-height: 200px;
  padding: 28px;
  background: #fbfaf6;
}

.data-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1;
}

.data-grid span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

.comparison {
  align-items: start;
}

.comparison h3,
.media-copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}

.comparison div {
  display: grid;
  gap: 18px;
}

.note {
  padding-left: 16px;
  border-left: 4px solid var(--clay);
}

.docs {
  background: #e8efe8;
}

.faq {
  border-top: 1px solid var(--line);
}

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

.faq article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.faq h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 1.16rem;
  line-height: 1.18;
}

.docs-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.doc-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(23, 48, 40, 0.12);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(18, 42, 33, 0.06);
}

.doc-card span {
  width: fit-content;
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(44, 111, 142, 0.12);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.doc-card strong {
  font-size: 1.16rem;
  line-height: 1.18;
}

.doc-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 560px);
  gap: clamp(28px, 5vw, 80px);
  background: #dfe8e1;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-direct a {
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 780;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(23, 48, 40, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 720;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(191, 212, 106, 0.42);
  border-color: var(--green);
}

.hidden {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #10271f;
  color: rgba(255, 255, 255, 0.76);
}

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

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .intro,
  .process-layout,
  .media-layout,
  .comparison,
  .contact,
  .text-columns {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .data-grid,
  .docs-layout,
  .benefit-list ul,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 720px;
    padding-top: 110px;
  }

  .hero-panel,
  .benefit-grid,
  .data-grid,
  .docs-layout,
  .gallery,
  .benefit-list ul,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 56px;
  }

  .benefit-grid article,
  .data-grid article,
  .doc-card {
    min-height: auto;
  }

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