:root {
  --ink: #172127;
  --muted: #5d6a70;
  --paper: #f7f8f6;
  --white: #ffffff;
  --teal: #007b3a;
  --teal-dark: #005026;
  --teal-bright: #00c85f;
  --amber: #e7a845;
  --line: #dce3e1;
  --charcoal: #10191c;
  --radius: 7px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(12, 21, 24, .76);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.brand-logo {
  width: 42px;
  height: 42px;
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  color: var(--white);
  background: linear-gradient(135deg, #00451f 0%, #007b3a 58%, #00c85f 100%);
  border-radius: 50%;
  font: 800 19px "Manrope", Arial, sans-serif;
  box-shadow: inset 0 0 0 7px var(--white), inset 0 0 0 17px #006b32;
}
.brand-logo::before,
.brand-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 14px;
  background: #006b32;
  border-radius: 999px;
  transform: translateY(-50%);
}
.brand-logo::before { left: 6px; }
.brand-logo::after { right: 6px; }
.brand-logo span {
  position: relative;
  z-index: 1;
}
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.site-nav a:not(.nav-cta):hover { color: #9ce1d8; }
.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 6px;
}
.nav-cta:hover { background: var(--white); color: var(--charcoal); }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  color: inherit;
  background: transparent;
  border: 0;
}
.menu-button svg { width: 24px; height: 24px; }

.hero {
  position: relative;
  min-height: min(820px, 92vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7,17,20,.95) 0%, rgba(7,17,20,.82) 38%, rgba(7,17,20,.26) 72%, rgba(7,17,20,.17) 100%),
    linear-gradient(0deg, rgba(7,17,20,.48), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 56px));
  margin-left: max(28px, calc((100vw - var(--max)) / 2));
  padding: 118px 0 80px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #a8e1da;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--teal); }
