:root {
  --bm-bg: #0b0d10;
  --bm-bg-soft: #12151a;
  --bm-surface: #171b22;
  --bm-border: rgba(255, 255, 255, 0.08);
  --bm-text: #eceff4;
  --bm-text-dim: #a8b0bd;
  --bm-accent: #f5b544;
  --bm-accent-strong: #ffcb63;
  --bm-accent-ink: #1a1200;
  --bm-glow: rgba(245, 181, 68, 0.35);
  --bm-radius: 16px;
  --bm-radius-lg: 26px;
  --bm-shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.75);
  --bm-font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --bm-font-display: "Playfair Display", "Inter", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--bm-font);
  background-color: var(--bm-bg);
  color: var(--bm-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  display: block;
  background: var(--bm-bg);
}

h1, h2, h3, h4, h5 {
  font-family: var(--bm-font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--bm-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

p, li, span, label, small {
  color: var(--bm-text-dim);
}

a {
  color: var(--bm-accent);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--bm-accent-strong);
}

.bm-section {
  position: relative;
  padding: 96px 0;
}

.bm-section--tight { padding: 64px 0; }
.bm-section--flush { padding: 0; }

.bm-section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bm-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.bm-section__title {
  margin-bottom: 18px;
}

.bm-section__lead {
  max-width: 680px;
  font-size: 1.05rem;
}

.bm-section__head {
  margin-bottom: 54px;
}

.bm-section__head--center {
  text-align: center;
}

.bm-section__head--center .bm-section__lead {
  margin-left: auto;
  margin-right: auto;
}

.bm-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--bm-text);
}

.bm-overlay > .container,
.bm-overlay > .container-fluid {
  position: relative;
  z-index: 2;
}

.bm-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}

.bm-hero__title {
  max-width: 16ch;
}

.bm-hero__lead {
  max-width: 620px;
  font-size: 1.12rem;
  margin-top: 20px;
}

.bm-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 42px;
}

.bm-hero__meta-item strong {
  display: block;
  font-family: var(--bm-font-display);
  font-size: 1.9rem;
  color: var(--bm-accent);
  line-height: 1;
}

.bm-hero__meta-item span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  line-height: 1;
}

.bm-btn--primary {
  background: var(--bm-accent);
  color: var(--bm-accent-ink);
  box-shadow: 0 12px 30px -12px var(--bm-glow);
}

.bm-btn--primary:hover {
  background: var(--bm-accent-strong);
  color: var(--bm-accent-ink);
  transform: translateY(-2px);
}

.bm-btn--ghost {
  background: transparent;
  color: var(--bm-text);
  border-color: rgba(255, 255, 255, 0.28);
}

.bm-btn--ghost:hover {
  border-color: var(--bm-accent);
  color: var(--bm-accent);
  transform: translateY(-2px);
}

.bm-btn--block {
  width: 100%;
  justify-content: center;
}

.bm-card {
  background: var(--bm-surface);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 181, 68, 0.45);
  box-shadow: var(--bm-shadow);
}

.bm-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0e1116;
}

.bm-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.bm-card:hover .bm-card__media img {
  transform: scale(1.06);
}

.bm-card__body {
  padding: 26px 26px 30px;
}

.bm-card__tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bm-accent);
  font-weight: 600;
}

.bm-card__title {
  font-size: 1.25rem;
  margin: 12px 0 10px;
}

.bm-card__text {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.bm-card__link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bm-feature {
  background: var(--bm-bg-soft);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 34px 30px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bm-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 181, 68, 0.4);
}

.bm-feature__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(245, 181, 68, 0.12);
  color: var(--bm-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.bm-feature__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.bm-feature__text {
  font-size: 0.93rem;
  margin-bottom: 0;
}

.bm-stats {
  background: var(--bm-bg-soft);
  border-top: 1px solid var(--bm-border);
  border-bottom: 1px solid var(--bm-border);
}

.bm-stat {
  text-align: center;
  padding: 12px 8px;
}

.bm-stat__num {
  font-family: var(--bm-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bm-accent);
  line-height: 1;
  display: block;
}

.bm-stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
}

.bm-review {
  background: var(--bm-surface);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius-lg);
  padding: 34px 30px;
  height: 100%;
}

