/* ==============================================
   LowCarbBenni meets Küchenmaschinen - Vorschau v2 (11.09.2026)
   Dramaturgie der HF-Referenz (dunkler Hero, helle Blöcke, dunkle Pakete) in der Küchenmaschinen-Farbwelt
   (Bordeaux + Orange + Creme). Mobil zuerst, Desktop ab 901 px.
   ============================================== */

:root {
    --orange: #7B3040;          /* Bordeaux (Markenfarbe dieser LP) */
    --orange-dark: #5A2230;
    --orange-deeper: #2D1118;
    --orange-light: #8E4050;
    --accent: #FF7400;          /* Kauf-Orange */
    --accent-dark: #E06500;
    --accent-light: #FFD9B8;
    --accent-glow: rgba(255, 116, 0, 0.35);
    --gold: #F5C56B;
    --cream: #FDF5F6;
    --cream-dark: #F5E8EA;
    --white: #ffffff;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --dark-bg: #2D1118;
    --dark-bg-mid: #3D1A22;
    --dark-bg-light: #5A2230;
    --green: #2E7D32;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Montserrat', 'Inter', -apple-system, sans-serif;
    --bar-h: 40px;
}

/* --- Reset & Basis --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; background: var(--dark-bg); scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; word-break: break-word; overflow-wrap: break-word; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }
svg { display: inline-block; vertical-align: middle; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
section, header.hero { scroll-margin-top: var(--bar-h); }
#good-title, .pkg-card { scroll-margin-top: calc(var(--bar-h) + 16px); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.hero :focus-visible, .packages :focus-visible, .announcement-bar :focus-visible { outline-color: var(--accent-light); }
.skip-link { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); background: var(--dark-bg); color: #fff; padding: 12px 24px; border-radius: 0 0 8px 8px; font-weight: 700; z-index: 10000; transition: top 0.2s; }
.skip-link:focus { top: 0; }

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

/* --- Einblenden --- */
[data-animate] { opacity: 0; }
[data-animate].is-visible { opacity: 1; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
[data-animate="fade-up"].is-visible { animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
[data-animate="fade-down"].is-visible { animation: fadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
body.lcb-wechsel *, body.lcb-wechsel *::before, body.lcb-wechsel *::after { animation: none !important; transition: none !important; }

/* --- Kauf-Glow --- */
@keyframes cta-glow {
    0%, 100% { box-shadow: 0 6px 24px rgba(255, 116, 0, 0.30); }
    50% { box-shadow: 0 6px 36px rgba(255, 116, 0, 0.55), 0 0 60px rgba(255, 116, 0, 0.15); }
}
.cta-glow { animation: cta-glow 3s ease-in-out infinite; }

/* --- Knöpfe --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 14px 26px; border-radius: 999px; border: none; font-family: var(--font-body); font-size: 17px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn--primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 8px 28px rgba(255, 116, 0, 0.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255, 116, 0, 0.5); }
.btn--ghost { background: #fff; color: var(--dark-bg); border: 2px solid rgba(123, 48, 64, 0.2); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--orange); }
.btn.is-loading, .pkg-btn.is-loading { opacity: 0.85; cursor: progress; pointer-events: none; }

/* --- Typo-Bausteine --- */
.section-tag { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-tag--light { color: var(--gold); }
.section-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; line-height: 1.2; color: var(--dark-bg); margin-bottom: 14px; letter-spacing: -0.01em; }
.section-title--center { text-align: center; }
.section-title--light { color: #fff; }
.section-desc { font-size: 16.5px; line-height: 1.65; color: var(--text-light); margin-bottom: 12px; }
.section-desc--center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-desc--light { color: rgba(255, 255, 255, 0.8); }
.section-desc strong { color: var(--dark-bg); }
.section-desc--light strong { color: #fff; }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.stars--gross svg { width: 22px; height: 22px; }
.haken { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(46, 125, 50, 0.12); color: var(--green); flex-shrink: 0; margin-right: 10px; }
.haken svg { width: 13px; height: 13px; }

/* ==============================================
   KOPFLEISTE
   ============================================== */
.announcement-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(90deg, var(--dark-bg), var(--dark-bg-mid) 50%, var(--dark-bg)); color: #fff; box-shadow: 0 2px 14px rgba(0,0,0,0.32); }
.announcement-bar__line { text-align: center; font-size: 14px; font-weight: 700; letter-spacing: 0.2px; line-height: 1.3; padding: 11px 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announcement-bar__line strong { color: var(--gold); }
.announcement-bar__countdown { color: var(--accent); font-weight: 800; font-variant-numeric: tabular-nums; }
/* Handy: nie zweizeilig, nie unter 12 px (wie HF-Schwester) - der laengere Countdown-Text muss auch bei 360-375 px in eine Zeile */
@media (max-width: 767px) { .announcement-bar__line { font-size: 12px; letter-spacing: 0; padding: 8px 12px; } }
/* unter 375 px faellt nur das Blatt-Emoji weg - Text und Countdown bleiben vollstaendig und einzeilig */
@media (max-width: 374px) { .announcement-bar__blatt { display: none; } }

/* ==============================================
   PARTIKEL (nur Desktop)
   ============================================== */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; width: var(--size); height: var(--size); border-radius: 50%; background: var(--accent); animation: particle-drift var(--duration) linear var(--delay) infinite; }
@keyframes particle-drift { 0% { transform: translate(0, 0); } 100% { transform: translate(var(--tx), var(--ty)); opacity: 0; } }

/* ==============================================
   HERO (dunkel, Bücher groß)
   ============================================== */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 80% at 50% -10%, #6A2838 0%, #3D1A22 45%, #2D1118 100%); color: #fff; padding: 14px 0 34px; text-align: center; }
.hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(180deg, rgba(45,17,24,0) 0%, rgba(45,17,24,0.6) 100%); pointer-events: none; }
.hero__glow { position: absolute; top: 42%; left: 50%; width: 560px; height: 560px; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255, 116, 0, 0.28) 0%, rgba(255, 116, 0, 0) 62%); pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero__logo img { width: 136px; height: auto; margin: 0 auto 8px; filter: brightness(0) invert(1); }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 15px; border-radius: 999px; background: rgba(255, 255, 255, 0.10); border: 1px solid rgba(255, 255, 255, 0.22); backdrop-filter: blur(6px); margin-bottom: 14px; max-width: 100%; }
.hero__badge-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255, 116, 0, 0.25); flex-shrink: 0; }
.hero__badge-text { font-size: 14px; font-weight: 600; line-height: 1.35; text-align: left; color: rgba(255,255,255,0.95); }
.hero__badge-text u { text-decoration-color: var(--accent); text-underline-offset: 3px; }
.hero__visual { width: 100%; max-width: 240px; margin: 0 auto 0; line-height: 0; }
.hero__visual img { width: 100%; height: auto; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5)); }
.hero__title { font-family: var(--font-display); font-weight: 900; font-size: 1.95rem; line-height: 1.1; letter-spacing: -0.02em; color: #fff; margin: 0 0 8px; }
.hero__title-zeile { display: block; }
.hero__title em { font-style: normal; color: #FFB566; }
.hero__preise { margin: 10px auto 0; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.hero__subtitle { font-size: 15.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.82); max-width: 520px; margin: 14px auto 0; }
.hero__subtitle strong { color: #fff; font-weight: 700; }
.hero__cta-btn { width: 100%; max-width: 360px; min-height: 58px; font-size: 18px; }
.hero__rating { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 0 0 12px; font-size: 15px; color: rgba(255,255,255,0.9); }
.hero__rating-text strong { color: #fff; font-weight: 800; }
.hero__trust { display: flex; justify-content: center; align-items: center; gap: 6px 16px; flex-wrap: wrap; margin-top: 10px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); }
.hero__trust span { display: inline-flex; align-items: center; gap: 5px; }
.hero__trust svg { width: 16px; height: 16px; color: var(--gold); }

/* ==============================================
   BEKANNT AUS
   ============================================== */
.bekannt { background: #fff; border-bottom: 1px solid rgba(123, 48, 64, 0.08); padding: 18px 0; }
.bekannt__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bekannt__label { font-size: 12.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); }
.bekannt__logos { display: flex; align-items: center; justify-content: center; gap: 22px 26px; flex-wrap: wrap; }
.bekannt__logos img { height: 22px; width: auto; opacity: 0.85; transition: opacity 0.2s; }
.bekannt__logos img[alt="Bild der Frau"] { height: 34px; }
.bekannt__logos img[alt="Sat.1"] { height: 28px; }
.bekannt__logos img:hover { opacity: 1; }
.bekannt__wort { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: 1px; color: #C8102E; opacity: 0.85; line-height: 1; }

/* ==============================================
   GERICHTE (Blick ins Buch)
   ============================================== */
.gerichte { padding: 52px 0 48px; background: var(--cream); text-align: center; }
.gerichte__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.gericht { position: relative; margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--cream-dark); box-shadow: var(--shadow-sm); }
.gericht img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.gericht:hover img { transform: scale(1.04); }
.gericht figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 12px 11px; text-align: left; font-family: var(--font-display); font-size: 15px; font-weight: 800; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.62) 100%); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.gericht--mehr { display: none; }
.gerichte__grid.is-open .gericht--mehr { display: block; }
.gerichte__mehr { margin: 18px auto 0; min-height: 48px; font-size: 15px; }
.gerichte__mehr svg { transition: transform 0.3s; }
.gerichte__mehr.is-open svg { transform: rotate(180deg); }
.kategorien { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 30px; text-align: left; }
.kat { background: #fff; border: 1px solid rgba(123, 48, 64, 0.10); border-radius: 14px; padding: 14px 14px 12px; box-shadow: var(--shadow-sm); }
.kat strong { display: block; font-family: var(--font-display); font-size: 14.5px; font-weight: 800; color: var(--dark-bg); margin-bottom: 4px; }
.kat span { display: block; font-size: 14px; line-height: 1.45; color: var(--text-light); }
.gerichte__hinweis { margin: 24px auto 0; max-width: 620px; font-size: 16px; line-height: 1.6; color: var(--text); background: #FFF6EC; border: 1px solid rgba(255,116,0,0.28); border-radius: 12px; padding: 14px 18px; text-align: left; }
.gerichte__hinweis strong { color: var(--dark-bg); }

/* ==============================================
   ANGEBOTSKARTE "Dein Einstieg"
   ============================================== */
.angebot { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); padding: 8px 0 52px; position: relative; z-index: 1; scroll-margin-top: var(--bar-h); }
.angebot__card { display: grid; grid-template-columns: 112px 1fr; gap: 16px 18px; align-items: start; max-width: 780px; margin: 0 auto; padding: 22px 18px 20px; background: #fff; border: 3px solid var(--accent); border-radius: 22px; box-shadow: 0 0 30px rgba(255,116,0,0.14), 0 10px 32px rgba(0,0,0,0.07); }
.angebot__visual { line-height: 0; padding-top: 6px; }
.angebot__visual img { width: 100%; height: auto; filter: drop-shadow(0 10px 22px rgba(0,0,0,0.3)); }
.angebot__text { text-align: left; min-width: 0; }
.angebot__text .section-tag { margin-bottom: 4px; }
.angebot__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--dark-bg); margin: 0 0 6px; line-height: 1.2; }
.angebot__desc { font-size: 14.5px; color: var(--text-light); line-height: 1.5; margin: 0 0 10px; }
.angebot__pricing { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.angebot__price { font-family: var(--font-display); font-size: 2.3rem; font-weight: 900; color: var(--dark-bg); line-height: 1; }
.angebot__optionen { list-style: none; margin: 4px 0 16px; display: grid; gap: 11px; }
.angebot__optionen li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(123,48,64,0.12); font-size: 15px; line-height: 1.35; color: var(--text); }
.angebot__optionen li:last-child { border-bottom: none; padding-bottom: 0; }
.angebot__opt-name { flex: 1 1 auto; }
.angebot__opt-preis { flex: 0 0 auto; display: inline-flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.angebot__opt-preis s { color: var(--text-light); font-size: 13px; }
.angebot__opt-preis strong { font-family: var(--font-display); font-weight: 800; color: var(--dark-bg); font-size: 1.05rem; }
.angebot__spar { display: inline-block; font-style: normal; font-weight: 800; font-size: 12px; color: var(--green); background: rgba(46,125,50,0.10); border-radius: 6px; padding: 1px 7px; white-space: nowrap; }
.angebot__hinweis-mehr { margin: 10px 0 0; font-size: 13.5px; line-height: 1.45; color: var(--text-light); text-align: center; }
.angebot .pkg-shipping { margin: 6px 0 12px; font-size: 14.5px; }
.angebot__btn { margin-top: 0; }
.angebot .pkg-guarantee { justify-content: flex-start; }
.angebot__more { display: block; margin-top: 12px; font-size: 15px; font-weight: 600; color: var(--orange); text-decoration: underline; text-underline-offset: 3px; line-height: 1.45; }
/* mobil: Cover und Kopf nebeneinander, Preis/Knopf über volle Breite */
.angebot__text > .section-tag, .angebot__text > .angebot__title, .angebot__text > .angebot__desc { grid-column: 2; }
@media (max-width: 600px) {
    .angebot__card { grid-template-columns: 96px 1fr; padding: 18px 16px 18px; }
    .angebot__text { display: contents; }
    .angebot__pricing, .angebot__optionen, .angebot__hinweis-mehr, .angebot .pkg-shipping, .angebot__btn, .angebot .pkg-guarantee, .angebot__more { grid-column: 1 / -1; }
    .angebot__pricing { margin-top: -4px; }
    .angebot__visual { grid-row: 1 / span 3; align-self: center; padding-top: 0; }
    .angebot .pkg-guarantee { justify-content: center; }
    .angebot__more { text-align: center; }
}

/* ==============================================
   SO EINFACH GEHT ES
   ============================================== */
.einfach { padding: 52px 0 56px; background: #fff; text-align: center; }
.nutzen { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 22px; text-align: left; }
.nutzen__card { display: grid; grid-template-columns: 48px 1fr; gap: 4px 14px; align-items: start; background: var(--cream); border: 1px solid rgba(123, 48, 64, 0.10); border-radius: 18px; padding: 18px 16px; }
.nutzen__icon { grid-row: span 2; width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(255,116,0,0.3); }
.nutzen__icon svg { width: 26px; height: 26px; }
.nutzen__card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--dark-bg); line-height: 1.25; }
.nutzen__card p { font-size: 15px; line-height: 1.55; color: var(--text-light); }
.nutzen__card p strong { color: var(--dark-bg); }
.zitat { margin: 26px auto 0; max-width: 680px; background: linear-gradient(135deg, #FFF3E6, #FFE7CF); border-radius: 20px; padding: 22px 22px 20px; text-align: left; position: relative; }
.zitat::before { content: '„'; position: absolute; top: -6px; left: 16px; font-family: var(--font-display); font-size: 64px; font-weight: 900; color: rgba(255,116,0,0.35); line-height: 1; }
.zitat p { font-size: 17px; line-height: 1.6; color: var(--text); padding-left: 22px; }
.zitat p strong { color: var(--dark-bg); }
.zitat__author { display: flex; align-items: center; margin: 12px 0 0; padding-left: 22px; font-size: 14px; font-weight: 700; color: var(--dark-bg); }
.angebot__stimme { margin: 0 auto 20px; max-width: 780px; }
.checkliste { margin: 26px auto 0; max-width: 680px; background: var(--cream); border: 1px solid rgba(123, 48, 64, 0.10); border-radius: 20px; padding: 22px 18px 18px; text-align: left; }
.checkliste__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--orange); margin-bottom: 14px; text-align: center; }
.checkliste__list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 10px; }
.checkliste__list li { display: flex; align-items: flex-start; gap: 0; font-size: 15.5px; line-height: 1.5; color: var(--text); }
.checkliste__list .haken { margin-top: 1px; }

