/* =========================================================
   KONZEPT C — CINEMATIC HERITAGE
   Betten-Paradies & Pension Schübeler
   Stil: Hellblauer Verlauf-Hero. Glasmorphism auf hellem Grund.
   Gold als Glanzlicht. Wolken-Atmosphäre.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300..900;1,14..32,300..900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Neue helle Palette */
  --bpp-snow:       #F4FAFD;
  --bpp-sky:        #C7E1F5;
  --bpp-white:      #FFFFFF;

  /* Akzente */
  --bpp-blue:       #09428F;
  --bpp-blue-deep:  #062E6B;
  --bpp-blue-soft:  #1A5BB8;
  --bpp-gold:       #F6C630;
  --bpp-gold-deep:  #D9A820;

  /* Neutrals */
  --bpp-ink:        #0A1A33;
  --bpp-grey-300:   #BDD5EA;
  --bpp-grey-500:   #5878A0;
  --bpp-grey-50:    #EAF4FB;

  /* Schatten */
  --shadow-soft:    0 24px 60px -28px rgba(9,66,143,0.18);
  --shadow-card:    0 8px 32px -12px rgba(9,66,143,0.13);
  --shadow-glass:   0 8px 40px -16px rgba(9,66,143,0.15);

  --font: 'Inter', system-ui, sans-serif;
  --max-w: 1320px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--bpp-ink);
  background: var(--bpp-snow);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---- Utility ---- */
.container { width: min(var(--max-w), 100% - 3rem); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   HEADER — Transparent über Hero, Glasmorphism-Effekt auf hellem Grund
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(244, 250, 253, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--bpp-grey-300);
  box-shadow: 0 4px 24px -8px rgba(9,66,143,0.12);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 0;
  gap: 2rem;
}

.logo-area {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
}

/* Logo-Image */
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* Fallback — wenn Logo dunkel auf dunklem Hero: Filter für Lesbarkeit */
.hero .logo-img {
  filter: drop-shadow(0 1px 8px rgba(9,66,143,0.35));
}

.logo-name {
  font-size: 1.1875rem;
  font-weight: 900;
  color: var(--bpp-ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.site-header:not(.scrolled) .logo-name {
  color: var(--bpp-white);
}

.logo-sub {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--bpp-grey-500);
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.main-nav a:hover { color: white; }

/* Im gescrollten Zustand (heller Header) dunkel */
.site-header.scrolled .main-nav a {
  color: var(--bpp-grey-500);
}
.site-header.scrolled .main-nav a:hover { color: var(--bpp-blue); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bpp-gold);
  color: var(--bpp-ink);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6875rem 1.375rem;
  border-radius: 24px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px -6px rgba(9,66,143,0.25);
}
.header-cta:hover { background: var(--bpp-gold-deep); transform: scale(1.02); box-shadow: 0 8px 24px -6px rgba(9,66,143,0.32); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bpp-ink);
  border-radius: 1px;
}
.site-header:not(.scrolled) .mobile-menu-btn span {
  background: white;
}

/* ============================================================
   HERO — 100vh, heller Verlauf mit eingebettetem Foto, layered Glass-Cards
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bpp-white) 0%, var(--bpp-snow) 35%, var(--bpp-sky) 70%, #9BC8E8 100%);
}

/* Subtile Wolken-Shapes als SVG-Decoration */
.hero::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 5%;
  width: 340px;
  height: 180px;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(255,255,255,0.7) 0%, transparent 80%);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 260px;
  height: 130px;
  background: radial-gradient(ellipse 65% 50% at 50% 50%, rgba(255,255,255,0.55) 0%, transparent 80%);
  border-radius: 50%;
  filter: blur(25px);
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  transition: transform 8s var(--ease-out);
  opacity: 0.22;
}

/* Heller Verlauf-Overlay — Bild als Textur, nicht dominierend */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(244,250,253,0.85) 0%,
      rgba(244,250,253,0.3) 50%,
      transparent 100%
    );
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, transparent 30%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bpp-blue);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5px;
  background: var(--bpp-gold);
}

