/*
 * Bcm — Landing-page modules (Hero-Split, Credentials-Bar, Pain-Points,
 * Benefits, Process-Steps, About-Split, Testimonials, Contact-CTA, Footer).
 *
 * Colors and fonts come from CSS custom properties injected by
 * partials/base.html.twig from the theme config (Admin > Theme > Landing
 * Page Palette & Fonts) — nothing brand-specific is hardcoded here.
 * Layout, spacing and shadows reuse the tokens already defined in theme.css.
 */

/* blades.min.css setzt body{hyphens:auto} — dadurch werden lange Wörter in
   Headlines automatisch mit Trennstrich umgebrochen (z. B. "Erneuer-bare").
   Das ist unerwünscht, deshalb hier wieder deaktiviert. */
body {
  hyphens: none;
}

/* ---------- Shared building blocks ---------- */

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bcm-accent);
}
.eyebrow--light {
  color: color-mix(in oklab, var(--bcm-accent) 55%, white 45%);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.9375rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--bcm-radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bcm-accent) 40%, white 60%);
}

.section-head {
  max-width: 46rem;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-family: var(--bcm-font-heading);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--bcm-landing-deep);
  margin: 0.75rem 0 0.9rem;
}
.section-head__intro {
  font-size: 1.1875rem;
  color: var(--bcm-landing-muted);
  margin: 0;
}

.media-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(
    145deg,
    var(--bcm-landing-surface),
    var(--bcm-landing-border)
  );
  color: var(--bcm-landing-muted);
  font-size: 2.5rem;
}
.media-slot--dark {
  background: linear-gradient(
    145deg,
    var(--bcm-landing-deep),
    var(--bcm-landing-deeper)
  );
  color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  opacity: 1;
}

/* Anchor nav: highlight the "Kontakt" entry (header.nav_cta: true) as a
   filled pill button instead of a plain text link. */
.navigation a.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--bcm-accent);
  color: var(--bcm-accent-contrast);
  border-radius: var(--bcm-radius);
  font-weight: 700;
}
.navigation a.nav-cta:hover {
  opacity: 0.9;
  color: var(--bcm-accent-contrast);
}

/* Subtle language switcher: a small pill next to the nav actions / inside
   the mobile menu. Deliberately quiet — it complements automatic browser-
   language detection, it isn't meant to compete with the primary CTA. */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.75rem;
  border: 1px solid var(--bcm-landing-border, rgba(0, 0, 0, 0.12));
  border-radius: var(--bcm-radius-pill, 999px);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: inherit;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.lang-switch:hover,
.lang-switch:focus-visible {
  opacity: 1;
  border-color: var(--bcm-accent);
  color: inherit;
}
.lang-switch i {
  font-size: 0.75rem;
}
.overlay-menu .lang-switch {
  margin-top: 1.5rem;
}

/* ---------- Hero (Split) ---------- */

.hero-split {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bcm-landing-deep) 0%, var(--bcm-landing-deeper) 100%);
  color: #fff;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero-split__blob {
  position: absolute;
  top: -360px;
  right: -340px;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bcm-accent) 0%, transparent 70%);
  opacity: 0.75;
  pointer-events: none;
}
.hero-split__blob--left {
  top: auto;
  right: auto;
  bottom: -260px;
  left: -240px;
  width: 800px;
  height: 800px;
  opacity: 0.6;
}
.hero-split__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-split__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
  }
}
.hero-split__title {
  font-family: var(--bcm-font-heading);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 1.25rem;
}
.hero-split__subtext {
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin: 0 0 2rem;
}
.hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-split__media {
  position: relative;
}
.hero-split__frame {
  position: relative;
  border-radius: var(--bcm-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.hero-split__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split__stats {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  right: -1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-split__stat {
  background: #fff;
  color: var(--bcm-landing-ink);
  padding: 1.1rem 1.35rem;
  border-radius: var(--bcm-radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}
.hero-split__stat-number {
  font-family: var(--bcm-font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
  line-height: 1;
}
.hero-split__stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bcm-landing-muted);
  margin-top: 0.25rem;
}

/* ---------- Credentials bar ---------- */

.credentials-bar {
  background: var(--bcm-landing-deep);
  padding-block: 1.375rem;
}
.credentials-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.credentials-bar__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  font-weight: 600;
}
.credentials-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bcm-accent);
  flex: none;
}

