/*
Theme Name: BIELENET
Theme URI: https://bielenet.com
Author: BIELENET
Description: Apple-Niveau Design – Version 5.0 (Pure Handarbeit, kein Page-Builder)
Version: 5.0
*/

/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
  --gold: #FFD24D;
  --gold-hover: #FFDB70;
  --gold-dark: #b8860b;
  --gold-light: rgba(255, 210, 77, 0.15);
  --dark: #1d1d1f;
  --dark-2: #2d2d2f;
  --gray: #515154;
  --gray-light: #86868b;
  --gray-extra: #aeaeb2;
  --bg: #f5f5f7;
  --bg-card: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-sm: 8px;
  --radius-xs: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-height: 64px;
}

/* ========================================
   RESET / BASE
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #fff;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   CONTAINER
   ======================================== */
.bn-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   SECTION HEADER
   ======================================== */
.bn-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.bn-section-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.bn-section-header p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.bn-gold {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255, 210, 77, 0.24);
}

/* ========================================
   BADGE
   ======================================== */
.bn-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}
.bn-badge-dark {
  background: var(--dark);
  color: #fff;
}

/* ========================================
   BUTTONS
   ======================================== */
.bn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  border-radius: 980px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  gap: 0.5rem;
}
.bn-btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}
.bn-btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 210, 77, 0.35);
}
.bn-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 210, 77, 0.5);
}
.bn-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.bn-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 210, 77, 0.08);
  transform: translateY(-2px);
}

.bn-link {
  color: var(--gold-dark);
  font-weight: 500;
  transition: var(--transition);
}
.bn-link:hover {
  opacity: 0.7;
}

/* ========================================
   NAVIGATION
   ======================================== */
.bn-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.bn-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bn-nav-brand {
  flex-shrink: 0;
}

.bn-nav-brand a {
  display: flex;
  align-items: center;
}

.bn-nav-logo {
  height: 3.05rem;
  max-height: calc(var(--nav-height) - 12px);
  width: auto;
  transition: var(--transition);
}
.bn-nav-logo:hover {
  opacity: 0.8;
}

/* Hamburger */
.bn-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.bn-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  position: absolute;
}
.bn-nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}
.bn-nav-toggle span:nth-child(2) {
  transform: translateY(0);
}
.bn-nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}
.bn-nav-toggle.bn-active span:nth-child(1) {
  transform: rotate(45deg);
}
.bn-nav-toggle.bn-active span:nth-child(2) {
  opacity: 0;
}
.bn-nav-toggle.bn-active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Menu Container */
.bn-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* WP Menu styling */
.bn-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}
.bn-nav-links li {
  position: relative;
}
.bn-nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}
.bn-nav-links a:hover {
  color: var(--dark);
  background: rgba(0, 0, 0, 0.04);
}

/* Submenus */
.bn-nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(24px);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  list-style: none;
  z-index: 100;
}
.bn-nav-links li:hover > .sub-menu {
  display: block;
}
.bn-nav-links .sub-menu a {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.bn-nav-cta {
  flex-shrink: 0;
}

/* ========================================
   HERO
   ======================================== */
.bn-hero {
  position: relative;
  min-height: min(760px, 72vh);
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.bn-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 29, 31, 0.88) 0%, rgba(29, 29, 31, 0.68) 48%, rgba(29, 29, 31, 0.34) 100%),
    url("assets/images/hero-home.webp") center center / cover no-repeat;
  z-index: 0;
}

.bn-hero-bg::after {
  display: none;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-60px, 60px) scale(1.3);
  }
}

.bn-hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.008) 2px,
    rgba(255, 255, 255, 0.008) 3px
  );
  z-index: 1;
  pointer-events: none;
}

.bn-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.bn-hero-content {
  max-width: 750px;
  padding: 3rem 0;
}

.bn-hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.5rem;
  animation: fadeUp 1s ease-out;
}

.bn-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 600px;
  animation: fadeUp 1s ease-out 0.2s both;
}

.bn-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.4s both;
}

.bn-hero-trust {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0;
  animation: fadeUp 1s ease-out 0.6s both;
}

/* Scroll Indicator */
.bn-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeUp 1s ease-out 1s both, bounce 2s ease-in-out infinite 1s;
}
.bn-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}
.bn-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0.3;
  }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   OFFERS / QUICK CHOICE
   ======================================== */
.bn-offer-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.2rem, 4.2vw, 4.6rem) 0;
  background: #101419;
  color: #fff;
}

