* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: #1c1f1d;
  background: #ffffff;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: #2f8f00;
  color: #fff;
  position: relative;
  z-index: 1200;
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.topbar a:hover {
  color: #e8ffd8;
}

/* HEADER */
 /* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e9efe4;
  position: sticky;
  top: 0;
  z-index: 1300;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.logo img {
  height: 58px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #18201a;
  font-weight: 600;
  font-size: 16px;
  display: block;
  padding: 10px 0;
  text-decoration: none;
}

.nav-links li a:hover {
  color: #2f8f00;
}

/* Desktop dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #43b300;
  padding: 12px 0;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  color: #fff;
  padding: 10px 18px;
  font-size: 15px;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Mobile button */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #111;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

/* MOBILE */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1501;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 118px;
    right: 8px;
    width: calc(100% - 16px);
    max-width: 320px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid #e5ece0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    z-index: 1500;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 13px 18px;
    color: #111;
  }

  .dropdown-menu {
    position: static !important;
    display: none;
    width: 100%;
    min-width: 100%;
    border-radius: 0;
    box-shadow: none;
    background: #43b300;
    padding: 0;
    margin-top: 0;
  }

  .dropdown.open .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu li a {
    padding: 11px 18px;
    color: #fff;
  }

  .dropdown:hover > .dropdown-menu {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .logo img {
    height: 46px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    top: 110px;
    right: 8px;
    width: calc(100% - 16px);
    max-height: calc(100vh - 120px);
  }

  .header-inner {
    min-height: 76px;
  }

  .logo img {
    height: 46px;
  }
}
/* HERO */
.hero {
  background: linear-gradient(135deg, #0f1b10 0%, #16381a 50%, #235c1f 100%);
  color: #fff;
}

.hero-overlay {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #b8f78a;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 18px;
  color: #ecf5e7;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-points span {
  font-size: 14px;
  color: #dff4d2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points i {
  color: #8ff05c;
}

.hero-card {
  background: #ffffff;
  color: #1d221f;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-card h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #111;
}

.hero-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
}

.hero-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2f8f00;
  position: absolute;
  left: 0;
  top: 2px;
}

.hero-call-link {
  display: inline-block;
  margin-top: 10px;
  color: #2f8f00;
  font-weight: 700;
  font-size: 16px;
}

/* BUTTONS */
.btn {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: #43b300;
  color: #fff;
}

.btn-primary:hover {
  background: #338a00;
}

.btn-secondary {
  background: #ffffff;
  color: #101410;
}

.btn-secondary:hover {
  background: #eaf6e2;
}

.btn-light {
  background: #ffffff;
  color: #111;
}

.btn-light:hover {
  background: #ebf5e6;
}

/* SECTIONS */
.section {
  padding: 88px 0;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background: #f6faf3;
}

.section-accent {
  background: linear-gradient(180deg, #f7fbf4 0%, #edf6e8 100%);
}

.section-dark {
  background: #121712;
  color: #fff;
}

/* HEADINGS */
.section-heading {
  margin-bottom: 28px;
}

.section-heading.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  background: #e5f6d8;
  color: #2d8b00;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-label.alt {
  background: #dcefd1;
}

.dark-label {
  background: rgba(255, 255, 255, 0.08);
  color: #b9f58e;
}

.section-heading h2,
.split-left h2,
.contact-block h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #141814;
}

.section-dark .contact-block h2 {
  color: #fff;
}

/* INTRO */
.intro-layout {
  display: grid;
  gap: 20px;
}

.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.intro-columns p,
.narrow-content p,
.split-left p,
.highlight-box p,
.contact-block p,
.faq-item p {
  font-size: 17px;
  color: #333;
}

.narrow-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.narrow-content p + p {
  margin-top: 16px;
}

/* HIGHLIGHTS */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-box {
  background: #ffffff;
  border: 1px solid #e7efe1;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(21, 53, 16, 0.06);
}

.icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #ebf7e4;
  color: #2f8f00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.highlight-box h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #111;
}

/* SPLIT SECTION */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list li {
  background: #f7fbf4;
  border: 1px solid #e2eadc;
  border-radius: 12px;
  padding: 16px 18px 16px 46px;
  position: relative;
  font-size: 16px;
  color: #263127;
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2f8f00;
  position: absolute;
  left: 18px;
  top: 17px;
}

/* FAQ */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border: 1px solid #e3ebde;
  border-radius: 14px;
  overflow: hidden;
  background: #f9fcf7;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 19px;
  font-weight: 700;
  color: #176600;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 24px 22px;
}