/* ---------- Pain points ---------- */

.pain-points {
  background: var(--bcm-landing-surface);
}
.pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pain-card {
  position: relative;
  background: var(--bcm-landing-surface-elevated);
  border: 1px solid var(--bcm-landing-border);
  border-radius: var(--bcm-radius-lg);
  padding: 1.875rem 1.75rem;
  overflow: hidden;
}
.pain-card__num {
  position: absolute;
  bottom: -10px;
  right: -15px;
  font-size: 5rem;
  color: var(--bcm-accent);
  opacity: 0.12;
  line-height: 1;
  z-index: 0;
}
.pain-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--bcm-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
  margin: 0 0 0.5rem;
}
.pain-card p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--bcm-landing-muted);
  margin: 0;
}
.pain-banner {
  margin-top: 3rem;
  background: var(--bcm-landing-deep);
  border-radius: var(--bcm-radius-lg);
  padding: 2.75rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}
.pain-banner p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  max-width: 45rem;
  line-height: 1.35;
  margin: 0;
}
.pain-banner .btn {
  white-space: nowrap;
}

/* ---------- Benefits ---------- */

.benefits {
  background: var(--bcm-landing-surface-elevated);
}
.benefits__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
@media (min-width: 860px) {
  .benefits__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}
.benefits__frame {
  position: relative;
  border-radius: var(--bcm-radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 60px rgba(0, 78, 91, 0.16);
}
.benefits__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.benefits__content h2 {
  font-family: var(--bcm-font-heading);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bcm-landing-deep);
  margin: 0.75rem 0 0;
}
.benefit-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 2rem;
}
@media (min-width: 560px) {
  .benefit-list {
    grid-template-columns: 1fr 1fr;
  }
}
.benefit-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.benefit-item__check {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--bcm-accent) 16%, white 84%);
  color: var(--bcm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.benefit-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
  margin: 0 0 0.25rem;
}
.benefit-item p {
  font-size: 0.9375rem;
  color: var(--bcm-landing-muted);
  margin: 0;
}
.benefits__quote {
  margin-top: 2.125rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bcm-landing-deep);
  border-left: 4px solid var(--bcm-accent);
  padding-left: 1.125rem;
}

/* ---------- Process steps ---------- */

.process-steps {
  background: linear-gradient(180deg, var(--bcm-landing-surface) 0%, color-mix(in oklab, var(--bcm-landing-surface) 70%, var(--bcm-landing-border) 30%) 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process-card {
  position: relative;
  background: var(--bcm-landing-surface-elevated);
  border: 1px solid var(--bcm-landing-border);
  border-radius: var(--bcm-radius-lg);
  padding: 2.5rem 1.75rem;
  overflow: hidden;
}
.process-card__ghost {
  position: absolute;
  top: -18px;
  right: 5px;
  font-family: var(--bcm-font-heading);
  font-size: 6.5rem;
  font-weight: 700;
  color: var(--bcm-accent);
  opacity: 0.12;
  line-height: 1;
  z-index: 0;
}
.process-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--bcm-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
  margin: 0 0 0.5rem;
}
.process-card p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--bcm-landing-muted);
  margin: 0;
  margin-top: 1rem;
}

/* ---------- About (dark split) ---------- */

.about-split {
  background: var(--bcm-landing-deep);
  color: #fff;
}
.about-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3.25rem;
  align-items: center;
}
@media (min-width: 860px) {
  .about-split__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
  }
}
.about-split__media {
  position: relative;
}
.about-split__frame {
  border-radius: var(--bcm-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.about-split__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-split__badge {
  position: absolute;
  bottom: -2.5rem;
  right: -2rem;
  width: min(220px, 60vw);
  height: auto;
  background: #fff;
  border-radius: var(--bcm-radius-md);
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.about-split__content h2 {
  font-family: var(--bcm-font-heading);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0.75rem 0 1.25rem;
}
.about-split__content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38rem;
  margin: 0 0 1.125rem;
}
.about-credits {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem 1.75rem;
  max-width: 38rem;
  margin-top: 1.5rem;
}
@media (min-width: 560px) {
  .about-credits {
    grid-template-columns: 1fr 1fr;
  }
}
.about-credits__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1rem;
  font-weight: 600;
}
.about-credits__check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bcm-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
}

