/* =========================================
   DESIGN TOKENS / ROOT
========================================= */

:root {
  --bn-primary: #0a4ea3;
  --bn-primary-dark: #063a7c;
  --bn-primary-soft: #e9f1ff;
  --bn-accent: #1f6fe5;
  --bn-accent-soft: #dbe9ff;

  --bn-ink: #08111f;
  --bn-ink-soft: #17263d;
  --bn-charcoal: #111827;
  --bn-text: #142033;
  --bn-text-soft: #5f6f86;

  --bn-bg: #ffffff;
  --bn-bg-alt: #f5f8fd;
  --bn-bg-dark: #0a1220;
  --bn-white: #ffffff;

  --bn-border: #dce5f2;
  --bn-border-strong: #c6d4e8;

  --bn-success: #0f8a68;

  --bn-radius-sm: 12px;
  --bn-radius: 18px;
  --bn-radius-lg: 24px;
  --bn-radius-pill: 999px;

  --bn-shadow-sm: 0 10px 24px rgba(8, 17, 31, 0.06);
  --bn-shadow: 0 18px 42px rgba(8, 17, 31, 0.08);
  --bn-shadow-lg: 0 28px 60px rgba(8, 17, 31, 0.12);

  --bn-container: 1200px;
  --bn-header-height: 108px;
  --bn-transition: 0.22s ease;
}

/* =========================================
   BASE / RESET
========================================= */

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: Inter, Arial, sans-serif;
  background: var(--bn-bg);
  color: var(--bn-text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 700;
  color: var(--bn-ink);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  margin-bottom: 12px;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

strong {
  color: var(--bn-ink);
}

a {
  color: var(--bn-primary);
  text-decoration: none;
  transition:
    color var(--bn-transition),
    opacity var(--bn-transition),
    background var(--bn-transition),
    border-color var(--bn-transition),
    transform var(--bn-transition),
    box-shadow var(--bn-transition);
}

a:hover {
  color: var(--bn-primary-dark);
}

/* =========================================
   LAYOUT / WRAPPERS
========================================= */

.bn-site {
  width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(31, 111, 229, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 42%, #ffffff 100%);
}

.bn-container,
.bn-footer .bn-container {
  width: 100%;
  max-width: var(--bn-container);
  margin: 0 auto;
  padding: 0 24px;
}

.bn-section {
  padding: 84px 0;
}

.bn-section-light {
  background: linear-gradient(
    180deg,
    rgba(245, 248, 253, 0.9) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

.bn-section-head {
  text-align: center;
  margin-bottom: 46px;
}

.bn-section-head p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--bn-text-soft);
}

.bn-page-section,
body.page .bn-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.bn-page-section .bn-section-head {
  margin-bottom: 22px;
}

.bn-page-section > .bn-container > :last-child {
  margin-bottom: 0;
}

section,
[id] {
  scroll-margin-top: 180px;
}

/* =========================================
   REUSABLE UI / UTILITIES
========================================= */

.bn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: var(--bn-radius-pill);
  background: rgba(10, 78, 163, 0.08);
  color: var(--bn-primary);
  border: 1px solid rgba(10, 78, 163, 0.1);
  font-size: 14px;
  font-weight: 700;
}

.bn-blue {
  color: var(--bn-primary);
}

.bn-yellow {
  color: var(--bn-accent);
}

.bn-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.bn-locations,
.bn-locations-stack {
  display: grid;
  gap: 24px;
}

.bn-locations {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bn-locations-stack {
  grid-template-columns: 1fr;
}

/* =========================================
   SHARED SURFACES / CARDS
========================================= */

.bn-hero-card,
.bn-card,
.bn-location,
.bn-footer-card,
.bn-team-card,
.bn-brand-item,
.bn-logo-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 229, 242, 0.92);
  border-radius: 22px;
  box-shadow: var(--bn-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bn-card,
.bn-location,
.bn-team-card,
.bn-brand-item {
  transition:
    transform var(--bn-transition),
    box-shadow var(--bn-transition),
    border-color var(--bn-transition);
}

.bn-card:hover,
.bn-location:hover,
.bn-team-card:hover,
.bn-brand-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--bn-shadow-lg);
  border-color: rgba(10, 78, 163, 0.16);
}

.bn-card::before,
.bn-location::before,
.bn-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 30%);
  pointer-events: none;
}

/* =========================================
   BUTTONS
========================================= */

.bn-header-cta,
.bn-footer-btn,
.bn-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--bn-radius-pill);
  background: linear-gradient(135deg, var(--bn-primary) 0%, var(--bn-accent) 100%);
  color: var(--bn-white);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 32px rgba(10, 78, 163, 0.2);
}

