.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.875rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 79, 8, 0.2), rgba(245, 79, 8, 0.06));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.header__cta:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 79, 8, 0.55);
  box-shadow: 0 12px 26px rgba(245, 79, 8, 0.18);
}

.header__cta--primary {
  background: linear-gradient(135deg, rgba(245, 79, 8, 0.98), rgba(202, 76, 26, 0.96));
  border-color: rgba(245, 79, 8, 0.6);
}

@media (max-width: 61.99875em) {
  .header__cta {
    width: 100%;
    justify-content: center;
  }
}

.bc-cta-band {
  padding: 1.5rem 0 0.5rem;
}

.bc-cta-band__inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.97), rgba(34, 34, 34, 0.97));
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.bc-cta-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 188px;
  padding: 1.3rem 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
}

.bc-cta-card--accent {
  background: linear-gradient(135deg, rgba(245, 79, 8, 0.18), rgba(255,255,255,0.02));
}

.bc-cta-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bc-cta-card__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  line-height: 1.2;
}

.bc-cta-card__text {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
  font-size: 0.97rem;
}

.bc-cta-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f54f0a, #d94912);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bc-cta-card__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(245, 79, 8, 0.22);
}

@media (max-width: 61.99875em) {
  .bc-cta-band__inner {
    grid-template-columns: 1fr;
  }
}

.bc-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(9, 9, 9, 0.68);
  backdrop-filter: blur(10px);
  z-index: 2000;
}

.bc-modal.is-open {
  display: flex;
}

.bc-modal__panel {
  position: relative;
  width: min(560px, 100%);
  background: #f6f6f6;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(17,17,17,0.3);
  overflow: hidden;
}

.bc-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, #111, #1d1d1d);
  color: #fff;
}

.bc-modal__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.bc-modal__close {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

.bc-modal__body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.bc-sheet-form {
  display: grid;
  gap: 0.9rem;
}

.bc-sheet-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.bc-sheet-form__field {
  display: grid;
  gap: 0.45rem;
}

.bc-sheet-form__field--wide {
  grid-column: 1 / -1;
}

.bc-sheet-form__label {
  color: rgba(17,17,17,0.8);
  font-size: 0.88rem;
  font-weight: 700;
}

.bc-sheet-form__input,
.bc-sheet-form__textarea,
.bc-sheet-form__select {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 12px;
  background: #fff;
  color: #171717;
  font: inherit;
  box-sizing: border-box;
}

.bc-sheet-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.bc-sheet-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #f54f0a, #d94912);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.bc-form-status {
  min-height: 1.5rem;
  font-size: 0.9rem;
  color: rgba(17,17,17,0.72);
}

.bc-form-status.is-success {
  color: #1f8a52;
}

.bc-form-status.is-error {
  color: #b42525;
}

@media (max-width: 35em) {
  .bc-sheet-form__grid {
    grid-template-columns: 1fr;
  }
}

.search-broker__brokers .brokers__block,
.page .brokers__block {
  min-height: 270px;
}

.brokers__logo,
.search-broker__brokers .brokers__logo,
.page .brokers__logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 200px !important;
  height: 66px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding: 0.45rem !important;
  margin: 0 auto 0.6rem !important;
}

.brokers__logo img,
.search-broker__brokers .brokers__logo img,
.page .brokers__logo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 8px !important;
}

.broker-logo-placeholder,
.sim-card__logo-placeholder,
.broker-logo-fallback {
  font-size: 1.3rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #2d2d2d !important;
  text-transform: uppercase !important;
}

.bc-page-cta {
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bc-page-cta__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(35, 35, 35, 0.96));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 28px rgba(17,17,17,0.12);
}

.bc-page-cta__card--soft {
  background: linear-gradient(135deg, rgba(245, 79, 8, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(245, 79, 8, 0.18);
}

.bc-page-cta__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.bc-page-cta__text {
  margin: 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.bc-page-cta__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f54f0a, #d94912);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.form-contacts__item--wide {
  grid-column: 1 / -1;
}

.form-contacts__textarea {
  min-height: 120px;
  resize: vertical;
}

.contacts__form,
.form-contacts {
  display: grid;
  gap: 1rem;
}

@media (max-width: 61.99875em) {
  .bc-page-cta {
    grid-template-columns: 1fr;
  }
}
