.b2b-page {
  color: #F4F7FB;
}

.b2b-hero {
  background: linear-gradient(135deg, #080B12 0%, #101522 55%, rgba(139, 92, 255, 0.15) 100%);
  border-radius: 16px;
  padding: 48px 32px;
  margin-bottom: 32px;
}
.b2b-hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  max-width: 820px;
}
.b2b-hero__subtitle {
  font-size: 18px;
  color: #AAB3C5;
  max-width: 720px;
  margin: 0 0 24px;
}
.b2b-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.b2b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: opacity 0.2s;
}
.b2b-btn:hover {
  opacity: 0.9;
}
.b2b-btn--primary {
  background: linear-gradient(90deg, #2F80FF, #8B5CFF);
  color: #F4F7FB;
}
.b2b-btn--secondary {
  background: rgba(0, 229, 212, 0.12);
  color: #00E5D4;
  border-color: rgba(0, 229, 212, 0.35);
}
.b2b-btn--ghost {
  background: transparent;
  color: #F4F7FB;
  border-color: rgba(244, 247, 251, 0.25);
}

.b2b-section {
  background: #141B2D;
  border: 1px solid rgba(244, 247, 251, 0.06);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
}
.b2b-section__title {
  font-size: 22px;
  margin: 0 0 14px;
}
.b2b-section a {
  color: #00E5D4;
}

.b2b-grid {
  display: grid;
  gap: 16px;
}
.b2b-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.b2b-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.b2b-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 959px) {
  .b2b-grid--2, .b2b-grid--3, .b2b-grid--4 {
    grid-template-columns: 1fr;
  }
}

.b2b-card {
  background: rgba(8, 11, 18, 0.55);
  border: 1px solid rgba(244, 247, 251, 0.08);
  border-radius: 12px;
  padding: 20px;
}
.b2b-card__title {
  font-size: 18px;
  margin: 0 0 8px;
}
.b2b-card__text {
  color: #AAB3C5;
  margin: 0 0 12px;
}

.b2b-cta-band {
  background: linear-gradient(90deg, rgba(47, 128, 255, 0.2), rgba(139, 92, 255, 0.2));
  border-radius: 14px;
  padding: 28px;
  margin: 28px 0;
  text-align: center;
}
.b2b-cta-band__title {
  font-size: 24px;
  margin: 0 0 8px;
}
.b2b-cta-band__text {
  color: #AAB3C5;
  margin: 0 0 16px;
}

.b2b-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .b2b-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.b2b-stats__item {
  background: #141B2D;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.b2b-stats__value {
  font-size: 28px;
  font-weight: 700;
  color: #00E5D4;
}
.b2b-stats__label {
  font-size: 13px;
  color: #AAB3C5;
}

.b2b-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}
.b2b-trust__badge {
  background: rgba(244, 247, 251, 0.06);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: #AAB3C5;
}

.b2b-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.b2b-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.b2b-table th, .b2b-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(244, 247, 251, 0.08);
  text-align: left;
}
.b2b-table th {
  color: #AAB3C5;
  font-weight: 600;
}
.b2b-table tr:hover td {
  background: rgba(47, 128, 255, 0.06);
}

.b2b-faq__item {
  border-bottom: 1px solid rgba(244, 247, 251, 0.08);
  padding: 14px 0;
}
.b2b-faq__q {
  font-weight: 600;
  margin: 0 0 6px;
}
.b2b-faq__a {
  color: #AAB3C5;
  margin: 0;
}

.b2b-form {
  background: #141B2D;
  border-radius: 14px;
  padding: 24px;
}
.b2b-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .b2b-form__row {
    grid-template-columns: 1fr;
  }
}
.b2b-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.b2b-form__field label {
  font-size: 13px;
  color: #AAB3C5;
}
.b2b-form__field input, .b2b-form__field select, .b2b-form__field textarea {
  background: #080B12;
  border: 1px solid rgba(244, 247, 251, 0.15);
  border-radius: 8px;
  color: #F4F7FB;
  padding: 10px 12px;
}
.b2b-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

.b2b-home .b2b-hero {
  margin-top: 0;
}

.b2b-nav-cta {
  margin-left: 12px;
}

.menu__cta {
  padding: 16px 20px;
}

.b2b-lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .b2b-lead-form__grid {
    grid-template-columns: 1fr;
  }
}
.b2b-lead-form__honeypot {
  display: none;
}
.b2b-lead-form__success {
  background: rgba(24, 195, 126, 0.15);
  border: 1px solid rgba(24, 195, 126, 0.35);
  border-radius: 10px;
  padding: 16px;
}
.b2b-lead-form .form-group {
  margin-bottom: 12px;
}
.b2b-lead-form .help-block {
  color: #FFB020;
  font-size: 13px;
}

.b2b-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.b2b-filters__input {
  background: #080B12;
  border: 1px solid rgba(244, 247, 251, 0.15);
  border-radius: 8px;
  color: #F4F7FB;
  padding: 10px 12px;
  min-width: 140px;
}

.b2b-cards--compare, .b2b-cards--marketplace {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.b2b-card__list {
  margin: 0;
  padding-left: 18px;
  color: #AAB3C5;
}
.b2b-card__image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.b2b-card__meta {
  font-size: 13px;
  color: #AAB3C5;
}

.b2b-section__lead {
  color: #AAB3C5;
  margin-bottom: 16px;
}

.header__b2b-cta .b2b-btn {
  padding: 8px 16px;
  font-size: 14px;
}
