
/* ================= GLOBAL ================= */
body { scroll-behavior: smooth; }
.section-padding { padding: 80px 0; }

/* ================= TOP BAR ================= */
.top-bar {
  background: #0b3a53;
  color: #ffffff;
  font-size: 14px;
}
.top-bar span { color: #ffd54f; }

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #0b3a53, #0d6efd);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}
.hero h1 { font-size: 42px; }
.hero p { font-size: 18px; }

.hero-badge {
  text-align: center;
}
.hero-badge img {
  max-width: 220px;
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}
@media (max-width: 991px) {
  .hero-badge {
    margin-top: 40px;
  }
}

/* ================= TRUST STRIP ================= */
.trust-strip {
  background: #f8f9fa;
  border-bottom: 1px solid #eaeaea;
}
.trust-strip img { max-height: 140px; }

/* ================= FEATURES ================= */
.feature-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  height: 100%;
}

/* ================= PROCESS ================= */
.process-step {
  padding: 30px;
  border-left: 4px solid #0d6efd;
  background: #f9fbff;
  border-radius: 8px;
}

/* ================= CTA ================= */
.cta-section {
  background: linear-gradient(135deg, #0d6efd, #0b3a53);
  color: #ffffff;
}

/* ================= WHATSAPP ================= */
.whatsapp-sticky {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 9999;
}
.whatsapp-sticky svg {
  width: 28px;
  height: 28px;
}

/* ================= POPUP ================= */
.lead-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}
.lead-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
}
.lead-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
