:root {
  --bg-primary: #000000;
  --bg-card: #0d0d0d;
  --bg-divider: #1f1f1f;
  --text-primary: #FFFFFF;
  --text-muted: #A1A1A6;
  --text-faint: #6e6e73;
  --accent: #FFB347;
  --accent-dark: #C8851D;
  --accent-glow: rgba(255,179,71,0.2);

  --font-display: Impact, 'Arial Black', 'Helvetica Neue', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --container-max: 1280px;
  --gutter: 24px;

  --radius-sm: 4px;
  --radius-md: 12px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; color: inherit; font: inherit; }

/* Helpers */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 80px 0; }
.eyebrow { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; font-weight: 600; }
.display { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); line-height: 0.95; letter-spacing: -1px; text-transform: uppercase; }
.lead { font-size: 1.125rem; color: var(--text-muted); max-width: 60ch; }
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-size: 0.875rem;
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  height: 56px;
  padding: 0 32px;
}
.btn-primary {
  background: var(--accent); color: #000;
  border: 2px solid var(--accent);
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--accent); color: var(--accent);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { background: var(--accent); color: #000; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-divider);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 1px;
  display: flex; align-items: center;
}
.logo-accent { color: var(--accent); }
.logo-img { height: 32px; width: auto; }
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 0.875rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--accent); }
.header-cta {
  background: var(--accent); color: #000;
  padding: 10px 20px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.header-cta:hover { background: var(--accent-dark); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  filter: brightness(0.7) contrast(1.08);
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.15) translate(-3%, -2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 120px; padding-bottom: 100px;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 4px;
  color: var(--accent); font-weight: 700;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.9; letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted); max-width: 540px;
  margin-bottom: 40px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Hero reveal — initial state (only when JS available; no-JS keeps hero visible) */
.has-js .hero-eyebrow,
.has-js .hero-title,
.has-js .hero-sub,
.has-js .hero-cta-row { opacity: 0; will-change: transform, opacity; }
.has-js .hero-eyebrow,
.has-js .hero-sub,
.has-js .hero-cta-row { transform: translateY(20px); }
.has-js .hero-title { transform: translateY(40px) scale(0.94); }
.hero-scroll-cue {
  position: absolute; bottom: 65px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 4px; color: var(--text-muted);
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* SOCIAL PROOF BAR */
.social-proof {
  background: var(--bg-card);
  border-top: 1px solid var(--bg-divider);
  border-bottom: 1px solid var(--bg-divider);
  padding: 24px 0;
}
.social-proof-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--accent);
  line-height: 1;
}
.stat-plus { color: var(--accent); font-size: 2rem; }
.stat-tag {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--accent);
  text-transform: uppercase;
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
}

/* STORY */
.story { background: var(--bg-primary); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.story-images { display: flex; align-items: center; justify-content: center; }
.story-video {
  width: 100%; max-width: 560px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,179,71,0.15);
  background: #0a0a0a;
}

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { display: block; margin-bottom: 16px; }

/* BENEFITS — ORBIT STAGE */
.benefits-orbit { background: var(--bg-primary); overflow: hidden; }
.orbit-stage {
  position: relative;
  height: 720px;
  max-width: 1100px;
  margin: 0 auto;
}
.orbit-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,71,0.25) 0%, rgba(255,179,71,0.08) 30%, transparent 60%);
  filter: blur(20px);
  z-index: 1;
}
.orbit-jar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px; height: auto;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

.orbit-item {
  position: absolute;
  z-index: 3;
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.orbit-label {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.orbit-label:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.orbit-icon { font-size: 1.8rem; margin-bottom: 6px; }
.orbit-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--accent);
  margin-bottom: 4px;
}
.orbit-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Positions around the center */
.orbit-tl { top: 0; left: 0; }
.orbit-tr { top: 0; right: 0; }
.orbit-bl { bottom: 0; left: 0; }
.orbit-br { bottom: 0; right: 0; }
.orbit-l  { top: 50%; left: 0; transform: translateY(-50%); }
.orbit-r  { top: 50%; right: 0; transform: translateY(-50%); }

/* Connecting lines from orbit-items to center (subtle dotted) */
.orbit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.4;
  height: 1px;
}
.orbit-line-tl { top: 40px; left: 240px; width: 200px; transform: rotate(20deg); transform-origin: left center; }
.orbit-line-tr { top: 40px; right: 240px; width: 200px; transform: rotate(-20deg); transform-origin: right center; }
.orbit-line-bl { bottom: 40px; left: 240px; width: 200px; transform: rotate(-20deg); transform-origin: left center; }
.orbit-line-br { bottom: 40px; right: 240px; width: 200px; transform: rotate(20deg); transform-origin: right center; }
.orbit-line-l  { top: 50%; left: 240px; width: 180px; }
.orbit-line-r  { top: 50%; right: 240px; width: 180px; }

