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

:root {
  --green: #167d25;
  --green-2: #39b438;
  --green-light: #57cf47;
  --neon: #76ff5a;
  --dark: #020d0a;
  --dark-2: #031b14;
  --text: #07130e;
  --muted: #57635c;
  --line: #e5ebe7;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transition: .25s
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

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

.brand img {
  width: 265px
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 13px;
  font-weight: 800
}

.main-menu a {
  position: relative;
  padding: 25px 0 22px
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 6px
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--green);
  border-radius: 20px
}

.btn {
  min-height: 52px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #15942b, #38b438);
  box-shadow: 0 12px 28px rgba(33, 148, 42, .26)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(33, 148, 42, .34)
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .035)
}

.btn-ghost {
  color: var(--green);
  background: #fff;
  border-color: var(--green)
}

.hero {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(1, 13, 10, .98), rgba(1, 13, 10, .92) 38%, rgba(1, 13, 10, .4)), url('../assets/hero-full.jpg') center/cover no-repeat
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 55%, rgba(59, 255, 69, .22), transparent 27%), radial-gradient(circle at 90% 45%, rgba(44, 255, 63, .15), transparent 20%)
}

.particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(88, 255, 71, .70) 1px, transparent 1px), linear-gradient(120deg, transparent 30%, rgba(57, 255, 69, .12), transparent 65%);
  background-size: 54px 54px, 100% 100%;
  opacity: .2;
  animation: drift 18s linear infinite
}

@keyframes drift {
  to {
    background-position: 120px 80px, 0 0
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 460px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 90px;
  padding: 70px 0;
}

.hero-copy {
  max-width: 540px;
  padding-left: 20px;
}

.eyebrow,
.mini-title {
  margin: 0 0 11px;
  color: var(--green-light);
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 900
}

.hero h1 {
  margin: 0 0 25px;
  font-size: clamp(52px, 6vw, 72px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 900;
}

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

.hero-text {
  max-width: 520px;
  margin: 30px 0 40px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .88);
}

.hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 10px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 35px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-stats article {
  display: grid;
  grid-template-columns: 38px auto;
  column-gap: 12px;
  align-items: center
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(69, 197, 63, .6);
  background: rgba(28, 146, 37, .08);
  display: grid;
  place-items: center
}

.hero-stats strong {
  font-size: 20px;
  line-height: 1
}

.hero-stats small {
  grid-column: 2;
  color: #fff;
  font-size: 11px
}

.hero-visual {
  position: relative;
  min-height: 340px
}

.dashboard-img {
  position: absolute;
  right: -20px;
  top: 10px;
  width: 690px;
  max-width: none;
  border-radius: 18px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5))
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 155px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(112, 255, 83, .28);
  background: rgba(1, 18, 13, .70);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  display: flex;
  gap: 10px;
  align-items: center;
  animation: float 4s ease-in-out infinite
}

.floating-card>span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(36, 178, 49, .18);
  display: grid;
  place-items: center
}

.floating-card strong,
.floating-card b {
  display: block
}

.floating-card strong {
  font-size: 11px;
  color: #e9fff0
}

.floating-card b {
  font-size: 18px
}

.floating-card small {
  font-size: 10px;
  color: rgba(255, 255, 255, .8)
}

.card-top {
  left: 70px;
  top: 28px
}

.card-left {
  left: 5px;
  top: 190px
}

.card-right {
  right: 0;
  top: 117px
}

.card-bottom {
  right: 14px;
  bottom: 6px
}

@keyframes float {
  50% {
    transform: translateY(-8px)
  }
}

.section {
  padding: 28px 0
}

.section-heading {
  text-align: center
}

.section-heading p {
  margin: 0 0 8px;
  color: var(--green);
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 900
}

.section-heading h2 {
  margin: 0;
  font-size: 26px
}

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

.section-heading::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--green);
  border-radius: 30px;
  margin: 12px auto 0
}

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

.service-card {
  position: relative;
  min-height: 135px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 31px 31px 25px 92px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .08);
  transition: .3s
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, .14)
}

.service-icon {
  position: absolute;
  left: 27px;
  top: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b781f, #30a835);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(15, 117, 31, .25)
}

.service-card h3 {
  margin: 0 0 7px;
  font-size: 16px
}

.service-card p {
  margin: 0 0 14px;
  color: #44514a;
  font-size: 12px
}

.service-card a,
.project-card a {
  color: var(--green);
  font-size: 12px;
  font-weight: 900
}

.stats-band {
  padding: 0 0 18px
}

.stats-panel {
  min-height: 84px;
  padding: 20px 50px;
  border-radius: 9px;
  background: radial-gradient(circle at 98% 55%, rgba(70, 255, 63, .25), transparent 26%), linear-gradient(135deg, #021a13, #042f18);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: 0 17px 40px rgba(0, 0, 0, .18)
}

.stats-panel article {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, .14)
}

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

