/* ── reset & base ── */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #314039;
  background: #f7f8f5;
}
h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── layout ── */
.wrap {
  max-width: 1280px;
  margin: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── topbar ── */
.topbar {
  background: #103b29;
  color: #cbd8d0;
  font-size: 12px;
  padding: 10px 0;
}
.topbar .wrap {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
.topright {
  margin-left: auto;
}
.topright b {
  color: #c8e66d;
}
@media (max-width: 800px) {
  .topbar {
    display: block;
  }

  #nav {
    top: 37px;
  }

  .links,
  .actions {
    display: none;
  }

  #menu {
    display: block;
  }
}

/* ── header / nav ── */
#nav {
  position: fixed;
  z-index: 50;
  top: 37px;
  left: 0;
  right: 0;
  padding-top: 8px;
  transition: box-shadow 0.25s;
}
#nav.shadow {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.navbox {
  height: 72px;
  margin: 0 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 17px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
}
@media (max-width: 520px) {
  .navbox {
    margin: 0 12px;
    padding: 0 14px;
    height: 64px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #123d2b;
  flex-shrink: 0;
}
.brand i {
  font-style: normal;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #177245;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 21px;
}
.brand b {
  display: block;
  font-size: 17px;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #779b39;
  font-weight: 800;
  margin-top: 3px;
}

.links {
  display: flex;
  gap: 25px;
  margin: auto;
  font-size: 12px;
  font-weight: 700;
  color: #56635c;
}
.links a {
  transition: color 0.2s;
}
.links a:hover,
.links a.active {
  color: #177245;
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.actions button {
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  color: #314039;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 11px;
  font-weight: 800;
  font-size: 12px;
  border: 0;
  cursor: pointer;
  background: #177245;
  color: #fff;
  transition: background 0.2s;
}
.btn:hover {
  background: #0f5a36;
}

.lightbtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 11px;
  font-weight: 800;
  font-size: 12px;
  border: 0;
  cursor: pointer;
  background: #fff;
  color: #123d2b;
  transition:
    background 0.2s,
    transform 0.2s;
}
.lightbtn:hover {
  background: #f0f5ee;
  transform: translateY(-2px);
}

.outlinebtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 11px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s;
}
.outlinebtn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.outlinegreen {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 11px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid #d7e0d7;
  color: #177245;
  background: #fff;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.outlinegreen:hover {
  background: #f0f5ee;
  border-color: #177245;
}

#menu {
  display: none;
  border: 0;
  background: #f2f4f1;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile {
  display: none;
  background: #fff;
  margin: 4px 24px 0;
  border-radius: 0 0 15px 15px;
  padding: 12px 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.mobile a {
  display: block;
  padding: 11px;
  font-size: 12px;
  font-weight: 700;
  color: #314039;
  border-bottom: 1px solid #f0f3ef;
}
.mobile a:last-child {
  border-bottom: 0;
}
.mobile a:hover {
  color: #177245;
}
.mobile.show {
  display: block;
}

@media (max-width: 800px) {
  .links,
  .actions {
    display: none;
  }

  .navbox {
    justify-content: space-between;
  }

  .brand {
    margin-right: auto;
  }

  #menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
}

/* ── page hero ── */
.page-hero {
  padding: 160px 0 80px;
  background: #103b29;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #052817e0, #07361f99);
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin: 12px 0 0;
}
.page-hero h1 em {
  font-style: normal;
  color: #acd55a;
}
.page-hero p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 17px;
  margin: 18px 0 0;
}
.page-hero .kicker {
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 800;
  color: #d5eb91;
  text-transform: uppercase;
}
.page-hero .breadcrumb {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}
.page-hero .breadcrumb a {
  color: #c8e66d;
}
@media (max-width: 800px) {
  .page-hero {
    padding: 130px 0 60px;
  }
  .page-hero h1 {
    font-size: 40px;
  }
}
@media (max-width: 520px) {
  .page-hero h1 {
    font-size: 34px;
  }
  .page-hero p {
    font-size: 14px;
  }
}

/* ── sections ── */
.section {
  padding: 90px 0;
}
.white {
  background: #fff;
}
.soft {
  background: #f3f5f1;
}
.greensoft {
  background: #edf4e7;
}
.dark {
  background: #123d2b;
  color: #fff;
}
.dark h2 {
  color: #fff;
}
.dark .lead {
  color: rgba(255, 255, 255, 0.7);
}
.dark p:not(.lead) {
  color: rgba(255, 255, 255, 0.7);
}

.kicker {
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 800;
  color: #78a13b;
  text-transform: uppercase;
}
.kicker.light {
  color: #b9df68;
}