.bn-offer-section .bn-container {
  max-width: 1160px;
}

.bn-offer-section::before {
  display: none;
}

.bn-offer-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 210, 77, 0.24);
  pointer-events: none;
}

.bn-offer-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.7rem);
  align-items: center;
}

.bn-offer-copy {
  position: relative;
  max-width: 470px;
  padding: clamp(0.2rem, 0.7vw, 0.45rem) 0 clamp(0.2rem, 0.7vw, 0.45rem) clamp(1rem, 1.6vw, 1.35rem);
}

.bn-offer-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), rgba(255, 210, 77, 0.08));
}

.bn-offer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bn-offer-kicker::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 210, 77, 0.62);
}

.bn-offer-copy h2 {
  max-width: 500px;
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.bn-offer-copy p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.62;
}

.bn-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.bn-mini-grid div {
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.bn-mini-grid strong,
.bn-mini-grid span {
  display: block;
}

.bn-mini-grid strong {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
}

.bn-mini-grid span {
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  line-height: 1.3;
}

.bn-ad-deck {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  height: 100%;
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.bn-ad-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #f7f7f8;
  color: var(--dark);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.bn-ad-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12), transparent 34%);
  pointer-events: none;
}

.bn-ad-meta {
  position: relative;
  display: grid;
  gap: 0.24rem;
  padding: clamp(0.95rem, 1.35vw, 1.2rem) clamp(1rem, 1.7vw, 1.35rem) 0.7rem;
  z-index: 1;
}

.bn-ad-meta span {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bn-ad-meta strong {
  color: var(--dark);
  font-size: clamp(1.35rem, 1.75vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.bn-ad-slot {
  display: grid;
  place-items: center;
  min-height: clamp(230px, 22vw, 320px);
  margin: 0 clamp(0.85rem, 1.3vw, 1.05rem);
  padding: clamp(0.65rem, 1vw, 0.85rem);
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 16px;
  background: #eef0f3;
}

.bn-ad-slot a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 540px);
  max-width: 100%;
}

.bn-ad-slot iframe,
.bn-ad-slot img,
.bn-ad-slot object,
.bn-ad-slot embed,
.bn-ad-slot table {
  max-width: 100% !important;
}

.bn-ad-slot img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: 290px !important;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.16));
}

.bn-ad-slot iframe {
  width: 100% !important;
}

.bn-ad-note {
  position: relative;
  margin: 0;
  padding: 0.7rem clamp(1rem, 1.7vw, 1.35rem) clamp(0.9rem, 1.4vw, 1.1rem);
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.4;
  z-index: 1;
}

.bn-choice-section {
  padding: 5.5rem 0;
  background: #fff;
}

.bn-process-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7f7f8 100%);
}

.bn-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: process;
}

.bn-process-timeline::before {
  content: "";
  position: absolute;
  top: 2.05rem;
  left: calc(16.666% + 1.25rem);
  right: calc(16.666% + 1.25rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 210, 77, 0.2));
  pointer-events: none;
}

.bn-process-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 1.45rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 210, 77, 0.14), rgba(255, 255, 255, 0) 38%),
    #fff;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1;
}

.bn-process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.bn-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 4.1rem;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--dark);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 18px 36px rgba(29, 29, 31, 0.2);
}

.bn-process-step h3 {
  margin: 2.2rem 0 0.75rem;
  color: var(--dark);
  font-size: 1.55rem;
  line-height: 1.16;
}

.bn-process-step p {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
}

/* ========================================
   PARTNER / ANBIETER GRID
   ======================================== */
.bn-partner {
  padding: 6rem 0;
  background: var(--bg);
}

.bn-partner .bn-container {
  max-width: 1280px;
}

.bn-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.bn-partner-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eee;
  border-radius: var(--radius-sm);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.bn-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bn-partner-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transform: scale(1.18);
  filter: grayscale(0.22) contrast(0.96);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.bn-partner-card span {
  display: none;
  margin-top: 0.9rem;
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.25;
  text-align: center;
}

.bn-partner-card:hover img {
  transform: scale(1.24);
  filter: grayscale(0) contrast(1);
}

/* ========================================
   WERTGARANTIE
   ======================================== */
.bn-wg {
  padding: 6rem 0;
  background: #fff;
  position: relative;
}

.bn-wg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 77, 0.3), transparent);
}

.bn-wg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bn-wg-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bn-wg-image::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 210, 77, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.bn-wg-image img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.bn-wg-image:hover img {
  transform: scale(1.02);
}

