/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── DESIGN TOKENS ───────────────────────── */
:root {
  /* Teal — Akzent / alle CTAs */
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;

  /* Navy — Hero, dunkle Sektionen */
  --navy-950: #05091e;
  --navy-900: #0a0f2e;
  --navy-800: #0c1445;
  --navy-700: #0e1b5c;
  --navy-600: #1a237e;
  --navy-500: #1e3a8a;

  /* Blue — UI-Support */
  --b50:  #eff6ff;
  --b100: #dbeafe;
  --b200: #bfdbfe;
  --b300: #93c5fd;
  --b500: #3b82f6;
  --b600: #2563eb;
  --b700: #1d4ed8;

  /* Slate/Gray */
  --g50:  #f8fafc;
  --g100: #f1f5f9;
  --g200: #e2e8f0;
  --g300: #cbd5e1;
  --g400: #94a3b8;
  --g500: #64748b;
  --g600: #475569;
  --g700: #334155;
  --g800: #1e293b;
  --g900: #0f172a;
  --white: #ffffff;

  /* Schatten — abgestimmt auf Slate-Farbraum */
  --sh-sm:   0 1px 4px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --sh-md:   0 4px 20px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.04);
  --sh-lg:   0 10px 40px rgba(15,23,42,.11), 0 4px 12px rgba(15,23,42,.06);
  --sh-xl:   0 24px 64px rgba(15,23,42,.18), 0 8px 24px rgba(15,23,42,.08);
  --sh-teal: 0 4px 20px rgba(13,148,136,.35);

  /* Radien */
  --r:    16px;
  --r-sm: 10px;
  --r-xs:  6px;

  /* Banner height — updated by JS, CSS fallback */
  --banner-h: 48px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--g50);
  color: var(--g800);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
header {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--g200);
  position: sticky;
  top: var(--banner-h);
  z-index: 100;
  box-shadow: var(--sh-sm);
  transition: top .25s ease;
}

/* ═══════════════════════════════════════════
   LAUNCH BANNER (Urgency)
═══════════════════════════════════════════ */
.launch-banner {
  position: sticky; top: 0; z-index: 115;
  background: linear-gradient(
    90deg,
    var(--navy-950) 0%, #062722 30%,
    var(--teal-800) 50%, #062722 70%,
    var(--navy-950) 100%
  );
  background-size: 220% 100%;
  animation: bannerShift 11s linear infinite;
  border-bottom: 1px solid rgba(13,148,136,.32);
  color: var(--white);
}
@keyframes bannerShift {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.launch-inner {
  max-width: 1100px; margin: 0 auto;
  padding: .55rem 4rem .55rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; position: relative; min-height: 46px;
}
.launch-content {
  display: flex; align-items: center; gap: 1.1rem;
  flex-wrap: wrap; justify-content: center;
}
.launch-text { font-size: .85rem; line-height: 1.4; }
.launch-text strong { color: #5eead4; font-weight: 800; }
.launch-cd {
  display: flex; align-items: center; gap: .15rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px; padding: .22rem .55rem;
  flex-shrink: 0;
}
.cd-block {
  display: flex; flex-direction: column; align-items: center;
  min-width: 24px; line-height: 1;
}
.cd-block span {
  font-size: .9rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.cd-block small {
  font-size: .5rem; opacity: .55;
  text-transform: uppercase; letter-spacing: .5px;
  margin-top: 1px;
}
.cd-sep { font-size: .85rem; font-weight: 800; opacity: .35; padding: 0 1px; }
.launch-close {
  position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,.65);
  transition: background .15s, color .15s;
}
.launch-close:hover { background: rgba(255,255,255,.2); color: var(--white); }
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none; font-size: 1.2rem; font-weight: 800;
  color: var(--navy-600); letter-spacing: -.4px;
}
.logo svg { color: var(--teal-600); }

.header-nav {
  display: flex; align-items: center; gap: .15rem;
}
.header-nav a {
  padding: .4rem .85rem;
  border-radius: var(--r-xs);
  font-size: .875rem; font-weight: 500;
  color: var(--g600); text-decoration: none;
  transition: background .15s, color .15s;
}
.header-nav a:hover {
  background: var(--teal-50);
  color: var(--teal-700);
}

.cart-btn {
  position: relative;
  background: var(--g100);
  border: 1.5px solid var(--g200);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--g700);
  transition: background .2s, border-color .2s, transform .15s;
}
.cart-btn:hover {
  background: var(--teal-50);
  border-color: var(--teal-400);
  color: var(--teal-600);
  transform: scale(1.07);
}
.cart-count {
  position: absolute; top: -5px; right: -5px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white); font-size: .68rem; font-weight: 700;
  min-width: 20px; height: 20px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(13,148,136,.45);
  transition: transform .2s;
}
.cart-count.bump { transform: scale(1.45); }

/* ═══════════════════════════════════════════
   HERO  (Mitternachtsblau → tiefes Indigo)
═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(
    150deg,
    var(--navy-950) 0%,
    var(--navy-800) 38%,
    var(--navy-600) 72%,
    #1e3a8a       100%
  );
  color: var(--white);
  padding: 2.5rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
/* Radiale Glüheffekte */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 25%, rgba(13,148,136,.14) 0%, transparent 48%),
    radial-gradient(ellipse at 15% 80%, rgba(30,58,138,.28) 0%, transparent 55%),
    radial-gradient(ellipse at 50% -5%,  rgba(59,130,246,.07) 0%, transparent 40%);
  pointer-events: none;
}
/* Dezentes Punkt-Raster */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}

