        .h1 span {
            font-weight: normal;
        }

        /* ======================================
   FORMAT-SELECTOR & CTA – MOBILE FIRST
   Dark-Mode-ready (prefers-color-scheme)
====================================== */

/* ---------- CSS VARIABLEN ---------- */

:root {
  /* Surfaces */
  --bg-card: #fdfdfc;
  --bg-card-active: #f6f7f8;   /* neutral hell, kein Warmton */

  /* Borders */
  --border-card: rgba(0,0,0,0.12);
  --border-card-active: rgba(0,0,0,0.24);

  /* Text */
  --text-main: #1f1f1f;
  --text-muted: #5e5e5e;

  /* Depth */
  --shadow-soft:
    0 8px 22px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.85);
}



/* ---------- DARK MODE ---------- */

@media (prefers-color-scheme: dark) {
  :root {
    --bg-card: rgba(28,28,30,0.82);
    --bg-card-active: rgba(36,36,40,0.92);

    --border-card: rgba(255,255,255,0.12);
    --border-card-active: rgba(255,255,255,0.28);

    --text-main: #f5f5f7;
    --text-muted: #8e8e93;

    --shadow-soft:
      0 12px 32px rgba(0,0,0,0.65),
      inset 0 1px 0 rgba(255,255,255,0.06);
  }
}


/* ======================================
   FORMAT SELECTOR – AMAZON SEGMENT STYLE
   MIT UNTERTITEL
====================================== */

.format-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin: 20px 0 16px;
}

/* ---------- FORMAT CARD ---------- */

.format-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 14px;
  padding: 14px 10px;

  color: var(--text-main);
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  text-align: center;
  box-shadow: none;

  transition:
    border-color .2s ease,
    background-color .2s ease;
}

/* Icon */
.format-card .icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 2px;
}

/* Titel */
.format-card strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

/* Untertitel */
.format-card small {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.2;
}

/* ---------- ACTIVE ---------- */

.format-card.active {
  border-color: #1f7f4c; /* Amazon-ähnliches Grün */
  background: var(--bg-card);
}

/* Hover nur Desktop */
@media (hover: hover) {
  .format-card:hover {
    border-color: var(--border-card-active);
  }
}



/* ======================================
   BLICK INS BUCH – META CHIP
====================================== */

.look-inside-chip {
  margin: 8px 0 14px;
}

.look-inside-chip a {
  display: inline-flex;
  align-items: center;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 12.5px;
  font-weight: 600;

  color: var(--text-main);
  text-decoration: none;

  border: 1px dashed var(--border-card);
  background: transparent;

  transition:
    background-color .15s ease,
    border-color .15s ease;
}

.look-inside-chip a:hover {
  background: var(--bg-card-active);
  border-color: var(--border-card-active);
}

.rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}

/* Sterne: etwas größer & klarer */
.rating .stars {
  font-size: 17px;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.82);
  font-weight: 600;
  opacity: 0.95;  
  top: 1px;   /* 👈 optischer Ausgleich */

}

/* Bewertungstext: bewusst leise */
.rating .muted {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  font-weight: 400;
  line-height: 1;


}

@media (prefers-color-scheme: dark) {
  .rating .stars {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 0 rgba(0,0,0,0.6);  
  }

  .rating .muted {
    color: rgba(255,255,255,0.45);
  }
}


.testimonial-cta{
  display: flex;
  justify-content: center;
  margin-top: 22px;
  margin-bottom: 8px;
}
.btn-secondary{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;

  border-radius: 999px;
  text-decoration: none;

  color: var(--text, #1f1f1f);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.18);

  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 8px 20px rgba(0,0,0,0.08);

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.btn-secondary:hover{
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 12px 28px rgba(0,0,0,0.12);
}

.btn-secondary:active{
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.12);
}

@media (prefers-color-scheme: dark){
  .btn-secondary{
    color: rgba(255,255,255,0.9);
    background: rgba(32,32,36,0.75);
    border: 1px solid rgba(255,255,255,0.22);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.12),
      0 12px 30px rgba(0,0,0,0.45);
  }
}
.testimonial-cta{
  margin-top: 24px;
}
.review-link{
  color: rgba(0,0,0,0.45);          /* deutlich dezenter */
  text-decoration: underline;
  text-decoration-thickness: 1px;
  cursor: pointer;
}

.review-link:hover{
  color: rgba(0,0,0,0.6);           /* minimaler Hover-Kontrast */
}

/* Dark Mode */
@media (prefers-color-scheme: dark){
  .review-link{
    color: rgba(255,255,255,0.45);
  }

  .review-link:hover{
    color: rgba(255,255,255,0.65);
  }
}

.muted{
  color: rgba(0,0,0,0.55);
}

@media (prefers-color-scheme: dark){
  .muted{
    color: rgba(255,255,255,0.55);
  }
}
html{
  scroll-behavior: smooth;
}
.review-link{
  text-decoration-style: dotted;
}
