:root {
  --primary: #127a4a;
  --primary-dark: #0f663d;
  --accent: #1ea766;
  --text: #12312a;
  --text-soft: #4f6c64;
  --white: #ffffff;
  --bg: #f4f8f6;
  --card: #ffffff;
  --border: #d8e8df;
  --shadow-soft: 0 8px 24px rgba(16, 66, 49, 0.08);
  --shadow-medium: 0 14px 40px rgba(18, 72, 55, 0.14);
  --radius: 16px;
  --radius-sm: 12px;
  --container: min(1160px, 92vw);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Poppins", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fcfa 0%, #f3f8f6 100%);
  line-height: 1.65;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-tag::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.28s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary) 0%, #19955a 100%);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(17, 122, 74, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8);
}

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

.topbar {
  background: #f2f8f5;
  border-bottom: 1px solid #e4efe8;
  font-size: 0.85rem;
}

.topbar-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  color: #3f6357;
}

.topbar a {
  color: var(--primary-dark);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(22, 71, 55, 0.08);
}

.nav-wrap {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.brand-text {
  font-size: 0.85rem;
  color: #3f6859;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 8px;
  color: #26453a;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background: #eef8f2;
  color: var(--primary-dark);
}

.nav-cta {
  display: inline-flex;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--primary-dark);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 auto 0;
  top: 86px;
  background: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 14px 24px rgba(19, 64, 49, 0.15);
  padding: 14px 4vw 22px;
  display: grid;
  gap: 8px;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 10px 10px;
  border-radius: 8px;
  font-weight: 600;
  color: #26453a;
}

.mobile-menu a.active,
.mobile-menu a:hover {
  background: #eef8f2;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.hero::before {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(29, 145, 90, 0.18) 0%, rgba(29, 145, 90, 0) 72%);
  right: -170px;
  top: -120px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(84, 173, 127, 0.15) 0%, rgba(84, 173, 127, 0) 70%);
  left: -160px;
  bottom: -190px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.hero-copy p {
  margin: 18px 0 26px;
  max-width: 62ch;
}

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

.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust span {
  background: #edf8f2;
  border: 1px solid #dceddf;
  color: #28614d;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(160deg, #ffffff 0%, #f2f8f5 95%);
  border: 1px solid #dceee4;
  border-radius: 22px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-panel {
  padding: 18px 20px 22px;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.metric {
  background: #fff;
  border: 1px solid #dceee4;
  border-radius: 12px;
  padding: 12px;
}

.metric strong {
  color: var(--primary-dark);
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
}

.grid-2 {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(19, 65, 50, 0.14);
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf8f2;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.industries {
  background: #eef7f2;
  border: 1px solid #dbeadf;
  border-radius: var(--radius);
  padding: 24px;
}

.industries ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.industries li {
  background: #fff;
  border: 1px solid #dfece3;
  border-radius: 12px;
  padding: 12px 14px;
  color: #2f5d4b;
  font-weight: 500;
}

.testimonial {
  border-left: 4px solid #7ecfa8;
}

.stars {
  color: #f4b223;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.faq-wrap {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #dae9df;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #24473b;
  cursor: pointer;
}

.faq-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-content {
  max-height: 240px;
  padding: 0 18px 16px;
}

.cta-banner {
  background: linear-gradient(120deg, #0f6a3f 0%, #19995e 100%);
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 36px rgba(9, 58, 35, 0.28);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.cta-banner .btn-outline:hover {
  background: #fff;
  color: #0f6a3f;
}

.contact-preview {
  background: #fff;
  border: 1px solid #dcece2;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3f6558;
}

.page-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, #edf8f2 0%, #f7fbf9 100%);
  border-bottom: 1px solid #d7e8de;
}

.page-hero p {
  max-width: 72ch;
}

.about-split,
.products-split,
.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-image,
.product-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid #d9e9df;
}

.about-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

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

.product-card {
  overflow: hidden;
  padding: 0;
}

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

.product-content {
  padding: 20px;
}

.contact-panel {
  background: #fff;
  border: 1px solid #dbeadf;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #295545;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cddfd5;
  border-radius: 12px;
  background: #fff;
  padding: 12px 13px;
  font: inherit;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid #b7e4cc;
  border-color: #71bd98;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dceade;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  margin-top: 70px;
  background: #0f2c24;
  color: #c4d8d1;
  padding-top: 48px;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.footer-brand img {
  height: 62px;
  width: auto;
  background: #fff;
  padding: 6px 8px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #cce0d9;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid #28443b;
  padding: 16px 0;
  text-align: center;
  font-size: 0.86rem;
  color: #a6c2b8;
}

.floating-actions {
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: 900;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 24px rgba(12, 47, 33, 0.25);
  animation: lift 2.3s ease-in-out infinite;
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.call {
  background: #0f7b49;
  animation-delay: 0.5s;
}

@keyframes lift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero-grid,
  .grid-3,
  .grid-2,
  .about-split,
  .products-split,
  .contact-grid,
  .footer-grid,
  .value-grid,
  .form-grid,
  .industries ul {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 66px;
  }

  .cta-banner {
    padding: 28px 22px;
  }

  .brand img {
    height: 52px;
  }

  .mobile-menu {
    top: 86px;
  }
}

@media (max-width: 540px) {
  .nav-wrap {
    min-height: 78px;
  }

  .mobile-menu {
    top: 78px;
  }

  .hero-trust span {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
