*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g: #2e6417;
  --gd: #1e4310;
  --gl: #3a7a1d;
  --gp: #eaf3de;
  --gm: #c4d9b8;
  --w: #ffffff;
  --ow: #f7f9f5;
  --tx: #1a1a1a;
  --mu: #5a6e52;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', serif;
  background: var(--w);
  color: var(--tx);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5vw;
  background: var(--w);
  border-bottom: 1px solid var(--gm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span {
  font-family: 'Source Serif 4', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mu);
  margin-left: 4px;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--mu);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--g); }
.nav-cta {
  background: var(--g);
  color: var(--w);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Source Serif 4', serif;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gd); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--tx); margin: 5px 0; transition: all 0.3s; }

/* HERO */
.hero {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 92vh;
  min-height: 520px;
  max-height: 800px;
  overflow: hidden;
  background: #0a1a06;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,26,6,0.88) 40%, rgba(10,26,6,0.2));
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw;
  max-width: 680px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Source Serif 4', serif;
}
.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ec850;
  flex-shrink: 0;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 12px;
}
.hero h1 em { color: #7ec850; font-style: italic; }
.hero-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-solid {
  background: var(--g);
  color: #fff;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Source Serif 4', serif;
  transition: background 0.2s;
  display: inline-block;
}
.btn-solid:hover { background: var(--gl); }
.btn-ghost {
  color: #fff;
  padding: 14px 22px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* MARQUEE */
.mq {
  background: var(--g);
  padding: 11px 0;
  overflow: hidden;
}
.mq-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.mq-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 22px;
  font-family: 'Source Serif 4', serif;
}
.mq-track .dot { color: rgba(255,255,255,0.3); padding: 0; font-size: 7px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* PROOF BAR */
.proof {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: var(--ow);
  border-bottom: 1px solid var(--gm);
}
.pi {
  padding: 24px 16px;
  text-align: center;
  flex: 1;
  min-width: 100px;
  border-right: 1px solid var(--gm);
}
.pi:last-child { border-right: none; }
.pi-n {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--g);
  display: block;
  margin-bottom: 2px;
  line-height: 1;
}
.pi-l {
  font-size: 11px;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* SECTION */
section {
  padding: 72px 5vw;
  max-width: 1200px;
  margin: 0 auto;
}
.sec-alt { background: var(--ow); }
.sec-green { background: var(--g); color: #fff; }
.slabel {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mu);
  margin-bottom: 10px;
}
.slabel-w { color: rgba(255,255,255,0.6); }
.sh {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--tx);
  margin-bottom: 12px;
}
.sh em { font-style: italic; color: var(--gl); }
.sh-w { color: #fff; }
.sh-w em { color: #7ec850; }
.ssub {
  font-size: 15px;
  color: var(--mu);
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.8;
}
.ssub-w { color: rgba(255,255,255,0.72); }

/* SERVICES */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.srv-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s;
}
.srv-card:hover { transform: scale(1.02); }
.srv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.srv-card:hover img { transform: scale(1.08); }
.srv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%);
}
.srv-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
}
.srv-card-num {
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  display: block;
  margin-bottom: 8px;
}
.srv-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.srv-card p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: 0.9;
}
.srv-card-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding:  24px 5vw 72px;
}
.why-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
}
.why-text { max-width: 520px; }
.pts {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pt {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--mu);
  line-height: 1.6;
}
.pt-check {
  color: var(--g);
  font-weight: 600;
  flex-shrink: 0;
}

/* LOGOS BAR */
.logos-bar {
  background: var(--ow);
  padding: 32px 5vw 72px;
  border-top: 1px solid var(--gm);
  margin-bottom: 0;
}
.logos-label {
  display: block;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mu);
  margin-bottom: 18px;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.logo-item {
  opacity: 0.6;
  transition: opacity 0.2s;
}
.logo-item:hover { opacity: 1; }
.logo-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx);
  padding: 8px 16px;
  border: 1px solid var(--gm);
  background: var(--w);
}