h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: #143b29;
  margin: 12px 0;
}
h2 em {
  font-style: normal;
  color: #acd55a;
}
.dark h2 em {
  color: #c8e66d;
}

.lead {
  font-size: 16px;
  line-height: 1.8;
  color: #718078;
  max-width: 700px;
}

.sectionhead {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 45px;
}
.sectionhead .lead {
  margin: 6px 0 0;
}
@media (max-width: 800px) {
  .sectionhead {
    flex-direction: column;
    align-items: start;
  }
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 800px) {
  .two {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

.rounded {
  border-radius: 30px;
  width: 100%;
}

.textbtn {
  display: inline-block;
  margin-top: 25px;
  color: #177245;
  font-size: 12px;
  font-weight: 800;
}

/* ── cards grid ── */
.cards4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .cards4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .cards4 {
    grid-template-columns: 1fr;
  }
}

.cards4 article {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7ebe7;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cards4 article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.cards4 article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cards4 article > div {
  padding: 20px 22px 26px;
}
.cards4 article small {
  color: #86a64c;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.cards4 article h3 {
  font-size: 20px;
  margin: 8px 0 6px;
  color: #143b29;
}
.cards4 article p {
  font-size: 12px;
  line-height: 1.7;
  color: #718078;
}
.cards4 article a {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 800;
  color: #177245;
}

/* ── why grid ── */
.whygrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
  text-align: left;
}
.whygrid article {
  border: 1px solid #e5ebe5;
  border-radius: 18px;
  padding: 27px;
  background: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.whygrid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
.whygrid article h3 {
  font-size: 16px;
  color: #183c2c;
  margin: 18px 0 7px;
}
.whygrid article p {
  font-size: 11px;
  line-height: 1.7;
  color: #7b8680;
}
.whygrid .icon {
  font-size: 22px;
  color: #177245;
}
@media (max-width: 800px) {
  .whygrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .whygrid {
    grid-template-columns: 1fr;
  }
}

/* ── stats ── */
.stats {
  background: #123d2b;
  color: #fff;
}
.statgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 48px 0;
}
.statgrid > div {
  padding-left: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.statgrid > div:last-child {
  border: 0;
}
.statgrid b {
  display: block;
  color: #c8e66d;
  font:
    800 45px/1.1 "Plus Jakarta Sans",
    sans-serif;
}
.statgrid span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 800px) {
  .statgrid {
    grid-template-columns: 1fr 1fr;
  }
  .statgrid > div {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 15px 0 15px 18px;
  }
}
@media (max-width: 520px) {
  .statgrid {
    grid-template-columns: 1fr;
  }
}

/* ── trust ── */
.trust {
  background: #fff;
  border-bottom: 1px solid #edf0ec;
}
.trustgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 25px 0;
  gap: 12px;
}
.trustgrid > div {
  border-left: 2px solid #e1eadf;
  padding-left: 16px;
}
.trustgrid b {
  display: block;
  font-size: 13px;
  color: #173d2b;
}
.trustgrid small {
  display: block;
  font-size: 10px;
  color: #87918b;
  margin-top: 4px;
}
@media (max-width: 800px) {
  .trustgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .trustgrid {
    grid-template-columns: 1fr;
  }
}

/* ── visual / float ── */
.visual {
  position: relative;
}
.visual img {
  width: 100%;
  border-radius: 30px;
}
.float {
  position: absolute;
  right: -20px;
  bottom: 30px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.float i {
  font-style: normal;
  background: #eef7e7;
  padding: 12px;
  border-radius: 12px;
}
.float b,
.float small {
  display: block;
}
.float b {
  font-size: 12px;
}
.float small {
  font-size: 10px;
  color: #8a948e;
  margin-top: 3px;
}
@media (max-width: 800px) {
  .float {
    right: 10px;
  }
}

/* ── checks ── */
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}
.checks span {
  font-size: 12px;
  font-weight: 700;
  padding: 12px;
  background: #fff;
  border: 1px solid #e7ece7;
  border-radius: 10px;
}
.checks span::first-letter {
  color: #177245;
}
@media (max-width: 520px) {
  .checks {
    grid-template-columns: 1fr;
  }
}

/* ── benefits / sustain ── */
.benefits,
.sustain {
  margin: 28px 0;
}
.benefits > div,
.sustain > div {
  display: flex;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 114, 69, 0.09);
}
.benefits b,
.sustain b {
  font-size: 10px;
  color: #779d3f;
}
.benefits strong,
.benefits small,
.sustain strong,
.sustain small {
  display: block;
}
.benefits strong,
.sustain strong {
  font-size: 13px;
}
.benefits small,
.sustain small {
  font-size: 11px;
  color: #78847e;
  line-height: 1.6;
  margin-top: 3px;
}