.hero-pill-row { display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem; }
.hero-pill {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  color: var(--white); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  padding: .25rem .7rem; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(13,148,136,.45);
}
.hero-pill-label { font-size: .85rem; opacity: .7; }

.hero-text h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -.6px; margin-bottom: .8rem;
}
.hl { color: var(--teal-400); font-style: normal; }

.hero-sub {
  font-size: 1.05rem; opacity: .85;
  max-width: 460px; margin-bottom: 1.1rem; line-height: 1.6;
}
.hero-feats {
  list-style: none; display: flex; flex-direction: column;
  gap: .35rem; margin-bottom: 1.4rem; font-size: .92rem; opacity: .88;
}
.hero-feats li { display: flex; align-items: center; gap: .55rem; }
.chk { color: var(--teal-400); font-weight: 700; font-size: 1.05rem; }

.hero-cta { display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; }

/* Hero-Button — Teal-Gradient */
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white); border: none; border-radius: var(--r-sm);
  padding: .95rem 2.2rem; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; letter-spacing: .01em;
  box-shadow: 0 4px 22px rgba(13,148,136,.5), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(13,148,136,.6), 0 4px 12px rgba(0,0,0,.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.added  { background: linear-gradient(135deg, #10b981, #059669) !important; }
.cta-note { font-size: .78rem; opacity: .6; }

/* ── PRODUCT MOCKUP ─────────────────────── */
.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.mockup-glow {
  position: absolute; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(13,148,136,.18) 0%, transparent 68%);
  border-radius: 50%; pointer-events: none;
}
.product-mockup {
  background: rgba(255,255,255,.97);
  border-radius: 20px;
  box-shadow:
    var(--sh-xl),
    0 0 0 1px rgba(255,255,255,.1),
    0 0 40px rgba(13,148,136,.40),
    0 0 80px rgba(13,148,136,.18);
  width: 100%; max-width: 370px;
  overflow: hidden; position: relative; z-index: 1;
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.mockup-bar {
  background: var(--g100); padding: .7rem 1rem;
  display: flex; gap: .4rem; align-items: center;
  border-bottom: 1px solid var(--g200);
}
.dot { width: 11px; height: 11px; border-radius: 50%; background: var(--g300); }
.dot--blue { background: var(--teal-500); box-shadow: 0 0 0 3px rgba(13,148,136,.2); }
.mockup-body { padding: 1.5rem; color: var(--g800); }
.mockup-eyebrow {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--teal-600); margin-bottom: .4rem;
}
.mockup-title { font-size: 1.1rem; font-weight: 800; color: var(--g900); margin-bottom: .85rem; }
.mockup-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.1rem; }
.mockup-tags span {
  background: var(--teal-50); color: var(--teal-700);
  font-size: .68rem; font-weight: 600;
  padding: .18rem .55rem; border-radius: 999px;
  border: 1px solid var(--teal-200);
}
.mockup-lines { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
.ml { height: 8px; background: var(--g200); border-radius: 4px; }
.ml--s { width: 58%; } .ml--m { width: 78%; }
.mockup-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--g100);
}
.mockup-format {
  font-size: .73rem; font-weight: 600; color: var(--g500);
  background: var(--g100); padding: .2rem .55rem; border-radius: 6px;
}
.mockup-price { font-size: 1.2rem; font-weight: 800; color: var(--teal-700); }

/* ── HERO TRUST BAR (inside dark hero) ─── */
.hero-trust-bar {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 1.75rem auto 0;
  padding: 0 1.5rem;
}
.htb-inner {
  border-top: 1px solid rgba(255,255,255,.13);
  padding-top: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.htb-item {
  display: flex; flex-direction: column; align-items: center;
  padding: .4rem 2.2rem; text-align: center;
}
.htb-item strong { font-size: 1.05rem; font-weight: 800; color: rgba(255,255,255,.92); }
.htb-item span   { font-size: .74rem; color: rgba(255,255,255,.46); margin-top: .1rem; }
.htb-sep { width: 1px; height: 28px; background: rgba(255,255,255,.14); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   SCATTER & ASSEMBLE  (dunkle Sektion = Navy)
═══════════════════════════════════════════ */
.scatter-section {
  padding: 5.5rem 1.5rem 4.5rem;
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-800) 45%, #1e3a8a 100%);
  position: relative; text-align: center;
  overflow: hidden;   /* hält auseinanderfliegende Kacheln sicher im Container */
}
.scatter-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.scatter-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(13,148,136,.1) 0%, transparent 55%);
  pointer-events: none;
}

.scatter-header {
  max-width: 580px; margin: 0 auto 3rem;
  position: relative; z-index: 1;
}
.scatter-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: .75rem; letter-spacing: -.4px;
}
.scatter-header h2 span { color: var(--teal-400); }
.scatter-header p { font-size: 1rem; color: rgba(255,255,255,.55); }