.bm-review__stars {
  color: var(--bm-accent);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.bm-review__text {
  font-size: 1rem;
  color: var(--bm-text);
  font-style: italic;
  margin-bottom: 22px;
}

.bm-review__author {
  font-weight: 600;
  color: var(--bm-text);
  font-size: 0.95rem;
}

.bm-review__role {
  font-size: 0.82rem;
  display: block;
}

.bm-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 46px;
  padding: 18px 0;
}

.bm-logo-row__item {
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.bm-logo-row__item:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.bm-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--bm-radius-lg);
}

.bm-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bm-slider__slide {
  min-width: 100%;
  position: relative;
}

.bm-slider__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  color: var(--bm-text);
}

.bm-slider__caption h3 {
  color: var(--bm-text);
  margin-bottom: 8px;
}

.bm-slider__caption p {
  color: rgba(236, 239, 244, 0.85);
  margin-bottom: 0;
  max-width: 560px;
}

.bm-slider__media {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #0e1116;
}

.bm-slider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bm-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  color: var(--bm-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.bm-slider__nav:hover {
  background: var(--bm-accent);
  color: var(--bm-accent-ink);
  border-color: var(--bm-accent);
}

.bm-slider__nav--prev { left: 18px; }
.bm-slider__nav--next { right: 18px; }

.bm-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.bm-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.bm-slider__dot.is-active {
  background: var(--bm-accent);
  transform: scale(1.25);
}

.bm-process {
  counter-reset: bm-process;
}

.bm-process__step {
  position: relative;
  padding: 28px 24px 28px 76px;
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  background: var(--bm-bg-soft);
  height: 100%;
}

.bm-process__step::before {
  counter-increment: bm-process;
  content: counter(bm-process);
  position: absolute;
  left: 24px;
  top: 26px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bm-accent);
  color: var(--bm-accent-ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bm-font);
}

.bm-process__step h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.bm-process__step p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.bm-price {
  background: var(--bm-surface);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius-lg);
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bm-price:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 181, 68, 0.5);
}

.bm-price--featured {
  border-color: var(--bm-accent);
  box-shadow: 0 22px 60px -30px var(--bm-glow);
}

.bm-price__badge {
  align-self: flex-start;
  background: var(--bm-accent);
  color: var(--bm-accent-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.bm-price__name {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.bm-price__value {
  font-family: var(--bm-font-display);
  font-size: 2.4rem;
  color: var(--bm-text);
  line-height: 1;
}

.bm-price__value small {
  font-size: 0.9rem;
  color: var(--bm-text-dim);
  font-family: var(--bm-font);
}

.bm-price__list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  flex-grow: 1;
}

.bm-price__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.94rem;
}

.bm-price__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--bm-accent);
  font-size: 0.78rem;
}

.bm-gallery__item {
  position: relative;
  border-radius: var(--bm-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #0e1116;
}

.bm-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.bm-gallery__item:hover img {
  transform: scale(1.08);
}

.bm-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  color: var(--bm-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.bm-faq {
  border-bottom: 1px solid var(--bm-border);
}

.bm-faq__question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--bm-text);
  text-align: left;
  padding: 24px 40px 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  font-family: var(--bm-font-display);
}

.bm-faq__question::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bm-accent);
  font-size: 0.9rem;
}

.bm-faq.is-open .bm-faq__question::after {
  content: "\f068";
}

.bm-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.bm-faq__answer p {
  padding-bottom: 24px;
  margin: 0;
  font-size: 0.95rem;
}

.bm-faq.is-open .bm-faq__answer {
  max-height: 400px;
}

.bm-form {
  background: var(--bm-surface);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius-lg);
  padding: 40px 34px;
}

.bm-form__control {
  width: 100%;
  background: var(--bm-bg);
  border: 1px solid var(--bm-border);
  color: var(--bm-text);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bm-form__control::placeholder {
  color: rgba(168, 176, 189, 0.7);
}

.bm-form__control:focus {
  outline: none;
  border-color: var(--bm-accent);
  box-shadow: 0 0 0 3px rgba(245, 181, 68, 0.18);
}

.bm-form__label {
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--bm-text-dim);
}

.bm-form__note {
  font-size: 0.8rem;
  margin-top: 14px;
}