.hero-headline {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.01;
  color: var(--bpp-ink);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--bpp-grey-500);
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bpp-gold);
  color: var(--bpp-ink);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.9375rem 2rem;
  border-radius: 24px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 20px -6px rgba(9,66,143,0.22);
}
.btn-gold:hover { background: var(--bpp-gold-deep); transform: scale(1.02); box-shadow: 0 10px 28px -6px rgba(9,66,143,0.3); }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--bpp-blue);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(9,66,143,0.18);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.78);
  border-color: rgba(9,66,143,0.35);
}

.hero-info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: flex-end;
}

.hero-info-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(9,66,143,0.14);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-glass);
  transition: background 0.2s, box-shadow 0.2s;
}

.hero-info-card:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
}

.hero-info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bpp-sky);
  border: 1.5px solid var(--bpp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bpp-blue);
  flex-shrink: 0;
}

.hero-info-card-text-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bpp-ink);
  line-height: 1.2;
}

.hero-info-card-text-sub {
  font-size: 0.8125rem;
  color: var(--bpp-grey-500);
  margin-top: 0.125rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--bpp-grey-500);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(9,66,143,0.4));
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   TRADITION — Storytelling mit Vollbild-Bild links
   ============================================================ */
.tradition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.tradition-visual {
  position: relative;
  overflow: hidden;
}

.tradition-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.tradition-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.08) 100%);
}

.tradition-content {
  background: var(--bpp-white);
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tradition-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bpp-gold-deep);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tradition-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--bpp-gold-deep);
}

.tradition-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--bpp-ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.tradition-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #3a4a66;
  margin-bottom: 1.25rem;
}

.tradition-pullquote {
  margin: 1.75rem 0;
  padding: 1.5rem;
  background: var(--bpp-grey-50);
  border-left: 2px solid var(--bpp-gold);
  border-radius: 0 12px 12px 0;
}

.tradition-pullquote p {
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  color: var(--bpp-blue);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.tradition-pullquote cite {
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  color: var(--bpp-grey-500);
}

/* ============================================================
   BETT-SYSTEM — Cinematic, layered Cards auf hellem Grund
   ============================================================ */
.bett-system {
  background: linear-gradient(180deg, var(--bpp-white) 0%, var(--bpp-snow) 100%);
  padding: clamp(5rem, 8vw, 8rem) 0;
  position: relative;
  border-top: 1px solid var(--bpp-grey-300);
}

.bett-system-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.bett-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bpp-gold-deep);
  margin-bottom: 1rem;
}

.bett-system-intro h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--bpp-ink);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.bett-system-intro p {
  font-size: 1.0625rem;
  color: var(--bpp-grey-500);
  line-height: 1.65;
}

.bett-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.bett-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bpp-grey-300);
}

.bett-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }

.bett-card-bg {
  position: absolute;
  inset: 0;
}

.bett-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.bett-card:hover .bett-card-bg img { transform: scale(1.05); }

/* Heller Glass-Overlay — Bild als Hintergrund, Text auf hellem Grund */
.bett-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(244,250,253,0.96) 0%, rgba(244,250,253,0.55) 40%, rgba(199,225,245,0.2) 75%, transparent 100%);
}

.bett-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
}

.bett-card-num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bpp-gold-deep);
  margin-bottom: 0.5rem;
}

.bett-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bpp-ink);
  margin-bottom: 0.5rem;
}

.bett-card-text {
  font-size: 0.8125rem;
  color: var(--bpp-grey-500);
  line-height: 1.5;
}