.scatter-stage {
  width: 100%;
  max-width: 680px;           /* etwas großzügiger */
  margin: 0 auto;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  /* kein overflow:hidden hier — die Section hält die Kacheln */
  border-radius: var(--r);
  position: relative; z-index: 1;
  padding: 0;                 /* Section-Padding reicht — kein Extra-Inset nötig */
}
.scatter-grid {
  display: grid;
  /* minmax(0,1fr): Spalten dürfen unter Content-Größe schrumpfen → kein Überlauf */
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(5px, 1vw, 8px);
  width: 100%;
  box-sizing: border-box;
}

/* ── KACHELN mit Glassmorphism ─────────── */
.sp {
  aspect-ratio: 1;
  border-radius: 14px;
  padding: .65rem .55rem;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: default; user-select: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transform: translate(var(--sx, 0), var(--sy, 0)) rotate(var(--sr, 0deg)) scale(.4);
  opacity: 0;
  transition:
    transform .75s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   .55s ease;
  transition-delay: var(--delay, 0ms);
}
.scatter-grid.assembled .sp {
  transform: translate(0, 0) rotate(0deg) scale(1);
  opacity: 1;
}

/* Glassmorphism-Varianten auf dunklem Hintergrund */
.sp--dark {
  background: linear-gradient(135deg, rgba(5,9,30,.88), rgba(14,27,92,.78));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 4px 18px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}
.sp--mid {
  background: linear-gradient(135deg, rgba(37,99,235,.62), rgba(59,130,246,.46));
  border: 1px solid rgba(147,197,253,.22);
  box-shadow: 0 4px 18px rgba(37,99,235,.22), inset 0 1px 0 rgba(255,255,255,.14);
  color: var(--white);
}
.sp--light {
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 4px 18px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
}
.sp--pale {
  background: linear-gradient(135deg, rgba(13,148,136,.28), rgba(13,148,136,.12));
  border: 1px solid rgba(45,212,191,.22);
  box-shadow: 0 4px 18px rgba(13,148,136,.14), inset 0 1px 0 rgba(45,212,191,.22);
  color: rgba(255,255,255,.82);
}

.sp-cat  { font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; opacity: .6; line-height: 1; overflow-wrap: anywhere; }
.sp-num  { font-size: .95rem; font-weight: 900; line-height: 1; align-self: center; }
.sp-text {
  font-size: .56rem; font-weight: 500; line-height: 1.25; opacity: .75;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.scatter-hint {
  margin-top: 2rem; font-size: .85rem;
  color: rgba(255,255,255,.38);
  position: relative; z-index: 1;
  transition: opacity .5s;
}
.scatter-hint.hidden { opacity: 0; pointer-events: none; }

/* ═══════════════════════════════════════════
   SNEAK PEEK ("Blick ins Produkt")
═══════════════════════════════════════════ */
.sneak-section {
  padding: 5.5rem 1.5rem;
  background: var(--white);
}
.sneak-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.sneak-preview { position: relative; }
.sneak-preview::before {
  content: '';
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(13,148,136,.12) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* Browser Mockup */
.browser-mockup {
  position: relative; z-index: 1;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.browser-bar {
  background: var(--g100);
  border-bottom: 1px solid var(--g200);
  padding: .65rem 1rem;
  display: flex; align-items: center; gap: .65rem;
}
.browser-dots { display: flex; gap: .35rem; }
.browser-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }
.browser-url {
  background: var(--white);
  border: 1px solid var(--g300); border-radius: 6px;
  padding: .2rem .7rem;
  font-size: .72rem; color: var(--g400);
  flex: 1; max-width: 290px;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.browser-body {
  background: #f7f6f3;   /* Notion-typischer Hintergrund */
  padding: 1.4rem;
}

/* Fake Notion content (Platzhalter, später durch GIF ersetzbar) */
.nf-icon { font-size: 1.7rem; margin-bottom: .45rem; line-height: 1; }
.nf-title {
  font-size: 1.05rem; font-weight: 700; color: #37352f;
  margin-bottom: 1rem;
}
.nf-db {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px; overflow: hidden;
  font-size: .77rem; color: #37352f;
}
.nf-db-head, .nf-db-row {
  display: grid;
  grid-template-columns: 110px 1fr 90px;
  align-items: center;
}
.nf-db-head {
  background: var(--g50);
  border-bottom: 1px solid var(--g200);
  padding: .42rem .75rem;
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: var(--g500);
}
.nf-db-row {
  padding: .5rem .75rem;
  border-bottom: 1px solid var(--g100);
}
.nf-db-row:last-of-type { border-bottom: none; }
.nf-db-row--blur {
  filter: blur(3.5px); opacity: .55; user-select: none;
}
.nf-tag {
  display: inline-flex; align-items: center;
  padding: .14rem .5rem; border-radius: 4px;
  font-size: .67rem; font-weight: 600;
  width: fit-content;
  background: var(--tb, var(--b50));
  color: var(--tc, var(--b600));
}
.nf-status { font-size: .68rem; color: var(--g400); }
.nf-status--done { color: #059669; font-weight: 600; }
.nf-db-more {
  padding: .45rem .75rem;
  font-size: .72rem; color: var(--g400); font-style: italic;
  border-top: 1px solid var(--g100);
}

/* Right column text */
.sneak-pill {
  display: inline-block;
  background: var(--teal-50); color: var(--teal-700);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px;
  padding: .28rem .8rem; border-radius: 999px;
  border: 1px solid var(--teal-200);
  margin-bottom: 1.1rem;
}
.sneak-text h2 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 900; color: var(--g900);
  line-height: 1.18; letter-spacing: -.45px;
  margin-bottom: .55rem;
}
.sneak-tagline {
  font-size: 1.08rem; font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 1.1rem;
}
.sneak-desc {
  font-size: .93rem; color: var(--g500);
  line-height: 1.72; margin-bottom: 1.5rem;
}
.sneak-feats {
  list-style: none;
  display: flex; flex-direction: column; gap: .45rem;
  margin-bottom: 2rem; font-size: .9rem; color: var(--g700);
}
.sneak-feats li { display: flex; align-items: center; gap: .55rem; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials { background: var(--white); padding: 5.5rem 1.5rem; }
.inner { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-size: 1.65rem; font-weight: 800; color: var(--g900);
  text-align: center; margin-bottom: 2.5rem; letter-spacing: -.35px;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-top: 3px solid var(--teal-400);   /* Teal-Akzent-Linie oben */
  border-radius: var(--r);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
  box-shadow: var(--sh-sm);
  transition: box-shadow .25s, transform .2s;
}
.testimonial-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.t-stars { color: #f59e0b; font-size: 1.05rem; letter-spacing: 2px; }
.t-text  { font-size: .9rem; color: var(--g600); line-height: 1.65; flex: 1; }
.t-author { display: flex; align-items: center; gap: .75rem; margin-top: .2rem; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-600));
  color: var(--white); font-size: .73rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.t-author strong { display: block; font-size: .875rem; color: var(--g800); }
.t-author span   { font-size: .775rem; color: var(--g500); }

/* ═══════════════════════════════════════════
   PRODUCT SECTION
═══════════════════════════════════════════ */
.products { padding: 5.5rem 1.5rem; background: var(--g50); }
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 540px);
  justify-content: center;
  gap: 1.5rem;
  align-items: start;
  overflow: visible;
}

/* Basis-Karte */
.product-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-md);         /* deutlich spürbar auf #f8fafc */
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .2s;
  position: relative;
}
.product-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }

/* ── FEATURED KARTE — deutlich abgehoben ─ */
.product-card--featured {
  border: 2px solid var(--teal-500);
  box-shadow:
    0 0 0 1px rgba(13,148,136,.15),
    0 28px 64px rgba(13,148,136,.14),
    0 8px 24px rgba(15,23,42,.10);
  z-index: 1;
}
.product-card--featured:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(13,148,136,.22),
    0 36px 80px rgba(13,148,136,.18),
    0 12px 32px rgba(15,23,42,.12);
}
/* Shimmer-Linie oben (Teal) */
.product-card--featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-600), var(--teal-400));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.featured-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white); font-size: .66rem; font-weight: 700;
  padding: .22rem .7rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .5px;
  box-shadow: var(--sh-teal);
}

.product-img {
  background: linear-gradient(135deg, var(--g100) 0%, var(--b50) 100%);
  display: flex; align-items: center; justify-content: center;
  height: 140px; border-bottom: 1px solid var(--g200);
}
.product-card--featured .product-img {
  background: linear-gradient(135deg, var(--teal-50) 0%, #e0f2fe 100%);
  border-bottom: 1px solid var(--teal-100);
}

.product-info {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem; flex: 1;
}
.product-badge {
  display: inline-block;
  background: var(--g100); color: var(--g600);
  font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px;
  padding: .2rem .6rem; border-radius: 999px;
  border: 1px solid var(--g300); width: fit-content;
}
.product-card--featured .product-badge {
  background: var(--teal-50); color: var(--teal-700);
  border-color: var(--teal-200);
}
.product-info h3  { font-size: 1rem; font-weight: 700; color: var(--g900); line-height: 1.3; }
.product-desc     { font-size: .875rem; color: var(--g500); flex: 1; line-height: 1.5; }
.product-feat-list {
  list-style: none; font-size: .82rem; color: var(--g600);
  display: flex; flex-direction: column; gap: .25rem;
}
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: .75rem; gap: .75rem; flex-wrap: wrap;
}
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--g900); white-space: nowrap; }
.product-card--featured .product-price { color: var(--teal-700); font-size: 1.4rem; }

/* ── "IN DEN WARENKORB" — Teal-Akzent ─── */
.add-to-cart {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white); border: none; border-radius: var(--r-sm);
  padding: .58rem 1.1rem; font-size: .85rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; letter-spacing: .01em;
  box-shadow: 0 2px 10px rgba(13,148,136,.32);
  transition: transform .15s, box-shadow .2s, background .2s;
}
.add-to-cart:hover {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-500) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(13,148,136,.44);
}
.add-to-cart:active { transform: scale(.96) translateY(0); }
.add-to-cart.added  {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 2px 10px rgba(5,150,105,.3);
}