.faq-item a {
  color: #2f8f00;
  font-weight: 700;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
}

.contact-block p {
  color: #d7e3d5;
}

.contact-list {
  margin: 28px 0;
  display: grid;
  gap: 16px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-row i {
  color: #86ea54;
  margin-top: 4px;
  min-width: 18px;
}

.contact-row span,
.contact-row a {
  color: #eff8ed;
  font-size: 16px;
}

.contact-row a:hover {
  color: #86ea54;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}

section.contact-section {
  background: #e7f2de !important;
  color: #1b1f1b;
}

section.contact-section .contact-block h2 {
  color: #111111 !important;
}

section.contact-section .contact-block p {
  color: #465046 !important;
}

section.contact-section .contact-row span,
section.contact-section .contact-row a {
  color: #243024 !important;
}

section.contact-section .contact-row i {
  color: #35a000 !important;
}

section.contact-section .dark-label {
  background: #dff0d3 !important;
  color: #2d8b00 !important;
}

section.contact-section .btn-light {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid #dfe8d9;
}

section.contact-section .map-frame {
  background: #ffffff;
  border: 1px solid #e3eedc;
  box-shadow: 0 18px 40px rgba(20, 60, 10, 0.12);
}

/* FOOTER */
.footer {
  background: #0c100c;
  color: #fff;
}

.footer-top {
  padding: 70px 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h3 {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-subtitle {
  margin-top: 28px;
}

.footer-column ul li {
  margin-bottom: 11px;
  position: relative;
  padding-left: 18px;
}

.footer-column ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #86ea54;
  font-weight: 700;
}

.footer-column ul li a {
  color: #d8e7d4;
  font-size: 15px;
}

.footer-column ul li a:hover {
  color: #86ea54;
}

.footer-bottom {
  border-top: 1px solid #1e261e;
  padding: 24px 0 28px;
  display: grid;
  grid-template-columns: 180px 1fr 320px;
  gap: 20px;
  align-items: center;
}

.footer-brand img {
  height: 54px;
  width: auto;
}

.footer-copy {
  text-align: center;
  color: #aeb9ad;
  font-size: 14px;
}

.footer-mini-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-mini-links a {
  color: #cddacc;
  font-size: 14px;
  font-weight: 500;
}

.footer-mini-links a:hover {
  color: #86ea54;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .split-section,
  .contact-layout,
  .intro-columns {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    justify-content: center;
  }

  .footer-mini-links {
    justify-content: center;
  }

  .hero-content h1,
  .section-heading h2,
  .split-left h2,
  .contact-block h2 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
    gap: 8px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1401;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 118px;
    right: 8px;
    width: calc(100% - 16px);
    max-width: 320px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid #e5ece0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    z-index: 1400;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 13px 18px;
    color: #111;
  }

  .dropdown-menu {
    position: static !important;
    display: none;
    width: 100%;
    min-width: 100%;
    border-radius: 0;
    box-shadow: none;
    background: #43b300;
    padding: 0;
    margin-top: 0;
  }

  .dropdown.open .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu li a {
    padding: 11px 18px;
    color: #fff;
  }

  .dropdown:hover > .dropdown-menu {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .logo img {
    height: 46px;
  }

  .hero-content h1,
  .section-heading h2,
  .split-left h2,
  .contact-block h2 {
    font-size: 34px;
  }

  .section {
    padding: 74px 0;
  }
}

@media (min-width: 901px) {
  .dropdown.open .dropdown-menu {
    display: none !important;
  }

  .dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .highlight-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    padding: 60px 0;
  }

  .hero-content h1,
  .section-heading h2,
  .split-left h2,
  .contact-block h2 {
    font-size: 28px;
  }

  .intro-columns p,
  .narrow-content p,
  .split-left p,
  .highlight-box p,
  .contact-block p,
  .faq-item p,
  .feature-list li {
    font-size: 15px;
  }

  .faq-item summary {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .logo img,
  .footer-brand img {
    height: 46px;
  }

  .header-inner {
    min-height: 76px;
  }

  .nav-links {
    top: 110px;
    right: 8px;
    width: calc(100% - 16px);
    max-height: calc(100vh - 120px);
  }

  .hero-buttons,
  .contact-actions,
  .footer-mini-links {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
    gap: 10px;
  }

  .faq-item summary {
    padding: 16px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }
}