/* ---------- Testimonials ---------- */

.testimonials {
  background: var(--bcm-landing-surface-elevated);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--bcm-landing-surface);
  border: 1px solid var(--bcm-landing-border);
  border-radius: var(--bcm-radius-lg);
  padding: 2rem 1.875rem;
}
.testimonial-card__stars {
  color: var(--bcm-accent);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card__quote {
  flex: 1;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--bcm-landing-ink);
  margin: 0;
}
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
.testimonial-card__avatar {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bcm-landing-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bcm-landing-muted);
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
}
.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--bcm-landing-muted);
}

/* ---------- Contact CTA ---------- */

.contact-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bcm-landing-deeper) 0%, var(--bcm-landing-deep) 55%, color-mix(in oklab, var(--bcm-accent) 55%, var(--bcm-landing-deep) 45%) 100%);
  color: #fff;
  text-align: center;
  padding-block: clamp(4rem, 9vw, 6.5rem);
}
.contact-cta__blob {
  position: absolute;
  top: -140px;
  left: -100px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bcm-accent) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.contact-cta__inner {
  position: relative;
  max-width: 44rem;
}
.contact-cta__inner h2 {
  font-family: var(--bcm-font-heading);
  font-size: clamp(2rem, 4.2vw, 2.875rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 1rem 0 1.125rem;
}
.contact-cta__text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 2.5rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem 2.5rem;
  margin-top: 2.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 600;
}
.contact-info i {
  margin-right: 0.4rem;
}
.contact-info a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.contact-info a:hover {
  color: inherit;
  text-decoration: underline;
}

/* ---------- Footer ---------- */

/* #footer.site-footer (id + class): theme.css's generic `#footer { ... }`
   rule is an ID selector and would otherwise win over our `.site-footer`
   class rules regardless of load order. */
#footer.site-footer {
  background: var(--bcm-landing-deeper);
  color: rgba(255, 255, 255, 0.6);
  padding-block: clamp(3rem, 6vw, 4rem) 2rem;
  text-align: left;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  text-align: left;
}
@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.site-footer__logo {
  display: inline-flex;
}
.site-footer__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.site-footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  max-width: 24rem;
  margin: 0;
}
.site-footer__col h3 {
  font-family: var(--bcm-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.125rem;
}
.site-footer__list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
}
.site-footer__list li {
  /* blades.min.css sets a bare `li { list-style: square }` — that direct
     declaration on the element beats list-style:none inherited from the
     parent ul, so it needs resetting here too. */
  list-style: none;
  margin: 0;
}
#footer.site-footer .site-footer__list a {
  /* theme.css's `#footer a { color: var(--bcm-text) }` targets <a> directly,
     so a plain .site-footer__list a rule (lower specificity) can't win —
     needs the #footer.site-footer prefix to beat it. */
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 400;
}
#footer.site-footer .site-footer__list a:hover {
  color: #fff;
  text-decoration: none;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}
.site-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.25rem;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
}
.site-footer__legal li {
  list-style: none;
  margin: 0;
}
#footer.site-footer .site-footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
#footer.site-footer .site-footer__legal a:hover {
  color: #fff;
}

/* ---------- Event panel ---------- */
/* Deliberately a "spotlight" moment (dark gradient, like hero/contact-cta)
   instead of another pale card — it's a promo with its own conversion goal,
   so it needs to interrupt the light section rhythm around it rather than
   blend in. */

