/* ═══════════════════════════════════════════════════════════
   Leadsupporter — Shop & Produktseiten
   Branding exakt von leadsupporter.com (wie /verkauf/)
   ═══════════════════════════════════════════════════════════ */

/* ─────────── Tokens ─────────── */
:root {
  --bg: #070B12;
  --bg-2: #0A111B;
  --surface: #101825;
  --surface-2: #0D1420;
  --border: rgba(215, 225, 234, 0.08);
  --border-strong: rgba(215, 225, 234, 0.16);

  --teal: #3EE8DE;
  --teal-bright: #8FF6EE;
  --teal-dark: #1FA69E;
  --gold: #F0BC70;
  --gold-bright: #F7D49E;
  --gold-dark: #E8A94A;
  --red: #E86A6A;

  --ink: #EAF2F7;
  --text: #D7E1EA;
  --muted: #8B9AAD;

  --grad: linear-gradient(90deg, #3EE8DE, #F0BC70);
  --grad-text: linear-gradient(92deg, #8FF6EE 0%, #3EE8DE 45%, #F0BC70 100%);

  --font-display: 'Space Grotesk', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
}

/* ─────────── Reset & Base ─────────── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

p { margin: 0 0 16px; }

a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-bright); }

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

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(62, 232, 222, 0.28); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--teal);
  color: #06141F;
  box-shadow: 0 8px 26px rgba(62, 232, 222, 0.22);
}
.btn-primary:hover {
  background: var(--teal-bright);
  color: #06141F;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(62, 232, 222, 0.3);
}

.btn-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #1A1204;
  box-shadow: 0 8px 26px rgba(240, 188, 112, 0.24);
}
.btn-gold:hover {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  color: #1A1204;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(240, 188, 112, 0.34);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-xl { padding: 20px 42px; font-size: 18px; }
.btn-block { width: 100%; }

/* ─────────── Eyebrow ─────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 16.5px;
  margin: 0;
}

.section { padding: 104px 0; }
.section-alt {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ─────────── Header ─────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(7, 11, 18, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-icon { flex: none; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.brand-word-accent { color: var(--teal); font-weight: 500; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width .22s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-login {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
}
.header-login:hover { color: var(--teal-bright); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────── Hero (Shop) ─────────── */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-teal {
  width: 620px;
  height: 620px;
  top: -220px;
  right: -160px;
  background: radial-gradient(circle, rgba(62, 232, 222, 0.22), transparent 65%);
}
.hero-glow-gold {
  width: 560px;
  height: 560px;
  bottom: -260px;
  left: -200px;
  background: radial-gradient(circle, rgba(240, 188, 112, 0.14), transparent 65%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 56px;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 22px;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-sub b { color: var(--ink); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.hero-trust li {
  position: relative;
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 20px;
}
.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Hero-Visual: Buch auf Bühne */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.stage {
  position: relative;
  width: 340px;
  max-width: 92%;
  border-radius: 28px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(62, 232, 222, 0.12), transparent 60%),
    var(--surface-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 30px 60px -20px rgba(0,0,0,0.5);
  padding: 46px 30px 34px;
  /* Dauerhafte leichte 3D-Neigung wie beim Dashboard-Mockup -- der
     Maus-Tilt (shop.js) übernimmt bei Hover und kehrt hierhin zurück. */
  transform: perspective(1100px) rotateX(3deg) rotateY(-5deg);
}
.stage img {
  width: 100%;
  aspect-ratio: 480 / 560;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
  animation: floatY 6s ease-in-out infinite;
}
.stage-tag {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(62, 232, 222, 0.08);
  border: 1px solid rgba(62, 232, 222, 0.3);
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 24, 37, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  animation: floatY 5.5s ease-in-out infinite;
  z-index: 2;
}
.float-ico { font-size: 22px; line-height: 1; }
.float-card b {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13.5px;
  line-height: 1.3;
}
.float-card small { color: var(--muted); font-size: 12px; line-height: 1.35; }
.float-1 { top: 40px; left: -30px; }
.float-2 { bottom: 56px; left: -48px; animation-delay: -2.2s; }
.float-3 { top: 38%; right: -30px; animation-delay: -3.8s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ─────────── Vertrauensband ─────────── */
.trustband {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(62, 232, 222, 0.05), rgba(240, 188, 112, 0.04));
  padding: 22px 0;
}
.trustband-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 34px;
}
.trustband span {
  font-size: 13.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trustband span::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
}

/* ─────────── Produkt-Cards ─────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(62, 232, 222, 0.4);
  box-shadow: var(--shadow-sm);
}

.product-media {
  position: relative;
  padding: 30px 30px 10px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(62, 232, 222, 0.07), transparent 60%),
    var(--surface-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.product-media img {
  width: 76%;
  margin: 0 auto;
  aspect-ratio: 480 / 560;
  object-fit: contain;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.45));
  transition: transform .35s ease;
}
.product-card:hover .product-media img { transform: translateY(-8px) scale(1.04); }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(62, 232, 222, 0.1);
  border: 1px solid rgba(62, 232, 222, 0.35);
  color: var(--teal);
}
.product-badge.gold {
  background: rgba(240, 188, 112, 0.1);
  border-color: rgba(240, 188, 112, 0.35);
  color: var(--gold-bright);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 26px 26px;
  flex: 1;
}
.product-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.product-body .p-tag {
  color: var(--teal);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 12px;
}
.product-body p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 16px;
}
.product-list { margin-bottom: 22px; flex-grow: 1; }
.product-list li {
  position: relative;
  padding: 5px 0 5px 24px;
  font-size: 13.8px;
  color: var(--text);
  line-height: 1.5;
}
.product-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: auto;
}
.product-price { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--ink); }
.product-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ─────────── Bundle-Sektion ─────────── */
.bundle {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 85% 20%, rgba(62, 232, 222, 0.1), transparent 55%),
    radial-gradient(100% 90% at 10% 90%, rgba(240, 188, 112, 0.08), transparent 55%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bundle-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}
.bundle-media img {
  width: 100%;
  border-radius: 24px;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.55));
  transition: transform .35s ease;
}
.bundle-media img:hover { transform: translateY(-6px); }

.bundle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1A1204;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(240, 188, 112, 0.25);
}
.bundle h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  margin-bottom: 12px;
}
.bundle .bundle-lead {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 540px;
  margin-bottom: 24px;
}
.bundle-list { margin-bottom: 28px; }
.bundle-list li {
  position: relative;
  padding: 7px 0 7px 30px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.bundle-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-bright);
  font-weight: 700;
}
.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}
.bundle-price-row s { color: var(--muted); font-size: 18px; }
.bundle-price-row .price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.bundle-save {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1204;
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ─────────── Vergleichstabelle ─────────── */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.compare th, .compare td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14.5px;
}
.compare thead th {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  background: var(--surface-2);
}
.compare thead th small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0; text-transform: none; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody td { color: var(--muted); }
.compare th:not(:first-child), .compare td:not(:first-child) { text-align: center; }
.compare .col-best {
  background: rgba(62, 232, 222, 0.07);
  color: var(--teal-bright);
  font-weight: 600;
}
.compare .col-gold {
  background: rgba(240, 188, 112, 0.07);
  color: var(--gold-bright);
  font-weight: 600;
}
.compare thead .col-best { color: var(--teal); }
.compare thead .col-gold { color: var(--gold); }