.bn-wg-text h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 1rem 0;
  line-height: 1.15;
}

.bn-wg-text p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0 0 2rem;
}

/* ========================================
   KONTAKT
   ======================================== */
.bn-contact {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
}

.bn-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}

.bn-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bn-contact-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.bn-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--gold);
}

.bn-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.bn-contact-card-full {
  grid-column: 1 / -1;
}

.bn-contact-icon {
  display: none;
}

.bn-contact-card h3 {
  font-size: 1.2rem;
  font-weight: 750;
  margin: 0 0 0.75rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.bn-contact-card p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0.3rem 0;
  line-height: 1.6;
}

.bn-hours {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bn-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.bn-hours-row:first-child {
  padding-top: 0;
}
.bn-hours-row:last-child {
  border-bottom: none;
}
.bn-hours-row span:last-child {
  font-weight: 600;
  color: var(--dark);
}

/* Map */
.bn-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.bn-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ========================================
   FOOTER
   ======================================== */
.bn-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.bn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bn-footer-logo {
  height: 3.25rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(10);
}

.bn-footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 280px;
}

.bn-footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1.25rem;
}

.bn-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bn-footer-menu a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.bn-footer-menu a:hover {
  color: var(--gold);
}

.bn-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bn-footer-contact-list li {
  display: grid;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.bn-footer-contact-list span {
  color: rgba(255, 210, 77, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bn-footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.bn-footer-contact-list a:hover {
  color: var(--gold);
}

.bn-social-row {
  display: flex;
  gap: 0.75rem;
}

.bn-social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.bn-social-row a:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.bn-social-row svg {
  width: 16px;
  height: 16px;
}

/* Footer Bottom */
.bn-footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.bn-footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.bn-mobile-dock {
  display: none;
}

/* ========================================
   PARTICLE CANVAS
   ======================================== */
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
}

/* ========================================
   BODY LOCK (Mobile Menu)
   ======================================== */
.bn-nav-body-locked {
  overflow: hidden;
}

/* ========================================
   CONTENT PAGES
   ======================================== */
.bn-page-main {
  padding-top: var(--nav-height);
  background: #fff;
}

.bn-page-content {
  color: var(--dark);
  overflow-wrap: break-word;
}

.bn-page-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.bn-page-content .bn-container {
  max-width: 1240px;
}

.bn-page-hero {
  min-height: min(82vh, 760px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(29, 29, 31, 0.92) 0%, rgba(29, 29, 31, 0.68) 55%, rgba(29, 29, 31, 0.35) 100%),
    var(--hero-image) center / cover no-repeat;
}

.bn-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 210, 77, 0.55);
}

.bn-page-hero .bn-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

.bn-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 210, 77, 0.45);
  border-radius: 999px;
  background: rgba(255, 210, 77, 0.12);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
}

.bn-page-hero h1 {
  max-width: 980px;
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(4rem, 6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.bn-page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  line-height: 1.65;
}

.bn-section {
  padding: 5.5rem 0;
}

.bn-section-soft {
  background: var(--bg);
}

.bn-section-dark {
  background: var(--dark);
  color: #fff;
}

.bn-section-dark .bn-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.bn-section-dark .bn-card p,
.bn-section-dark .bn-section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.bn-section-eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.bn-section-title {
  max-width: 820px;
  margin: 0 0 1rem;
  font-size: 2.6rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.bn-section-lead {
  max-width: 760px;
  margin: 0;
  color: var(--gray);
  font-size: 1.08rem;
  line-height: 1.75;
}

.bn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.bn-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bn-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bn-card {
  min-width: 0;
  height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.bn-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--bg);
}

.bn-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bn-card h2,
.bn-card h3,
.bn-card h4 {
  margin: 0 0 0.65rem;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.bn-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.65;
}

.bn-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.bn-list li {
  position: relative;
  margin: 0.45rem 0;
  padding-left: 1.5rem;
  color: inherit;
}

.bn-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gold);
}

.bn-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: center;
}

.bn-feature-media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.bn-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bn-steps {
  counter-reset: bn-step;
}

.bn-step-card {
  position: relative;
  padding-top: 3.25rem;
}

.bn-step-card::before {
  counter-increment: bn-step;
  content: counter(bn-step);
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
}

.bn-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}

.bn-cta-panel h2,
.bn-cta-panel p {
  margin: 0;
}

.bn-cta-panel p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
}