.bn-header-cta:hover,
.bn-footer-btn:hover,
.bn-btn-primary:hover {
  color: var(--bn-white);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(10, 78, 163, 0.24);
}

.bn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
}

.bn-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.bn-btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--bn-ink);
  border-color: rgba(10, 78, 163, 0.12);
  box-shadow: var(--bn-shadow-sm);
}

.bn-btn-secondary:hover {
  background: var(--bn-white);
  color: var(--bn-primary);
  border-color: rgba(10, 78, 163, 0.18);
  transform: translateY(-1px);
}

/* =========================================
   HEADER
========================================= */

.bn-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 78, 163, 0.08);
  box-shadow: 0 12px 34px rgba(8, 17, 31, 0.05);
}

.bn-header-bar,
.bn-header-nav-bar,
.bn-footer-topline {
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0b57b7 0%, #1f6fe5 35%, #24406b 68%, #0b1018 100%);
  box-shadow: 0 4px 14px rgba(11, 87, 183, 0.16);
}

.bn-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--bn-header-height);
  padding: 18px 0;
}

.bn-logo,
.bn-footer-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.bn-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.bn-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bn-header-nav-wrap {
  width: 100%;
  padding: 0;
  border-top: 1px solid rgba(10, 78, 163, 0.06);
  border-bottom: 1px solid rgba(10, 78, 163, 0.08);
  background: linear-gradient(
    90deg,
    rgba(10, 78, 163, 0.07) 0%,
    rgba(31, 111, 229, 0.08) 35%,
    rgba(24, 39, 67, 0.06) 70%,
    rgba(8, 17, 31, 0.05) 100%
  );
}

.bn-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 16px 32px;
}

.bn-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  background: transparent;
  transition: color 0.2s ease;
}

.bn-nav a:hover {
  color: #1f6fe5;
}

.bn-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f6fe5 0%, #0b57b7 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.bn-nav a:hover::after {
  transform: scaleX(1);
}

/* =========================================
   MOBILE MENU TOGGLE
========================================= */

.bn-menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(10, 78, 163, 0.1);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(244, 248, 255, 0.94) 100%
  );
  box-shadow: 0 10px 22px rgba(8, 17, 31, 0.07);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.bn-menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(31, 111, 229, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 55%);
  pointer-events: none;
}

.bn-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 111, 229, 0.16);
  box-shadow: 0 14px 28px rgba(8, 17, 31, 0.1);
}

.bn-menu-toggle:focus,
.bn-menu-toggle:focus-visible,
.bn-menu-toggle:active {
  outline: none !important;
  border-color: rgba(31, 111, 229, 0.16) !important;
  box-shadow: 0 0 0 4px rgba(31, 111, 229, 0.1) !important;
}

.bn-menu-toggle span {
  position: relative;
  z-index: 1;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b57b7 0%, #1f6fe5 100%);
  transform-origin: center;
  transition:
    transform 0.22s ease,
    opacity 0.18s ease,
    width 0.18s ease;
}

.bn-menu-toggle span:nth-child(2) {
  width: 16px;
}

.bn-menu-toggle:hover span:nth-child(2) {
  width: 20px;
}

.bn-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.bn-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.6);
}

.bn-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

button.bn-menu-toggle,
button.bn-menu-toggle:hover,
button.bn-menu-toggle:focus,
button.bn-menu-toggle:focus-visible,
button.bn-menu-toggle:active {
  outline: none !important;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(8, 17, 31, 0.07) !important;
  border: 1px solid rgba(10, 78, 163, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.96) !important;
}

/* =========================================
   HERO – FRONTPAGE FINAL
========================================= */

.bn-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(31, 111, 229, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  padding: 54px 0 82px;
}

.bn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(31, 111, 229, 0.16), transparent 18%),
    radial-gradient(circle at 18% 18%, rgba(10, 78, 163, 0.08), transparent 26%);
  pointer-events: none;
}

.bn-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.bn-hero-content {
  min-width: 0;
}

.bn-hero-content h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.bn-hero-content p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--bn-text-soft);
}

.bn-hero-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.bn-hero-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #0b1830;
  box-shadow: 0 24px 50px rgba(8, 17, 31, 0.14);
}

.bn-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 540px;
  object-fit: cover;
  object-position: center center;
}

.bn-hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 78, 163, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(8, 17, 31, 0.08);
  padding: 26px 28px;
}

.bn-hero-card h3 {
  margin-bottom: 16px;
}

.bn-hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bn-hero-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--bn-border);
  font-weight: 600;
  line-height: 1.55;
  color: var(--bn-ink-soft);
}

.bn-hero-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 12px;
  color: var(--bn-primary);
  font-size: 18px;
  line-height: 1;
}

.bn-hero-list li:last-child {
  border-bottom: 0;
}

