:root {
  --background: #faf8fc;
  --foreground: #2b2533;
  --card: #ffffff;
  --muted: #6c6478;
  --border: #e7e2ee;
  --primary: #5a2d82;
  --primary-foreground: #faf7fd;
  --secondary: #f2eef7;
  --accent: #c0257a;
  --accent-foreground: #ffffff;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

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

/* Layout */
.section {
  width: 100%;
}

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

.container.narrow {
  max-width: 760px;
}

.section--card {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.section--secondary {
  background: var(--secondary);
}

.section--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Typography */
.h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

.h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.muted-light {
  color: rgba(250, 247, 253, 0.82);
  margin: 0;
}

.center {
  text-align: center;
}

.mt {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 48px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hero */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.badge-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 18px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stars {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 2px;
}

.rating__text {
  font-weight: 600;
}

.check-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.check-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.check--light {
  background: rgba(255, 255, 255, 0.18);
  color: var(--primary-foreground);
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fineprint {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  font-size: 15px;
  color: var(--muted);
}

.hero__media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: var(--secondary);
}

/* Mobil: Bild + CTA unter der Überschrift, Desktop-Spalte ausgeblendet */
.hero__media--mobile {
  display: block;
}
.cta-wrap--mobile {
  display: flex;
}
.hero__media--desktop,
.cta-wrap--desktop {
  display: none;
}

/* CTA buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  background: #a81f6a;
}

.cta--lg {
  font-size: 21px;
  padding: 18px 36px;
}

.cta__arrow {
  transition: transform 0.2s ease;
}

.cta:hover .cta__arrow {
  transform: translateX(4px);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  text-align: center;
}

.stat__value {
  font-size: 46px;
  font-weight: 700;
  margin: 0;
}

.stat__label {
  margin: 8px 0 0;
  color: rgba(250, 247, 253, 0.8);
}

.stats-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.inline-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
}

.card .h3 {
  margin-top: 0;
}

.card .muted {
  margin-top: 12px;
}

.numbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
}

/* Split (ingredients) */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.split__media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.split__content .h2 {
  margin-bottom: 16px;
}

.split__content .cards-2 {
  margin-top: 32px;
}

/* Notice */
.notice {
  max-width: 760px;
  margin: 0 auto;
}

.notice .muted {
  margin-top: 16px;
}

.compare-wrap {
  max-width: 920px;
  margin: 64px auto 0;
}

.table-scroll {
  margin-top: 40px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 640px;
}

.compare th,
.compare td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
}

.compare thead th {
  font-weight: 700;
  color: var(--muted);
}

.compare .left {
  text-align: left;
  font-weight: 600;
  color: var(--foreground);
}

.compare th.own {
  background: var(--primary);
  color: var(--primary-foreground);
}

.compare td.own {
  background: rgba(90, 45, 130, 0.06);
}

.compare tbody tr:last-child td {
  border-bottom: 0;
}

.yes {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.no {
  color: var(--muted);
  font-size: 20px;
}

.partial {
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}

/* Gallery & reviews */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.figure {
  padding: 0;
  overflow: hidden;
}

.figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.figure figcaption {
  padding: 14px;
  text-align: center;
  font-weight: 600;
}

.author {
  margin: 20px 0 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-weight: 600;
}

.author span {
  font-weight: 400;
  font-size: 15px;
  color: var(--muted);
}

/* Care prose */
.prose {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ */
.faq {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq details {
  padding: 22px 26px;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 20px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq__icon {
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq details[open] .faq__icon {
  transform: rotate(45deg);
}

.faq details p {
  margin-top: 16px;
}

/* Guarantee box */
.guarantee-box {
  max-width: 560px;
  margin: 64px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 36px;
  text-align: center;
}

.guarantee-box__badge {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 999px;
}

.guarantee-box .h3 {
  margin: 0 0 12px;
}

/* Responsive */
@media (min-width: 640px) {
  .check-grid {
    grid-template-columns: 1fr 1fr;
  }
  .inline-checks {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-2 {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .h1 {
    font-size: 52px;
  }
  .h2 {
    font-size: 40px;
  }
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .hero__media--mobile,
  .cta-wrap--mobile {
    display: none;
  }
  .hero__media--desktop {
    display: block;
  }
  .cta-wrap--desktop {
    display: flex;
  }
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