.bn-legal {
  max-width: 900px;
  margin: 0 auto;
}

.bn-legal h1 {
  margin: 0 0 1.5rem;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.bn-legal h2,
.bn-legal h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.bn-legal p {
  margin: 0 0 1rem;
  color: var(--gray);
  line-height: 1.75;
}

.bn-address {
  margin: 0 0 1rem;
  color: var(--gray);
  font-style: normal;
  line-height: 1.75;
}

.bn-legal a {
  color: var(--gold-dark);
  font-weight: 700;
}

.bn-legal .bn-list {
  margin-bottom: 1rem;
  color: var(--gray);
}

.text-primary {
  color: var(--gold-dark);
}

.bn-page-content br + br {
  display: none;
}

/* ========================================
   RESPONSIVE – TABLET / SMALL DESKTOP
   ======================================== */
@media (max-width: 1024px) {
  .bn-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .bn-offer-shell {
    grid-template-columns: 1fr;
    gap: 1.45rem;
    align-items: stretch;
  }
  .bn-offer-copy {
    position: static;
    max-width: none;
  }
  .bn-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bn-feature {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   RESPONSIVE – MOBILE FIRST
   ======================================== */
@media (max-width: 900px) {
  .bn-hero-title {
    font-size: 2.8rem;
  }
  .bn-section-header h2 {
    font-size: 2.2rem;
  }
  .bn-partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bn-ad-deck {
    grid-template-columns: 1fr;
  }
  .bn-process-timeline {
    grid-template-columns: 1fr;
  }
  .bn-process-timeline::before {
    top: 2.8rem;
    bottom: 2.8rem;
    left: 2.05rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), rgba(255, 210, 77, 0.18));
  }
  .bn-process-step {
    min-height: auto;
    padding: 1.35rem 1.35rem 1.35rem 5.2rem;
  }
  .bn-process-number {
    position: absolute;
    top: 1.35rem;
    left: 1.2rem;
    width: 3.1rem;
    height: 3.1rem;
  }
  .bn-process-step h3 {
    margin: 0 0 0.55rem;
  }
  .bn-wg-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bn-wg-image {
    order: -1;
  }
  .bn-wg-image img {
    max-width: 300px;
  }
  .bn-wg-text h2 {
    font-size: 2.2rem;
  }
  .bn-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bn-page-hero h1 {
    font-size: 3rem;
  }
  .bn-grid,
  .bn-grid-2,
  .bn-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bn-cta-panel {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   RESPONSIVE – SMARTPHONE
   ======================================== */
@media (max-width: 640px) {
  :root {
    --nav-height: 56px;
  }

  body {
    padding-bottom: 74px;
  }

  /* Container */
  .bn-container {
    padding: 0 1.25rem;
  }

  /* Navigation Mobile */
  .bn-nav-inner {
    padding: 0 1.25rem;
  }

  .bn-nav-logo {
    height: 2.55rem;
    max-height: calc(var(--nav-height) - 10px);
  }

  .bn-nav-toggle {
    display: flex;
    width: 34px;
    height: 34px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .bn-nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(24px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 1.5rem) 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .bn-nav-menu.bn-nav-open {
    transform: translateX(0);
  }

  .bn-nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
  }

  .bn-nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
    color: var(--dark);
  }

  .bn-nav-links .sub-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0.5rem 1rem;
    display: block;
  }
  .bn-nav-links li:hover > .sub-menu,
  .bn-nav-links li:focus-within > .sub-menu {
    display: block;
  }
  .bn-nav-links .sub-menu a {
    font-size: 0.95rem;
    color: var(--gray);
  }

  .bn-nav-cta {
    width: 100%;
    margin-top: 0.5rem;
  }

  .bn-nav-cta .bn-btn {
    width: 100%;
  }

  /* Hero Mobile */
  .bn-hero {
    min-height: calc(100svh - var(--nav-height));
    align-items: flex-start;
    padding: calc(var(--nav-height) + 1.6rem) 0 3rem;
  }

  .bn-hero-content {
    max-width: 100%;
    padding: 0;
  }

  .bn-hero-bg {
    background:
      linear-gradient(180deg, rgba(29, 29, 31, 0.92) 0%, rgba(29, 29, 31, 0.76) 58%, rgba(29, 29, 31, 0.66) 100%),
      url("assets/images/hero-home-mobile.webp") center center / cover no-repeat;
  }

  .bn-hero-title {
    font-size: 2.05rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .bn-hero-text {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1.3rem;
  }

  .bn-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .bn-hero-actions .bn-btn {
    width: 100%;
    justify-content: center;
  }

  .bn-hero-trust {
    font-size: 0.78rem;
    line-height: 1.55;
    margin-top: 1rem;
  }

  .bn-scroll-indicator,
  #particleCanvas {
    display: none;
  }

  /* Section Spacing */
  .bn-partner,
  .bn-choice-section,
  .bn-wg,
  .bn-contact {
    padding: 4rem 0;
  }

  .bn-offer-section {
    padding: 2.75rem 0;
  }

  .bn-offer-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.03;
  }
  .bn-offer-copy p {
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .bn-offer-kicker {
    margin-bottom: 0.9rem;
    font-size: 0.7rem;
  }
  .bn-mini-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .bn-ad-deck {
    gap: 1rem;
    scroll-margin-top: calc(var(--nav-height) + 0.75rem);
  }
  .bn-ad-card {
    border-radius: 18px;
  }
  .bn-ad-meta {
    padding: 1rem 1rem 0.75rem;
  }
  .bn-ad-meta strong {
    font-size: 1.35rem;
  }
  .bn-ad-slot {
    min-height: clamp(220px, 70vw, 300px);
    margin: 0 0.55rem;
    padding: 0.6rem;
    border-radius: 14px;
  }
  .bn-ad-slot a {
    width: 100%;
  }
  .bn-ad-slot img {
    max-height: 270px !important;
  }
  .bn-ad-note {
    padding: 0.7rem 1rem 0.9rem;
    font-size: 0.84rem;
  }
  .bn-process-timeline {
    gap: 0.9rem;
  }
  .bn-process-step {
    padding: 1.15rem 1.1rem 1.15rem 4.7rem;
  }
  .bn-process-number {
    top: 1.1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 0.95rem;
  }
  .bn-process-step h3 {
    font-size: 1.3rem;
  }
  .bn-process-step p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .bn-section-header {
    margin-bottom: 2.5rem;
  }
  .bn-section-header h2 {
    font-size: 1.8rem;
  }
  .bn-section-header p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  /* Partner Grid Mobile */
  .bn-partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .bn-partner-card {
    min-height: 0;
    padding: 0;
  }
  .bn-partner-card img {
    max-height: none;
  }

  /* Wertgarantie Mobile */
  .bn-wg-grid {
    gap: 2rem;
  }
  .bn-wg-text h2 {
    font-size: 1.8rem;
  }
  .bn-wg-text p {
    font-size: 0.95rem;
  }
  .bn-wg-image img {
    max-width: 260px;
  }

  /* Kontakt Mobile */
  .bn-contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bn-contact-card {
    padding: 1.5rem;
  }

  .bn-hours-row {
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 0.15rem;
  }
  .bn-hours-row span:first-child {
    min-width: 60%;
  }

  .bn-map iframe {
    height: 260px;
  }

  /* Buttons Mobile */
  .bn-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-height: 46px;
    white-space: normal;
    text-align: center;
  }

  /* Footer Mobile */
  .bn-footer {
    padding: 3rem 0 1.5rem;
  }
  .bn-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .bn-footer-brand p {
    max-width: 100%;
  }
  .bn-footer-logo {
    height: 2.6rem;
  }

  .bn-mobile-dock {
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    z-index: 1100;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(18, 19, 20, 0.92);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
  }
  .bn-mobile-dock a {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 52px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 700;
  }
  .bn-mobile-dock a:nth-child(2) {
    background: var(--gold);
    color: #000;
  }
  .bn-mobile-dock svg {
    width: 18px;
    height: 18px;
    margin-bottom: 0.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .bn-mobile-dock a:last-child svg {
    fill: currentColor;
    stroke: none;
  }

  .bn-page-hero {
    min-height: auto;
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(29, 29, 31, 0.96) 0%, rgba(29, 29, 31, 0.82) 62%, rgba(29, 29, 31, 0.7) 100%),
      var(--hero-image-mobile, var(--hero-image)) center / cover no-repeat;
  }
  .bn-page-hero .bn-container {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .bn-page-hero h1 {
    font-size: 2.35rem;
    line-height: 1.1;
  }
  .bn-page-hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .bn-section {
    padding: 3.75rem 0;
  }
  .bn-section-title {
    font-size: 1.9rem;
    line-height: 1.18;
  }
  .bn-section-lead {
    font-size: 1rem;
  }
  .bn-grid,
  .bn-grid-2,
  .bn-grid-4 {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .bn-card {
    padding: 1rem;
  }
  .bn-card-media {
    aspect-ratio: 16 / 10;
  }
  .bn-feature {
    gap: 1.25rem;
  }
  .bn-feature-media {
    aspect-ratio: 16 / 11;
  }
  .bn-cta-panel {
    padding: 1.25rem;
  }
  .bn-legal h1 {
    font-size: 1.95rem;
  }
  .bn-legal h2,
  .bn-legal h3 {
    font-size: 1.15rem;
  }
}

/* ========================================
   PRINT
   ======================================== */
@media print {
  .bn-nav,
  .bn-hero-bg,
  #particleCanvas,
  .bn-scroll-indicator {
    display: none !important;
  }
  .bn-hero {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* Team contact card */
.bn-team-section {
  background: #fff;
}

.bn-team-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  margin-top: 2.25rem;
}

.bn-team-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 22px;
  background: var(--dark);
  box-shadow: var(--shadow-xl);
}

.bn-team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ececec;
}

.bn-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bn-team-info {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  color: #fff;
}

.bn-team-role {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 210, 77, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bn-team-info h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.bn-team-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.bn-team-mail::after {
  content: "→";
  transition: transform 0.25s ease;
}

.bn-team-mail:hover::after {
  transform: translateX(4px);
}

.bn-team-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 210, 77, 0.13), rgba(255, 255, 255, 0) 44%),
    var(--bg);
}