/* =========================================
   CONTENT CARDS / SERVICES / COMPANY
========================================= */

.bn-card {
  position: relative;
  padding: 30px;
  height: 100%;
}

.bn-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(10, 78, 163, 0.12) 0%,
    rgba(31, 111, 229, 0.18) 100%
  );
  color: var(--bn-primary);
  font-weight: 800;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(10, 78, 163, 0.08);
}

.bn-card p,
.bn-location p,
.bn-card-body p,
.bn-team-role,
.bn-contact-item {
  color: var(--bn-text-soft);
}

.bn-card a,
.bn-location a {
  font-weight: 700;
}

.bn-service-card {
  overflow: hidden;
  padding: 0;
}

.bn-service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.bn-card-body {
  padding: 26px;
}

.bn-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.bn-company-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--bn-shadow-lg);
}

.bn-location {
  position: relative;
  padding: 30px;
}

.bn-location h3 {
  margin-bottom: 18px;
}

/* =========================================
   CTA
========================================= */

section.bn-cta {
  position: relative !important;
  overflow: visible !important;
  padding: 32px 0 44px !important;
  background: transparent !important;
  background-image: none !important;
}

section.bn-cta::before,
section.bn-cta::after {
  display: none !important;
  content: none !important;
}

section.bn-cta > .bn-container {
  width: 100% !important;
  max-width: var(--bn-container) !important;
}

section.bn-cta > .bn-container > .bn-cta-box {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  column-gap: 28px !important;
  row-gap: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 30px 34px !important;
  border: 0 !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #071a36 0%, #0a4ea3 55%, #1f6fe5 100%) !important;
  box-shadow: 0 18px 40px rgba(8, 17, 31, 0.16) !important;
}

section.bn-cta > .bn-container > .bn-cta-box::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.1), transparent 20%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 24%) !important;
  pointer-events: none !important;
}

section.bn-cta > .bn-container > .bn-cta-box > * {
  position: relative !important;
  z-index: 1 !important;
}

section.bn-cta > .bn-container > .bn-cta-box > div {
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
}

section.bn-cta > .bn-container > .bn-cta-box > div:first-child {
  min-width: 0 !important;
  max-width: 760px !important;
}

section.bn-cta > .bn-container > .bn-cta-box > div:last-child {
  justify-self: start !important;
  align-self: center !important;
  width: auto !important;
}

section.bn-cta > .bn-container > .bn-cta-box h2 {
  margin: 0 0 10px !important;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem) !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
}

section.bn-cta > .bn-container > .bn-cta-box p {
  margin: 0 !important;
  max-width: 760px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.96) !important;
}

section.bn-cta > .bn-container > .bn-cta-box .bn-btn,
section.bn-cta > .bn-container > .bn-cta-box .bn-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 220px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 14px 26px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 12px 26px rgba(8, 17, 31, 0.14) !important;
}

section.bn-cta > .bn-container > .bn-cta-box .bn-btn:hover,
section.bn-cta > .bn-container > .bn-cta-box .bn-btn-primary:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

/* =========================================
   LOGO MARQUEE / BRANDS – FINAL
========================================= */

.bn-logo-marquee-section {
  position: relative;
  padding: 6px 0 26px;
}

.bn-logo-marquee-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.bn-logo-marquee-kicker {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bn-ink);
}

.bn-logo-marquee-sub {
  margin: 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bn-text-soft);
}

.bn-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(7, 132, 181, 0.05) 0%, rgba(31, 111, 229, 0.08) 100%);
  border: 1px solid rgba(10, 78, 163, 0.08);
  box-shadow: 0 18px 40px rgba(8, 17, 31, 0.05);
}

.bn-marquee-mask {
  position: relative;
  overflow: hidden;
}

.bn-marquee-track {
  --bn-marquee-gap: 22px;
  --bn-marquee-speed: 34s;

  display: flex;
  align-items: center;
  gap: var(--bn-marquee-gap);
  width: max-content;
  padding: 24px 20px;
  animation: bn-marquee-scroll var(--bn-marquee-speed) linear infinite;
  will-change: transform;
}

.bn-marquee:hover .bn-marquee-track {
  animation-play-state: paused;
}

.bn-marquee-group {
  display: flex;
  align-items: center;
  gap: var(--bn-marquee-gap);
}

.bn-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 82px;
  min-width: 150px;
  padding: 14px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 78, 163, 0.08);
  box-shadow: 0 10px 24px rgba(8, 17, 31, 0.05);
  user-select: none;
}

.bn-logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 46px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@keyframes bn-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--bn-marquee-gap) / 2)));
  }
}