/* ── GUARANTEE BOX (Risk Reversal) ─────── */
.guarantee-box {
  display: flex; align-items: center; gap: 1.25rem;
  max-width: 720px; margin: 2.5rem auto 0;
  background: linear-gradient(135deg, var(--teal-50) 0%, #e0f2fe 100%);
  border: 1px solid var(--teal-100);
  border-left: 4px solid var(--teal-500);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 18px rgba(13,148,136,.08);
}
.guarantee-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13,148,136,.32);
}
.guarantee-body strong {
  display: block;
  font-size: .98rem; font-weight: 800; color: var(--g900);
  margin-bottom: .3rem;
  letter-spacing: -.1px;
}
.guarantee-body p {
  font-size: .875rem; color: var(--g600); line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section {
  background: var(--g50);
  padding: 5.5rem 1.5rem;
}
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: .65rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item.open {
  box-shadow: var(--sh-md);
  border-color: var(--teal-200);
}
.faq-question {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .95rem; font-weight: 600; color: var(--g800);
  transition: background .15s, color .15s;
}
.faq-question:hover { background: var(--g50); }
.faq-item.open .faq-question { background: var(--teal-50); color: var(--teal-700); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.5px solid var(--g300); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300; line-height: 1;
  color: var(--g500);
  transition: transform .32s ease, border-color .2s, color .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--teal-400); color: var(--teal-600);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .38s ease;
}
.faq-answer-inner {
  border-top: 1px solid var(--g100);
  padding: 1rem 1.25rem 1.25rem;
  font-size: .9rem; color: var(--g600); line-height: 1.78;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.55);
}

/* Compact footer — used by legal pages (Impressum/AGB/Datenschutz) */
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: .85rem;
}

/* ── BIG 4-COLUMN FOOTER (main shop) ───── */
.footer-main {
  padding: 4rem 1.5rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
}
.footer-col h4 {
  font-size: .82rem; font-weight: 700;
  color: var(--white);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: .6rem;
}
.footer-col ul a {
  color: rgba(255,255,255,.55);
  text-decoration: none; font-size: .88rem;
  transition: color .15s, transform .15s;
  display: inline-block;
}
.footer-col ul a:hover {
  color: var(--teal-400);
  transform: translateX(3px);
}
.footer-logo {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; color: var(--white);
  font-size: 1.2rem; font-weight: 800; letter-spacing: -.4px;
  margin-bottom: 1rem;
}
.footer-logo svg { color: var(--teal-400); }
.footer-about {
  font-size: .88rem; line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 280px;
}

/* Newsletter form */
.footer-newsletter-text {
  font-size: .88rem; line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s, background .2s, box-shadow .25s;
}
.newsletter-form:focus-within {
  border-color: var(--teal-500);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(13,148,136,.18);
}
.newsletter-form input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  padding: .65rem .85rem;
  color: var(--white); font-size: .85rem;
  font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  border: none; cursor: pointer;
  width: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s, transform .15s;
}
.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-500) 100%);
}
.newsletter-form button:active { transform: scale(.94); }
.newsletter-form button.sent {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* Bottom strip — copyright + payment logos */
.footer-bottom {
  background: var(--navy-950);
  padding: 1.1rem 1.5rem;
}
.footer-bottom-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.42);
}
.payment-logos { display: flex; align-items: center; gap: .45rem; }
.pay-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 24px; padding: 0 .65rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  font-size: .7rem; font-weight: 700; letter-spacing: .3px;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}
.pay-badge--visa   { font-style: italic; letter-spacing: .5px; color: rgba(255,255,255,.7); }
.pay-badge--paypal { color: #009cde; }
.pay-badge--apple  { letter-spacing: .2px; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.42); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--teal-400); }

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--g200);
  box-shadow: 0 -8px 40px rgba(15,23,42,.14);
  transform: translateY(0);
  opacity: 1;
  transition: transform .42s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text {
  flex: 1; min-width: 280px;
  font-size: .85rem; line-height: 1.6;
  color: var(--g600);
}
.cookie-text strong {
  display: block;
  font-weight: 800; color: var(--g900);
  margin-bottom: .15rem;
  font-size: .95rem;
}
.cookie-text a { color: var(--teal-600); text-decoration: none; font-weight: 600; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex; align-items: center; gap: .65rem;
  flex-shrink: 0;
}
.cookie-btn {
  border: none; cursor: pointer;
  font-size: .85rem; font-weight: 700;
  padding: .68rem 1.3rem;
  border-radius: var(--r-sm);
  transition: background .15s, color .15s, transform .15s, box-shadow .2s;
  font-family: inherit;
  white-space: nowrap;
}
.cookie-btn--reject {
  background: none; color: var(--g500);
  padding: .68rem .8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.cookie-btn--reject:hover { color: var(--g800); }
.cookie-btn--settings {
  background: var(--g800); color: var(--white);
}
.cookie-btn--settings:hover { background: var(--g900); }
.cookie-btn--accept {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.cookie-btn--accept:hover {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-500) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13,148,136,.45);
}

/* ═══════════════════════════════════════════
   CART OVERLAY
═══════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(5,9,30,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ═══════════════════════════════════════════
   CART SIDEBAR
═══════════════════════════════════════════ */
.cart-sidebar {
  position: fixed; top: 0; right: 0;
  height: 100%; width: 380px; max-width: 100vw;
  background: var(--white); z-index: 200;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 40px rgba(10,15,46,.2);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--g200); flex-shrink: 0;
}
.cart-sidebar-header h2 { font-size: 1.1rem; font-weight: 700; color: var(--g900); }
.cart-close {
  background: none; border: none; cursor: pointer;
  color: var(--g500); padding: .3rem; border-radius: 6px;
  display: flex; transition: background .15s, color .15s;
}
.cart-close:hover { background: var(--g100); color: var(--g800); }

