/* =========================================================
   KONZEPT A — HERITAGE EDITORIAL
   Betten-Paradies & Pension Schübeler
   Stil: Schlafmagazin. Familiengeschichte als Held.
   Palette 2: Snow-Mist/Sky hell, Königsblau als Akzent, Gold als Glanzlicht.
   ========================================================= */

@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 Primär-Palette: Hell dominiert */
  --bpp-snow:       #F4FAFD;
  --bpp-sky:        #C7E1F5;
  --bpp-white:      #FFFFFF;

  /* Akzente: Königsblau und Gold begleiten */
  --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;
  --bpp-grey-100:   #D8ECF7;

  /* Schatten: weich, groß, geringe Alpha */
  --shadow-soft:    0 24px 60px -28px rgba(9,66,143,0.18);
  --shadow-medium:  0 16px 48px -20px rgba(9,66,143,0.22);
  --shadow-card:    0 8px 32px -12px rgba(9,66,143,0.14);

  --font: 'Inter', system-ui, sans-serif;
  --max-w: 1320px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --radius-soft: 20px;
  --radius-card: 16px;
}

/* ---- 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;
}
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; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bpp-gold-deep);
  margin-bottom: 0.75rem;
}

.eyebrow--light {
  color: var(--bpp-gold);
}

/* ============================================================
   HEADER — Klassisch zweistufig, Magazin-Charakter
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bpp-white);
  border-bottom: 1px solid var(--bpp-grey-300);
}

.header-top {
  background: var(--bpp-sky);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bpp-grey-300);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-top-info {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: var(--bpp-blue-deep);
}

.header-top-info a {
  color: var(--bpp-blue);
  transition: color 0.2s;
}
.header-top-info a:hover { color: var(--bpp-blue-deep); }

.header-top-tagline {
  font-size: 0.75rem;
  color: var(--bpp-blue);
  font-weight: 600;
  font-style: italic;
}

.header-main {
  padding: 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

/* Logo-Image im Header */
.logo-area {
  display: flex;
  align-items: center;
  gap: 0;
}

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

/* Fallback-Textvariante (wenn logo.png nicht vorhanden) */
.logo-area-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.logo-name {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  color: var(--bpp-blue);
  line-height: 1;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bpp-grey-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bpp-ink);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bpp-gold);
  transition: width 0.25s ease-out;
}

.main-nav a:hover { color: var(--bpp-blue); }
.main-nav a:hover::after { width: 100%; }

.header-cta {
  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.75rem 1.5rem;
  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.3); }

.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: 24px;
  height: 2px;
  background: var(--bpp-ink);
  border-radius: 2px;
}

/* ============================================================
   HERO — Magazin-Split mit großer Typografie
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--bpp-white) 0%, var(--bpp-snow) 60%, var(--bpp-sky) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  overflow: hidden;
  position: relative;
}

/* Subtile Wolken-Decoration im Hero-Hintergrund */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 320px;
  background: radial-gradient(ellipse 70% 55% at 60% 50%, var(--bpp-sky) 0%, transparent 75%);
  opacity: 0.55;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 380px;
  height: 200px;
  background: radial-gradient(ellipse 65% 50% at 40% 50%, var(--bpp-sky) 0%, transparent 75%);
  opacity: 0.4;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(50px);
}

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

.hero-text {
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.hero-issue-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bpp-grey-500);
  margin-bottom: 1.5rem;
}

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

.hero-headline {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--bpp-ink);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--bpp-blue);
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  color: #3a4a66;
  margin-bottom: 2rem;
  max-width: 44ch;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bpp-gold);
  color: var(--bpp-ink);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  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-primary:hover { background: var(--bpp-gold-deep); transform: scale(1.02); box-shadow: 0 10px 28px -6px rgba(9,66,143,0.28); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--bpp-blue);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 0;
  border-radius: 24px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--bpp-blue-deep); }
.btn-secondary::after { content: '→'; transition: transform 0.2s; }
.btn-secondary:hover::after { transform: translateX(4px); }

.hero-visual {
  position: relative;
}

.hero-img-main {
  width: 100%;
  height: clamp(400px, 55vw, 680px);
  object-fit: cover;
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
  box-shadow: var(--shadow-soft);
}

.hero-img-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--bpp-white);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-medium);
  max-width: 240px;
  border: 1px solid var(--bpp-grey-100);
}

.hero-img-badge-year {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--bpp-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-img-badge-text {
  font-size: 0.8125rem;
  color: var(--bpp-grey-500);
  line-height: 1.4;
}

/* ============================================================
   TRADITION — Magazin-Storytelling mit Zeitlinie
   ============================================================ */
.tradition {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bpp-white);
  border-top: 1px solid var(--bpp-grey-100);
}

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

.tradition-text h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--bpp-ink);
  margin-bottom: 1.5rem;
}

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

.tradition-pull-quote {
  border-left: 3px solid var(--bpp-gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
}

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

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

.tradition-visual {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.tradition-img-primary {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.tradition-img-secondary {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.generation-timeline {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.generation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bpp-grey-300);
  flex-shrink: 0;
}

.generation-dot--active {
  background: var(--bpp-blue);
  width: 10px;
  height: 10px;
}

.generation-label {
  font-size: 0.8125rem;
  color: var(--bpp-grey-500);
  font-weight: 500;
  margin-left: 0.5rem;
}

/* ============================================================
   BETT-SYSTEM — Fünf-Komponenten, redaktionell
   ============================================================ */
.bett-system {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, var(--bpp-snow) 0%, var(--bpp-sky) 100%);
  border-top: 1px solid var(--bpp-grey-100);
  border-bottom: 1px solid var(--bpp-grey-300);
}

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

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--bpp-ink);
  margin-bottom: 1rem;
}

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

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