.bn-team-copy h3 {
  max-width: 620px;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.bn-team-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .bn-team-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bn-team-panel {
    margin-top: 1.5rem;
    gap: 1rem;
  }
  .bn-team-card,
  .bn-team-copy {
    border-radius: 18px;
  }
  .bn-team-info,
  .bn-team-copy {
    padding: 1.2rem;
  }
  .bn-team-copy p {
    font-size: 0.96rem;
  }
}


/* ========================================
   SHOP GATEWAY
   ======================================== */
.bn-shop-hero {
  min-height: 420px;
}

.bn-shop-gateway {
  background: var(--bg);
}

.bn-shop-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.bn-shop-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bn-shop-card h2 {
  margin: 0 0 0.75rem;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.bn-shop-card p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

.bn-shop-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 1rem;
}

.bn-btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(29, 29, 31, 0.18);
}

.bn-btn-outline-dark:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: var(--gold-light);
  transform: translateY(-2px);
}

.bn-shop-card .bn-shop-note {
  max-width: 580px;
  color: var(--gray-light);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .bn-shop-hero {
    min-height: auto;
  }

  .bn-shop-actions {
    flex-direction: column;
  }

  .bn-shop-actions .bn-btn {
    width: 100%;
    min-height: 56px;
  }
}


/* ========================================
   PROVIDER OFFLINE PAGE
   ======================================== */