.cart-items {
  flex: 1; overflow-y: auto; padding: 1rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--g400); padding: 3rem 0;
  text-align: center; font-size: .95rem;
}
.cart-empty svg { opacity: .28; }

.cart-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1rem;
  background: var(--g50); border: 1px solid var(--g200);
  border-radius: var(--r-sm); box-shadow: var(--sh-sm);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name  { display: block; font-weight: 600; font-size: .875rem; color: var(--g900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { display: block; font-size: .8rem; color: var(--teal-600); font-weight: 700; margin-top: .2rem; }

.cart-item-qty { display: flex; align-items: center; gap: .3rem; flex-shrink: 0; }
.cart-item-qty button {
  width: 26px; height: 26px;
  border: 1.5px solid var(--g300); background: var(--white);
  border-radius: 6px; cursor: pointer; font-size: 1rem;
  color: var(--teal-600); display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.cart-item-qty button:hover { background: var(--teal-50); border-color: var(--teal-400); }
.cart-item-qty span { font-size: .875rem; font-weight: 700; min-width: 20px; text-align: center; color: var(--g800); }

.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--g400); padding: .2rem; border-radius: 4px;
  display: flex; flex-shrink: 0; transition: color .15s;
}
.cart-item-remove:hover { color: #dc2626; }

.cart-sidebar-footer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--g200);
  flex-shrink: 0; background: var(--white);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; font-weight: 700; font-size: 1rem; color: var(--g800);
}
.cart-total span:last-child { color: var(--teal-700); font-size: 1.2rem; }

.checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white); border: none; border-radius: var(--r-sm);
  padding: .9rem; font-size: 1rem; font-weight: 700; cursor: pointer;
  box-shadow: var(--sh-teal);
  transition: transform .15s, box-shadow .2s, background .2s;
  font-family: inherit;
}
.checkout-btn:hover {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-500) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(13,148,136,.48);
}
.checkout-btn:active { transform: scale(.98); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .product-mockup { max-width: 280px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card--featured { transform: none; }
  .product-card--featured:hover { transform: translateY(-3px); }
  .sneak-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .htb-item { padding: .4rem 1.2rem; }
  .launch-text { font-size: .78rem; }
  .launch-inner { padding: .55rem 3rem .55rem 1rem; }
  .guarantee-box { gap: 1rem; padding: 1.1rem 1.2rem; }
  .guarantee-icon { width: 44px; height: 44px; }
}
@media (max-width: 600px) {
  .htb-sep { display: none; }
  .htb-item { padding: .4rem .9rem; }
  .scatter-grid { gap: 5px; }
  .sp { padding: .4rem .35rem; }
  .sp-text { display: none; }
  .sp-num { font-size: .75rem; }
  .footer-bottom-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .payment-logos { flex-wrap: wrap; justify-content: center; }
  .launch-text { font-size: .72rem; line-height: 1.35; }
  .launch-text strong { display: inline; }
  .nf-db-head, .nf-db-row { grid-template-columns: 78px 1fr 64px; }
  .nf-tag { font-size: .62rem; padding: .12rem .4rem; }
  .sneak-section { padding: 4rem 1.25rem; }
  .browser-body { padding: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main { padding: 3rem 1.5rem 2rem; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 1rem; padding: 1rem 1.25rem; }
  .cookie-actions { justify-content: flex-end; flex-wrap: wrap; }
  .cookie-btn { padding: .65rem 1rem; font-size: .8rem; }
  .cookie-btn--accept { flex: 1; }
}

/* ═══════════════════════════════════════════
   LEGAL PAGES (Impressum, AGB, Datenschutz)
═══════════════════════════════════════════ */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}
.legal-breadcrumb {
  font-size: .85rem; color: var(--g400);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: .4rem;
}
.legal-breadcrumb a { color: var(--teal-600); text-decoration: none; }
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal-breadcrumb span { color: var(--g400); }

.legal-content h1 {
  font-size: 2.2rem; font-weight: 900;
  color: var(--navy-800);
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--teal-100);
  letter-spacing: -.5px;
}
.legal-section {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--g200);
}
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.legal-content h2 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--g800); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .5rem;
}
.legal-content h2::before {
  content: '';
  display: inline-block;
  width: 3px; height: 1em;
  background: var(--teal-500);
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-content p {
  font-size: .94rem; color: var(--g600);
  margin-bottom: .9rem; line-height: 1.78;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content address {
  font-style: normal;
  background: var(--g50);
  border: 1px solid var(--g200);
  border-left: 3px solid var(--teal-400);
  border-radius: var(--r-sm);
  padding: 1.25rem 1.5rem;
  font-size: .94rem; color: var(--g700);
  line-height: 1.9; margin-bottom: 1rem;
}
.legal-content a { color: var(--teal-600); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-meta {
  display: inline-block;
  background: var(--b50); color: var(--b700);
  font-size: .8rem; font-weight: 600;
  padding: .3rem .75rem; border-radius: 999px;
  border: 1px solid var(--b200);
  margin-bottom: 2rem;
}

.back-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .875rem; color: var(--teal-600);
  text-decoration: none; font-weight: 600;
  transition: color .15s, gap .15s;
}
.back-link:hover { color: var(--teal-700); gap: .5rem; }

/* ═══════════════════════════════════════════
   AUTH PAGES (Login / Registrierung)
═══════════════════════════════════════════ */
.auth-page {
  min-height: calc(100vh - 64px - 240px);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 1.5rem;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(13,148,136,.05) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(37,99,235,.04) 0%, transparent 55%),
    var(--g50);
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--sh-lg);
  width: 100%; max-width: 440px;
}
.auth-card h1 {
  font-size: 1.6rem; font-weight: 800;
  color: var(--g900);
  margin-bottom: .35rem;
  letter-spacing: -.4px;
}
.auth-sub {
  font-size: .9rem; color: var(--g500);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.auth-form {
  display: flex; flex-direction: column; gap: 1.05rem;
}
.auth-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: .85rem;
}
.auth-field {
  display: flex; flex-direction: column; gap: .35rem;
}
.auth-field label {
  font-size: .82rem; font-weight: 600;
  color: var(--g700);
}
.auth-field input {
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: var(--r-sm);
  padding: .72rem .9rem;
  font-size: .92rem; color: var(--g900);
  font-family: inherit;
  transition: border-color .15s, box-shadow .2s, background .15s;
}
.auth-field input:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13,148,136,.18);
}
.auth-forgot {
  display: block; text-align: right;
  font-size: .8rem; color: var(--teal-600);
  text-decoration: none;
  margin-top: -.4rem;
  font-weight: 600;
}
.auth-forgot:hover { text-decoration: underline; }
.auth-checkbox {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .82rem; color: var(--g600);
  line-height: 1.5;
  cursor: pointer;
}
.auth-checkbox input[type="checkbox"] {
  margin-top: .15rem;
  accent-color: var(--teal-600);
  flex-shrink: 0;
}
.auth-checkbox a {
  color: var(--teal-600); text-decoration: none; font-weight: 600;
}
.auth-checkbox a:hover { text-decoration: underline; }
.auth-submit {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white); border: none; border-radius: var(--r-sm);
  padding: .9rem; font-size: .98rem; font-weight: 700;
  cursor: pointer; letter-spacing: .01em; font-family: inherit;
  box-shadow: 0 4px 18px rgba(13,148,136,.4);
  transition: transform .15s, box-shadow .2s, background .2s;
  margin-top: .35rem;
}
.auth-submit:hover {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-500) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(13,148,136,.5);
}
.auth-submit:active { transform: translateY(0); }
.auth-footer {
  text-align: center;
  font-size: .88rem; color: var(--g500);
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--g100);
}
.auth-footer a {
  color: var(--teal-600); font-weight: 700;
  text-decoration: none;
}
.auth-footer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   PRESS PAGE
═══════════════════════════════════════════ */
.press-quickfacts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin: 1.25rem 0 .5rem;
}
.press-fact {
  background: var(--g50);
  border: 1px solid var(--g200);
  border-left: 3px solid var(--teal-500);
  border-radius: var(--r-sm);
  padding: 1rem 1.2rem;
}
.press-fact strong {
  display: block;
  font-size: 1.2rem; font-weight: 800;
  color: var(--navy-800);
  margin-bottom: .15rem;
  letter-spacing: -.2px;
}
.press-fact span {
  font-size: .72rem; color: var(--g500);
  text-transform: uppercase; letter-spacing: .6px;
  font-weight: 600;
}
.press-contact-card {
  background: linear-gradient(135deg, var(--teal-50) 0%, #e0f2fe 100%);
  border: 1px solid var(--teal-200);
  border-left: 4px solid var(--teal-500);
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
  display: flex; gap: 1.25rem;
  align-items: center;
  margin: 1rem 0;
}
.press-contact-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-600));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(13,148,136,.3);
}
.press-contact-info strong {
  display: block;
  font-size: 1.05rem; color: var(--g900);
  margin-bottom: .1rem;
}
.press-contact-info .role {
  font-size: .82rem; color: var(--g500);
  margin-bottom: .55rem;
}
.press-contact-info p {
  font-size: .88rem !important;
  color: var(--g700) !important;
  margin: 0 !important;
  line-height: 1.65 !important;
}
.press-contact-info a {
  color: var(--teal-700); font-weight: 600; text-decoration: none;
}
.press-contact-info a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .press-quickfacts { grid-template-columns: 1fr 1fr; }
  .press-contact-card { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; }
  .auth-card { padding: 2rem 1.5rem; }
  .auth-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   EARLY BUYERS / NEUTRALER PLATZHALTER
═══════════════════════════════════════════ */
.early-buyers {
  background: var(--white);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--g100);
}
.early-buyers-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.early-buyers h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--g900);
  line-height: 1.25;
  margin-bottom: 1.1rem;
  letter-spacing: -.3px;
}
.early-buyers p {
  font-size: 1rem;
  color: var(--g600);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .early-buyers { padding: 3.5rem 1.5rem; }
  .early-buyers p { font-size: .94rem; }
}