.event-panel {
  background: var(--bcm-bg);
}
.event-panel__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--bcm-landing-deep) 0%, var(--bcm-landing-deeper) 100%);
  border-radius: var(--bcm-radius-lg);
  padding: 2.5rem 2.75rem;
  box-shadow: 0 26px 55px -22px color-mix(in oklab, var(--bcm-landing-deeper) 70%, black 15%);
}
.event-panel__blob {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bcm-accent) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.event-panel__body {
  position: relative;
  flex: 1 1 26rem;
}
.event-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--bcm-radius-md);
  background: color-mix(in oklab, var(--bcm-accent) 30%, transparent);
  color: var(--bcm-accent);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.event-panel__body h2 {
  font-family: var(--bcm-font-heading);
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0.5rem 0 0.875rem;
}
.event-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 0.875rem;
}
.event-panel__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.event-panel__meta i {
  color: var(--bcm-accent);
}
.event-panel__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 40rem;
}
.event-panel__action {
  position: relative;
  flex: none;
  width: 100%;
  max-width: 19rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.event-panel__image {
  width: 100%;
  border-radius: var(--bcm-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}
.event-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-panel__cta {
  align-self: center;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  box-shadow: 0 16px 32px -8px color-mix(in oklab, var(--bcm-accent) 65%, transparent);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}
.event-panel__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px -8px color-mix(in oklab, var(--bcm-accent) 70%, transparent);
}
.event-panel__scarcity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  padding: 0.375rem 0.9375rem;
  border-radius: var(--bcm-radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.event-panel__scarcity i {
  color: var(--bcm-accent);
}

/* ---------- Page header (internal-page banner) ---------- */

.page-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bcm-landing-deep) 0%, var(--bcm-landing-deeper) 100%);
  color: #fff;
  text-align: center;
  padding-block: clamp(3rem, 7vw, 4.5rem);
}
.page-header__blob {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bcm-accent) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.page-header__inner {
  position: relative;
  max-width: 42rem;
  margin-inline: auto;
}
.page-header__title {
  font-family: var(--bcm-font-heading);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 0.75rem;
}
.page-header__subtext {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 1.5rem;
}
.page-header__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 600;
}
.page-header__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
}
.page-header__meta i {
  color: var(--bcm-accent);
}
.page-header__cta {
  margin-top: 0.25rem;
}

/* ---------- Feature grid ---------- */

.feature-grid {
  background: var(--bcm-bg-elev);
}
.feature-grid--dark {
  background: var(--bcm-landing-deep);
  color: #fff;
}
.feature-grid--dark .section-head h2 {
  color: #fff;
}
.feature-grid--dark .section-head__intro {
  color: rgba(255, 255, 255, 0.78);
}
.feature-grid__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
.feature-grid__grid--two-col-mobile {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.feature-grid__grid--two-col-mobile .feature-grid__card {
  padding: 1.25rem 1.125rem;
}
.feature-grid__grid--two-col-mobile .feature-grid__card h3 {
  hyphens: auto;
  overflow-wrap: break-word;
}
@media (min-width: 640px) {
  .feature-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .feature-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-grid__card {
  display: block;
  background: var(--bcm-landing-surface-elevated);
  border: 1px solid var(--bcm-landing-border);
  border-radius: var(--bcm-radius-lg);
  padding: 1.875rem 1.75rem;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
a.feature-grid__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bcm-shadow-raised);
  text-decoration: none;
  color: inherit;
}
.feature-grid--dark .feature-grid__card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.feature-grid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--bcm-radius-md);
  background: color-mix(in oklab, var(--bcm-accent) 16%, white 84%);
  color: var(--bcm-accent);
  font-size: 1.125rem;
  margin-bottom: 1.125rem;
}
.feature-grid--dark .feature-grid__icon {
  background: color-mix(in oklab, var(--bcm-accent) 30%, transparent);
}
.feature-grid__card h3 {
  font-family: var(--bcm-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
  margin: 0 0 0.5rem;
}
.feature-grid--dark .feature-grid__card h3 {
  color: #fff;
}
.feature-grid__card p {
  font-size: 0.9375rem;
  color: var(--bcm-landing-muted);
  margin: 0;
}
.feature-grid--dark .feature-grid__card p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Content columns ---------- */

.content-columns {
  background: var(--bcm-landing-surface);
}
.content-columns__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem 2.5rem;
}
@media (min-width: 720px) {
  .content-columns__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .content-columns__col + .content-columns__col {
    border-left: 1px solid var(--bcm-landing-border);
    padding-left: 2.5rem;
  }
}
.content-columns__col h3 {
  font-family: var(--bcm-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
  margin: 0 0 1rem;
}
.content-columns__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.content-columns__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--bcm-landing-muted);
  line-height: 1.5;
}
.content-columns__list i {
  color: var(--bcm-accent);
  margin-top: 0.25rem;
  flex: none;
}
.content-columns__note {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  background: var(--bcm-landing-surface-elevated);
  border: 1px solid var(--bcm-landing-border);
  border-radius: var(--bcm-radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
}
.content-columns__note p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bcm-landing-deep);
}