/* Fallback-Hintergründe wenn kein Bild — helle Blautöne */
.bett-card:nth-child(1) .bett-card-bg { background: linear-gradient(145deg, var(--bpp-sky), #9BC8E8); }
.bett-card:nth-child(2) .bett-card-bg { background: linear-gradient(145deg, #B0D4EF, var(--bpp-sky)); }
.bett-card:nth-child(3) .bett-card-bg { background: linear-gradient(145deg, var(--bpp-snow), var(--bpp-sky)); }
.bett-card:nth-child(4) .bett-card-bg { background: linear-gradient(145deg, var(--bpp-sky), #B0D4EF); }
.bett-card:nth-child(5) .bett-card-bg { background: linear-gradient(145deg, #9BC8E8, var(--bpp-snow)); }

/* ============================================================
   PROBESCHLAFEN — Heller Verlauf mit Foto als Textur, Glass-Content
   ============================================================ */
.probeschlafen {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bpp-snow) 0%, var(--bpp-sky) 55%, #9BC8E8 100%);
}

.probeschlafen-bg {
  position: absolute;
  inset: 0;
}

.probeschlafen-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.probeschlafen-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244,250,253,0.75) 40%, rgba(199,225,245,0.4) 100%);
}

/* Wolken-Decoration */
.probeschlafen::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 420px;
  height: 240px;
  background: radial-gradient(ellipse 65% 50% at 55% 50%, rgba(255,255,255,0.65) 0%, transparent 80%);
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
  z-index: 1;
}

.probeschlafen-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.probeschlafen-content .container { max-width: 100%; }

.probe-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bpp-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.probe-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5px;
  background: var(--bpp-gold);
}

.probeschlafen-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--bpp-ink);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.probeschlafen-content p {
  font-size: 1.0625rem;
  color: var(--bpp-grey-500);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.probe-metrics {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.probe-metric {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(9,66,143,0.14);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-card);
}

.probe-metric-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--bpp-gold-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.probe-metric-label {
  font-size: 0.8125rem;
  color: var(--bpp-grey-500);
  line-height: 1.35;
  max-width: 16ch;
}

/* ============================================================
   AGR TRUST — Foto mit eingebetteter Karte
   ============================================================ */
.agr-section {
  background: var(--bpp-white);
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--bpp-grey-300);
}

.agr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.agr-visual {
  position: relative;
}

.agr-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.agr-float-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: linear-gradient(145deg, var(--bpp-white) 0%, var(--bpp-sky) 100%);
  border: 1.5px solid var(--bpp-blue);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  width: 140px;
}

.agr-float-abbr {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bpp-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.agr-float-text {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--bpp-grey-500);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.agr-text {
  padding: 0.5rem 0;
}

.agr-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bpp-gold-deep);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.agr-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--bpp-gold-deep);
}

.agr-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--bpp-ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.agr-text p {
  font-size: 1rem;
  color: #3a4a66;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.agr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.agr-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bpp-grey-50);
  border: 1px solid var(--bpp-grey-300);
  color: var(--bpp-ink);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

/* ============================================================
   KUNDENSTIMMEN — Helles Quote-Layout
   ============================================================ */
.kundenstimmen {
  background: linear-gradient(180deg, var(--bpp-snow) 0%, var(--bpp-sky) 100%);
  padding: clamp(5rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

/* Subtile Wolken-Decoration */
.kundenstimmen::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse 60% 50% at 55% 50%, rgba(255,255,255,0.6) 0%, transparent 80%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.kundenstimmen .container { position: relative; }

.stimmen-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.stimmen-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bpp-gold-deep);
  margin-bottom: 1rem;
}

.stimmen-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--bpp-ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.testimonials-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(9,66,143,0.12);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(9,66,143,0.2);
  box-shadow: var(--shadow-soft);
}

.testimonial-card--gold {
  background: rgba(255,255,255,0.82);
  border-color: rgba(9,66,143,0.18);
}

.testimonial-card--gold:hover {
  background: rgba(255,255,255,0.96);
}

.testimonial-open-quote {
  font-size: 4rem;
  font-weight: 900;
  color: var(--bpp-gold);
  line-height: 0.7;
  margin-bottom: 1.25rem;
  opacity: 0.7;
  user-select: none;
}

.testimonial-body {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--bpp-grey-500);
  flex: 1;
  margin-bottom: 2rem;
}

.testimonial-card--gold .testimonial-body {
  color: var(--bpp-ink);
}

.testimonial-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bpp-sky);
  border: 1.5px solid var(--bpp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bpp-blue);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bpp-ink);
}

.testimonial-loc {
  font-size: 0.8125rem;
  color: var(--bpp-grey-500);
}

.harz-feature {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--bpp-blue);
  border-radius: 22px;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.harz-feature-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--bpp-grey-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.harz-feature-cite {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--bpp-grey-500);
  opacity: 0.7;
}