/* ═══════════════════════════════════════════
   LEGAL HINTS (kleine Pflichthinweise unter CTAs)
═══════════════════════════════════════════ */
.legal-hint {
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(255,255,255,.6);
  max-width: 460px;
  margin: 0;
}
.legal-hint a {
  color: var(--teal-300, #5eead4);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.legal-hint a:hover { color: #99f6e4; }

/* Variante: heller Hintergrund (z. B. in der Cart-Sidebar) */
.legal-hint--cart {
  color: var(--g500);
  font-size: .76rem;
  margin-bottom: .9rem;
  background: var(--g50);
  border: 1px solid var(--g200);
  border-left: 3px solid var(--teal-500);
  border-radius: var(--r-sm);
  padding: .65rem .8rem;
  max-width: none;
}
.legal-hint--cart a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-hint--cart a:hover { color: var(--teal-800); }

/* Nummerierte Liste innerhalb der Widerrufsbelehrung */
.legal-list {
  list-style: decimal;
  padding-left: 1.4rem;
  margin: .6rem 0 .9rem;
  font-size: .94rem;
  color: var(--g600);
  line-height: 1.78;
}
.legal-list li { margin-bottom: .35rem; }
.legal-list li::marker { color: var(--teal-600); font-weight: 700; }

/* ═══════════════════════════════════════════
   REVIEW / CHECKOUT-ZWISCHENSEITE
═══════════════════════════════════════════ */
.review-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.review-back {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--g500);
  font-size: .85rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
  font-weight: 600;
  transition: color .15s, gap .15s;
}
.review-back:hover { color: var(--teal-600); gap: .55rem; }

.review-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--navy-800);
  margin-bottom: .35rem;
  letter-spacing: -.4px;
}
.review-page > p.lead {
  font-size: .95rem;
  color: var(--g500);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--sh-md);
}
.review-section {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--g100);
}
.review-section:first-child { padding-top: 0; }
.review-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.review-section h2 {
  font-size: .76rem;
  font-weight: 700;
  color: var(--g500);
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-bottom: .8rem;
}

.review-items { display: flex; flex-direction: column; gap: .65rem; }
.review-item {
  display: flex; align-items: center;
  padding: .85rem 1rem;
  background: var(--g50);
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
}
.review-item-name {
  font-weight: 600;
  color: var(--g900);
  font-size: .9rem;
  flex: 1;
  min-width: 0;
}
.review-item-qty {
  font-size: .75rem;
  color: var(--g500);
  background: var(--white);
  border: 1px solid var(--g300);
  border-radius: 12px;
  padding: .12rem .55rem;
  margin: 0 .75rem;
  white-space: nowrap;
}
.review-item-price {
  font-weight: 700;
  color: var(--teal-700);
  font-size: .95rem;
  white-space: nowrap;
}
.review-total {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem; font-weight: 800;
  color: var(--g900);
}
.review-total span:last-child {
  color: var(--teal-700);
  font-size: 1.3rem;
}

.review-merchant address {
  font-style: normal;
  font-size: .88rem;
  color: var(--g600);
  line-height: 1.65;
  background: var(--g50);
  border: 1px solid var(--g200);
  border-left: 3px solid var(--teal-400);
  border-radius: var(--r-sm);
  padding: .9rem 1rem;
}
.review-merchant strong { color: var(--g900); }

/* Hinweis-Box (digitales Produkt + Widerrufsbelehrung-Link) */
.review-notice {
  background: var(--g50);
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
  padding: 1rem 1.1rem;
  font-size: .87rem;
  line-height: 1.65;
  color: var(--g600);
}
.review-notice strong { color: var(--g900); font-weight: 800; }
.review-notice a {
  color: var(--teal-700); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}
.review-notice a:hover { color: var(--teal-800); }

/* Pflicht-Checkbox-Box */
.consent-row {
  background: linear-gradient(135deg, var(--teal-50) 0%, #e0f2fe 100%);
  border: 1px solid var(--teal-200);
  border-left: 4px solid var(--teal-500);
  border-radius: var(--r-sm);
  padding: 1.15rem 1.2rem;
  margin-top: 1.25rem;
}
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--g800);
}
.consent-checkbox input[type="checkbox"] {
  margin-top: .2rem;
  flex-shrink: 0;
  width: 18px; height: 18px;
  accent-color: var(--teal-600);
  cursor: pointer;
}

/* Großer Stripe-Checkout-Button (Variante mit Disabled-State) */
.checkout-btn--big {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  box-shadow: 0 6px 22px rgba(13,148,136,.42);
}
.checkout-btn--big:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13,148,136,.55);
}
.checkout-btn.is-disabled,
.checkout-btn--big.is-disabled {
  opacity: .42;
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  filter: grayscale(.4);
}

/* Empty-Cart-Status */
.review-empty {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--sh-md);
}
.review-empty h2 {
  font-size: 1.25rem; color: var(--g800); margin-bottom: .5rem;
  font-weight: 800;
}
.review-empty p {
  color: var(--g500); margin-bottom: 1.5rem;
  font-size: .95rem;
}
.review-empty a {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  padding: .75rem 1.4rem; border-radius: var(--r-sm);
  font-weight: 700; text-decoration: none;
  font-size: .9rem;
  box-shadow: 0 4px 14px rgba(13,148,136,.32);
  transition: transform .15s, box-shadow .2s;
}
.review-empty a:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,.45); }

@media (max-width: 600px) {
  .review-card { padding: 1.4rem 1.25rem 1.25rem; }
  .review-page { padding: 2rem 1.25rem 3rem; }
}