.compare-note {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}

/* ─────────── How it works ─────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .25s ease, border-color .25s ease;
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(62, 232, 222, 0.35);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* ─────────── Garantie ─────────── */
.guarantee {
  display: flex;
  gap: 22px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(240, 188, 112, 0.06);
  border: 1px solid rgba(240, 188, 112, 0.28);
  border-radius: 18px;
  padding: 28px 32px;
}
.guarantee-ico { font-size: 40px; line-height: 1; flex: none; }
.guarantee h3 { font-size: 20px; margin-bottom: 6px; }
.guarantee p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ─────────── FAQ ─────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-list details[open] { border-color: rgba(62, 232, 222, 0.35); }
.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 19px 56px 19px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color .2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--teal-bright); }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  transition: transform .25s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-list details p b { color: var(--text); }

/* ─────────── Finaler CTA ─────────── */
.final-cta {
  position: relative;
  padding: 116px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 50% 110%, rgba(62, 232, 222, 0.16), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.final-cta .eyebrow { justify-content: center; }
.final-cta .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
  margin: 0 auto 14px;
}
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 30px;
}
.final-cta .btn { margin-bottom: 8px; }
.final-note {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
}
.final-note a { color: var(--teal); }

/* ─────────── Footer ─────────── */
.site-footer {
  background: #05080F;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 2fr;
  gap: 56px;
}
.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  max-width: 340px;
  margin-top: 18px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text);
  font-size: 14px;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--teal-bright); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.footer-note {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 14px;
}
.footer-copy {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* ─────────── Mobile Sticky CTA ─────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7, 11, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.mobile-cta .btn { width: 100%; }
[hidden] { display: none !important; }

/* ─────────── Scroll-Reveal ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   PRODUKTSEITEN (public/shop/*.html)
   ═══════════════════════════════════════════════════════════ */

.p-hero {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
}
.p-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
}

