.b2b-structure {
  padding: 96px 24px;
  background-color: #f8f9fa; /* Matches standard light backgrounds */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.b2b-structure__inner {
  width: 100%;
  max-width: 1244px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b2b-structure__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 45px;
  width: 100%;
}

.b2b-structure-title {
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  line-height: 1.389;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: #3a3a3a;
  margin: 0;
  text-align: center;
  max-width: 600px;
}

.b2b-structure-pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 45px;
}

.b2b-structure-pills__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.b2b-pill {
  background: #ffffff;
  border-radius: 158px;
  padding: 16px 30px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 18px rgba(17, 24, 52, 0.03);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

.b2b-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 52, 0.06);
}

.b2b-pill__icon {
  width: 24px;
  height: 24px;
  color: #9b876b; /* gold checkmark color */
  flex-shrink: 0;
}

.b2b-pill__text {
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 300; /* Light weight as in figma code: font-light */
  color: #3a3a3a;
  letter-spacing: 0.36px;
  white-space: nowrap;
}

.b2b-structure-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 766px;
  margin-bottom: 45px;
}

.b2b-structure-copy__title {
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3a3a3a;
  letter-spacing: 0.36px;
  margin: 0;
}

.b2b-structure-copy__desc {
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.389;
  color: #3a3a3a;
  letter-spacing: 0.36px;
  margin: 0;
}

.b2b-structure__action {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Responsiveness */
@media (max-width: 768px) {
  .b2b-structure {
    padding: 64px 16px;
  }
  
  .b2b-structure__header {
    margin-bottom: 32px;
  }
  
  .b2b-structure-title {
    font-size: 26px;
  }
  
  .b2b-structure-pills {
    gap: 15px;
    margin-bottom: 32px;
  }
  
  .b2b-structure-pills__row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 480px;
  }
  
  .b2b-pill {
    padding: 14px 20px;
    justify-content: flex-start;
  }
  
  .b2b-pill__text {
    font-size: 16px;
    white-space: normal; /* allow wrapping on narrow mobile screens */
  }
  
  .b2b-structure-copy {
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .b2b-structure-copy__title,
  .b2b-structure-copy__desc {
    font-size: 16px;
  }
}