.disclaimer {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ff8b6a;
  margin-top: 56px;
  padding: 18px 28px;
  border: 1px solid rgba(229,80,57,0.35);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(229,80,57,0.06) 0%, rgba(229,80,57,0.12) 100%);
  box-shadow: 0 0 24px rgba(229,80,57,0.15);
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* Mobile: orbit becomes vertical stack */
@media (max-width: 900px) {
  .orbit-stage { height: auto; padding: 60px 0; display: flex; flex-direction: column; align-items: center; gap: 24px; }
  .orbit-glow { width: 320px; height: 320px; position: relative; top: 0; left: 0; transform: none; order: -1; }
  .orbit-jar { width: 320px; position: relative; top: 0; left: 0; transform: none; order: -1; margin-top: -340px; margin-bottom: -60px; animation: none; }
  .orbit-item { position: relative; top: auto; left: auto; right: auto; bottom: auto; transform: none; width: 100%; max-width: 360px; text-align: center !important; }
  .orbit-item .orbit-label { text-align: center !important; }
  .orbit-line { display: none; }
}

/* LAB-TESTS */
.lab { background: var(--bg-card); }
.lab-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lab-grid-single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

/* Lab Cert Card — verified-badge style */
.lab-cert-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1612 100%);
  border: 1px solid rgba(255,179,71,0.18);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  color: inherit;
  width: 100%;
}
.lab-cert-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255,179,71,0.18);
}
.lab-cert-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,179,71,0.25);
}
.lab-cert-check {
  font-size: 1.7rem;
  color: #000;
  font-weight: 900;
  line-height: 1;
}
.lab-cert-info { min-width: 0; }
.lab-cert-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.1;
}
.lab-cert-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.lab-cert-view {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.lab-cert-thumb {
  width: 110px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,179,71,0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.lab-cert-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.lab-cert-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.lab-cert-zoom {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 26px; height: 26px;
  background: var(--accent);
  color: #000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  z-index: 1;
  line-height: 1;
}
.lab-cert-card:hover .lab-cert-thumb {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(255,179,71,0.25);
}

/* MODAL */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.modal-img {
  max-width: min(90vw, 800px); max-height: 90vh;
  width: auto; height: auto;
  border-radius: var(--radius-md);
  background: #fff;
}
.modal-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2.5rem; color: #fff;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--accent); }

/* HALAL */
.halal { background: linear-gradient(180deg, var(--bg-primary), var(--bg-card)); }
.halal-inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: center;
}
.halal-list { list-style: none; margin-top: 24px; }
.halal-list li {
  font-size: 1rem; color: var(--text-muted);
  padding: 8px 0;
}
.halal-list li::first-letter { color: var(--accent); margin-right: 8px; }
.halal-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #000; padding: 48px 32px; text-align: center;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: 0 20px 60px var(--accent-glow);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(255,179,71,0.2); }
  50% { box-shadow: 0 20px 80px rgba(255,179,71,0.4); }
}
.halal-arabic {
  font-size: 4rem; line-height: 1;
  margin-bottom: 16px; font-weight: bold;
}
.halal-text-en {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 1px;
  text-transform: uppercase;
}
.halal-cert-no {
  font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; margin-top: 12px;
  opacity: 0.7;
}

/* HOW-TO */
.howto { background: var(--bg-primary); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 32px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem; color: var(--accent);
  line-height: 1; margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem; text-transform: uppercase;
  margin-bottom: 12px;
}
.step-desc {
  color: var(--text-muted); font-size: 0.95rem;
}

