:root {
  --bg: #050804;
  --bg-soft: #0f170c;
  --text: #edf5e8;
  --text-soft: #bbccb3;
  --accent: #5d8f2f;
  --accent-soft: #7bad42;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.06);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #162111, #050804 42%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.background-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(92px);
  pointer-events: none;
  opacity: 0.18;
  z-index: -1;
}

.background-glow--left {
  top: -9rem;
  left: -8rem;
  background: #77aa40;
  animation: drift 14s ease-in-out infinite;
}

.background-glow--right {
  bottom: -10rem;
  right: -7rem;
  background: #5f8f36;
  animation: drift 18s ease-in-out infinite reverse;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(24px, -18px) scale(1.05);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 7, 11, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4.8rem;
}

.logo {
  display: grid;
  gap: 0.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.logo__top {
  font-size: 1rem;
  line-height: 1;
}

.logo__bar {
  font-size: 1.1rem;
  line-height: 1;
  background: linear-gradient(140deg, var(--accent), var(--accent-soft));
  color: #eff8e8;
  padding: 0.34rem 0.62rem;
  border-radius: 0.3rem;
  letter-spacing: 0.28em;
  width: fit-content;
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text-soft);
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
  transform: translateY(-1px);
}

.hero {
  padding: 6.5rem 0 4.2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 2.2vw + 1.4rem, 3.6rem);
}

h2 {
  font-size: clamp(1.55rem, 1.2vw + 1.15rem, 2.35rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.hero__text {
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(140deg, var(--accent), var(--accent-soft));
  color: #081104;
  box-shadow: 0 14px 28px rgba(123, 173, 66, 0.3);
}

.btn--ghost {
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--large {
  padding-inline: 1.6rem;
  min-height: 3rem;
}

.hero__stats {
  display: grid;
  gap: 0.9rem;
}

.stat-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.4);
}

.stat-card__value {
  display: block;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  font-weight: 800;
  color: #fff;
}

.stat-card__label {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section {
  padding: 4.8rem 0;
}

.section__head {
  margin-bottom: 2rem;
  max-width: 70ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.15rem 1.1rem;
  background: var(--card);
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
}

.section--dark {
  background: linear-gradient(180deg, rgba(16, 21, 32, 0.5), rgba(8, 10, 14, 0.6));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.timeline__item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.timeline__item span {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(123, 173, 66, 0.2);
  color: #ecf6df;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.about__badge {
  border-radius: 1rem;
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: linear-gradient(150deg, rgba(123, 173, 66, 0.23), rgba(93, 143, 47, 0.25));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.about__badge:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

.about__badge p {
  margin-bottom: 0.2rem;
}

.about__badge strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.about__badge small {
  color: #e2efd4;
}

.section--accent {
  background: radial-gradient(circle at 20% 10%, rgba(123, 173, 66, 0.12), transparent 42%),
    radial-gradient(circle at 80% 95%, rgba(93, 143, 47, 0.09), transparent 36%);
}

.contact {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.3rem;
  background: rgba(7, 9, 14, 0.5);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0 1.7rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal--delay {
  transition-delay: 140ms;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible.service-card:hover,
.reveal.visible.timeline__item:hover {
  transform: translateY(-4px);
}

@media (max-width: 960px) {
  .hero__grid,
  .about {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .header__inner {
    min-height: auto;
    padding: 0.8rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
  }

  .hero {
    padding-top: 4.8rem;
  }

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