/* ==============================================
   KUNDENSTIMMEN
   ============================================== */
.customer-reviews { padding: 52px 0 44px; background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); overflow: hidden; text-align: center; }
.reviews-summary { margin-bottom: 26px; }
.reviews-summary__stars { justify-content: center; margin-bottom: 6px; }
.reviews-summary__text { color: var(--dark-bg); font-size: 16px; }
.reviews-carousel { position: relative; overflow: hidden; margin: 0 -20px; padding: 0 20px; }
.reviews-carousel__track { display: flex; gap: 14px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 6px 4px 18px; }
.reviews-carousel__track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 84vw; max-width: 330px; scroll-snap-align: start; background: #fff; border: 1px solid rgba(123, 48, 64, 0.10); border-radius: 18px; padding: 20px 18px 16px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; text-align: left; }
.review-card__stars { margin-bottom: 10px; }
.review-card__text { color: var(--text); font-size: 15px; line-height: 1.6; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.review-card__text--expanded { -webkit-line-clamp: unset; display: block; }
.review-card__more { background: none; border: none; color: var(--orange); font-weight: 700; font-size: 15px; cursor: pointer; padding: 8px 0; min-height: 44px; text-align: left; }
.review-card__author { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-top: 12px; margin-top: auto; border-top: 1px solid rgba(123, 48, 64, 0.10); font-size: 13.5px; }
.review-card__name { font-weight: 700; color: var(--dark-bg); }
.review-card__verified { display: inline-flex; align-items: center; gap: 4px; color: var(--green); font-weight: 600; }
.review-card__verified svg { width: 13px; height: 13px; }
.review-card__date { color: var(--text-light); margin-left: auto; }
.reviews-carousel__nav { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.reviews-carousel__arrow { width: 46px; height: 46px; border-radius: 50%; border: 2px solid rgba(123, 48, 64, 0.18); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--dark-bg); transition: all 0.2s; }
.reviews-carousel__arrow:hover { background: var(--dark-bg); color: #fff; border-color: var(--dark-bg); }

/* ==============================================
   ÜBER BENNI
   ============================================== */
.about-benjamin { padding: 52px 0; background: #fff; }
.about-benjamin__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; max-width: 860px; margin: 0 auto; text-align: center; }
.about-benjamin__photo { flex: 0 0 auto; }
.about-benjamin__photo img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 5px solid #fff; box-shadow: 0 0 0 3px var(--accent), 0 14px 30px rgba(0,0,0,0.15); margin: 0 auto; }
.about-benjamin__text .section-title { font-size: 1.5rem; }
.about-benjamin__zahlen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.about-benjamin__zahlen div { background: var(--cream); border-radius: 14px; padding: 12px 6px; }
.about-benjamin__zahlen strong { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; color: var(--dark-bg); line-height: 1.1; }
.about-benjamin__zahlen span { display: block; font-size: 13px; color: var(--text-light); margin-top: 4px; line-height: 1.3; }

/* ==============================================
   FAQ
   ============================================== */
.faq-section { padding: 52px 0 56px; background: var(--cream); text-align: center; }
.faq-list { max-width: 760px; margin: 18px auto 0; text-align: left; }
.faq-item { background: #fff; border: 1px solid rgba(123, 48, 64, 0.10); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.faq-item__question { list-style: none; cursor: pointer; padding: 16px 48px 16px 18px; font-weight: 700; font-size: 15.5px; line-height: 1.4; color: var(--dark-bg); position: relative; min-height: 52px; }
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::after { content: ''; position: absolute; right: 18px; top: 50%; width: 12px; height: 12px; border-right: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent); transform: translateY(-70%) rotate(45deg); transition: transform 0.25s; }
.faq-item[open] .faq-item__question::after { transform: translateY(-30%) rotate(225deg); }
.faq-item__answer { padding: 0 18px 18px; font-size: 15.5px; line-height: 1.6; color: var(--text); }
.faq-item__answer strong { color: var(--dark-bg); }

/* ==============================================
   PAKETE (dunkel)
   ============================================== */
.packages { padding: 52px 0 70px; background: radial-gradient(120% 60% at 50% 0%, #5A2230 0%, #3D1A22 40%, #2D1118 100%); color: #fff; position: relative; z-index: 1; overflow: hidden; text-align: center; }
.packages__sub { margin-bottom: 0; }
.pkg-grid { display: grid; grid-template-columns: 1fr; gap: 26px; margin-top: 34px; align-items: start; }
.pkg-card--good { order: 1; }
.pkg-card--better { order: 2; }
.pkg-card--best { order: 3; }
.pkg-card { position: relative; border-radius: 22px; }
.pkg-card__flipper { position: relative; border-radius: 22px; }
.pkg-card__front, .pkg-card__back { border-radius: 22px; transition: opacity 0.25s ease; }
.pkg-card__back { position: absolute; top: 0; left: 0; right: 0; opacity: 0; }
.pkg-card.is-flipped .pkg-card__back { opacity: 1; }
.pkg-card.is-flipped .pkg-card__front { opacity: 0; }
.pkg-card:not(.is-flipped) .pkg-card__back { visibility: hidden; }
.pkg-card.is-flipped .pkg-card__front { visibility: hidden; }
.pkg-inner { padding: 30px 20px 24px; border-radius: 22px; text-align: center; display: flex; flex-direction: column; min-height: 100%; background: #fff; color: var(--text); }
.pkg-card--good .pkg-card__front .pkg-inner { border: 2px solid rgba(255,255,255,0.15); box-shadow: 0 14px 40px rgba(0,0,0,0.3); }
.pkg-card--better .pkg-card__front .pkg-inner { border: 2px solid rgba(255,255,255,0.2); box-shadow: 0 14px 40px rgba(0,0,0,0.3); }
.pkg-card--best .pkg-card__front .pkg-inner { border: 3px solid var(--gold); box-shadow: 0 0 40px rgba(245,197,107,0.25), 0 18px 50px rgba(0,0,0,0.35); }
.pkg-card__back .pkg-inner { background: linear-gradient(160deg, #1a3050 0%, #1f3a5a 50%, #244470 100%); border: 2px solid rgba(100,160,255,0.25); color: #fff; }
.pkg-card__back .pkg-title, .pkg-card__back .pkg-price { color: #fff; }
.pkg-card__back .pkg-subtitle { color: rgba(255,255,255,0.65); }
.pkg-card__back .pkg-old-price { color: rgba(255,255,255,0.45); }
.pkg-card__back .pkg-features li { color: rgba(255,255,255,0.85); }
.pkg-card__back .pkg-features li strong { color: #fff; }
.pkg-card__back .haken { background: rgba(255,255,255,0.15); color: #9CE0A0; }
.pkg-card__back .pkg-shipping { color: rgba(255,255,255,0.8); }
.pkg-card__back .pkg-shipping strong { color: #fff; }
.pkg-saving--back { color: #9cc4ff; }
.pkg-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 8px 20px; font-size: 13px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; border-radius: 50px; white-space: nowrap; z-index: 5; }
.pkg-badge--gold { background: linear-gradient(135deg, #F7D58B, #E9B14E); color: var(--dark-bg); box-shadow: 0 4px 15px rgba(245,197,107,0.45); }
.pkg-badge--popular { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 4px 15px rgba(255,116,0,0.4); }
.book-tabs { display: flex; gap: 4px; background: var(--cream-dark); border-radius: 12px; padding: 4px; margin-bottom: 18px; }
.book-tab { flex: 1; padding: 12px 10px; min-height: 44px; border: none; border-radius: 9px; font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--text-light); background: transparent; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.book-tab.active { background: var(--orange); color: #fff; }
.pkg-img { width: 100%; max-width: 170px; margin: 0 auto 14px; display: block; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35)); }
.pkg-img--ebook { max-width: 140px; }
.pkg-img--paket { max-width: 210px; }
.pkg-img--large { max-width: 250px; }
.pkg-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--dark-bg); margin-bottom: 3px; line-height: 1.2; }
.pkg-card--best .pkg-title { font-size: 1.3rem; }
.pkg-subtitle { font-size: 14.5px; color: var(--text-light); margin-bottom: 12px; }
.pkg-pricing { display: flex; align-items: baseline; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 2px; }
.pkg-price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 900; color: var(--dark-bg); line-height: 1.1; }
.pkg-card--best .pkg-price { font-size: 2.5rem; }
.pkg-old-price { font-size: 15px; color: var(--text-light); text-decoration: line-through; }
.pkg-saving { font-size: 15px; font-weight: 700; color: var(--accent); margin-bottom: 2px; }
.pkg-shipping { font-size: 14.5px; color: var(--text); margin: 2px 0 6px; line-height: 1.4; }
.pkg-shipping strong { color: var(--dark-bg); font-weight: 700; }
.pkg-shipping--frei { color: var(--green); font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.pkg-shipping--frei strong { color: var(--green); }
.pkg-shipping--frei svg { width: 18px; height: 18px; }
.pkg-features { list-style: none; text-align: left; margin: 12px 0 16px; flex: 1; }
.pkg-features li { display: flex; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--text); padding: 4px 0; }
.pkg-features li strong { color: var(--dark-bg); }
.pkg-btn { display: block; width: 100%; padding: 15px 20px; font-size: 16px; font-weight: 800; font-family: var(--font-body); color: #fff; border: none; border-radius: 14px; cursor: pointer; text-align: center; text-decoration: none; transition: all 0.25s ease; margin-top: auto; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 6px 20px rgba(255,116,0,0.3); }
.pkg-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,116,0,0.45); }
.pkg-btn--primary { font-size: 16px; padding: 16px 14px; }
.pkg-guarantee { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; font-size: 14px; color: var(--green); font-weight: 600; }
.pkg-guarantee svg { width: 17px; height: 17px; flex-shrink: 0; }
.pkg-ebooks-included { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; font-size: 14px; color: var(--text-light); }
.pkg-ebooks-included svg { width: 16px; height: 16px; }
.pkg-flip-trigger { display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 44px; margin-top: 10px; padding: 8px 14px; background: rgba(123,48,64,0.06); border: 1px solid rgba(123,48,64,0.15); border-radius: 10px; cursor: pointer; transition: all 0.2s; user-select: none; }
.pkg-flip-trigger:hover { border-color: rgba(123,48,64,0.35); background: rgba(123,48,64,0.1); }
.pkg-flip-trigger__text, .pkg-flip-trigger__arrow { font-size: 15px; font-weight: 600; color: var(--orange); }
.pkg-flip-back { display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 44px; margin-top: 10px; padding: 8px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; cursor: pointer; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); transition: all 0.2s; }
.pkg-flip-back:hover { background: rgba(255,255,255,0.15); }
@keyframes card-glow { 0%, 100% { box-shadow: 0 0 40px rgba(245,197,107,0.22), 0 18px 50px rgba(0,0,0,0.35); } 50% { box-shadow: 0 0 60px rgba(245,197,107,0.38), 0 18px 50px rgba(0,0,0,0.35); } }
.pkg-card--best .pkg-card__front .pkg-inner { animation: card-glow 4s ease-in-out infinite; }
.packages__footer { max-width: 700px; margin: 30px auto 0; }
.packages__trust { font-size: 14px; color: rgba(255,255,255,0.75); }
.packages__methods { display: flex; justify-content: center; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.packages__methods span { font-size: 13px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); padding: 5px 12px; border-radius: 8px; color: #fff; }
.packages__shipping-note { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.6); }

/* --- Warteliste (Ausverkauft) --- */
.waitlist { max-width: 560px; margin: 0 auto; text-align: center; padding: 30px 0 10px; }
.waitlist__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.waitlist__text { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.waitlist__form { max-width: 440px; margin: 0 auto; }
.waitlist__fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.waitlist__input { width: 100%; padding: 14px 18px; border-radius: 12px; border: 2px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); color: #fff; font-size: 16px; font-family: var(--font-body); }
.waitlist__input::placeholder { color: rgba(255,255,255,0.55); }
.waitlist__btn { width: 100%; min-height: 54px; border: none; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; font-size: 17px; font-weight: 800; cursor: pointer; }
.waitlist__privacy { margin-top: 12px; font-size: 13.5px; color: rgba(255,255,255,0.6); }

/* ==============================================
   STICKY-LEISTE (mobil) / SCHWEBEKNOPF (Desktop)
   ============================================== */
.sticky-cta-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); box-shadow: 0 -6px 24px rgba(0,0,0,0.12); transform: translateY(110%); transition: transform 0.3s ease; }
.sticky-cta-bar.is-visible { transform: translateY(0); }
.sticky-cta-bar__text { font-size: 15px; font-weight: 700; color: var(--dark-bg); white-space: nowrap; }
.sticky-cta-bar__btn { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; font-size: 15px; font-weight: 800; text-decoration: none; box-shadow: 0 6px 20px rgba(255,116,0,0.35); white-space: nowrap; }
.sticky-cta-fab { display: none; position: fixed; right: 24px; bottom: 32px; z-index: 900; padding: 16px 26px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; font-size: 16px; font-weight: 800; text-decoration: none; box-shadow: 0 10px 30px rgba(255,116,0,0.4); opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; white-space: nowrap; }
.sticky-cta-fab.is-visible { opacity: 1; transform: none; pointer-events: auto; }
@media (min-width: 769px) { .sticky-cta-bar { display: none; } .sticky-cta-fab { display: inline-flex; } }

/* ==============================================
   FOOTER
   ============================================== */
.footer { background: var(--dark-bg); color: rgba(255,255,255,0.65); padding: 28px 0 90px; text-align: center; font-size: 14px; }
.footer__legal { margin-top: 8px; display: flex; justify-content: center; gap: 10px; }
.footer__legal a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer__legal a:hover { text-decoration: underline; }
@media (min-width: 769px) { .footer { padding-bottom: 36px; } }

/* ==============================================
   Kleine Handys (360 / 375)
   ============================================== */
@media (max-width: 375px) {
    .hero__title { font-size: 1.8rem; }
    .hero__visual { max-width: 224px; }
    .hero__subtitle { font-size: 15px; }
}

/* ==============================================
   TABLET + DESKTOP
   ============================================== */
@media (min-width: 640px) {
    .gerichte__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .kategorien { grid-template-columns: repeat(3, 1fr); }
    .nutzen { grid-template-columns: repeat(3, 1fr); }
    .nutzen__card { grid-template-columns: 1fr; text-align: center; padding: 24px 18px 22px; }
    .nutzen__icon { grid-row: auto; margin: 0 auto 8px; }
    .checkliste__list { grid-template-columns: 1fr 1fr; gap: 12px 20px; }
    .review-card { flex: 0 0 330px; }
    .about-benjamin__inner { flex-direction: row; text-align: left; align-items: flex-start; }
    .about-benjamin__photo img { width: 180px; height: 180px; }
    .about-benjamin__zahlen { max-width: 480px; }
    .bekannt__logos img { height: 26px; }
    .bekannt__logos img[alt="Bild der Frau"] { height: 40px; }
    .bekannt__logos img[alt="Sat.1"] { height: 32px; }
}

@media (min-width: 901px) {
    .section-title { font-size: 2.3rem; }
    .section-desc { font-size: 17.5px; }
    .announcement-bar__line { font-size: 14.5px; }
    /* Hero zweispaltig: Text links, Bücher rechts */
    .hero { padding: 56px 0 72px; text-align: left; }
    .hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; grid-template-areas: "logo visual" "badge visual" "title visual" "rating visual" "sub visual" "cta visual" "preise visual" "trust visual"; column-gap: 40px; align-items: center; align-content: center; }
    .hero__logo { grid-area: logo; }
    .hero__logo img { margin: 0 0 22px; width: 210px; }
    .hero__badge { grid-area: badge; margin-bottom: 20px; justify-self: start; }
    .hero__badge-text { font-size: 14.5px; }
    .badge-break { display: none; }
    .hero__visual { grid-area: visual; max-width: 520px; margin: 0; justify-self: end; align-self: center; }
    .hero__visual img { filter: drop-shadow(0 34px 50px rgba(0,0,0,0.55)); }
    .hero__title { grid-area: title; font-size: 2.9rem; margin: 0 0 16px; }
    .hero__title-zeile { display: inline; }
    .hero__title-zeile + .hero__title-zeile::before { content: ' '; }
    .hero__subtitle { grid-area: sub; font-size: 18.5px; margin: 0 0 26px; max-width: 540px; }
    .hero__visual { max-width: 520px; }
    .hero__cta-btn { grid-area: cta; justify-self: start; width: auto; min-width: 340px; }
    .hero__rating { grid-area: rating; justify-content: flex-start; margin: 0 0 14px; font-size: 16px; }
    .hero__preise { grid-area: preise; margin: 12px 0 0; }
    .hero__trust { grid-area: trust; justify-content: flex-start; margin-top: 12px; font-size: 14px; }
    .hero__glow { left: 72%; top: 50%; width: 760px; height: 760px; }
    .bekannt { padding: 20px 0; }
    .bekannt__inner { flex-direction: row; justify-content: center; gap: 36px; }
    .bekannt__logos { gap: 40px; }
    .gerichte { padding: 80px 0 72px; }
    .gerichte__grid { grid-template-columns: repeat(6, 1fr); margin-top: 30px; }
    .gerichte__grid.is-open { grid-template-columns: repeat(6, 1fr); }
    .gericht figcaption { font-size: 14px; }
    .kategorien { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
    .kat { padding: 18px 18px 16px; }
    .angebot { padding: 12px 0 80px; }
    .angebot__card { grid-template-columns: 190px 1fr; gap: 36px; padding: 34px 40px; }
    .angebot__title { font-size: 1.7rem; }
    .angebot__desc { font-size: 15.5px; }
    .angebot__price { font-size: 2.8rem; }
    .angebot__btn { max-width: 340px; }
    .einfach { padding: 80px 0; }
    .nutzen { gap: 18px; margin-top: 32px; }
    .zitat { margin-top: 40px; padding: 30px 34px 28px; }
    .zitat p { font-size: 19px; }
    .checkliste { margin-top: 30px; padding: 28px 30px 24px; max-width: 760px; }
    .customer-reviews { padding: 80px 0 60px; }
    .reviews-carousel { margin: 0 -20px; }
    .reviews-carousel__track { gap: 20px; }
    .about-benjamin { padding: 80px 0; }
    .faq-section { padding: 80px 0; }
    .faq-item__question { font-size: 16.5px; padding: 18px 56px 18px 22px; }
    .faq-item__answer { padding: 0 22px 20px; font-size: 16px; }
    .packages { padding: 80px 0 100px; }
    .pkg-grid { grid-template-columns: 1fr 1fr 1.12fr; gap: 20px; margin-top: 44px; }
    .pkg-card--best .pkg-card__front .pkg-inner { transform: translateY(-10px); }
    .pkg-inner { padding: 34px 24px 26px; }
}

@media (min-width: 1200px) {
    .hero__title { font-size: 3.3rem; }
}