/* ---------- Form panel ---------- */

.form-panel {
  background: var(--bcm-bg-elev);
}
.form-panel__card {
  background: var(--bcm-landing-surface-elevated);
  border: 1px solid var(--bcm-landing-border);
  border-radius: var(--bcm-radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--bcm-shadow-card);
}
.form-panel__card h2 {
  font-family: var(--bcm-font-heading);
  color: var(--bcm-landing-deep);
}

/* ---------- Section head modifier: centered ---------- */

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- Hero breadcrumb ---------- */

.hero-split__breadcrumb {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--bcm-accent) 55%, white 45%);
  margin-bottom: 1.25rem;
}
.hero-split__breadcrumb a {
  color: inherit;
}
.hero-split__breadcrumb a:hover {
  color: #fff;
}

/* ---------- Process timeline ---------- */

.process-timeline {
  background: var(--bcm-landing-surface);
  border-bottom: 1px solid var(--bcm-landing-border);
}
.process-timeline__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}
@media (min-width: 720px) {
  .process-timeline__row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.process-timeline__connector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.process-timeline__num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bcm-accent);
  color: var(--bcm-accent-contrast);
  font-size: 1rem;
  font-weight: 700;
}
.process-timeline__line {
  flex: 1;
  height: 2px;
  background: var(--bcm-landing-border);
}
@media (max-width: 719px) {
  .process-timeline__line {
    display: none;
  }
}
.process-timeline__step h3 {
  font-family: var(--bcm-font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
  margin: 0 0 0.375rem;
}
.process-timeline__step p {
  font-size: 0.875rem;
  color: var(--bcm-landing-muted);
  margin: 0;
}

/* ---------- Service showcase ---------- */

.service-showcase__row {
  padding-block: 3.5rem;
}
.service-showcase__row:nth-child(even) {
  background: var(--bcm-landing-surface);
}
.service-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .service-showcase__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
  }
  .service-showcase__grid--reverse .service-showcase__media {
    order: 2;
  }
  .service-showcase__grid--reverse .service-showcase__content {
    order: 1;
  }
}
.service-showcase__frame {
  border-radius: var(--bcm-radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 24px 60px rgba(0, 78, 91, 0.14);
}
.service-showcase__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-showcase__kicker-row {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.service-showcase__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--bcm-radius-md);
  background: color-mix(in oklab, var(--bcm-accent) 16%, white 84%);
  color: var(--bcm-accent);
  font-size: 0.9375rem;
  font-weight: 700;
}
.service-showcase__content h3 {
  font-family: var(--bcm-font-heading);
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bcm-landing-deep);
  margin: 0 0 0.875rem;
}
.service-showcase__text {
  font-size: 1.0625rem;
  color: var(--bcm-landing-muted);
  margin: 0 0 1.375rem;
}
.service-showcase__list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.service-showcase__list-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--bcm-landing-ink);
}
.service-showcase__check {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 0.0625rem;
  border-radius: 50%;
  background: color-mix(in oklab, var(--bcm-accent) 16%, white 84%);
  color: var(--bcm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
}
.service-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-showcase__tags span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bcm-landing-deep);
  background: var(--bcm-landing-surface);
  border: 1px solid var(--bcm-landing-border);
  border-radius: var(--bcm-radius-pill);
  padding: 0.375rem 0.8125rem;
}

