/* ============================================================
   Bamloka – Stylesheet
   Farbwelt: Hell · Gesättigt · Silber · Chrom · Blau · Dunkelblau
   Aufbau:
     1. Design-Token (Custom Properties)
     2. Reset & Grundlagen
     3. Typografie
     4. Layout-Hilfen
     5. Buttons & interaktive Elemente
     6. Kopfzeile / Navigation
     7. Hero
     8. Produkt-Präsentation
     9. Produktinformationen (Info-Karten)
    10. Lebensstil-Abschnitt
    11. Markenwerte
    12. Bestellformular
    13. Fußzeile
    14. Cookie-Banner
    15. Rechtstexte (Unterseiten)
    16. Bestätigungsseite
    17. Scroll-Animationen
    18. Responsivität
   ============================================================ */

/* ---------- 1. Design-Token ---------- */
:root {
  /* Dunkelblau / Navy */
  --bl-abyss: #081226;
  --bl-navy: #0e1b33;
  --bl-navy-2: #16294b;

  /* Blau (gesättigt) */
  --bl-blue: #2679d6;
  --bl-blue-bright: #3d92f0;
  --bl-cyan: #56b2e8;

  /* Silber / Chrom */
  --bl-chrome: #aab8c6;
  --bl-silver: #c6d0db;
  --bl-silver-soft: #dbe3ec;

  /* Hell */
  --bl-mist: #eef3f9;
  --bl-frost: #f6f9fc;
  --bl-white: #ffffff;

  /* Funktionale Zuordnung */
  --ink: #0e1b33;
  --ink-soft: #465a76;
  --ink-faint: #7387a0;
  --line: #dce4ee;
  --bg: #f6f9fc;
  --card: #ffffff;

  /* Chrom-Verlauf für Signatur-Elemente */
  --chrome-grad: linear-gradient(135deg, #f6f9fc 0%, #c6d0db 38%, #8a99ab 55%, #dbe3ec 78%, #aab8c6 100%);
  --blue-grad: linear-gradient(135deg, #2679d6 0%, #3d92f0 60%, #56b2e8 100%);
  --navy-grad: linear-gradient(160deg, #16294b 0%, #0e1b33 55%, #081226 100%);

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(14, 27, 51, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 27, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 27, 51, 0.16);
  --shadow-blue: 0 14px 34px rgba(38, 121, 214, 0.28);

  /* Radien */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Abstände */
  --gap: clamp(1rem, 2vw, 1.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --wrap: 1180px;

  /* Typo */
  --font-display: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Reset & Grundlagen ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.075rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--bl-blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Typografie ---------- */
h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--ink);
}

.bl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bl-blue);
}

.bl-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue-grad);
  border-radius: 2px;
}

.bl-section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  margin: 0.9rem 0 1.1rem;
}

.bl-lead {
  color: var(--ink-soft);
  max-width: 58ch;
  font-size: clamp(1.02rem, 0.6vw + 0.9rem, 1.18rem);
}

/* ---------- 4. Layout-Hilfen ---------- */
.bl-wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.bl-section {
  padding-block: var(--section-y);
}

.bl-section--tint {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(86, 178, 232, 0.10), transparent 55%),
    var(--bl-mist);
}

.bl-center {
  text-align: center;
}

.bl-center .bl-lead {
  margin-inline: auto;
}

.bl-head-block {
  max-width: 46rem;
}

.bl-head-block.bl-center {
  margin-inline: auto;
}

/* ---------- 5. Buttons ---------- */
.bl-btn {
  --btn-bg: var(--blue-grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--bl-white);
  background: var(--btn-bg);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
  will-change: transform;
}

.bl-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(38, 121, 214, 0.36);
  filter: saturate(1.1);
}

.bl-btn:active {
  transform: translateY(-1px);
}

.bl-btn--chrome {
  color: var(--bl-navy);
  background: var(--chrome-grad);
  box-shadow: var(--shadow-md);
}

.bl-btn--chrome:hover {
  box-shadow: var(--shadow-lg);
}

.bl-btn--ghost {
  color: var(--bl-navy);
  background: transparent;
  border: 1.5px solid var(--bl-silver);
  box-shadow: none;
}