/* Brand showcase / grid blocks */
.bn-brand-wrap,
.bn-brand-showcase {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bn-brand-grid,
.bn-brand-grid--other-clean,
.bn-brand-featured-row,
.bn-brand-grid--top,
.bn-brand-grid--other {
  display: grid;
  gap: 16px;
}

.bn-brand-grid--top,
.bn-brand-grid--other,
.bn-brand-grid--other-clean {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bn-brand-featured {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(233, 241, 255, 0.86) 100%);
  border: 1px solid rgba(10, 78, 163, 0.08);
  box-shadow: var(--bn-shadow-sm);
}

.bn-brand-featured-row--main {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bn-brand-featured-row--sub {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.bn-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bn-brand-item img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.bn-brand-item--top,
.bn-brand-item--featured {
  min-height: 136px;
  padding: 22px 26px;
}

.bn-brand-item--featured img {
  max-height: 72px;
}

.bn-brand-item--featured-small {
  min-height: 118px;
}

.bn-brand-item--featured-small img {
  max-height: 58px;
}

.bn-brand-item--other,
.bn-brand-item--other-clean {
  min-height: 110px;
  padding: 18px 20px;
}

.bn-brand-item--other img,
.bn-brand-item--other-clean img {
  max-height: 54px;
}

/* Tablet */
@media (max-width: 980px) {
  .bn-marquee-track {
    padding: 18px 14px;
    --bn-marquee-gap: 16px;
    --bn-marquee-speed: 28s;
  }

  .bn-logo-item {
    height: 70px;
    min-width: 132px;
    padding: 12px 16px;
    border-radius: 18px;
  }

  .bn-logo-item img {
    max-width: 150px;
    max-height: 40px;
  }

  .bn-brand-grid--top,
  .bn-brand-grid--other,
  .bn-brand-grid--other-clean {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bn-brand-featured-row--main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bn-brand-featured-row--sub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .bn-logo-marquee-section {
    padding: 0 0 18px;
  }

  .bn-logo-marquee-sub {
    font-size: 14px;
  }

  .bn-marquee-track {
    padding: 14px 12px;
    --bn-marquee-gap: 14px;
    --bn-marquee-speed: 24s;
  }

  .bn-logo-item {
    height: 60px;
    min-width: 112px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .bn-logo-item img {
    max-width: 120px;
    max-height: 32px;
  }

  .bn-brand-grid--top,
  .bn-brand-grid--other,
  .bn-brand-grid--other-clean,
  .bn-brand-featured-row--main,
  .bn-brand-featured-row--sub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bn-brand-featured {
    padding: 18px;
    gap: 14px;
  }

  .bn-brand-item--top,
  .bn-brand-item--featured {
    min-height: 110px;
    padding: 16px 18px;
  }

  .bn-brand-item--featured img {
    max-height: 48px;
  }

  .bn-brand-item--featured-small {
    min-height: 96px;
  }

  .bn-brand-item--featured-small img {
    max-height: 42px;
  }

  .bn-brand-item--other,
  .bn-brand-item--other-clean {
    min-height: 86px;
    padding: 14px 16px;
  }

  .bn-brand-item--other img,
  .bn-brand-item--other-clean img {
    max-height: 40px;
  }
}

/* =========================================
   TEAM / CONTACTS
========================================= */

.bn-team-block {
  margin-top: 34px;
}

.bn-team-block-title {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.2;
}

.bn-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.bn-team-grid--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bn-team-card {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: 24px;
}

.bn-team-card h4 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.2;
}

.bn-team-card--wide h4 {
  font-size: 22px;
}

.bn-team-role {
  display: block;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
}

.bn-team-role::before {
  content: "•";
  margin-right: 8px;
  color: rgba(10, 78, 163, 0.65);
}

.bn-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bn-contact-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.bn-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(10, 78, 163, 0.1) 0%, rgba(31, 111, 229, 0.16) 100%);
  color: var(--bn-primary);
  font-size: 16px;
  line-height: 1;
}

.bn-team-card .bn-contact-item a {
  font-weight: 500;
  color: var(--bn-primary);
}

.bn-team-card .bn-contact-item a:hover {
  color: var(--bn-primary-dark);
  text-decoration: underline;
}

/* =========================================
   FLUENT FORMS
========================================= */

.fluentform {
  width: 100%;
}

.fluentform .ff-el-group {
  margin-bottom: 18px;
}

.fluentform label {
  margin-bottom: 6px;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bn-ink);
}

.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform textarea {
  width: 100%;
  padding: 14px 16px !important;
  border: 1px solid var(--bn-border) !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 15px !important;
  box-shadow: 0 6px 18px rgba(8, 17, 31, 0.05) !important;
}

.fluentform textarea {
  min-height: 160px !important;
  resize: vertical;
}

.fluentform input:focus,
.fluentform textarea:focus {
  outline: none !important;
  border-color: var(--bn-primary) !important;
  box-shadow: 0 0 0 4px rgba(31, 111, 229, 0.12) !important;
}

.fluentform button,
.fluentform .ff-btn-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 26px !important;
  border: none !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--bn-primary), var(--bn-accent)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  box-shadow: 0 12px 26px rgba(10, 78, 163, 0.18);
}