/* PROCESS */
.proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
}
.proc-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.proc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proc-steps {
  padding: 64px 5vw;
  background: var(--g);
  color: #fff;
}
.proc-header { margin-bottom: 36px; }
.ps {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.ps:last-child { border-bottom: none; }
.psn {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: #7ec850;
  flex-shrink: 0;
  line-height: 1;
}
.ps h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.ps p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

/* RESULTS CAROUSEL */
.res-overflow {
  overflow: hidden;
  margin-top: 32px;
  margin-bottom: 24px;
}
.res-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.rc {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--w);
  border: 1px solid var(--gm);
  padding: 28px;
}
.rs {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--g);
  margin-bottom: 12px;
}
.ri {
  font-size: 13px;
  color: var(--mu);
  margin-bottom: 16px;
}
.rm {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--g);
  line-height: 1;
  margin-bottom: 4px;
}
.rml {
  font-size: 14px;
  color: var(--mu);
  margin-bottom: 14px;
}
.rd {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mu);
}
.res-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.rn {
  background: var(--g);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.rn:hover { background: var(--gd); }

/* TESTIMONIALS */
.tg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.tc {
  background: var(--w);
  border: 1px solid var(--gm);
  padding: 28px;
  position: relative;
}
.tq {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  color: var(--gp);
  line-height: 0.6;
  margin-bottom: 12px;
}
.tt {
  font-size: 14px;
  line-height: 1.8;
  color: var(--tx);
  margin-bottom: 20px;
}
.tc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* CTA SECTION */
.cta-section {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 5vw;
}
.cta-bg-color {
  position: absolute;
  inset: 0;
  background: var(--g);
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #fff;
}
.cta-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.cta-inner h2 em { color: #7ec850; font-style: italic; }
.cta-inner p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-w {
  background: #fff;
  color: var(--g);
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.cta-w:hover { background: rgba(255,255,255,0.9); }
.cta-gh {
  background: transparent;
  color: #fff;
  padding: 14px 22px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.cta-gh:hover { background: rgba(255,255,255,0.1); }

/* FOOTER */
footer {
  background: var(--gd);
  color: rgba(255,255,255,0.7);
  padding: 48px 5vw 28px;
  text-align: center;
}
.ft-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}
.ft-logo span {
  font-family: 'Source Serif 4', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
  vertical-align: middle;
}
.ft-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.ft-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.ft-links a:hover { color: #fff; }
.ft-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* MOBILE */
@media (max-width: 768px) {
  nav {
    padding: 14px 5vw;
  }

  .nav-logo {
    font-size: 20px;
  }

  .nav-logo span {
    font-size: 9px;
  }

  .nav-cta {
    padding: 9px 16px;
    font-size: 13px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--w);
    flex-direction: column;
    padding: 20px 5vw;
    gap: 16px;
    border-bottom: 1px solid var(--gm);
    display: none;
  }

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

  .nav-mobile-toggle {
    display: block;
  }

  .hero {
    height: 62vh;
    min-height: 420px;
    max-height: 560px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 5vw;
    justify-content: center;
  }

  .hero-pill {
    font-size: 10px;
    margin-bottom: 14px;
  }

  .hero h1 {
   font-size: clamp(34px, 9.2vw, 44px);
   line-height: 1.02;
   margin-bottom: 10px;
}

  .hero h1 em {
    font-size: 0.9em;
  }

  .hero-tagline {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 92%;
  }

  .hero-btns {
    gap: 10px;
  }

  .btn-solid,
  .btn-ghost {
    padding: 12px 18px;
    font-size: 13px;
  }

  .mq {
    padding: 9px 0;
  }

  .mq-track span {
    font-size: 10px;
    padding: 0 18px;
  }

.proof {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.proof .pi {
  flex: none !important;
  min-width: 0;
  width: 100%;
  padding: 22px 8px;
  border-right: 1px solid var(--gm);
  border-bottom: 1px solid var(--gm);
}

.proof .pi:nth-child(2),
.proof .pi:nth-child(4) {
  border-right: none;
}

.proof .pi:nth-child(3),
.proof .pi:nth-child(4) {
  border-bottom: none;
}

.proof .pi-n {
  font-size: 28px;
}

.proof .pi-l {
  font-size: 10px;
  line-height: 1.4;
}
  section {
    padding: 44px 5vw;
  }

  .sh {
    font-size: clamp(34px, 10vw, 44px);
    margin-bottom: 10px;
  }

  .ssub {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .srv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .srv-card {
    aspect-ratio: 1 / 1.05;
  }

  .srv-card-content {
    padding: 22px;
  }

  .srv-card h3 {
    font-size: 25px;
  }

  .srv-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 5vw;
  }

  .why-img {
    max-height: 260px;
    height: 260px;
  }

  .why-text {
    max-width: 100%;
  }

  .pts {
    margin-top: 18px;
    gap: 8px;
  }

  .pt {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .logos-bar {
    padding: 28px 5vw 44px;
  }

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

  .proc-img {
    min-height: 260px;
  }

  .proc-steps {
    padding: 44px 5vw;
  }

  .proc-header {
    margin-bottom: 24px;
  }

  .ps {
    gap: 16px;
    padding: 20px 0;
  }

  .psn {
    font-size: 26px;
  }

  .ps h4 {
    font-size: 20px;
  }

  .ps p {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .res-overflow {
    margin-top: 26px;
    margin-bottom: 20px;
  }

  .rc {
    flex: 0 0 100%;
    padding: 24px;
  }

  .rm {
    font-size: 44px;
  }

  .tg {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .tc {
    padding: 24px;
  }

  .tq {
    font-size: 54px;
    margin-bottom: 8px;
  }

  .tt {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .cta-section {
    min-height: 340px;
    padding: 52px 5vw;
  }

  .cta-inner h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .cta-inner p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .cta-w,
  .cta-gh {
    padding: 12px 18px;
    font-size: 13px;
  }

  footer {
    padding: 40px 5vw 24px;
  }

/
/* MOBILE STATS FIX - 2x2 GRID */
@media (max-width: 768px) {
  .proof {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    flex-direction: unset !important;
    width: 100% !important;
  }

  .proof .pi {
    flex: unset !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 22px 8px !important;
    border-right: 1px solid var(--gm) !important;
    border-bottom: 1px solid var(--gm) !important;
  }

  .proof .pi:nth-child(2),
  .proof .pi:nth-child(4) {
    border-right: none !important;
  }

  .proof .pi:nth-child(3),
  .proof .pi:nth-child(4) {
    border-bottom: none !important;
  }

  .proof .pi-n {
    font-size: 28px !important;
  }

  .proof .pi-l {
    font-size: 10px !important;
    line-height: 1.4 !important;
  }
}