.bl-btn--ghost:hover {
  background: var(--bl-white);
  border-color: var(--bl-blue);
  color: var(--bl-blue);
  box-shadow: var(--shadow-sm);
}

.bl-btn--wide {
  width: 100%;
}

.bl-btn__arrow {
  width: 20px;
  height: 20px;
  flex: none;
  transition: transform 0.25s var(--ease);
}

.bl-btn:hover .bl-btn__arrow {
  transform: translateX(4px);
}

/* ---------- 6. Kopfzeile / Navigation ---------- */
.bl-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 249, 252, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.bl-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: rgba(246, 249, 252, 0.9);
}

.bl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 74px;
}

.bl-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  color: var(--bl-navy);
}

.bl-logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy-grad);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), var(--shadow-sm);
  flex: none;
}

.bl-logo__mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 5px;
  background: var(--chrome-grad);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.bl-nav__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.bl-nav__link {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.bl-nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.28rem;
  height: 2px;
  background: var(--blue-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.bl-nav__link:hover,
.bl-nav__link:focus-visible {
  color: var(--bl-navy);
}

.bl-nav__link:hover::after,
.bl-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.bl-nav__cta {
  margin-left: 0.4rem;
  padding: 0.65rem 1.35rem;
}

.bl-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Burger */
.bl-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bl-white);
  cursor: pointer;
  position: relative;
  flex: none;
}

.bl-burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--bl-navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.bl-burger span:nth-child(1) { top: 16px; }
.bl-burger span:nth-child(2) { top: 22px; }
.bl-burger span:nth-child(3) { top: 28px; }

.bl-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bl-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bl-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.bl-hero {
  position: relative;
  color: var(--bl-white);
  overflow: hidden;
  isolation: isolate;
}

.bl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.bl-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(8, 18, 38, 0.94) 0%, rgba(14, 27, 51, 0.78) 45%, rgba(22, 41, 75, 0.42) 100%);
}

.bl-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.bl-hero__eyebrow {
  color: var(--bl-cyan);
}

.bl-hero__eyebrow::before {
  background: var(--bl-cyan);
}

.bl-hero h1 {
  color: var(--bl-white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin: 1rem 0 1.2rem;
}

.bl-hero h1 span {
  background: linear-gradient(120deg, #dbe3ec, #56b2e8, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bl-hero__text {
  color: rgba(219, 227, 236, 0.86);
  max-width: 46ch;
  font-size: clamp(1.02rem, 0.6vw + 0.9rem, 1.2rem);
}

.bl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.bl-hero__price {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 1.2rem 0.5rem 1.1rem;
  border-left: 2px solid rgba(86, 178, 232, 0.6);
}

.bl-hero__price b {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--bl-white);
  line-height: 1;
}

.bl-hero__price small {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bl-cyan);
}

.bl-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(198, 208, 219, 0.16);
}

.bl-hero__badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(219, 227, 236, 0.82);
}

.bl-hero__badge svg {
  width: 20px;
  height: 20px;
  color: var(--bl-cyan);
  flex: none;
}

/* Hero – Chrom-Panel rechts (Signatur) */
.bl-hero__panel {
  position: relative;
  border-radius: var(--r-xl);
  padding: 2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(198, 208, 219, 0.24);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}

.bl-hero__panel h2 {
  color: var(--bl-white);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}

.bl-hero__spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(198, 208, 219, 0.2);
}

.bl-hero__spec:last-child { border-bottom: none; }

.bl-hero__spec dt {
  color: rgba(219, 227, 236, 0.72);
  font-size: 0.92rem;
}

.bl-hero__spec dd {
  font-weight: 700;
  color: var(--bl-white);
  text-align: right;
}

/* ---------- 8. Produkt-Präsentation ---------- */
.bl-product {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.bl-product__stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--r-xl);
  background: var(--navy-grad);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}

.bl-product__stage::before {
  content: "";
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  top: -30%;
  right: -40%;
  background: radial-gradient(circle, rgba(86, 178, 232, 0.35), transparent 62%);
  z-index: -1;
}

.bl-product__halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--chrome-grad);
  opacity: 0.16;
  filter: blur(8px);
  z-index: -1;
}