.fluentform button:hover,
.fluentform .ff-btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(10, 78, 163, 0.25);
}

.fluentform .ff-el-form-check label {
  font-size: 14px;
  font-weight: 400;
}

/* =========================================
   FOOTER
========================================= */

.bn-footer {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fd 100%);
  border-top: 1px solid rgba(10, 78, 163, 0.08);
  padding: 0 0 20px;
}

.bn-footer-trust {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
  padding: 34px 36px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #071a36 0%, #0a4ea3 55%, #1f6fe5 100%);
  box-shadow: 0 18px 40px rgba(8, 17, 31, 0.16);
}

.bn-footer-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.1), transparent 20%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.bn-footer-trust > * {
  position: relative;
  z-index: 1;
}

.bn-footer-trust-text {
  flex: 1 1 620px;
  max-width: 760px;
}

.bn-footer-trust-text h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  line-height: 1.12;
  color: #ffffff;
}

.bn-footer-trust-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.bn-footer-trust .bn-eyebrow {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.bn-footer-trust-cta {
  flex: 0 0 auto;
}

.bn-footer-grid.bn-footer-grid-4 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.95fr 1fr;
  gap: 24px;
  padding: 0 0 18px;
  align-items: stretch;
}

.bn-footer-grid.bn-footer-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0 18px;
  align-items: stretch;
}

.bn-footer-card {
  min-width: 0;
  height: 100%;
  padding: 24px;
}

.bn-footer-headrow,
.bn-footer-brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bn-footer-headrow {
  margin-bottom: 14px;
}

.bn-footer-logo {
  justify-content: flex-end;
}

.bn-footer-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.bn-footer-company {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bn-ink);
}

.bn-footer-claim,
.bn-footer-tagline {
  color: var(--bn-text-soft);
}

.bn-footer-claim {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.bn-footer-tagline {
  margin: 0 0 18px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}

.bn-footer-copytext {
  margin: 0;
  color: var(--bn-text-soft);
  line-height: 1.65;
}

.bn-footer-locations-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bn-footer-location {
  min-width: 0;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(233, 241, 255, 0.7) 100%);
  border: 1px solid rgba(10, 78, 163, 0.08);
}

.bn-footer-location h5 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--bn-ink);
}

.bn-footer-card h4 {
  margin: 0 0 16px;
  font-size: 19px;
  color: var(--bn-ink);
}

.bn-footer-contact,
.bn-footer-links {
  display: flex;
  flex-direction: column;
}

.bn-footer-contact {
  gap: 12px;
}

.bn-footer-links {
  gap: 10px;
}

.bn-footer-line {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.bn-footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--bn-primary);
}

.bn-footer-contact a,
.bn-footer-links a,
.bn-footer-bottom a {
  word-break: break-word;
}

.bn-footer-contact a {
  color: var(--bn-ink);
  font-weight: 600;
}

.bn-footer-contact a:hover {
  color: var(--bn-primary);
}

.bn-footer-links a {
  display: block;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 78, 163, 0.08);
  color: var(--bn-ink);
  font-weight: 700;
}

.bn-footer-links a:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(10, 78, 163, 0.14);
  color: var(--bn-primary);
}

.bn-footer-card--legal {
  display: flex;
  flex-direction: column;
}

.bn-footer-card--legal .bn-footer-cta {
  margin-top: auto;
}

.bn-footer-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bn-footer-trust-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
  color: var(--bn-text-soft);
  line-height: 1.55;
}

.bn-footer-trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bn-primary);
  font-weight: 800;
}

.bn-footer-brandstack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.bn-footer-brandstack .bn-footer-logo {
  margin: 0 !important;
  justify-content: flex-start;
  align-items: center;
}

.bn-footer-brandstack .bn-footer-logo img {
  width: auto;
  max-width: 240px;
  height: 58px;
  object-fit: contain;
}

.bn-footer-brandstack .bn-footer-claim {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.bn-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 17, 31, 0.08);
  color: #67768d;
  font-size: 14px;
}

.bn-footer-bottom a {
  color: #67768d;
  font-weight: 700;
}

.bn-footer-bottom a:hover {
  color: var(--bn-primary);
}

.bn-footer-dot {
  margin: 0 10px;
  opacity: 0.55;
}

/* =========================================
   ÜBER UNS – PROFILKARTE
========================================= */

