.b2b-hub-hero {
  position: relative;
  min-height: 450px;
  background: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1920&h=1080&fit=crop")
    center/cover no-repeat;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.b2b-hub-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 82, 130, 0.92) 0%, rgba(42, 61, 95, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-hub-hero-inner {
  padding: 20px;
}

.b2b-hub-breadcrumbs {
  margin: 12px 0 16px;
  text-align: left;
}

.b2b-hub-breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2b-hub-breadcrumb-item {
  color: #5a6d7e;
  font-size: 0.875rem;
  padding-left: 0;
}

.b2b-hub-breadcrumb-item + .b2b-hub-breadcrumb-item::before {
  content: "›";
  display: inline-block;
  float: none;
  font-size: 17px;
  line-height: 16px;
  margin: 0 0.5rem;
  padding-left: 2px;
  padding-right: 0;
  color: #6c757d;
}

.b2b-hub-breadcrumb-link {
  color: #666;
  text-decoration: none;
}

.b2b-hub-breadcrumb-link:hover {
  color: #666;
  text-decoration: underline;
}

.b2b-hub-breadcrumb-item.is-active {
  color: #666;
  font-weight: 600;
}

body#module-ec_b2bsolutions-hub .b2b-hub-breadcrumbs .b2b-hub-breadcrumb-item,
body#module-ec_b2bsolutions-hub .b2b-hub-breadcrumbs .b2b-hub-breadcrumb-item span,
body#module-ec_b2bsolutions-hub .b2b-hub-breadcrumbs .b2b-hub-breadcrumb-link {
  color: #666 !important;
}

.b2b-hub-hero-content {
  max-width: 800px;
  color: white;
  padding: 10px 20px;
  text-align: center;
}

.b2b-hub-hero .h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  color: white;
}

.b2b-hub-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
  color: white;
}

.b2b-hub-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.b2b-hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  color: white;
}

.b2b-hub-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.industries-section {
  padding: 60px 0;
}

.industries-section .section-header {
  text-align: center;
  margin-bottom: 0;
}

.industries-section .section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000 !important;
  margin-bottom: 8px;
}

.industries-section .section-subtitle {
  font-size: 1rem;
  color: #666;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.industry-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.industry-card-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-card-image img {
  transform: scale(1.05);
}

.industry-card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.industry-card-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 1;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.industry-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #3b5282;
}

.industry-card-content {
  padding: 20px;
  padding-right: 37px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.industry-card-content .h3,
.industry-card-content .industry-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a3a5c;
}

.industry-card-content .industry-card-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  flex: 1;
}

.industry-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b6eb7;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 15px;
}

.industry-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.industry-card:hover .industry-card-link svg {
  transform: translateX(4px);
}

.trust-section {
  padding: 60px 0;
  background: white;
}

.trust-section .section-header {
  text-align: center;
  margin-bottom: 0;
}

.trust-section .section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000 !important;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #e8f4fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 35px;
  height: 35px;
  stroke: #0b6eb7;
}

.trust-item .h4,
.trust-item .trust-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a3a5c;
}

.trust-item .trust-text {
  font-size: 0.9rem;
  color: #666;
}

.cta-banner-light {
  background: #f8f9fa;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid #e9ecef;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.cta-banner-light .cta-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a3a5c;
}

.cta-banner-light .cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: #0b6eb7;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-btn-primary:hover {
  background: #095a96;
  color: white;
  transform: translateY(-2px);
}

.cta-btn-secondary {
  background: transparent;
  color: #1a3a5c;
  border: 2px solid #1a3a5c;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-btn-secondary:hover {
  background: #1a3a5c;
  color: white;
}

@media (max-width: 768px) {
  .b2b-hub-hero {
    min-height: auto;
  }

  .b2b-hub-hero-overlay {
    position: relative;
  }

  .b2b-hub-hero-content {
    padding: 32px 16px;
  }

  .b2b-hub-hero-inner {
    padding: 16px;
  }

  .b2b-hub-breadcrumbs {
    margin-bottom: 10px;
  }

  .b2b-hub-hero .h1 {
    font-size: 1.375rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .b2b-hub-hero p {
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .b2b-hub-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .b2b-hub-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
    gap: 6px;
    border-radius: 20px;
    justify-content: center;
  }

  .b2b-hub-badge svg {
    width: 16px;
    height: 16px;
  }
}