.bm-form__error {
  color: #ff8a7a;
  font-size: 0.82rem;
  margin-top: 6px;
  display: none;
}

.bm-form__group.has-error .bm-form__control {
  border-color: #ff8a7a;
}

.bm-form__group.has-error .bm-form__error {
  display: block;
}

.bm-notice {
  display: none;
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(76, 201, 132, 0.12);
  border: 1px solid rgba(76, 201, 132, 0.4);
  color: #b8f0d0;
  font-size: 0.92rem;
}

.bm-notice.is-visible {
  display: block;
}

.bm-map {
  border-radius: var(--bm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--bm-border);
  line-height: 0;
}

.bm-map iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
}

.bm-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bm-info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bm-border);
}

.bm-info-list li:last-child {
  border-bottom: none;
}

.bm-info-list i {
  color: var(--bm-accent);
  font-size: 1.05rem;
  margin-top: 4px;
  width: 20px;
  text-align: center;
}

.bm-info-list strong {
  display: block;
  color: var(--bm-text);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.bm-info-list span {
  font-size: 0.9rem;
}

.bm-timeline {
  position: relative;
  padding-left: 34px;
}

.bm-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--bm-accent), rgba(245, 181, 68, 0.05));
}

.bm-timeline__item {
  position: relative;
  padding-bottom: 34px;
}

.bm-timeline__item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bm-bg);
  border: 3px solid var(--bm-accent);
}

.bm-timeline__year {
  font-family: var(--bm-font-display);
  color: var(--bm-accent);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 6px;
}

.bm-timeline__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bm-timeline__text {
  font-size: 0.92rem;
  margin: 0;
}

.bm-team {
  background: var(--bm-surface);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bm-team:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 181, 68, 0.4);
}

.bm-team__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0e1116;
}

.bm-team__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bm-team__body {
  padding: 24px;
  text-align: center;
}

.bm-team__name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.bm-team__role {
  font-size: 0.84rem;
  color: var(--bm-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bm-cta {
  padding: 90px 0;
}

.bm-cta__title {
  max-width: 20ch;
}

.bm-cta__lead {
  max-width: 620px;
  margin: 18px 0 30px;
}

.bm-list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bm-list-check li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.bm-list-check li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--bm-accent);
  font-size: 0.85rem;
}

.bm-quote {
  border-left: 3px solid var(--bm-accent);
  padding: 8px 0 8px 26px;
  font-family: var(--bm-font-display);
  font-size: 1.25rem;
  color: var(--bm-text);
  font-style: italic;
}

.bm-divider {
  height: 1px;
  background: var(--bm-border);
  border: none;
  margin: 0;
}

.bm-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  background: rgba(11, 13, 16, 0.96);
  border-top: 1px solid var(--bm-border);
  padding: 18px 22px;
  display: none;
  backdrop-filter: blur(10px);
}

.bm-cookie.is-visible {
  display: block;
}

.bm-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.bm-cookie__text {
  font-size: 0.9rem;
  margin: 0;
  max-width: 760px;
}

.bm-cookie__actions {
  display: flex;
  gap: 12px;
}

.bm-cookie__link {
  background: none;
  border: none;
  color: var(--bm-accent);
  font-size: 0.9rem;
  padding: 8px 6px;
  cursor: pointer;
  font-weight: 600;
}

.bm-cookie__link:hover {
  color: var(--bm-accent-strong);
}

.bm-prose h2 {
  margin-top: 46px;
  margin-bottom: 16px;
  font-size: 1.7rem;
}

.bm-prose h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.bm-prose p,
.bm-prose li {
  font-size: 0.98rem;
}

.bm-prose ul {
  padding-left: 22px;
}

.bm-prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#inject-header,
#inject-footer {
  position: relative;
  z-index: 5;
}

.text-muted {
  color: var(--bm-text-dim) !important;
}

@media (max-width: 991px) {
  .bm-section { padding: 72px 0; }
  .bm-hero { padding: 120px 0 80px; min-height: auto; }
  .bm-slider__caption { padding: 24px; }
}

@media (max-width: 575px) {
  .bm-section { padding: 56px 0; }
  .bm-form { padding: 30px 22px; }
  .bm-price { padding: 32px 24px; }
  .bm-cookie__actions { width: 100%; }
  .bm-cookie__actions .bm-btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}