.stats-panel article>span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(35, 151, 43, .15);
  border: 1px solid rgba(69, 197, 63, .5);
  font-size: 24px
}

.stats-panel strong {
  display: block;
  font-size: 27px;
  line-height: 1
}

.stats-panel small {
  font-size: 11px
}

.why-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 50px;
  align-items: center
}

.why-copy h2 {
  margin: 0;
  font-size: 25px
}

.short-line {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--green);
  margin: 10px 0 15px
}

.why-copy p {
  color: #3d4a44;
  font-size: 13px
}

.why-copy ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0
}

.why-copy li {
  margin: 9px 0;
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: center
}

.why-copy li::before {
  content: "✓";
  width: 17px;
  height: 17px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900
}

.why-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 235px;
  box-shadow: var(--shadow)
}

.why-media img {
  width: 100%;
  height: 235px;
  object-fit: cover
}

.why-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  min-height: 128px;
  background: radial-gradient(circle at 100% 15%, rgba(85, 255, 70, .35), transparent 33%), linear-gradient(135deg, rgba(4, 45, 20, .94), rgba(9, 106, 31, .9));
  color: white;
  padding: 24px
}

.why-caption h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.15
}

.why-caption p {
  font-size: 12px;
  margin: 0
}

.why-caption span {
  display: block;
  width: 42px;
  height: 3px;
  background: var(--neon);
  margin-top: 13px
}

.projects-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 23px
}

.projects-heading h2 {
  margin: 0;
  font-size: 25px
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

.project-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 34px rgba(0, 0, 0, .09);
  transition: .3s
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, .14)
}

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

.project-icon {
  position: absolute;
  top: 82px;
  left: 17px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
  font-size: 22px
}

.project-body {
  padding: 31px 17px 18px
}

.project-body h3 {
  margin: 0 0 8px;
  font-size: 15px
}

.project-body p {
  margin: 0 0 12px;
  color: #3e4a44;
  font-size: 12px
}

.center {
  text-align: center
}

.carousel {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 12px
}

.carousel-viewport {
  overflow: hidden
}

.carousel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform
}

.client-slide {
  min-width: calc(100% / 6);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-right: 1px solid #e1e6e3
}

.client-slide img {
  max-height: 54px;
  max-width: 100%;
  object-fit: contain
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: white;
  color: var(--green);
  font-size: 34px;
  cursor: pointer;
  border-radius: 50%;
  transition: .2s
}

.carousel-btn:hover {
  background: #eef8ef
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #d4dad7;
  padding: 0;
  cursor: pointer
}

.carousel-dots button.active {
  background: var(--green)
}

.cta {
  padding: 0 0 28px
}

.cta-box {
  min-height: 86px;
  border-radius: 9px;
  padding: 20px 28px;
  color: #fff;
  background: radial-gradient(circle at 100% 30%, rgba(72, 255, 66, .30), transparent 26%), linear-gradient(135deg, #021a13, #042f18);
  display: grid;
  grid-template-columns: 74px 1fr 1.1fr auto;
  align-items: center;
  gap: 22px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18)
}

.cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0c7a26, #2fb53a);
  font-size: 30px
}

.cta-box h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12
}

.cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
  font-size: 12px
}

.cta-actions {
  display: flex;
  gap: 15px
}

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

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

.footer-logo {
  width: 160px;
  margin-bottom: 10px
}

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

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

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

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

.socials a {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(69, 197, 63, .6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-light)
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .75s
}

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

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

  .menu-toggle {
    display: flex
  }

  .main-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line)
  }

  .main-menu.open {
    display: flex
  }

  .nav-cta {
    display: none
  }

  .brand img {
    width: 235px
  }

  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr
  }

  .hero {
    min-height: auto
  }

  .hero-grid {
    padding: 60px 0
  }

  .hero-visual {
    min-height: 360px
  }

  .dashboard-img {
    position: relative;
    width: 100%
  }

  .floating-card {
    display: none
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-panel {
    grid-template-columns: 1fr 1fr
  }

  .stats-panel article {
    border-right: 0
  }

  .why-caption {
    width: 100%;
    position: relative
  }

  .client-slide {
    min-width: calc(100% / 3)
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center
  }

  .cta-icon {
    margin: auto
  }

  .cta-actions {
    justify-content: center
  }

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

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

  .hero h1 {
    font-size: 42px
  }

  .hero-stats {
    flex-direction: column;
    gap: 18px
  }

  .services-grid,
  .projects-grid,
  .stats-panel,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .service-card {
    padding-left: 30px;
    padding-top: 96px
  }

  .service-icon {
    left: 30px
  }

  .projects-heading,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .client-slide {
    min-width: 100%
  }

  .carousel {
    grid-template-columns: 32px 1fr 32px
  }

  .cta-actions {
    flex-direction: column
  }
}