.bett-component-card {
  background: var(--bpp-white);
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--bpp-grey-100);
}

.bett-component-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

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

.bett-component-icon {
  width: 56px;
  height: 56px;
  background: var(--bpp-sky);
  border: 1.5px solid var(--bpp-blue);
  border-radius: 16px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bpp-blue);
  font-size: 1.5rem;
}

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

.bett-component-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--bpp-grey-500);
}

/* ============================================================
   PROBESCHLAFEN — Feature-Sektion hell
   ============================================================ */
.probeschlafen {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(160deg, var(--bpp-snow) 0%, var(--bpp-sky) 55%, #B0D4EF 100%);
  position: relative;
  overflow: hidden;
}

/* Wolken-förmige Decoration */
.probeschlafen::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 450px;
  height: 260px;
  background: radial-gradient(ellipse 65% 50% at 55% 50%, var(--bpp-white) 0%, transparent 80%);
  opacity: 0.6;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(35px);
}

.probeschlafen .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}

.probeschlafen-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--bpp-ink);
  margin-bottom: 1.25rem;
}

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

.probeschlafen-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.probeschlafen-stat {
  background: var(--bpp-white);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  border: 1px solid var(--bpp-grey-300);
  box-shadow: var(--shadow-card);
}

.probeschlafen-stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--bpp-gold-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.probeschlafen-stat-label {
  font-size: 0.875rem;
  color: var(--bpp-grey-500);
  line-height: 1.4;
}

.probeschlafen-visual {
  position: relative;
}

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

.probeschlafen-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--bpp-gold);
  color: var(--bpp-ink);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* ============================================================
   AGR TRUST — Auszeichnungen und Zertifizierungen
   ============================================================ */
.agr-trust {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bpp-white);
  border-top: 1px solid var(--bpp-grey-300);
  border-bottom: 1px solid var(--bpp-grey-300);
}

.agr-trust .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.agr-badge {
  flex-shrink: 0;
  text-align: center;
}

.agr-badge-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bpp-sky);
  border: 2px solid var(--bpp-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--bpp-blue);
}

.agr-badge-abbr {
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1;
  color: var(--bpp-blue);
}

.agr-badge-sub {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
  padding: 0 0.5rem;
  color: var(--bpp-blue);
}

.agr-text h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 900;
  color: var(--bpp-ink);
  margin-bottom: 0.75rem;
}

.agr-text p {
  font-size: 1rem;
  color: #3a4a66;
  line-height: 1.65;
  max-width: 60ch;
}

.agr-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.agr-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bpp-grey-100);
  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 — Magazin-Zitat-Layout
   ============================================================ */
.kundenstimmen {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bpp-snow);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bpp-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bpp-grey-100);
  display: flex;
  flex-direction: column;
}

.testimonial-card--featured {
  background: linear-gradient(145deg, var(--bpp-snow) 0%, var(--bpp-sky) 100%);
  border-color: var(--bpp-blue);
  border-width: 1.5px;
}

.testimonial-quote-mark {
  font-size: 3.5rem;
  line-height: 0.8;
  font-weight: 900;
  color: var(--bpp-gold);
  margin-bottom: 1rem;
}

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

/* testimonial-card--featured: helle Variante, gleiche Textfarbe */

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  border-top: 1px solid var(--bpp-grey-300);
  padding-top: 1rem;
}

.testimonial-card--featured .testimonial-author {
  border-top-color: var(--bpp-blue);
  border-top-width: 1px;
}

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

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

/* ============================================================
   HILFSMITTEL — Krankenkassen-Bettzurichtung
   ============================================================ */
.hilfsmittel {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bpp-white);
  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(2rem, 5vw, 5rem);
  align-items: center;
}

.hilfsmittel-visual {
  position: relative;
}

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

.hilfsmittel-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--bpp-ink);
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.hilfsmittel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

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

.hilfsmittel-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bpp-gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ============================================================
   KONTAKT-CTA
   ============================================================ */
.kontakt-cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--bpp-blue) 0%, var(--bpp-blue-deep) 100%);
  position: relative;
  overflow: hidden;
}

/* Wolken-Decoration auf blauem CTA */
.kontakt-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 380px;
  height: 220px;
  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);
}

.kontakt-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(199,225,245,0.08);
  filter: blur(30px);
}

.kontakt-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.kontakt-cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--bpp-white);
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.kontakt-cta-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}

.kontakt-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 260px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bpp-gold);
  color: var(--bpp-ink);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9375rem 1.75rem;
  border-radius: 24px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  box-shadow: 0 6px 20px -6px rgba(9,66,143,0.25);
}
.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-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--bpp-white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

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

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

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

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

.footer-address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

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

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

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

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

.footer-awards {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-award-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
}

/* ============================================================
   RESPONSIVE — Mobile First
   ============================================================ */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-img-main { height: 320px; border-radius: 16px; }
  .hero-img-badge { bottom: 1rem; left: 1rem; }
  .tradition .container { grid-template-columns: 1fr; }
  .probeschlafen .container { grid-template-columns: 1fr; }
  .hilfsmittel .container { grid-template-columns: 1fr; }
  .agr-trust .container { grid-template-columns: 1fr; }
  .kontakt-cta .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .bett-components { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-cta { display: none; }
  .header-top-tagline { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

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

/* ============================================================
   FOKUS-ZUSTÄNDE (Accessibility)
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--bpp-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip-Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--bpp-blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }
