/* ============================================================
   Collal® – The Halal Collagen
   Farbwelt: Ivory/Creme + tiefes Grün + Gold, Bogen-Motiv
   ============================================================ */

:root {
  --ivory: #FBF7F0;
  --cream: #F2EADC;
  --sand: #E7DCC8;
  --ink: #22301F;
  --ink-soft: #4A5544;
  --green: #1E4634;
  --green-deep: #143325;
  --gold: #B4893A;
  --gold-soft: #D9BD8A;
  --white: #FFFFFF;
  --radius-arch: 999px 999px 18px 18px;
  --shadow-soft: 0 18px 50px -18px rgba(34, 48, 31, 0.25);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 560; line-height: 1.12; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.center { text-align: center; }

/* ---------- Header ---------- */

.topbar {
  background: var(--green-deep);
  color: var(--gold-soft);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 9px 16px;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 620;
  color: var(--green);
  text-decoration: none;
}

.logo sup { color: var(--gold); font-size: 0.55em; }

.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -2px;
}

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a.btn-nav {
  background: var(--green);
  color: var(--ivory);
  padding: 10px 22px;
  border-radius: 999px;
}

.nav-links a.btn-nav:hover { background: var(--green-deep); color: var(--gold-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--ivory);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover { background: var(--green-deep); transform: translateY(-2px); }

.btn.gold { background: var(--gold); color: var(--white); }
.btn.gold:hover { background: #9a7430; }

.btn.ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn.ghost:hover { background: var(--green); color: var(--ivory); }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(217, 189, 138, 0.35), transparent 60%),
    var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0 84px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 3.9rem);
  color: var(--green-deep);
  margin-bottom: 22px;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 34em; margin-bottom: 32px; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-img {
  position: relative;
  justify-self: center;
}

.hero-img img {
  width: min(420px, 100%);
  border-radius: var(--radius-arch);
  border: 10px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-badge {
  position: absolute;
  bottom: 26px;
  left: -26px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.hero-badge span { color: var(--gold); display: block; font-size: 1.05rem; }

/* ---------- Trust bar ---------- */

.trustbar { background: var(--green-deep); color: var(--ivory); }

.trustbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}

.trustbar div {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 9px;
}

.trustbar div::before { content: "✦"; color: var(--gold-soft); }

/* ---------- Sections ---------- */

section.block { padding: 88px 0; }

section.block.tinted { background: var(--cream); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }

.section-head p { color: var(--ink-soft); margin-top: 14px; }

/* ---------- Halal-Kette ---------- */

.chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.chain article {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 20px;
  padding: 30px 24px 26px;
  position: relative;
}

.chain article::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.chain h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--green-deep); }

.chain p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Produktkarten ---------- */

.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.card .card-img { background: var(--cream); padding: 34px; }

.card .card-img img { width: min(320px, 80%); margin: 0 auto; mix-blend-mode: multiply; }

.card .card-body { padding: 30px 32px 34px; display: flex; flex-direction: column; gap: 12px; flex: 1; }

.card .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--cream);
  border-radius: 999px;
  padding: 5px 14px;
}

.card h3 { font-size: 1.6rem; color: var(--green-deep); }

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

.card .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }

.card .price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--ink-soft); }

.card .card-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

/* ---------- Vorteile ---------- */

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefits article {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 20px;
  padding: 28px 26px;
}

.benefits .icon {
  width: 52px;
  height: 52px;
  border-radius: 999px 999px 6px 6px;
  background: var(--green);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.benefits h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--green-deep); }

.benefits p { font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- Zertifikat ---------- */

.cert-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.cert-grid img {
  border-radius: var(--radius-arch);
  border: 10px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.cert-grid ul { list-style: none; margin-top: 22px; display: grid; gap: 14px; }

.cert-grid li { padding-left: 32px; position: relative; color: var(--ink-soft); }

.cert-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ivory);
  font-size: 0.75rem;
  display: grid;
  place-items: center;
}

.cert-grid li strong { color: var(--ink); }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }

.faq details {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 20px 26px;
}

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

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

.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); }

.faq details[open] summary::after { content: "–"; }

.faq details p { margin-top: 12px; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- CTA-Band ---------- */

.cta-band { background: var(--green-deep); color: var(--ivory); text-align: center; padding: 76px 24px; }

.cta-band h2 { color: var(--ivory); }

.cta-band h2 em { color: var(--gold-soft); font-style: italic; }

.cta-band p { color: rgba(251, 247, 240, 0.75); max-width: 36em; margin: 16px auto 32px; }

/* ---------- Footer ---------- */

footer.site {
  background: var(--ink);
  color: rgba(251, 247, 240, 0.7);
  padding: 56px 0 36px;
  font-size: 0.9rem;
}

footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

footer h4 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

footer a { color: rgba(251, 247, 240, 0.7); text-decoration: none; }

footer a:hover { color: var(--gold-soft); }

footer ul { list-style: none; display: grid; gap: 8px; }

footer .legal { border-top: 1px solid rgba(251, 247, 240, 0.15); padding-top: 22px; font-size: 0.8rem; }

/* ============================================================
   Produktseite
   ============================================================ */

.pdp { padding: 64px 0 80px; }

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gallery { position: sticky; top: 110px; }

.gallery .main-img {
  background: var(--cream);
  border-radius: var(--radius-arch);
  padding: 40px;
  border: 1px solid var(--sand);
}

.gallery .main-img img { mix-blend-mode: multiply; }

.gallery .thumbs { display: flex; gap: 14px; margin-top: 16px; }

.gallery .thumbs img {
  width: 92px;
  border-radius: 14px;
  border: 1px solid var(--sand);
  background: var(--white);
  padding: 8px;
}

.buy h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); color: var(--green-deep); margin: 10px 0 6px; }

.buy .sub { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 22px; }

.buy .price-row { display: flex; align-items: baseline; gap: 14px; margin: 18px 0 4px; }

.buy .price-row .price { font-family: var(--font-display); font-size: 2.3rem; color: var(--ink); }

.buy .price-row small { color: var(--ink-soft); font-size: 0.85rem; }

.staffel {
  margin: 18px 0 26px;
  border: 1px solid var(--sand);
  border-radius: 14px;
  overflow: hidden;
  font-size: 0.93rem;
}

.staffel div {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  background: var(--white);
}

.staffel div:nth-child(even) { background: var(--cream); }

.staffel strong { color: var(--green); }

.usp-list { list-style: none; display: grid; gap: 11px; margin: 24px 0 30px; }

.usp-list li { padding-left: 32px; position: relative; }

.usp-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ivory);
  font-size: 0.75rem;
  display: grid;
  place-items: center;
}

.buy .btn { width: 100%; text-align: center; font-size: 1.1rem; padding: 18px; }

.buy .shipnote { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 12px; }

.badges-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

.badges-row span {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--green-deep);
}

/* Detail-Sektionen */

.pdp-details { padding: 0 0 90px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.panel {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 22px;
  padding: 34px 36px;
}

.panel h2 { font-size: 1.5rem; color: var(--green-deep); margin-bottom: 16px; }

.panel p + p { margin-top: 12px; }

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

.panel ol, .panel ul { margin: 12px 0 0 20px; color: var(--ink-soft); font-size: 0.98rem; display: grid; gap: 8px; }

table.nutrition { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin-top: 10px; }

table.nutrition th, table.nutrition td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--sand); }

table.nutrition th { font-weight: 700; color: var(--green-deep); }

table.nutrition td:last-child, table.nutrition th:last-child { text-align: right; }

.crosssell { background: var(--cream); padding: 72px 0; }

.crosssell .cross-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 24px;
  padding: 30px 40px;
}

.crosssell img { mix-blend-mode: multiply; }

.crosssell h3 { font-size: 1.5rem; color: var(--green-deep); margin-bottom: 8px; }

.crosssell p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .hero-grid, .pdp-grid, .cert-grid { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .gallery { position: static; }
  .chain { grid-template-columns: 1fr 1fr; }
  .products, .detail-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  footer .foot-grid { grid-template-columns: 1fr; }
  .crosssell .cross-card { grid-template-columns: 1fr; text-align: center; }
  .crosssell img { margin: 0 auto; }
  .nav-links { gap: 16px; font-size: 0.85rem; }
}

@media (max-width: 560px) {
  .chain, .benefits { grid-template-columns: 1fr; }
  .trustbar .wrap { justify-content: center; }
}

/* ============================================================
   Motion & neue Sektionen (Ausbaustufe 2)
   ============================================================ */