.bl-product__img {
  width: min(320px, 80%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
  animation: bl-float 6s var(--ease) infinite;
}

@keyframes bl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.bl-product__tag {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  background: rgba(246, 249, 252, 0.14);
  border: 1px solid rgba(198, 208, 219, 0.3);
  color: var(--bl-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bl-product__price-chip {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--chrome-grad);
  color: var(--bl-navy);
  box-shadow: var(--shadow-md);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.bl-product__price-chip b { font-size: 1.5rem; }
.bl-product__price-chip small { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

.bl-product__list {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 2rem;
}

.bl-product__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--ink-soft);
}

.bl-product__list svg {
  width: 22px;
  height: 22px;
  color: var(--bl-blue);
  flex: none;
  margin-top: 2px;
}

/* ---------- 9. Produktinformationen (Info-Karten) ---------- */
.bl-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
  margin-top: 3rem;
}

.bl-info-card {
  position: relative;
  padding: 2rem 1.8rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}

.bl-info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--blue-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.bl-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--bl-silver);
}

.bl-info-card:hover::before { transform: scaleX(1); }

.bl-info-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bl-mist);
  color: var(--bl-blue);
  margin-bottom: 1.2rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.bl-info-card:hover .bl-info-card__icon {
  background: var(--blue-grad);
  color: var(--bl-white);
}

.bl-info-card__icon svg { width: 26px; height: 26px; }

.bl-info-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.6rem;
}

.bl-info-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- 10. Lebensstil-Abschnitt ---------- */
.bl-life {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.bl-life__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.bl-life__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.bl-life__media:hover img { transform: scale(1.05); }

.bl-life__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 27, 51, 0.35));
}

.bl-life__float {
  position: absolute;
  z-index: 2;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  display: flex;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  background: rgba(246, 249, 252, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}

.bl-life__float svg { width: 34px; height: 34px; color: var(--bl-blue); flex: none; }
.bl-life__float b { display: block; color: var(--bl-navy); }
.bl-life__float span { font-size: 0.9rem; color: var(--ink-soft); }

.bl-steps {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.8rem;
}

.bl-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}

.bl-step__num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bl-mist);
  color: var(--bl-blue);
  font-weight: 800;
  border: 1px solid var(--line);
  flex: none;
}

.bl-step h4 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.bl-step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- 11. Markenwerte ---------- */
.bl-values {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.bl-values__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2;
}

.bl-values__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.bl-value {
  padding: 1.4rem;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.bl-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bl-value b {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--blue-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.bl-value span { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- 12. Bestellformular ---------- */
.bl-order {
  position: relative;
  color: var(--bl-white);
  background: var(--navy-grad);
  overflow: hidden;
  isolation: isolate;
}

.bl-order::before {
  content: "";
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, rgba(38, 121, 214, 0.4), transparent 60%);
  z-index: -1;
}

.bl-order::after {
  content: "";
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  bottom: -25%;
  right: -10%;
  background: radial-gradient(circle, rgba(86, 178, 232, 0.28), transparent 62%);
  z-index: -1;
}

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

.bl-order h2 { color: var(--bl-white); }
.bl-order .bl-eyebrow { color: var(--bl-cyan); }
.bl-order .bl-eyebrow::before { background: var(--bl-cyan); }

.bl-order__text {
  color: rgba(219, 227, 236, 0.84);
  margin-bottom: 1.6rem;
}

.bl-order__points {
  display: grid;
  gap: 0.85rem;
}

.bl-order__points li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: rgba(219, 227, 236, 0.9);
}

.bl-order__points svg { width: 22px; height: 22px; color: var(--bl-cyan); flex: none; }

.bl-form {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-xl);
  background: rgba(246, 249, 252, 0.06);
  border: 1px solid rgba(198, 208, 219, 0.2);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.bl-form__row { margin-bottom: 1.3rem; }

.bl-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bl-silver-soft);
  margin-bottom: 0.5rem;
}

.bl-form input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--bl-white);
  background: rgba(8, 18, 38, 0.45);
  border: 1.5px solid rgba(198, 208, 219, 0.24);
  border-radius: var(--r-md);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.bl-form input::placeholder { color: rgba(198, 208, 219, 0.5); }