.harz-date-badge {
  background: linear-gradient(145deg, var(--bpp-snow) 0%, var(--bpp-sky) 100%);
  border: 1px solid var(--bpp-blue);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.harz-date-day {
  font-size: 2rem;
  font-weight: 900;
  color: var(--bpp-gold-deep);
  line-height: 1;
}

.harz-date-month {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bpp-blue);
  letter-spacing: 0.06em;
}

/* ============================================================
   HILFSMITTEL
   ============================================================ */
.hilfsmittel {
  background: var(--bpp-white);
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--bpp-grey-300);
  border-bottom: 1px solid var(--bpp-grey-300);
}

.hilfsmittel .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.hilfsmittel-content {
  order: 2;
}

.hilfsmittel-visual {
  order: 1;
  position: relative;
}

.hilfsmittel-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hilfsmittel-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bpp-gold-deep);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hilfsmittel-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--bpp-gold-deep);
}

.hilfsmittel-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--bpp-ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hilfsmittel-content p {
  font-size: 1rem;
  color: #3a4a66;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hilfsmittel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hilfsmittel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--bpp-ink);
  line-height: 1.5;
}

.hilfsmittel-list li::before {
  content: '';
  width: 1px;
  height: 1.25rem;
  background: var(--bpp-gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ============================================================
   KONTAKT-CTA — Blauer Verlauf mit subtiler Wolken-Decoration
   ============================================================ */
.kontakt-cta {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bpp-blue) 0%, var(--bpp-blue-deep) 100%);
}

/* Wolken-Decoration auf blauem CTA */
.kontakt-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse 60% 50% at 55% 50%, rgba(199,225,245,0.12) 0%, transparent 80%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.kontakt-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.kontakt-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.kontakt-cta-bg::after {
  content: none;
}

.kontakt-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.kontakt-cta-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bpp-gold);
  margin-bottom: 1.5rem;
}

.kontakt-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
  color: white;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.kontakt-cta-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.kontakt-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold-xl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bpp-gold);
  color: var(--bpp-ink);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.0625rem 2.25rem;
  border-radius: 24px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 20px -6px rgba(9,66,143,0.45);
}
.btn-gold-xl:hover { background: var(--bpp-gold-deep); transform: scale(1.02); box-shadow: 0 10px 28px -6px rgba(9,66,143,0.5); }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-weight: 500;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }

.kontakt-address {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.kontakt-address-item {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bpp-ink);
  padding: clamp(3rem, 5vw, 4rem) 0 0;
}

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

.footer-brand-name {
  font-size: 1rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--bpp-gold);
  margin-bottom: 1.25rem;
}

.footer-address {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

.footer-address a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-address a:hover { color: var(--bpp-gold); }

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-awards {
  display: flex;
  gap: 0.75rem;
}

.footer-award {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bpp-gold);
  border: 1px solid rgba(245,194,66,0.3);
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-info-block { flex-direction: row; flex-wrap: wrap; }
  .hero-info-card { flex: 1; min-width: 220px; }
  .tradition { grid-template-columns: 1fr; }
  .tradition-visual img { min-height: 320px; max-height: 380px; }
  .bett-cards { grid-template-columns: repeat(3, 1fr); }
  .agr-inner { grid-template-columns: 1fr; }
  .agr-float-badge { right: 1.5rem; top: 1.5rem; }
  .hilfsmittel .container { grid-template-columns: 1fr; }
  .hilfsmittel-content { order: 1; }
  .hilfsmittel-visual { order: 2; }
  .testimonials-masonry { grid-template-columns: 1fr 1fr; }
  .harz-feature { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-cta { display: none; }
  .bett-cards { grid-template-columns: repeat(2, 1fr); }
  .bett-card { aspect-ratio: 4/5; }
  .footer-grid { grid-template-columns: 1fr; }
  .probeschlafen-content .container { padding: 0 1.5rem; }
  .probe-metrics { gap: 1.5rem; }
  .kontakt-address { flex-direction: column; align-items: center; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .bett-cards { grid-template-columns: 1fr 1fr; }
  .testimonials-masonry { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   HEADER SCROLL BEHAVIOR — JS-unterstützt
   ============================================================ */

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--bpp-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--bpp-gold);
  color: var(--bpp-ink);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .scroll-arrow { animation: none; }
}