.bn-provider-offline-hero {
  min-height: 460px;
}

.bn-provider-offline {
  background: var(--bg);
}

.bn-provider-offline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.25rem;
  align-items: stretch;
}

.bn-provider-offline-card,
.bn-provider-offline-info {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.bn-provider-offline-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.bn-provider-offline-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bn-provider-offline-card h2 {
  max-width: 760px;
  margin: 0 0 1rem;
  color: var(--dark);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.bn-provider-offline-card p {
  max-width: 640px;
  margin: 0;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bn-provider-offline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.bn-provider-offline-info {
  padding: 1.5rem;
}

.bn-provider-offline-info h3 {
  margin: 0 0 1rem;
  color: var(--dark);
  font-size: 1.45rem;
}

.bn-provider-offline-info p {
  margin: 0 0 1rem;
  color: var(--gray);
  line-height: 1.55;
}

.bn-provider-offline-info strong {
  color: var(--dark);
}

.bn-provider-offline-info a {
  color: var(--gold-dark);
  font-weight: 700;
}

.bn-provider-offline-hours {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--gray);
}

.bn-provider-offline-hours strong {
  color: var(--dark);
}

@media (max-width: 900px) {
  .bn-provider-offline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bn-provider-offline-hero {
    min-height: auto;
  }

  .bn-provider-offline-card,
  .bn-provider-offline-info {
    border-radius: 18px;
  }

  .bn-provider-offline-actions {
    flex-direction: column;
  }

  .bn-provider-offline-actions .bn-btn {
    width: 100%;
    min-height: 56px;
  }
}
