/* =========================
   BUSINESS HERO
========================= */
.business-hero {
  padding: 130px 8% 110px;
  text-align: center;
  background: linear-gradient(120deg, #5f2c82, #49a09d);
  color: #ffffff;
}

.business-hero h1 {
  font-size: 3.4rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.business-hero p {
  max-width: 750px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* WhatsApp CTA */
.business-hero .btn-glow {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 30px;
  background: #25D366;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.business-hero .btn-glow:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* =========================
   BUSINESS SECTIONS
========================= */
.business-section {
  padding: 95px 8%;
  background: #ffffff;
}

.business-section.light {
  background: #f8f8f8;
}

.business-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 55px;
  font-weight: 700;
}

/* =========================
   BENEFITS GRID
========================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.benefit-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-8px);
}

/* =========================
   STATES GRID
========================= */
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.state-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.state-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.18);
}

.state-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.state-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* =========================
   PROCESS SECTION
========================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
}

.process-step {
  background: #ffffff;
  padding: 38px 30px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  position: relative;
  transition: 0.4s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.process-step span {
  position: absolute;
  top: -18px;
  left: 28px;
  background: linear-gradient(120deg, #5f2c82, #49a09d);
  color: #ffffff;
  padding: 9px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.process-step h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.process-step p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* =========================
   FINAL CTA
========================= */
.business-cta {
  padding: 110px 8%;
  text-align: center;
  background: #111111;
  color: #ffffff;
}

.business-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.business-cta p {
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 35px;
}

.business-cta .btn-glow {
  padding: 15px 36px;
}

/* =========================
   TRUST SECTION (reuse)
========================= */
.trust-section {
  padding: 90px 8%;
  background: #f8f8f8;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .business-hero {
    padding: 95px 6% 80px;
  }

  .business-hero h1 {
    font-size: 2.6rem;
  }

  .business-section {
    padding: 75px 6%;
  }

  .business-section h2 {
    font-size: 2.3rem;
  }

  .business-cta {
    padding: 85px 6%;
  }

  .business-cta h2 {
    font-size: 2.2rem;
  }
}