.bl-form input:focus {
  outline: none;
  border-color: var(--bl-cyan);
  background: rgba(8, 18, 38, 0.62);
  box-shadow: 0 0 0 4px rgba(86, 178, 232, 0.18);
}

.bl-form__hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.84rem;
  color: rgba(219, 227, 236, 0.66);
}

.bl-form__hint svg { width: 16px; height: 16px; flex: none; color: var(--bl-cyan); }

.bl-form__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  background: rgba(8, 18, 38, 0.4);
  border: 1px dashed rgba(198, 208, 219, 0.24);
}

.bl-form__total span { color: var(--bl-silver-soft); font-size: 0.92rem; }
.bl-form__total b { font-size: 1.4rem; color: var(--bl-white); }

/* ---------- 13. Fußzeile ---------- */
.bl-footer {
  background: var(--bl-abyss);
  color: rgba(219, 227, 236, 0.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.bl-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(198, 208, 219, 0.12);
}

.bl-footer__brand .bl-logo { color: var(--bl-white); margin-bottom: 1rem; }

.bl-footer__brand p {
  font-size: 0.94rem;
  max-width: 32ch;
}

.bl-footer h4 {
  color: var(--bl-white);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.bl-footer__links { display: grid; gap: 0.6rem; }

.bl-footer__links a {
  font-size: 0.95rem;
  color: rgba(219, 227, 236, 0.72);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.bl-footer__links a:hover {
  color: var(--bl-cyan);
  padding-left: 4px;
}

.bl-footer__contact { display: grid; gap: 0.7rem; font-size: 0.95rem; }

.bl-footer__contact a { transition: color 0.2s var(--ease); }
.bl-footer__contact a:hover { color: var(--bl-cyan); }

.bl-footer__contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.bl-footer__contact-item svg { width: 18px; height: 18px; color: var(--bl-blue); flex: none; margin-top: 3px; }

.bl-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.86rem;
}

.bl-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.bl-footer__bottom a:hover { color: var(--bl-cyan); }

/* ---------- 14. Cookie-Banner ---------- */
.bl-cookie {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 160%);
  width: min(100% - 2rem, 640px);
  padding: 1.5rem 1.6rem;
  background: var(--bl-white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease);
}

.bl-cookie.is-visible { transform: translate(-50%, 0); }

.bl-cookie__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.bl-cookie__head svg { width: 24px; height: 24px; color: var(--bl-blue); flex: none; }
.bl-cookie__head strong { font-size: 1.05rem; color: var(--bl-navy); }

.bl-cookie p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.bl-cookie p a { color: var(--bl-blue); font-weight: 600; text-decoration: underline; }

.bl-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.bl-cookie__actions .bl-btn { padding: 0.7rem 1.4rem; font-size: 0.94rem; }

/* ---------- 15. Rechtstexte (Unterseiten) ---------- */
.bl-page-hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  background: var(--navy-grad);
  color: var(--bl-white);
  overflow: hidden;
  isolation: isolate;
}

.bl-page-hero::before {
  content: "";
  position: absolute;
  width: 50%;
  aspect-ratio: 1;
  top: -25%;
  right: -10%;
  background: radial-gradient(circle, rgba(86, 178, 232, 0.3), transparent 60%);
  z-index: -1;
}

.bl-page-hero h1 {
  color: var(--bl-white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-top: 0.8rem;
}

.bl-page-hero .bl-eyebrow { color: var(--bl-cyan); }
.bl-page-hero .bl-eyebrow::before { background: var(--bl-cyan); }

.bl-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: rgba(219, 227, 236, 0.72);
}

.bl-breadcrumb a:hover { color: var(--bl-cyan); }