h1, h2, h3 { margin-top: 0; font-family: "Manrope", sans-serif; letter-spacing: 0; line-height: 1.08; }
h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(48px, 6.2vw, 80px); }
h2 { margin-bottom: 18px; font-size: clamp(34px, 4vw, 52px); }
h3 { margin-bottom: 9px; font-size: 21px; }
.hero-copy { max-width: 650px; margin: 0 0 30px; color: #dce5e3; font-size: 19px; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}
.button svg, .text-link svg { width: 18px; height: 18px; }
.button-primary { color: var(--white); background: var(--teal); }
.button-primary:hover { background: #009447; }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.text-link:hover { color: #a8e1da; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: #e5ecea;
  font-size: 13px;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 16px; color: #7ed5ca; }

.section-inner { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }
.problem-band { padding: 78px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.split-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: start; }
.split-intro h2 { max-width: 650px; margin-bottom: 0; }
.intro-copy { padding-top: 32px; color: var(--muted); font-size: 17px; }
.intro-copy p:first-child { margin-top: 0; }

.solutions, .process { padding-top: 110px; padding-bottom: 110px; }
.section-heading { max-width: 790px; margin-bottom: 52px; }
.section-heading.compact { margin-bottom: 36px; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.solution-item {
  position: relative;
  min-height: 280px;
  padding: 30px 22px;
  border-right: 1px solid var(--line);
}
.solution-item:last-child { border-right: 0; }
.solution-item > svg { width: 31px; height: 31px; margin: 36px 0 30px; color: var(--teal); }
.solution-item p { margin: 0; color: var(--muted); font-size: 14px; }
.step-number { color: #84918f; font: 700 12px "Manrope", sans-serif; }

.outcomes { padding: 105px 0; color: var(--white); background: var(--charcoal); }
.outcomes-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.outcomes-copy p:not(.eyebrow) { max-width: 510px; color: #b9c5c3; font-size: 17px; }
.outcome-list { border-top: 1px solid #354144; }
.outcome-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid #354144;
  color: #cbd4d2;
}
.outcome-list svg { color: #75cdc3; }
.outcome-list strong { color: var(--white); }

.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.process-list > li > span { color: var(--teal); font: 700 20px "Manrope", sans-serif; }
.process-list h3 { margin-bottom: 5px; }
.process-list p { margin: 0; color: var(--muted); }

.industries { padding: 105px 0; color: var(--white); background: #15353a; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.18); }
.industry-grid div {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 28px;
  background: #15353a;
  font: 700 17px "Manrope", sans-serif;
}
.industry-grid svg { color: #79d4c9; }

.contact { padding: 110px 0; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 115px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.contact-details { display: grid; gap: 12px; margin-top: 28px; color: var(--teal-dark); font-weight: 600; }
.contact-details a, .contact-details span { display: flex; align-items: center; gap: 10px; }
.contact-details svg { width: 18px; }
.lead-form { display: grid; gap: 17px; padding: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.lead-form label { display: grid; gap: 7px; color: #354044; font-size: 13px; font-weight: 700; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5d2;
  border-radius: 5px;
  outline: none;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,123,58,.14); }
.consent { grid-template-columns: 18px 1fr !important; align-items: start; font-weight: 500 !important; }
.consent input { width: 17px; height: 17px; margin: 2px 0 0; padding: 0; accent-color: var(--teal); }
.submit-button { width: 100%; }
.form-status { min-height: 22px; margin: 0; color: var(--teal-dark); font-size: 13px; font-weight: 600; }
.form-status.error { color: #a3372d; }

footer { padding: 42px 0; color: #b8c2c0; background: #0b1315; }
.footer-inner {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-brand { color: var(--white); }
.footer-inner > p { margin: 0; text-align: center; font-size: 13px; }
.footer-links { display: flex; gap: 20px; font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.copyright { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid #293235; }

.privacy-page { min-height: 100vh; padding: 110px 0 70px; background: var(--white); }
.privacy-content { width: min(780px, calc(100% - 40px)); margin: 0 auto; }
.privacy-content h1 { color: var(--ink); font-size: 48px; }
.privacy-content h2 { margin-top: 34px; font-size: 26px; }
.privacy-content p, .privacy-content li { color: var(--muted); }

@media (max-width: 900px) {
  .menu-button { display: grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 28px 28px;
    color: var(--white);
    background: rgba(12,21,24,.98);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .site-nav .nav-cta { margin-top: 12px; padding: 12px 14px; text-align: center; border: 1px solid rgba(255,255,255,.5); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-item { border-bottom: 1px solid var(--line); }
  .solution-item:nth-child(2n) { border-right: 0; }
  .solution-item:last-child { grid-column: 1 / -1; }
  .split-intro, .outcomes-layout, .contact-layout { grid-template-columns: 1fr; gap: 46px; }
  .contact-copy { position: static; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; }
  .footer-inner > p { text-align: left; }
}

@media (max-width: 600px) {
  .site-header { height: 64px; padding: 0 20px; }
  .site-nav { top: 64px; }
  .hero { min-height: 790px; align-items: flex-end; }
  .hero-image { object-position: 64% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(7,17,20,.98) 0%, rgba(7,17,20,.8) 54%, rgba(7,17,20,.23) 100%); }
  .hero-content { width: calc(100% - 40px); margin: 0 20px; padding: 105px 0 42px; }
  h1 { font-size: 46px; }
  h2 { font-size: 34px; }
  .hero-copy { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button { width: 100%; }
  .text-link { justify-content: center; }
  .hero-proof { gap: 11px; margin-top: 30px; }
  .section-inner, .footer-inner { width: calc(100% - 40px); }
  .problem-band, .outcomes, .industries, .contact { padding: 76px 0; }
  .solutions, .process { padding-top: 78px; padding-bottom: 78px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-item, .solution-item:nth-child(2n) { min-height: auto; border-right: 0; }
  .solution-item:last-child { grid-column: auto; }
  .solution-item > svg { margin: 22px 0 18px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-grid div { min-height: 88px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 22px; }
  .process-list li { grid-template-columns: 44px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
