* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  color: #1f1f1f;
  background: #ffffff;
  overflow-x: hidden;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 60px;
}

.nav-actions {
  position: absolute;
  right: 60px;
}

.logo-img {
  height: 150px;
  width: auto;
}

.btn-outline {
  border: 1px solid #3E5F3C;
  padding: 10px 20px;
  text-decoration: none;
  color: #3E5F3C;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 65vh;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 860px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.hero p {
  margin-bottom: 30px;
  color: #333;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(255,255,255,0.9), 0 0 12px rgba(255,255,255,0.7);
}

/* CTA */
.cta-group {
  display: flex;
  gap: 15px;
}

.cta-group a {
  flex: 1;
  text-align: center;
}

.center {
  display: flex;
  justify-content: center;
}

/* BUTTONS */
.btn-primary {
  background: #3E5F3C;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

.btn-primary:hover {
  background: #2f4a2e;
}

.btn-secondary {
  border: 1px solid #bbb;
  padding: 12px 24px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  background: #ffffff;
}

.btn-secondary:hover {
  background: #f0f0f0;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* SECTIONS */
.section {
  padding: 80px 60px;
}

.section h2 {
  margin-bottom: 40px;
  font-size: 32px;
  text-align:center;
}

.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fafafa;
  padding: 30px;
  flex: 1 1 260px;
  max-width: 380px;
  text-align: center;
  transition: transform 0.3s ease;
}

.hover-up:hover {
  transform: translateY(-8px);
}

.dark {
  background: #1f1f1f;
  color: white;
}

.dark-card {
  background: #2c2c2c;
}

/* CONTACT */
.contact {
  text-align: center;
}

.contact > p {
  margin-bottom: 20px;
}

.contact .large {
  display: inline-block;
}

.contact .cta-group a {
  flex: 0 0 auto;
  min-width: 160px;
  text-align: center;
}

.email-note {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* FORM */
.form {
  max-width: 500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input,
.form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form textarea {
  min-height: 100px;
  resize: vertical;
}

.form button {
  margin-top: 10px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: #f5f5f5;
  font-size: 14px;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* TRUST BAR */
.trust-bar {
  background: #3E5F3C;
  color: #fff;
  padding: 8px 24px;
}

/* SECTION NAV */
.section-nav {
  background: #1f1f1f;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.section-nav-inner {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 28px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 24px;
}

.section-nav-inner a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 2px;
  transition: color 0.2s;
}

.section-nav-inner a:hover {
  color: #a8c5a4;
}

html {
  scroll-behavior: smooth;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.trust-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.trust-divider {
  opacity: 0.45;
  font-size: 0.9rem;
}

/* PROSE BLOCKS */
.prose-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.75;
}

.prose-block p + p {
  margin-top: 16px;
}

/* ALT SECTION BG */
.section.alt {
  background: #f7f7f5;
}

.section-intro {
  text-align: center;
  color: #555;
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.section-outro {
  text-align: center;
  color: #555;
  margin-top: 24px;
  font-size: 0.97rem;
}

/* INDUSTRY LIST */
.industry-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.industry-list li {
  font-size: 0.95rem;
  color: #333;
  padding: 7px 16px;
  border: 1px solid #ddd;
  background: #fafafa;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #a8c5a4;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #ccc;
}

.faq-item p a {
  color: #7db87a;
  text-decoration: underline;
}

/* CARD TEXT */
.card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #555;
}

.dark-card p {
  color: #bbb;
}

/* TRUST BAR */
/* RESPONSIVE */
@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .nav {
    padding: 15px 20px;
  }

  .nav-actions {
    right: 20px;
  }

  .hero {
    padding: 40px 20px;
    height: auto;
    min-height: 360px;
  }

  .logo-img {
    height: 70px;
  }

  .trust-bar {
    padding: 12px 20px;
  }

  .section-nav-inner {
    gap: 4px 16px;
    padding: 10px 16px;
  }

  .section-nav-inner a {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .trust-divider {
    display: none;
  }

  .trust-bar-inner {
    flex-direction: column;
    flex-wrap: wrap;
    white-space: normal;
    gap: 6px;
  }

  .industry-list {
    flex-direction: column;
    align-items: center;
  }
}