:root {
  --dark: #101820;
  --text: #374151;
  --muted: #6b7280;
  --light: #f4f6f4;
  --white: #ffffff;

  --brand: #1f6f3a;
  --brand-dark: #155227;
  --brand-light: #76c043;
  --brand-gray: #7a7d7f;
  --brand-gray-dark: #4b4f52;

  --border: #e5e7eb;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.navbar {
  min-height: 82px;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  color: var(--brand-dark);
  font-size: 17px;
}

.logo img {
  height: 110px;
  width: auto;
  display: block;
}

.navbar {
  min-height: 150px;
}

.menu-toggle {
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
  color: var(--brand-dark);
}

.nav-menu {
  display: none;
  list-style: none;
  padding: 18px;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 114px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-menu.active {
  display: grid;
  gap: 16px;
}

.nav-menu a {
  font-weight: 700;
  color: var(--dark);
}

.btn-small,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
  min-height: 48px;
  padding: 0 22px;
  transition: .2s ease;
}

.btn-small,
.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-small:hover,
.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-dark);
  border: 2px solid var(--brand-light);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slide {
  min-height: 660px;
  padding: 70px 18px;
  display: none;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,24,32,.92), rgba(31,111,58,.50));
}

.hero-slide.active {
  display: flex;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  font-weight: 900;
  color: var(--brand-light);
}

h1 {
  font-size: 42px;
  line-height: 1.05;
  margin: 12px 0 18px;
}

h2 {
  color: var(--dark);
  font-size: 32px;
  line-height: 1.15;
  margin: 8px 0 16px;
}

h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.hero-content h2 {
  color: var(--white);
  font-size: 40px;
}

.hero-content p {
  font-size: 18px;
  max-width: 620px;
}

.hero-bullets {
  padding-left: 20px;
  margin: 22px 0;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 5;
}

.trust div {
  background: #eef6ec;
  color: var(--brand-dark);
  border-radius: 12px;
  padding: 14px;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 70px 18px;
  max-width: 1180px;
  margin: auto;
}

.section.light {
  background: var(--light);
  max-width: none;
  padding-left: 18px;
  padding-right: 18px;
}

.section.light > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 780px;
  font-size: 18px;
}

.cards {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.card {
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16,24,32,.06);
}

.card:hover {
  border-color: var(--brand-light);
}

.card a {
  color: var(--brand);
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-list div {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-list span {
  display: block;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 18px;
}

.steps div {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--light);
}

.steps span {
  background: var(--brand);
  color: var(--white);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.areas {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.areas li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  padding: 14px 0;
  cursor: pointer;
}

.faq-item p {
  display: none;
  margin-top: 0;
}

.faq-item.active p {
  display: block;
}

.contact {
  background: linear-gradient(135deg, var(--dark), var(--brand-dark));
  color: var(--white);
  max-width: none;
}

.contact h2 {
  color: var(--white);
}

.contact-form {
  max-width: 720px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 48px;
  padding: 12px;
  font-size: 16px;
}

.hidden-field {
  display: none;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
}

.floating-actions button {
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.floating-actions button:hover {
  background: var(--brand-dark);
}

#openVideo {
  position: fixed;
  left: 16px;
  bottom: 16px;

  width: 58px;
  height: 58px;

  border: none;
  border-radius: 999px;

  background: var(--brand-light);
  color: var(--dark);

  font-size: 22px;
  font-weight: 900;

  cursor: pointer;
  box-shadow: var(--shadow);

  z-index: 200;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 32, .35);
  z-index: 300;
  padding: 18px;
}

.modal.active {
  display: block;
}

.modal-box {
  background: var(--white);
  color: var(--dark);
  border-radius: 28px;
  padding: 28px;
  width: min(92vw, 420px);
  position: fixed;
  right: 18px;
  bottom: 92px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.modal-box a {
  display: block;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  color: var(--dark);
  transition: .2s ease;
}

.modal-box a:hover {
  color: var(--brand);
  padding-left: 22px;
}

.close-modal {
  position: absolute;
  right: 14px;
  top: 14px;
  border: none;
  background: var(--brand-dark);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
}

.video-box {
  padding: 0;
  overflow: hidden;
  width: min(88vw, 360px);
  right: auto;
  left: 18px;
  bottom: 92px;
}

.video-box video {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}


.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 18px;
  text-align: center;
}

.footer h2 {
  color: var(--white);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    border: 0;
  }

  .hero-actions {
    display: flex;
  }

  .trust {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: -40px auto 0;
    border-radius: var(--radius);
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-list,
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .areas {
    grid-template-columns: repeat(4, 1fr);
  }

  h1 {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .logo img {
    height: 82px;
  }

  .navbar {
    min-height: 110px;
  }

  .nav-menu {
    top: 146px;
  }
  
  .modal-box {
    right: 12px;
    left: 12px;
    bottom: 86px;
    width: auto;
    padding: 26px;
  }

  .video-box {
    left: 20px;
    right: auto;
    width: min(82vw, 360px);
    padding: 0;
  }

  .video-box video {
    max-height: 70vh;
  }
}