/* REVIEWS */
.reviews { background: var(--bg-card); }
.rating-summary {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 24px; color: var(--text-muted); font-size: 0.95rem;
}
.stars { color: var(--accent); font-size: 1.5rem; letter-spacing: 4px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--bg-primary);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.2s ease;
}
.review:hover { border-color: var(--accent); }
.review-stars { color: var(--accent); margin-bottom: 12px; letter-spacing: 2px; }
.review-title {
  font-family: var(--font-display);
  font-size: 1.25rem; margin-bottom: 12px;
  text-transform: uppercase;
}
.review-text {
  color: var(--text-muted); font-size: 0.95rem;
  margin-bottom: 16px; line-height: 1.6;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; color: var(--text-muted);
  border-top: 1px solid var(--bg-divider);
  padding-top: 12px;
}
.review-avatar {
  width: 32px; height: 32px;
  background: var(--accent); color: #000;
  border-radius: 50%; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.review-verify {
  margin-left: auto; font-size: 0.7rem;
  color: var(--accent); letter-spacing: 1px;
  text-transform: uppercase;
}
.review-photo {
  display: block;
  width: 120px; height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 0 0 16px;
  border: 1px solid var(--bg-divider);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Reviews-Dots: nur Mobile sichtbar */
.reviews-dots { display: none; }
.reviews-dot {
  width: 8px; height: 8px;
  padding: 0; border: none;
  border-radius: 50%;
  background: var(--bg-divider);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}
.reviews-dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
}

/* FAQ */
.faq { background: var(--bg-primary); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-item[open] { border-color: var(--accent); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.5px; cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  color: var(--accent); font-size: 1.5rem; font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 24px;
  color: var(--text-muted); line-height: 1.7;
}
.faq-a strong { color: var(--text-primary); }

.faq-item-highlight {
  border-color: rgba(255,179,71,0.35);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255,179,71,0.04) 100%);
}
.faq-item-warning {
  border: 2px solid rgba(229, 80, 57, 0.6);
  background: linear-gradient(180deg, rgba(229,80,57,0.06) 0%, rgba(229,80,57,0.12) 100%);
  box-shadow: 0 0 32px rgba(229,80,57,0.2), 0 0 80px rgba(229,80,57,0.08);
}
.faq-item-warning .faq-q {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ff8b6a;
  letter-spacing: 0.3px;
}
.faq-item-warning .faq-a {
  font-size: 1.02rem;
  color: var(--text-primary);
}
.faq-item-warning .faq-a strong {
  color: #ff8b6a;
  font-size: 1.08rem;
}
.faq-image {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,179,71,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.faq-item-premium {
  border-color: rgba(255,179,71,0.5);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(200,133,29,0.08) 100%);
}
.faq-item-premium .faq-q { color: var(--accent); }

.faq-disclaimer {
  max-width: 800px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-faint);
  font-style: italic;
}

/* FINAL CTA */
.cta-final { background: var(--bg-primary); padding-bottom: 120px; }
.cta-card {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1612 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 64px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: center;
  box-shadow: 0 40px 80px var(--accent-glow);
}
.cta-benefits {
  list-style: none; margin: 24px 0 32px;
}
.cta-benefits li {
  color: var(--text-muted); padding: 6px 0; font-size: 0.95rem;
}
.btn-large { padding: 20px 40px; font-size: 1rem; height: auto; }

/* Purchase Options */
.purchase-options {
  display: flex; flex-direction: column; gap: 12px;
  margin: 24px 0 28px;
}
.purchase-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--bg-divider);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}
.purchase-option:hover { border-color: rgba(255,179,71,0.4); }
.purchase-option input[type="radio"] {
  appearance: none;
  width: 22px; height: 22px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  margin: 0; flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.purchase-option input[type="radio"]:checked {
  border-color: var(--accent);
}
.purchase-option input[type="radio"]:checked::after {
  content: ''; position: absolute;
  inset: 3px; border-radius: 50%;
  background: var(--accent);
}
.purchase-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(255,179,71,0.06);
}
.po-body { flex: 1; }
.po-title {
  font-weight: 700; font-size: 1rem;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.po-sub {
  font-size: 0.82rem; color: var(--text-muted);
  margin-top: 4px;
}
.po-badge {
  display: inline-block;
  background: var(--accent); color: #000;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 1.2px;
  padding: 3px 8px; border-radius: 4px;
}
.po-price {
  font-weight: 700; font-size: 1.15rem;
  color: var(--text-primary);
  white-space: nowrap;
}
.po-strike {
  text-decoration: line-through;
  color: var(--text-faint);
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 6px;
}
.po-recommended {
  border-color: rgba(255,179,71,0.35);
}
.cta-microcopy {
  margin-top: 16px; font-size: 0.85rem;
  color: var(--text-faint);
}
.cta-product img {
  width: 100%; max-width: 480px;
  aspect-ratio: 16 / 9; object-fit: cover;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  margin: 0 auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,179,71,0.15);
}

/* FOOTER */
.footer { background: #000; border-top: 1px solid var(--bg-divider); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem;
  margin-bottom: 12px;
}
.footer-tag { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--bg-divider);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a svg { width: 16px; height: 16px; display: block; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent); margin-bottom: 16px;
}
.footer-col > a {
  display: block; color: var(--text-muted);
  font-size: 0.9rem; padding: 4px 0;
  transition: color 0.2s ease;
}
.footer-col > a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--bg-divider);
  font-size: 0.8rem; color: var(--text-faint);
}

