.hero-b2b {
  background: var(--bg-dark);
  color: var(--secondary-white);
  padding: clamp(40px, 8vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.hero-b2b-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-b2b h1 {
  color: var(--secondary-white);
  margin-bottom: 0.3em;
}

.hero-b2b h1 span {
  color: var(--primary-yellow);
  display: block;
  margin-top: 0.2em;
}

.hero-subtitle-b2b {
  font-size: clamp(16px, 3vw, 18px);
  color: #cccccc;
  margin-bottom: 2em;
  line-height: 1.6;
  max-width: 700px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin-top: 3em;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: 0.3em;
}

.stat-label {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #cccccc;
  line-height: 1.4;
}

/* TABLET to DESKTOP - Medium (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-b2b {
      padding: 70px 0;
  }

  .hero-b2b h1 {
      font-size: 44px;
  }

  .hero-stats {
      grid-template-columns: repeat(3, 1fr);
      gap: 2em;
  }

}

/* TABLET - Small to Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-b2b {
      padding: 60px 0;
  }

  .hero-b2b h1 {
      font-size: 38px;
  }

  .hero-subtitle-b2b {
      font-size: 18px;
  }

  .hero-stats {
      grid-template-columns: 1fr;
      gap: 2.5em;
      max-width: 500px;
  }
}

/* MOBILE - Extra Small (up to 480px) */
@media (max-width: 480px) {
  .hero-b2b {
      padding: 40px 0 50px;
  }

  .hero-b2b h1 {
      font-size: 32px;
      margin-bottom: 0.4em;
  }

  .hero-subtitle-b2b {
      font-size: 17px;
      margin-bottom: 2.5em;
  }

  .hero-stats {
      grid-template-columns: 1fr;
      gap: 2.5em;
  }

  .stat-number {
      font-size: 40px;
  }

  .stat-label {
      font-size: 15px;
  }
}

/* EXTRA SMALL MOBILE (up to 360px) */
@media (max-width: 360px) {
  .hero-b2b h1 {
      font-size: 28px;
  }

  .hero-subtitle-b2b {
      font-size: 16px;
  }

  .stat-number {
      font-size: 36px;
  }
}

/* Landscape orientation optimization for tablets */
@media (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
  .hero-b2b {
      padding: 50px 0;
  }

  .hero-stats {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5em;
  }
}

/* Print styles */
@media print {
  
  .hero-b2b {
      background: white;
      color: black;
  }
}