.bn-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bn-profile-media {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.bn-profile-photo {
  display: block;
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
  object-fit: cover;
}

.bn-profile-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bn-profile-logo {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  opacity: 0.92;
  object-fit: contain;
}

/* =========================================
   KONTAKTSEITE – SO ERREICHEN SIE UNS
========================================= */

.bn-contact-card {
  text-align: center;
}

.bn-contact-card .bn-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.bn-contact-card h3 {
  text-align: center;
  margin-bottom: 20px;
}

.bn-contact-card-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.bn-contact-card .bn-contact-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  width: 100%;
  max-width: 290px;
  text-align: left;
}

.bn-contact-card .bn-contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(7, 132, 181, 0.08);
  color: #0784b5;
  font-size: 18px;
  line-height: 1;
}

.bn-contact-card .bn-contact-item > div {
  min-width: 0;
}

.bn-contact-card .bn-contact-item a {
  word-break: break-word;
}

.bn-contact-card-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.bn-contact-card-logo img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  opacity: 0.92;
  object-fit: contain;
}

/* =========================================
   WORDPRESS / THEME OVERRIDES
========================================= */

.site-header,
.site-footer,
header.site-header,
footer.site-footer,
#masthead,
#colophon,
.entry-header,
.page-header,
.site-title,
.site-description,
nav.site-navigation,
nav[aria-label="Main Menu"],
nav[aria-label="Footer Menu"],
h1.entry-title,
.page-title,
.entry-title {
  display: none !important;
}

.site-main,
.page-content,
.entry-content,
.content-area,
.site-content,
main {
  margin: 0 !important;
  padding: 0 !important;
}