/* STICKY CART */
.sticky-cart[hidden] { display: none; }
.sticky-cart {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cart.visible { transform: translateY(0); }
.sticky-cart-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 12px var(--gutter);
}
.sticky-cart-img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); }
.sticky-cart-info { flex: 1; }
.sticky-cart-name {
  font-family: var(--font-display);
  font-size: 1rem; text-transform: uppercase;
}
.sticky-cart-meta { font-size: 0.75rem; color: var(--text-muted); }
.sticky-cart-price {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--accent);
}

/* MOBILE - Tablet und kleiner */
@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta { padding: 8px 16px; font-size: 0.7rem; }
  .header-inner { padding: 14px var(--gutter); }

  .hero-content { padding-top: 100px; padding-bottom: 80px; }
  .hero-cta-row { flex-direction: column; gap: 12px; }
  .hero-cta-row .btn-primary, .hero-cta-row .btn-outline { width: 100%; justify-content: center; }
  .hero { background: #000; }
  .hero-bg { object-fit: contain; object-position: center 70%; }
  .hero-cta-row { margin-top: 260px; }
  .hero-scroll-cue { bottom: 30px; }

  .social-proof-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num, .stat-tag { font-size: 1.8rem; }

  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-images { min-height: 360px; }

  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .lab-grid { grid-template-columns: 1fr; }
  .lab-cert-card { padding: 20px 18px; gap: 16px; }
  .lab-cert-icon { width: 44px; height: 44px; }
  .lab-cert-check { font-size: 1.3rem; }
  .lab-cert-title { font-size: 1.1rem; }
  .lab-cert-meta { font-size: 0.78rem; }
  .lab-cert-view { font-size: 0.65rem; }
  .lab-cert-thumb { width: 72px; height: 98px; }
  .lab-cert-zoom { width: 20px; height: 20px; font-size: 0.75rem; bottom: 5px; right: 5px; }

  .halal-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .halal-list { display: inline-block; text-align: left; }
  .halal-badge { padding: 32px 24px; }
  .halal-arabic { font-size: 3rem; }

  .steps { grid-template-columns: 1fr; }

  /* Reviews: horizontaler Snap-Slider auf Mobile.
     Start-Snap + schmalere Cards → nächste Card ragt rechts deutlich rein
     und signalisiert "swipe weiter, da kommen noch mehr Bewertungen". */
  .reviews { overflow: hidden; }
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin: 0 calc(-1 * var(--gutter));
    padding: 4px var(--gutter) 8px;
    scroll-padding-inline-start: var(--gutter);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* Soft-Fade rechts: "da geht's weiter"-Cue */
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 36px), rgba(0,0,0,0.25) 100%);
            mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 36px), rgba(0,0,0,0.25) 100%);
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review {
    flex: 0 0 78%;
    scroll-snap-align: start;
    padding: 22px;
  }
  /* Letzte Card braucht extra Luft rechts, damit sie ans Start-Snap-Pad ranscrollen kann */
  .review:last-child { margin-right: calc(22% - var(--gutter)); }
  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
  }

  .cta-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .cta-product { order: -1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section { padding: 60px 0; }
  .display { font-size: clamp(2rem, 8vw, 3.5rem); }

  .sticky-cart-meta { display: none; }
  .sticky-cart-img { width: 40px; height: 40px; }
}

/* MOBILE - Phone klein */
@media (max-width: 480px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 32px 20px; }

  /* Lab-Cert Card: bei sehr schmalen Screens auf vertikales Layout —
     Thumb als full-width Cover oben, darunter Icon + Info-Stack */
  .lab-cert-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "thumb thumb"
      "icon  info";
    gap: 14px;
    padding: 14px;
  }
  .lab-cert-thumb {
    grid-area: thumb;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 320px;
  }
  .lab-cert-icon  { grid-area: icon; width: 40px; height: 40px; align-self: center; }
  .lab-cert-info  { grid-area: info; }
  .lab-cert-title { font-size: 1rem; margin-bottom: 4px; }
  .lab-cert-meta  { font-size: 0.72rem; margin-bottom: 6px; }
  .lab-cert-view  { font-size: 0.6rem; letter-spacing: 1px; }
  .lab-cert-zoom  { bottom: 8px; right: 8px; width: 26px; height: 26px; font-size: 0.95rem; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { animation: none; }
}
