@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --green: #148326;
  --green2: #39b937;
  --light: #61d84a;
  --dark: #02110d;
  --dark2: #032219;
  --text: #0b1710;
  --muted: #4f5d55;
  --line: #e5ebe6;
  --shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff
}

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

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

.container {
  width: min(1138px, calc(100% - 70px));
  margin: auto
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #eef1ef
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

.brand img {
  width: 265px
}

.menu {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
  font-weight: 700
}

.menu a {
  padding: 24px 0 20px;
  position: relative
}

.menu a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 3px;
  background: var(--green);
  border-radius: 20px
}

.btn {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .25s
}

.btn-green {
  background: linear-gradient(135deg, #14972b, #39b83a);
  color: white;
  box-shadow: 0 10px 22px rgba(30, 151, 44, .22)
}

.btn-dark {
  color: white;
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .03)
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px
}

.menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--green)
}

.hero {
  position: relative;
  min-height: 438px;
  color: #fff;
  background: #02110d;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 14, 10, .97) 0%, rgba(0, 14, 10, .91) 36%, rgba(0, 14, 10, .58) 58%, rgba(0, 14, 10, .30) 100%),
    url('../assets/hero-clean-bg.png') center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 48%, rgba(55, 255, 75, .17), transparent 28%),
    linear-gradient(180deg, transparent 80%, rgba(1, 12, 9, .32));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, .82fr) minmax(520px, 1.18fr);
  gap: 72px;
  align-items: center;
  min-height: 370px;
  padding: 35px 0 72px;
}

.hero-copy {
  width: 100%;
  max-width: 465px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--light);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 3px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-size: clamp(43px, 4.3vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.7px;
}

.hero h1 span {
  color: var(--light)
}

.hero-line {
  display: block;
  width: 48px;
  height: 3px;
  margin: 18px 0 21px;
  border-radius: 20px;
  background: var(--light);
}

.hero-description {
  max-width: 455px;
  margin: 0 0 27px;
  color: rgba(255, 255, 255, .90);
  font-size: 14px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  min-height: 300px;
  width: 100%;
}

.hero-media img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(100%, 590px);
  height: 292px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  filter: drop-shadow(0 26px 55px rgba(0, 0, 0, .50));
}

.stats-row {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: min(1138px, calc(100% - 70px));
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  color: #fff;
  border: 1px solid rgba(88, 220, 77, .42);
  border-radius: 9px;
  background:
    radial-gradient(circle at 98% 50%, rgba(73, 255, 69, .22), transparent 26%),
    linear-gradient(135deg, #031a13, #042f1a);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .20);
  overflow: hidden;
}

.stats-row article {
  min-width: 0;
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.stats-row article:last-child {
  border-right: 0
}

.stat-icon {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(31, 145, 41, .16);
  border: 1px solid rgba(84, 213, 74, .5);
  font-size: 22px;
}

.stats-row article>div:last-child {
  min-width: 0;
}

.stats-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1;
  white-space: normal;
}

.stats-row span {
  display: block;
  font-size: 10px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.stats-row .impact {
  font-size: 15px;
  line-height: 1.15;
}

.services {
  padding: 70px 0 20px
}

.section-title {
  text-align: center
}

.section-title p {
  margin: 0 0 7px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 900
}

.section-title h2 {
  margin: 0;
  font-size: 27px
}

.section-title h2 span {
  color: var(--green)
}

.section-title i,
.process-title i {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 11px auto 0;
  border-radius: 30px
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
  transition: .3s
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, .13)
}

.card-image {
  position: relative
}

.card-image img {
  width: 100%;
  height: 108px;
  object-fit: cover
}

.round-icon {
  position: absolute;
  left: 18px;
  bottom: -28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c7b24, #2eaf39);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px;
  box-shadow: 0 13px 26px rgba(17, 118, 34, .25)
}

.card-body {
  padding: 36px 18px 18px
}

.card-body h3 {
  font-size: 16px;
  margin: 0 0 8px
}

.card-body p {
  font-size: 12px;
  line-height: 1.55;
  color: #425047;
  margin: 0 0 12px
}

.card-body ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0
}

.card-body li {
  font-size: 11px;
  margin: 6px 0;
  display: flex;
  gap: 8px
}

.card-body li:before {
  content: "✓";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 900
}

.card-body a {
  font-size: 12px;
  font-weight: 800;
  color: var(--green)
}