/* ---------- Stats split (dark) ---------- */

.stats-split {
  background: var(--bcm-landing-deep);
  color: #fff;
}
.stats-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .stats-split__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
  }
}
.stats-split__content h2 {
  font-family: var(--bcm-font-heading);
  font-size: clamp(1.75rem, 3.4vw, 2.375rem);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0.75rem 0 1.25rem;
}
.stats-split__content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  margin: 0;
}
.stats-split__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.stats-split__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--bcm-radius-lg);
  padding: 1.625rem 1.5rem;
}
.stats-split__stat {
  font-family: var(--bcm-font-heading);
  font-size: 2.125rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--bcm-accent) 55%, white 45%);
  line-height: 1;
  margin-bottom: 0.625rem;
}
.stats-split__stat--icon svg {
  width: 5rem;
  height: auto;
  display: block;
}
.stats-split__card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.375rem;
}
.stats-split__card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---------- Image cards ---------- */

.image-cards {
  background: var(--bcm-bg-elev);
}
.image-cards__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .image-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.image-cards__card {
  border: 1px solid var(--bcm-landing-border);
  border-radius: var(--bcm-radius-lg);
  overflow: hidden;
  background: var(--bcm-landing-surface-elevated);
}
.image-cards__frame {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.image-cards__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-cards__body {
  padding: 1.625rem 1.625rem 1.875rem;
}
.image-cards__body h3 {
  font-family: var(--bcm-font-heading);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
  margin: 0 0 0.5rem;
}
.image-cards__body p {
  font-size: 1rem;
  color: var(--bcm-landing-muted);
  margin: 0;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--bcm-landing-surface);
}
.faq__list {
  display: grid;
  gap: 0.875rem;
}
.faq__item {
  background: var(--bcm-landing-surface-elevated);
  border: 1px solid var(--bcm-landing-border);
  border-radius: var(--bcm-radius-md);
  padding: 0.25rem 1.625rem;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.375rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bcm-landing-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  /* Pico's own summary chevron (details summary::after) — not needed, we
     render our own "+" toggle via .faq__toggle. */
  display: none;
}
.faq__toggle {
  flex: none;
  color: var(--bcm-accent);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.15s ease;
}
.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
}
.faq__item p {
  font-size: 1rem;
  color: var(--bcm-landing-muted);
  padding: 0 0 1.375rem;
  margin-top: -0.25rem;
}

/* ---------- Video (self-hosted) ---------- */

.modular-video--bg-light {
  background: var(--bcm-landing-surface-elevated);
}
.modular-video--bg-light-shade {
  background: var(--bcm-landing-surface);
}
.modular-video--bg-dark {
  background: var(--bcm-landing-deep);
  /* Re-point the theme's own heading/text color tokens instead of styling
     headings/paragraphs ourselves, so Content-tab markdown keeps the same
     fonts and sizes everywhere and only the color flips for a dark section. */
  --pico-color: var(--bcm-text-inverse);
  --pico-h1-color: var(--bcm-text-inverse);
  --pico-h2-color: var(--bcm-text-inverse);
  --pico-h3-color: var(--bcm-text-inverse);
  --pico-h4-color: var(--bcm-text-inverse);
  --pico-h5-color: var(--bcm-text-inverse);
  --pico-h6-color: var(--bcm-text-inverse);
  --pico-muted-color: rgba(255, 255, 255, 0.75);
}
.modular-video__content {
  font-family: var(--bcm-font-body);
}
.modular-video__content h1,
.modular-video__content h2,
.modular-video__content h3,
.modular-video__content h4,
.modular-video__content h5,
.modular-video__content h6 {
  font-family: var(--bcm-font-heading);
}
.video-frame {
  position: relative;
  border-radius: var(--bcm-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 78, 91, 0.16);
}
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
  background: #000;
}
.modular-video__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .modular-video__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .modular-video--right .modular-video__content {
    order: 2;
  }
}
