:root {
  --green: #589800;
  --green-dark: #3f7100;
  --green-soft: #f0f7e6;
  --black: #111111;
  --text: #333333;
  --muted: #666666;
  --white: #ffffff;
  --line: #e4eadc;
  --shadow: 0 16px 44px rgba(17, 17, 17, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 128px;
  height: 58px;
  object-fit: contain;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  padding: 12px 10px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
  background: var(--green-soft);
}

.main-nav .nav-cta {
  color: var(--white);
  background: var(--green);
  text-align: center;
  margin-top: 6px;
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-home {
  background-color: #589800;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  color: #ffffff;
}

.hero-service {
  min-height: 470px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-green {
  background: linear-gradient(90deg, rgba(63, 113, 0, 0.84), rgba(63, 113, 0, 0.46));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: var(--white);
  padding: 74px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #d8f5bc;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 8vw, 4.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4.4vw, 2.75rem);
  font-weight: 800;
}

h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.hero-home .btn-primary,
.hero-home .btn-outline-light {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
}

.hero-home .btn-primary:hover,
.hero-home .btn-outline-light:hover {
  background: #f3f7ef;
}

.btn-secondary {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--green);
}

.btn-outline-light {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: #f3f7ef;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: #f7fbf1;
}

.compact-section {
  padding-top: 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2 {
  margin-bottom: 18px;
}

.section-copy p {
  color: var(--text);
}

.text-section {
  max-width: 860px;
}

.highlight-box {
  margin-top: 24px;
  padding: 22px;
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: var(--green-soft);
}

.highlight-box p {
  margin-bottom: 0;
}

.service-grid,
.feature-grid,
.list-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.07);
}

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

.card-body {
  padding: 22px;
}

.card-body p {
  min-height: 78px;
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 800;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.feature-item,
.list-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-icon,
.list-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.feature-item p,
.list-grid p {
  margin: 10px 0 0;
  color: var(--text);
}

.list-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.list-grid span {
  margin-bottom: 0;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-list strong {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-size: 1.2rem;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--text);
}

.check-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #8fd64d;
  font-weight: 800;
}

.contact-section {
  background: var(--green-soft);
}

.contact-inner {
  max-width: 780px;
  text-align: center;
}

.contact-inner .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.contact-inner p {
  color: var(--text);
}

.contact-actions {
  justify-content: center;
}

.contact-note {
  margin-top: 22px;
  font-weight: 700;
}

.site-footer {
  padding: 40px 0;
  color: var(--white);
  background: var(--green);
}

.footer-inner {
  display: grid;
  gap: 26px;
}

.footer-logo {
  width: 116px;
  height: 58px;
  object-fit: contain;
  padding: 4px;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-slogan {
  margin: 14px 0 0;
  font-weight: 600;
}

.footer-info p {
  margin: 14px 0 0;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

@media (min-width: 375px) {
  .hero-content {
    padding: 86px 0;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(1120px, calc(100% - 56px));
  }

  .section {
    padding: 92px 0;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .footer-info {
    text-align: right;
  }

}

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

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .main-nav a {
    padding: 10px 9px;
    font-size: 0.84rem;
  }

  .main-nav .nav-cta {
    margin-top: 0;
    margin-left: 4px;
    padding: 11px 14px;
  }

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

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

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

  .floating-whatsapp {
    display: none;
  }
}