/* ---------- Scroll-Reveals (nur mit JS aktiv) ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.js .reveal.in-view { opacity: 1; transform: none; }

html.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.js .reveal-stagger.in-view > * { opacity: 1; transform: none; }

html.js .reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
html.js .reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
html.js .reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
html.js .reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
html.js .reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
html.js .reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marquee-track { animation: none !important; }
}

/* Hero-Einstieg beim Laden */

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.hero-grid > div:first-child > * { animation: hero-in 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.hero-grid > div:first-child > *:nth-child(2) { animation-delay: 0.1s; }
.hero-grid > div:first-child > *:nth-child(3) { animation-delay: 0.2s; }
.hero-grid > div:first-child > *:nth-child(4) { animation-delay: 0.3s; }
.hero-grid > div:first-child > *:nth-child(5) { animation-delay: 0.4s; }
.hero-img { animation: hero-in 0.9s 0.25s cubic-bezier(0.22, 0.61, 0.36, 1) both; }

@media (prefers-reduced-motion: reduce) {
  .hero-grid > div:first-child > *, .hero-img { animation: none !important; }
}

/* Bild-Hover auf Bogen-Rahmen */

.hero-img img, .cert-grid img { transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); }
.hero-img:hover img, .cert-grid img:hover { transform: scale(1.02) rotate(-0.5deg); }

.card .card-img img { transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1); }
.card:hover .card-img img { transform: scale(1.05) rotate(1deg); }

/* ---------- Bewertungs-Pill ---------- */

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 20px;
}

.rating-pill .stars { color: var(--gold); letter-spacing: 2px; }

.rating-pill small { font-weight: 400; color: var(--ink-soft); }

.rating-pill:hover { border-color: var(--gold); }

/* ---------- Marquee-Band ---------- */

.marquee {
  background: var(--gold);
  color: var(--white);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track ul {
  display: flex;
  list-style: none;
  gap: 44px;
  padding-right: 44px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.marquee-track li::before { content: "✦"; margin-right: 44px; opacity: 0.6; font-size: 0.85em; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Vergleichstabelle ---------- */

.compare-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; }

table.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 22px;
  overflow: hidden;
  font-size: 0.97rem;
}

table.compare th, table.compare td { padding: 16px 22px; text-align: center; }

table.compare th:first-child, table.compare td:first-child { text-align: left; font-weight: 700; }

table.compare thead th { font-family: var(--font-display); font-size: 1.05rem; padding: 20px 22px; }

table.compare thead th.col-collal { background: var(--green); color: var(--ivory); }

table.compare thead th.col-other { background: var(--cream); color: var(--ink-soft); }

table.compare tbody tr:nth-child(even) { background: var(--ivory); }

table.compare td.yes { color: var(--green); font-weight: 700; }

table.compare td.no { color: #A2543A; font-size: 0.88rem; }

table.compare td.col-collal { background: rgba(30, 70, 52, 0.06); }

/* ---------- Studien-Sektion ---------- */

.study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.study-grid article {
  background: var(--green-deep);
  color: var(--ivory);
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
}

.study-grid article:nth-child(2) { background: var(--green); }

.study-grid .big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--gold-soft);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.study-grid h3 { font-size: 1.1rem; margin-bottom: 8px; }

.study-grid p { font-size: 0.88rem; color: rgba(251, 247, 240, 0.75); }

.study-note { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 22px; }

/* ---------- Kundenstimmen ---------- */

.review-summary {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reviews figure {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 22px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }

.reviews blockquote { font-size: 0.97rem; color: var(--ink-soft); flex: 1; }

.reviews blockquote strong { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: 6px; font-family: var(--font-display); }

.reviews figcaption { font-size: 0.78rem; color: var(--ink-soft); border-top: 1px solid var(--sand); padding-top: 12px; }

/* ---------- Marken-Story ---------- */

.story { max-width: 760px; margin: 0 auto; text-align: center; }

.story p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-top: 20px;
}

.story p strong { color: var(--ink); }

.story-eq {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 36px 0;
  font-family: var(--font-display);
}

.story-eq span {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 1.3rem;
  color: var(--green-deep);
}

.story-eq .op { font-size: 1.6rem; color: var(--gold); }

.story-eq .result {
  background: var(--green);
  border-color: var(--green);
  color: var(--ivory);
  font-size: 1.5rem;
}

.story-eq .result sup { color: var(--gold-soft); font-size: 0.55em; }

/* ---------- Sport-Seite ---------- */

.hero.sport {
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(30, 70, 52, 0.18), transparent 60%),
    var(--cream);
}

.sport-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sport-steps article {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 20px;
  padding: 30px 26px;
}

.sport-steps .when {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.sport-steps h3 { font-size: 1.15rem; color: var(--green-deep); margin-bottom: 8px; }

.sport-steps p { font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- Responsive für neue Sektionen ---------- */

@media (max-width: 920px) {
  .study-grid, .reviews, .sport-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .study-grid, .reviews, .sport-steps { grid-template-columns: 1fr; }
  table.compare th, table.compare td { padding: 12px 14px; }
}