.bl-legal {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.bl-legal__wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.bl-legal__toc {
  position: sticky;
  top: 96px;
  padding: 1.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.bl-legal__toc h2 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.9rem;
}

.bl-legal__toc a {
  display: block;
  padding: 0.4rem 0.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  border-left: 2px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.bl-legal__toc a:hover {
  background: var(--bl-mist);
  color: var(--bl-blue);
  border-left-color: var(--bl-blue);
}

.bl-legal__body {
  max-width: 68ch;
}

.bl-legal__body section { margin-bottom: 2.6rem; scroll-margin-top: 96px; }

.bl-legal__body h2 {
  font-size: 1.45rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.bl-legal__body h3 {
  font-size: 1.12rem;
  margin: 1.4rem 0 0.5rem;
  color: var(--bl-navy-2);
}

.bl-legal__body p,
.bl-legal__body li {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.bl-legal__body ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.bl-legal__body ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0;
}

.bl-legal__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--blue-grad);
}

.bl-legal__body a { color: var(--bl-blue); text-decoration: underline; }

.bl-legal__body strong { color: var(--bl-navy); }

.bl-legal__note {
  padding: 1.2rem 1.4rem;
  border-radius: var(--r-md);
  background: var(--bl-mist);
  border-left: 3px solid var(--bl-blue);
  font-size: 0.95rem;
}

.bl-legal__meta {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* ---------- 16. Bestätigungsseite ---------- */
.bl-success {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bl-success::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(86, 178, 232, 0.14), transparent 60%),
    var(--bg);
}

.bl-success__card {
  max-width: 560px;
  padding: clamp(2.2rem, 5vw, 3.5rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.bl-success__check {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-grad);
  box-shadow: var(--shadow-blue);
  animation: bl-pop 0.6s var(--ease) both;
}

.bl-success__check svg { width: 46px; height: 46px; color: var(--bl-white); }

@keyframes bl-pop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

.bl-success h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.9rem; }
.bl-success p { color: var(--ink-soft); margin-bottom: 1.6rem; }

.bl-success__summary {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0;
  padding: 1.4rem;
  text-align: left;
  background: var(--bl-mist);
  border-radius: var(--r-md);
}

.bl-success__summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.94rem;
}

.bl-success__summary span { color: var(--ink-soft); }
.bl-success__summary b { color: var(--bl-navy); }

.bl-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

/* ---------- 17. Scroll-Animationen ---------- */
.bl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.bl-reveal.is-in { opacity: 1; transform: none; }

.bl-reveal[data-delay="1"] { transition-delay: 0.08s; }
.bl-reveal[data-delay="2"] { transition-delay: 0.16s; }
.bl-reveal[data-delay="3"] { transition-delay: 0.24s; }
.bl-reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- 18. Responsivität ---------- */
@media (max-width: 960px) {
  .bl-hero__inner,
  .bl-product,
  .bl-life,
  .bl-values,
  .bl-order__grid {
    grid-template-columns: 1fr;
  }

  .bl-hero__panel { order: -1; }
  .bl-product__stage { order: -1; }
  .bl-values__media { order: -1; }

  .bl-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .bl-footer__brand { grid-column: 1 / -1; }

  .bl-legal__wrap { grid-template-columns: 1fr; }
  .bl-legal__toc { position: static; }
}

@media (max-width: 720px) {
  .bl-nav__list {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--bl-frost);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    z-index: 55;
  }

  .bl-nav__list.is-open { transform: translateY(0); }

  .bl-nav__link { padding: 0.8rem 0.9rem; font-size: 1.05rem; }
  .bl-nav__link::after { display: none; }

  .bl-nav__cta {
    margin: 0.5rem 0 0;
    text-align: center;
    justify-content: center;
  }

  .bl-burger { display: block; }

  .bl-values__grid { grid-template-columns: 1fr; }

  .bl-footer__top { grid-template-columns: 1fr; }

  .bl-hero__badges { gap: 1rem; }

  .bl-cookie__actions .bl-btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 480px) {
  .bl-hero__actions { flex-direction: column; align-items: stretch; }
  .bl-hero__actions .bl-btn { width: 100%; }
  .bl-hero__price { border-left: none; padding-left: 0; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .bl-reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.bl-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--bl-navy);
  color: var(--bl-white);
  border-radius: 0 0 var(--r-sm) 0;
}

.bl-skip:focus { left: 0; }

.bl-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Fußzeile auf Unterseiten ohne oberen Rand */
.bl-footer__bottom--bare {
  border-top: none;
  padding-top: 0;
}

/* Eigenständiger Hinweiskasten im Info-Abschnitt */
.bl-info-note {
  margin-top: 2.5rem;
  max-width: 760px;
}