/* ── product detail ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.product-detail-grid img {
  border-radius: 24px;
  width: 100%;
}
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.specs div {
  background: #f3f5f1;
  padding: 14px 16px;
  border-radius: 12px;
}
.specs div b {
  display: block;
  font-size: 10px;
  color: #86a64c;
}
.specs div span {
  font-size: 13px;
  font-weight: 700;
  color: #143b29;
}

/* ── gallery ── */
.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 13px;
}
.gi {
  position: relative;
  border-radius: 17px;
  overflow: hidden;
  background: #e7ebe7;
}
.gi.tall {
  grid-row: span 2;
}
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gi:hover img {
  transform: scale(1.04);
}
.gi b {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px 15px 13px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-size: 11px;
  font-weight: 700;
}
.filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.filters button {
  border: 0;
  background: transparent;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.filters button.active,
.filters button:hover {
  background: #eaf3e2;
  color: #177245;
}
@media (max-width: 800px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 210px 210px;
  }
  .gallery .tall {
    grid-row: auto;
    grid-column: span 2;
  }
}
@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 220px 220px 220px;
  }
  .gallery .tall {
    grid-column: auto;
  }
}

/* ── news ── */
.newsgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.newsgrid article {
  background: #fff;
  border: 1px solid #e7ebe7;
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.newsgrid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04);
}
.newsgrid article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.newsgrid article div {
  padding: 20px 22px 26px;
}
.newsgrid small {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #86a64c;
  font-weight: 800;
}
.newsgrid h3 {
  font-size: 17px;
  line-height: 1.4;
  margin: 9px 0 6px;
  color: #143b29;
}
.newsgrid p {
  font-size: 11px;
  color: #7b8680;
  line-height: 1.7;
}
.newsgrid a {
  font-size: 11px;
  color: #177245;
  font-weight: 800;
  display: inline-block;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .newsgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .newsgrid {
    grid-template-columns: 1fr;
  }
}

/* ── contact form ── */
.contact > div {
  display: flex;
  gap: 13px;
  align-items: center;
  color: #177245;
  padding: 12px 0;
  border-bottom: 1px solid #f0f3ef;
}
.contact > div:last-child {
  border-bottom: 0;
}
.contact span b,
.contact span small {
  display: block;
}
.contact b {
  font-size: 12px;
  color: #193d2c;
}
.contact small {
  font-size: 11px;
  color: #7d8881;
  margin-top: 3px;
}

form {
  background: #f6f8f5;
  border: 1px solid #e7ebe7;
  border-radius: 22px;
  padding: 26px 28px;
}
form label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #53615a;
  margin-bottom: 16px;
}
form input,
form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #dce3dc;
  border-radius: 9px;
  background: #fff;
  outline: 0;
  font: inherit;
  font-size: 12px;
  transition: border-color 0.2s;
}
form input:focus,
form textarea:focus {
  border-color: #76a34b;
}
form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.success {
  display: none;
  color: #177245;
  font-size: 11px;
  text-align: center;
  margin-top: 14px;
}
.success.show {
  display: block !important;
}

/* ── map placeholder ── */
.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  background: #e7ebe7;
  display: grid;
  place-items: center;
  color: #718078;
  font-size: 14px;
  font-weight: 600;
}

/* ── cta ── */
.cta {
  background: #177245;
  color: #fff;
  padding: 90px 0;
}
.cta h2 {
  color: #fff;
  font-size: clamp(38px, 4.8vw, 64px);
}
.cta p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 16px;
}
.cta .lightbtn {
  margin-top: 8px;
}

/* ── footer ── */
footer {
  background: #0b291d;
  color: #fff;
  padding-top: 60px;
}
.foot {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}
.foot p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.8;
  max-width: 330px;
}
.foot h4 {
  color: #cfe68f;
  font-size: 12px;
  margin: 0 0 17px;
}
.foot > div > a:not(.brand) {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin: 10px 0;
  transition: color 0.2s;
}
.foot > div > a:not(.brand):hover {
  color: #fff;
}
.foot input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  padding: 11px 14px;
  color: #fff;
  font-size: 11px;
  outline: 0;
}
.foot input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: auto;
}
.copyright span {
  display: flex;
  gap: 18px;
}
@media (max-width: 800px) {
  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}
@media (max-width: 520px) {
  .foot {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .copyright {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .copyright span {
    justify-content: center;
  }
}

/* ── misc ── */
.center {
  text-align: center;
}
.center > .lead {
  margin: 18px auto;
}
.inline {
  display: inline-flex;
}
.mt-4 {
  margin-top: 24px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-4 {
  gap: 16px;
}
.shadow-sm {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
