:root {
  --ink: #17332d;
  --muted: #52655f;
  --line: #dbe7df;
  --soft: #f4faf6;
  --panel: #ffffff;
  --green: #2f9e6f;
  --green-dark: #1f7c59;
  --blue: #1f6f8b;
  --amber: #d99a32;
  --clay: #8a6d52;
  --shadow: 0 18px 50px rgba(23, 51, 45, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.15rem;
}

li + li {
  margin-top: 0.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 231, 223, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

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

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

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 188px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #344b45;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  padding: 0.4rem 0;
}

.nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(47, 158, 111, 0.25);
}

.nav .nav-cta:hover {
  color: #fff;
  background: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef7f1;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 36%, rgba(255,255,255,0.18) 72%, rgba(255,255,255,0) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 0 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

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

h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 850;
}

.lead {
  max-width: 660px;
  margin-top: 1.25rem;
  color: #344b45;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(47, 158, 111, 0.24);
}

.button.primary:hover {
  color: #fff;
  background: var(--green-dark);
}

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

.button.secondary:hover {
  border-color: var(--green);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 0.85rem;
  width: min(620px, 100%);
  margin-top: 2.2rem;
}

.metric {
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(219, 231, 223, 0.9);
  border-radius: 8px;
  background: rgba(255,255,255,0.88);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.2;
}

.metric span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--soft);
}

.section.slim {
  padding: 56px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.3rem;
}

.section-head p {
  max-width: 610px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.card-body {
  padding: 1.25rem;
}

.card p,
.feature p,
.split p,
.note {
  color: var(--muted);
}

.card .tag {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--green-dark);
  font-weight: 850;
}

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

.media-note {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.feature {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #e8f5ee;
  color: var(--green-dark);
  font-weight: 900;
}

.page-hero {
  padding: 74px 0 64px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f4faf6 0%, #fff 100%);
}

.page-hero .lead {
  max-width: 780px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--green-dark);
  font-weight: 750;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.spec-table th,
.spec-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 30%;
  color: var(--ink);
  background: #f7fbf8;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 3.2rem;
}

.process .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1.15rem;
  left: 1.25rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 850;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq details + details {
  margin-top: 0.75rem;
}

.faq summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 850;
}

.faq details p {
  padding: 0 1.15rem 1rem;
  color: var(--muted);
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rfq-form label {
  display: grid;
  gap: 0.35rem;
  color: #344b45;
  font-size: 0.92rem;
  font-weight: 800;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #cbdcd3;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.rfq-form textarea {
  min-height: 140px;
  resize: vertical;
}

.rfq-form .full {
  grid-column: 1 / -1;
}

.cta-band {
  background: var(--ink);
  color: #fff;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  opacity: 0.82;
}

.site-footer {
  padding: 54px 0 34px;
  color: #d9e6df;
  background: #122823;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 0.6fr));
  gap: 2rem;
}

.footer-logo {
  width: 182px;
  padding: 0.45rem;
  border-radius: 8px;
  background: #fff;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.site-footer ul {
  margin-top: 0.9rem;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  color: #d9e6df;
}

.site-footer a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 1rem;
  max-width: 360px;
  color: #b6c8bf;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #b6c8bf;
  font-size: 0.9rem;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.75rem;
  }

  .nav .nav-cta {
    margin-top: 0.4rem;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0.26) 100%);
  }

  .hero-image img {
    object-position: center bottom;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 70px;
  }

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

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

@media (max-width: 680px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 158px;
  }

  .hero-proof,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 0.8rem;
  }

  .button {
    width: 100%;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-bottom: 0;
  }
}