.benefits {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: #fff;
  border-radius: 9px;
  overflow: hidden;
  background: radial-gradient(circle at 100% 50%, rgba(67, 255, 62, .2), transparent 26%), linear-gradient(135deg, #031a13, #042f1a);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16)
}

.benefits article {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 12px;
  padding: 21px 17px;
  border-right: 1px solid rgba(255, 255, 255, .11)
}

.benefits article:last-child {
  border-right: 0
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34, 145, 43, .15);
  border: 1px solid rgba(83, 215, 74, .5);
  font-size: 20px
}

.benefits h4 {
  margin: 0 0 5px;
  font-size: 13px
}

.benefits p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .78)
}

.process {
  padding: 14px 0 20px
}

.process-title {
  text-align: center
}

.process-title h2 {
  font-size: 23px;
  margin: 0
}

.process-title h2 span {
  color: var(--green)
}

.steps {
  display: grid;
  grid-template-columns: 1fr 45px 1fr 45px 1fr 45px 1fr 45px 1fr;
  align-items: start;
  margin-top: 22px
}

.steps article {
  text-align: center
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px
}

.step-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4faf4;
  border: 1px solid #e4ece5;
  color: var(--green);
  font-size: 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .06)
}

.step-head strong {
  color: var(--green);
  font-size: 16px
}

.steps h3 {
  font-size: 13px;
  margin: 11px 0 6px
}

.steps p {
  font-size: 11px;
  color: #425047;
  line-height: 1.5;
  margin: 0
}

.arrow {
  align-self: center;
  text-align: center;
  color: var(--green);
  font-size: 23px;
  padding-top: 10px
}

.custom {
  padding: 0 0 14px
}

.custom-box {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 205px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(90deg, #031a13, #032819 43%, rgba(3, 40, 25, .7) 58%, rgba(3, 40, 25, .05));
  box-shadow: 0 18px 38px rgba(0, 0, 0, .16)
}

.custom-copy {
  padding: 27px 38px;
  color: #fff;
  z-index: 2
}

.custom-copy h2 {
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 10px
}

.custom-copy h2 span {
  color: var(--light)
}

.custom-copy>p:not(.eyebrow) {
  font-size: 12px;
  color: rgba(255, 255, 255, .84);
  line-height: 1.5;
  max-width: 390px;
  margin: 0 0 17px
}

.custom-image {
  position: relative
}

.custom-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #032819 0%, rgba(3, 40, 25, .68) 18%, transparent 56%)
}

.custom-image img {
  width: 100%;
  height: 205px;
  object-fit: cover
}

.footer {
  background: linear-gradient(135deg, #021a13, #042f18);
  color: #fff;
  padding: 22px 0 12px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr 1.25fr;
  gap: 38px
}

.footer-brand img {
  width: 165px;
  margin-bottom: 10px
}

.footer p,
.footer a {
  font-size: 12px;
  color: rgba(255, 255, 255, .78)
}

.footer h4 {
  font-size: 12px;
  color: var(--light);
  margin: 0 0 10px
}

.footer a {
  display: block;
  margin: 3px 0
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 10px
}

.socials a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid rgba(86, 218, 76, .55);
  display: grid;
  place-items: center;
  color: var(--light)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .11);
  margin-top: 18px;
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, .7)
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .7s
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(max-width:980px) {
  .container {
    width: min(100% - 34px, 1138px)
  }

  .menu-btn {
    display: flex
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px
  }

  .menu.open {
    display: flex
  }

  .nav-quote {
    display: none
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 0 80px
  }

  .hero-copy {
    max-width: 650px
  }

  .hero-media {
    min-height: 330px
  }

  .hero-media img {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    height: 330px
  }

  .stats-row {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(100% - 34px, 1138px);
    grid-template-columns: 1fr 1fr;
    margin-top: -52px
  }

  .cards {
    grid-template-columns: 1fr 1fr
  }

  .benefits {
    grid-template-columns: 1fr 1fr
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
  }

  .arrow {
    display: none
  }

  .custom-box {
    grid-template-columns: 1fr
  }

  .custom-image img {
    height: 250px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  .brand img {
    width: 200px
  }

  .hero h1 {
    font-size: 40px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .stats-row,
  .cards,
  .benefits,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .stats-row article,
  .benefits article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11)
  }

  .custom-copy {
    padding: 25px 22px
  }

  .custom-copy h2 {
    font-size: 24px
  }

  .footer-bottom {
    flex-direction: column
  }
}