body.page .site,
body.home .site,
.site,
.site-main,
.site-content,
.content-area,
.entry-content,
.wp-site-blocks {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* =========================================
   ACCESSIBILITY / MOTION
========================================= */

:focus-visible {
  outline: 2px solid rgba(31, 111, 229, 0.45);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .bn-marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .bn-marquee-mask {
    overflow: hidden !important;
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .bn-footer-grid.bn-footer-grid-4,
  .bn-brand-featured-row--main,
  .bn-brand-grid--top,
  .bn-brand-grid--other,
  .bn-brand-grid--other-clean,
  .bn-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bn-footer-grid.bn-footer-grid-2,
  .bn-company-grid,
  .bn-hero-grid {
    grid-template-columns: 1fr;
  }

  .bn-footer-card--contact {
    order: 1;
  }

  .bn-footer-card--legal {
    order: 2;
  }

  .bn-footer-locations-inline,
  .bn-brand-featured-row--sub,
  .bn-locations {
    grid-template-columns: 1fr 1fr;
  }

  .bn-hero {
    padding: 42px 0 64px;
  }

  .bn-hero-grid {
    gap: 26px;
  }

  .bn-hero-content p {
    max-width: 100%;
  }

  .bn-hero-visual img {
    min-height: 360px;
    max-height: 460px;
  }
}

@media (max-width: 1024px) {
  .bn-logo img {
    height: 62px;
  }

  .bn-company-media img {
    min-height: 360px;
  }

  .bn-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .bn-marquee-track {
    gap: 16px;
    padding: 18px 14px;
  }

  .bn-logo-item {
    height: 70px;
    min-width: 132px;
    padding: 12px 16px;
    border-radius: 18px;
  }

  .bn-logo-item img {
    max-width: 150px;
    max-height: 40px;
  }

  section.bn-cta {
    padding: 28px 0 38px !important;
  }

  section.bn-cta > .bn-container > .bn-cta-box {
    grid-template-columns: 1fr !important;
    padding: 26px 24px !important;
    border-radius: 24px !important;
    column-gap: 0 !important;
    row-gap: 18px !important;
  }

  section.bn-cta > .bn-container > .bn-cta-box > div:first-child,
  section.bn-cta > .bn-container > .bn-cta-box > div:last-child {
    width: 100% !important;
    max-width: 100% !important;
  }

  section.bn-cta > .bn-container > .bn-cta-box > div:last-child {
    justify-self: start !important;
  }
}

@media (max-width: 900px) {
  .bn-container,
  .bn-footer .bn-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .bn-footer-headrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .bn-footer-logo {
    margin-left: 0;
  }

  .bn-footer-logo img {
    height: 56px;
  }

  .bn-footer-company {
    font-size: 18px;
  }

  .bn-footer-locations-inline,
  #bn-karriere .bn-grid-3,
  #bn-downloads .bn-grid-3 {
    grid-template-columns: 1fr;
  }

  .bn-footer-card {
    padding: 18px;
  }
}

@media (max-width: 860px) {
  .bn-menu-toggle {
    display: inline-flex !important;
  }

  .bn-header-cta {
    display: none;
  }

  .bn-header-nav-wrap {
    display: none !important;
    width: 100%;
    padding: 0 0 18px;
  }

  .bn-header-nav-wrap.is-open {
    display: block !important;
  }

  .bn-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .bn-nav a {
    display: flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 14px 16px !important;
  }
}

@media (min-width: 861px) {
  .bn-menu-toggle {
    display: none !important;
  }

  .bn-header-nav-wrap {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .bn-menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .bn-menu-toggle span {
    width: 19px;
  }

  .bn-menu-toggle span:nth-child(2) {
    width: 15px;
  }

  .bn-menu-toggle:hover span:nth-child(2) {
    width: 19px;
  }

  .bn-hero {
    padding: 20px 0 40px;
  }

  .bn-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .bn-hero-side {
    order: 1;
    width: 100%;
    display: contents;
  }

  .bn-hero-visual {
    order: 1;
    width: 100%;
    border-radius: 22px;
  }

  .bn-hero-content {
    order: 2;
    width: 100%;
  }

  .bn-hero-card {
    order: 3;
    width: 100%;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .bn-hero-content .bn-eyebrow {
    margin-bottom: 12px;
  }

  .bn-hero-content h1 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .bn-hero-content p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .bn-hero-visual img {
    min-height: 240px;
    height: 240px;
    max-height: 240px;
    object-fit: cover;
    object-position: center center;
  }

  .bn-btn-row {
    margin-top: 18px;
    margin-bottom: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .bn-btn-row .bn-btn,
  .bn-footer-btn {
    width: 100%;
    justify-content: center;
  }

  .bn-grid-3,
  .bn-team-grid,
  .bn-team-grid--wide,
  .bn-locations,
  .bn-brand-featured-row--main,
  .bn-brand-featured-row--sub,
  .bn-brand-grid--top,
  .bn-brand-grid--other,
  .bn-brand-grid--other-clean,
  .bn-footer-grid.bn-footer-grid-4 {
    grid-template-columns: 1fr !important;
  }

  .bn-service-card img {
    height: 200px;
  }

  .bn-card-body,
  .bn-team-card,
  .bn-card,
  .bn-location {
    padding: 20px;
  }

  .bn-company-media img {
    min-height: 260px;
  }

  .bn-page-section,
  body.page .bn-section,
  .bn-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .bn-header-top {
    min-height: auto;
    padding: 14px 0;
  }

  .bn-logo img {
    height: 48px;
  }

  section.bn-cta {
    padding: 24px 0 34px !important;
  }

  section.bn-cta > .bn-container > .bn-cta-box {
    padding: 22px 18px !important;
    border-radius: 22px !important;
    row-gap: 16px !important;
  }

  section.bn-cta > .bn-container > .bn-cta-box h2 {
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  section.bn-cta > .bn-container > .bn-cta-box p {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  section.bn-cta > .bn-container > .bn-cta-box .bn-btn,
  section.bn-cta > .bn-container > .bn-cta-box .bn-btn-primary {
    min-width: 220px !important;
    max-width: 100% !important;
  }

  .bn-logo-marquee-section {
    padding: 0 0 18px;
  }

  .bn-logo-marquee-sub {
    font-size: 14px;
  }

  .bn-marquee-track {
    gap: 14px;
    padding: 14px 12px;
  }

  .bn-logo-item {
    height: 60px;
    min-width: 112px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .bn-logo-item img {
    max-width: 120px;
    max-height: 32px;
  }

  .bn-footer {
    padding: 0 0 14px;
  }

  .bn-footer-trust {
    padding: 24px 20px;
    border-radius: 22px;
    gap: 18px;
  }

  .bn-footer-trust-text h2 {
    font-size: 1.9rem;
  }

  .bn-footer-grid {
    gap: 16px;
    padding: 18px 0 14px;
  }

  .bn-footer-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 18px;
    border-radius: 18px;
  }

  .bn-footer-headrow {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 14px;
  }

  .bn-footer-company {
    font-size: 17px;
    line-height: 1.15;
  }

  .bn-footer-logo {
    margin-left: 0 !important;
    justify-content: flex-start !important;
  }

  .bn-footer-logo img {
    max-width: 180px !important;
    height: auto !important;
  }

  .bn-footer-location {
    padding: 16px;
    border-radius: 14px;
  }

  .bn-footer-location h5 {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .bn-footer-contact {
    gap: 9px;
  }

  .bn-footer-line {
    grid-template-columns: 22px minmax(0, 1fr) !important;
    gap: 8px;
  }

  .bn-footer-icon {
    font-size: 15px;
  }

  .bn-footer-links {
    gap: 8px;
  }

  .bn-footer-links a {
    width: 100% !important;
    padding: 10px 12px;
    font-size: 15px;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .bn-footer-contact a,
  .bn-footer-contact span,
  .bn-footer-copytext,
  .bn-footer-trust-list li {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .bn-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .bn-footer-bottom-right {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .bn-footer-dot {
    display: none;
  }

  .bn-footer-brandstack {
    gap: 10px;
    margin-bottom: 14px;
  }

  .bn-footer-brandstack .bn-footer-logo img {
    max-width: 190px;
    height: auto;
  }

  .bn-footer-brandstack .bn-footer-claim {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .bn-brand-featured {
    gap: 14px;
    padding: 18px;
  }

  .bn-brand-item--featured {
    min-height: 110px;
    padding: 16px 18px;
  }

  .bn-brand-item--featured img {
    max-height: 48px;
  }

  .bn-brand-item--featured-small {
    min-height: 96px;
  }

  .bn-brand-item--featured-small img {
    max-height: 42px;
  }

  .bn-brand-item--other,
  .bn-brand-item--other-clean {
    min-height: 86px;
    padding: 14px 16px;
  }

  .bn-brand-item--other img,
  .bn-brand-item--other-clean img {
    max-height: 40px;
  }
}

@media (max-width: 520px) {
  .bn-logo-item {
    max-width: 180px;
  }
}

@media (max-width: 420px) {
  .bn-container,
  .bn-footer .bn-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .bn-footer-card {
    padding: 14px;
  }

  .bn-footer-company {
    font-size: 16px;
  }

  .bn-footer-location {
    padding: 14px;
  }

  .bn-footer-links a {
    font-size: 14px;
  }

  .bn-footer-bottom {
    font-size: 13px;
  }
}

/* =========================================
   NEWS / BLOG CARDS
========================================= */

.bn-news-section .bn-section-head {
  margin-bottom: 42px;
}

.bn-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.bn-news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 229, 242, 0.92);
  box-shadow: var(--bn-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform var(--bn-transition),
    box-shadow var(--bn-transition),
    border-color var(--bn-transition);
}

.bn-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bn-shadow-lg);
  border-color: rgba(10, 78, 163, 0.16);
}

.bn-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 30%);
  pointer-events: none;
}

.bn-news-card > * {
  position: relative;
  z-index: 1;
}

.bn-news-card-image-link {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef4fd 0%, #dfeafc 100%);
  box-shadow: inset 0 0 0 1px rgba(10, 78, 163, 0.05);
}

.bn-news-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.bn-news-card:hover .bn-news-card-image {
  transform: scale(1.02);
}

.bn-news-card-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 30% 30%, rgba(31, 111, 229, 0.14), transparent 30%),
    linear-gradient(135deg, #edf4ff 0%, #dce9ff 100%);
}

.bn-news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 4px 0;
}

.bn-news-card-title {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.bn-news-card-title a,
.bn-news-card-title a:visited,
.bn-news-card-link,
.bn-news-card-link:visited {
  color: var(--bn-primary);
  text-decoration: none;
}

.bn-news-card-title a:hover,
.bn-news-card-link:hover {
  color: var(--bn-primary-dark);
}

.bn-news-card-excerpt {
  margin: 0;
  color: var(--bn-text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.bn-news-card-footer {
  margin-top: 22px;
  padding: 0 4px 4px;
}

.bn-news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.bn-news-card-link span {
  transition: transform var(--bn-transition);
}

.bn-news-card:hover .bn-news-card-link span {
  transform: translateX(3px);
}

/* Zusätzliche Sicherheit gegen WP / Browser visited Farben */
.bn-news-section a,
.bn-news-section a:visited {
  color: var(--bn-primary);
}

.bn-news-section a:hover,
.bn-news-section a:focus-visible {
  color: var(--bn-primary-dark);
}

/* =========================================
   RESPONSIVE NEWS
========================================= */

@media (max-width: 1100px) {
  .bn-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bn-news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bn-news-card {
    padding: 16px;
    border-radius: 20px;
  }

  .bn-news-card-body {
    padding-top: 18px;
  }

  .bn-news-card-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .bn-news-card-excerpt {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .bn-news-card-footer {
    margin-top: 18px;
  }
}

/* =========================================
   CONTENT LINKS / IMPRESSUM / DATENSCHUTZ
========================================= */

.bn-card a,
.bn-card a:visited,
.bn-location a,
.bn-location a:visited,
.bn-contact-item a,
.bn-contact-item a:visited,
.entry-content a,
.entry-content a:visited,
.page-content a,
.page-content a:visited {
  color: var(--bn-primary);
  text-decoration: none;
}

.bn-card a:hover,
.bn-location a:hover,
.bn-contact-item a:hover,
.entry-content a:hover,
.page-content a:hover {
  color: var(--bn-primary-dark);
  text-decoration: underline;
}