.p-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-media .stage { width: 320px; }
.p-media img {
  width: 100%;
  aspect-ratio: 480 / 560;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

.p-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(62, 232, 222, 0.08);
  border: 1px solid rgba(62, 232, 222, 0.3);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.p-eyebrow.gold {
  color: var(--gold-bright);
  background: rgba(240, 188, 112, 0.08);
  border-color: rgba(240, 188, 112, 0.3);
}

.p-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 10px;
}
.p-tagline {
  font-size: 17px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}
.p-lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 26px;
}

.p-buybox {
  background: linear-gradient(135deg, rgba(62, 232, 222, 0.08), rgba(240, 188, 112, 0.05));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 26px 28px;
}
.p-buybox .price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.p-buybox .price-row s { color: var(--muted); font-size: 18px; }
.p-buybox .price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
}
.p-buybox .price b { color: var(--teal); }
.p-buybox .buy-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 18px;
}
.p-buybox .btn { width: 100%; margin-bottom: 14px; }
.p-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
}
.p-trust li {
  position: relative;
  font-size: 13px;
  color: var(--muted);
  padding-left: 20px;
}
.p-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
}

.p-section { padding: 88px 0; }
.p-section-alt {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px;
  transition: transform .25s ease, border-color .25s ease;
}
.content-card:hover {
  transform: translateY(-5px);
  border-color: rgba(62, 232, 222, 0.35);
}
.content-card .card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 22px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.22), rgba(62,232,222,0.16) 45%, rgba(62,232,222,0.05) 100%);
  border: 1px solid rgba(62, 232, 222, 0.25);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.25),
    inset 0 -6px 10px rgba(0,0,0,0.35),
    0 8px 14px rgba(0,0,0,0.35);
  transition: transform .2s ease;
}
.content-card:hover .card-ico { transform: translateY(-2px) scale(1.05); }
.content-card h3 { font-size: 17px; margin-bottom: 8px; }
.content-card p { color: var(--muted); font-size: 14px; margin: 0; }
.content-card p b { color: var(--text); }

.wholist { max-width: 760px; margin: 0 auto; }
.wholist li {
  position: relative;
  padding: 9px 0 9px 34px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.wholist li:last-child { border-bottom: none; }
.wholist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(62, 232, 222, 0.4);
  box-shadow: var(--shadow-sm);
}
.related-card img {
  width: 52%;
  margin: 0 auto 16px;
  aspect-ratio: 480 / 560;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.4));
}
.related-card h3 { font-size: 16px; margin-bottom: 4px; }
.related-card .rel-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
}
.related-card .rel-price small { font-family: var(--font-body); font-size: 12px; color: var(--muted); font-weight: 500; }

.p-note {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .hero-grid { gap: 40px; }
  .float-3 { display: none; }
  .float-2 { left: -20px; }
  .float-1 { left: -16px; }
  .bundle-inner { gap: 40px; }
}

@media (max-width: 1023px) {
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 22px;
    background: rgba(7, 11, 18, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-header.nav-open .main-nav { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; font-size: 16px; }
  .nav-toggle { display: flex; }
  .header-login { display: none; }
}

@media (max-width: 900px) {
  .hero { padding: 84px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { order: -1; min-height: 400px; }
  .product-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .bundle-inner { grid-template-columns: 1fr; gap: 40px; }
  .bundle-media { max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .content-grid { grid-template-columns: 1fr; }
  .p-grid { grid-template-columns: 1fr; gap: 40px; }
  .p-media { order: -1; }
  .p-hero { padding: 64px 0 56px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .guarantee { flex-direction: column; align-items: flex-start; }
  .mobile-cta:not([hidden]) { display: block; }
}

@media (max-width: 560px) {
  .section { padding: 76px 0; }
  .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 16px; }
  .float-card { display: none; }
  .hero-visual { min-height: 340px; }
  .stage { width: 280px; padding: 40px 20px 28px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .compare-wrap { margin: 0 -12px; border-radius: 0; }
  .bundle-price-row { flex-wrap: wrap; }
  .mobile-cta .btn { font-size: 16px; padding: 16px 20px; }
}

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