/* ==============================================
   LowCarbBenni meets Küchenmaschinen – Verkaufs-LP
   Design: Berry/Weinrot (appetitanregend, warm) + Orange CTAs
   ============================================== */

/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e40af;
    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;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent iOS zoom on form focus */
input[type="hidden"],
input[type="radio"] {
    font-size: 16px;
}

:root {
    /* Küchenmaschinen Colors – Berry/Weinrot (appetitanregend) + Orange CTAs */
    --orange: #7B3040;
    --orange-dark: #5A2230;
    --orange-deeper: #2D1118;
    --orange-light: #8E4050;
    --orange-soft: #7D3545;
    --accent: #FF7400;
    --accent-dark: #E06500;
    --accent-light: #E8C8CC;
    --accent-glow: rgba(244, 110, 27, 0.35);
    --cream: #FDF5F6;
    --cream-dark: #F5E8EA;
    --white: #ffffff;
    --text: #2d2d2d;
    --text-light: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.97);
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --dark-bg: #2D1118;
    --dark-bg-mid: #3D1A22;
    --dark-bg-light: #5A2230;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --shadow-book: 0 30px 60px rgba(45, 17, 24, 0.35), 0 0 0 1px rgba(0,0,0,0.05);
    --shadow-glow: 0 0 80px rgba(123, 48, 64, 0.15);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Montserrat', 'Inter', -apple-system, sans-serif;
}

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    background: var(--dark-bg);
}

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;
}

/* ==============================================
   GLOBAL FOCUS STATES (Accessibility)
   ============================================== */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Dark background sections need light focus ring */
.hero :focus-visible,
.why-protein :focus-visible,
.packages :focus-visible,
.announcement-bar :focus-visible {
    outline-color: var(--accent-light);
}

/* ==============================================
   REDUCED MOTION (Accessibility)
   ============================================== */
@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;
    }
}

/* ==============================================
   SCROLL REVEAL ANIMATIONS
   ============================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children within a section */
.reveal-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-children.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 0.3s; }

/* ==============================================
   CTA GLOW ANIMATION
   ============================================== */
@keyframes cta-glow {
    0%, 100% { box-shadow: 0 6px 24px rgba(244, 110, 27, 0.3); }
    50%      { box-shadow: 0 6px 36px rgba(244, 110, 27, 0.55), 0 0 60px rgba(244, 110, 27, 0.15); }
}

.cta-glow {
    animation: cta-glow 3s ease-in-out infinite;
}

/* ==============================================
   ANNOUNCEMENT BAR (sticky top)
   ============================================== */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #D4B896;
    color: #3D1A22;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.announcement-bar::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(to bottom, #D4B896, transparent);
    pointer-events: none;
}

@media (max-width: 480px) {
    .announcement-bar {
        padding: 8px 16px;
    }
}

/* ==============================================
   COUNTER – Announcement Bar
   ============================================== */
.announcement-bar__counter {
    margin-top: 5px;
    padding-top: 5px;
}

.announcement-bar__counter-text {
    font-size: 13px;
    font-weight: 700;
    color: #3D1A22;
    letter-spacing: 0.3px;
}

.counter-number {
    color: var(--accent);
    font-weight: 900;
    display: inline-block;
    min-width: 2ch;
    text-align: center;
    transition: opacity 0.3s ease;
}

.announcement-bar__counter-text .counter-number {
    font-size: 15px;
}

.announcement-bar__progress {
    margin-top: 4px;
    height: 6px;
    background: rgba(255,255,255,0.12);
    border-radius: 3px;
    overflow: hidden;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.announcement-bar__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    border-radius: 2px;
    transition: width 1.5s ease;
}

@media (max-width: 480px) {
    .announcement-bar__counter {
        margin-top: 3px;
        padding-top: 3px;
    }
    .announcement-bar__counter-text {
        font-size: 12px;
    }
    .announcement-bar__counter-text .counter-number {
        font-size: 13px;
    }
    .announcement-bar__progress {
        margin-top: 2px;
        height: 2px;
        max-width: 200px;
    }
}

@media (max-width: 360px) {
    .announcement-bar__counter-text {
        font-size: 12px;
    }
    .announcement-bar__counter-text .counter-number {
        font-size: 12px;
    }
}

/* ==============================================
   ANNOUNCEMENT BAR – Line 1 (Desktop text)
   ============================================== */
.announcement-bar__line1 {
    font-size: 13px;
    font-weight: 700;
    color: #3D1A22;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .announcement-bar__line1 {
        display: none;
    }
    .announcement-bar--has-counter .announcement-bar__counter {
        margin-top: 0;
        padding-top: 0;
    }
}

/* ==============================================
   STOCK NUMBER – Color States
   ============================================== */
.stock-number {
    font-weight: 900;
    display: inline-block;
    min-width: 2ch;
    text-align: center;
    transition: color 0.5s ease;
}

.stock-number--gold { color: #C45500; }
.stock-number--orange { color: #F59E0B; }
.stock-number--red {
    color: #ef4444;
    animation: stock-pulse 1.5s ease-in-out infinite;
}
.stock-number--critical {
    color: #ef4444;
    animation: stock-pulse-strong 1s ease-in-out infinite;
}

@keyframes stock-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes stock-pulse-strong {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Stock progress bar fill colors */
.announcement-bar__progress-fill--green {
    background: linear-gradient(90deg, #4CAF50, #66BB6A) !important;
}
.announcement-bar__progress-fill--orange {
    background: linear-gradient(90deg, #FF9800, #FFA726) !important;
}
.announcement-bar__progress-fill--red {
    background: linear-gradient(90deg, #ef4444, #f87171) !important;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Animations --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes bookEntrance {
    0%   { opacity: 0; transform: perspective(1000px) rotateY(30deg) scale(0.7) translateY(80px); }
    50%  { opacity: 1; transform: perspective(1000px) rotateY(-6deg) scale(1.03) translateY(-10px); }
    100% { opacity: 1; transform: perspective(1000px) rotateY(0deg) scale(1) translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%      { transform: scale(1.08); opacity: 1; }
}

@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes book-shine {
    0%, 85%  { left: -60%; opacity: 0; }
    88%      { opacity: 1; }
    97%      { left: 160%; opacity: 1; }
    100%     { left: 160%; opacity: 0; }
}

@keyframes scrollDown {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
    10%      { opacity: 1; }
    90%      { opacity: 1; }
    50%      { transform: translate(var(--tx), var(--ty)) scale(1.5); }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(123, 48, 64, 0.5); }
    50%      { box-shadow: 0 0 0 10px rgba(123, 48, 64, 0); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* --- Scroll Animations --- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.01s;
}

[data-animate].is-visible {
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-up"].is-visible    { animation: fadeUp 0.8s forwards; }
[data-animate="fade-down"].is-visible  { animation: fadeDown 0.8s forwards; }
[data-animate="fade-right"].is-visible { animation: fadeRight 0.8s forwards; }
[data-animate="book-entrance"].is-visible { animation: bookEntrance 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

/* --- Particles --- */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
    -webkit-transform: translateZ(0);
}

.particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: var(--orange);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float var(--duration) var(--delay) infinite ease-in-out;
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--bar-h, 45px));
    min-height: calc(100dvh - var(--bar-h, 45px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 20px 80px;
    padding-top: max(20px, env(safe-area-inset-top, 20px));
    background: linear-gradient(160deg, #E8D5BF 0%, #F0E4D4 35%, #EDE0D0 70%, #F5EBE0 100%);
    color: var(--text);
    overflow: hidden;
}

/* Decorative corner pattern */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 48, 64, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: rotate-slow 30s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 48, 64, 0.04) 0%, transparent 60%);
    border-radius: 50%;
}

.hero__glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(123, 48, 64, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: clamp(32px, 5vh, 64px);
}

/* Logo im Hero */
.hero__logo {
    margin: 0;
}

.hero__logo img {
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    image-rendering: auto;
}

.hero__badge {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(123, 48, 64, 0.08);
    border: 1px solid rgba(123, 48, 64, 0.15);
    border-radius: 50px;
    font-size: clamp(8px, 1.2vw, 12px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #3D1A22;
    margin: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badgePulse 2.5s infinite;
}
@media (max-width: 480px) {
    .hero__badge { padding: 8px 14px; letter-spacing: 0.5px; }
}

.badge-break { display: none; }
.badge-dash { display: inline; }

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: badgePulse 1.5s infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(160deg, #C45500 0%, var(--accent) 25%, #FF8C1A 50%, var(--accent-dark) 75%, #7B3040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero__subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    max-width: 650px;
    margin: 0 auto;
    color: rgba(45, 17, 24, 0.7);
    line-height: 1.7;
}

.hero__subtitle p {
    display: inline;
}

.hero__subtitle strong {
    color: var(--accent);
    font-weight: 800;
}

.hero__cta-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    margin-top: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    border-radius: 60px;
    box-shadow: 0 8px 30px rgba(244, 110, 27, 0.35);
    min-height: 44px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero__cta-btn::after {
    display: none;
}

.hero__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244, 110, 27, 0.45);
}

.hero__cta-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
}

.hero__cta-btn svg {
    stroke: #fff;
}

/* Hero Trust-Leiste */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 8px;
    margin: 24px auto 0;
    max-width: 750px;
    font-size: 13px;
    color: rgba(45, 17, 24, 0.6);
    font-weight: 600;
    line-height: 1.6;
}
.hero__trust-dot {
    color: rgba(45, 17, 24, 0.3);
}

@media (max-width: 768px) {
    .hero__trust {
        display: none;
    }
}

.hero__scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    pointer-events: none;
}

.hero__scroll-hint span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(45,17,24,0.6);
}

.hero__scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(45,17,24,0.25);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--accent);
    animation: scrollDown 2s infinite;
}

/* ==============================================
   BOOK REVEAL SECTION
   ============================================== */
.book-reveal {
    padding: 140px 0 160px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    scroll-margin-top: var(--bar-h, 60px);
}

/* Subtle pattern */
.book-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-soft), transparent);
    opacity: 0.2;
}

.book-reveal__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.book-reveal__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-reveal__glow-ring {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 48, 64, 0.2) 0%, rgba(123, 48, 64, 0.1) 30%, rgba(123, 48, 64, 0.03) 55%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Outer glow layer for depth */
.book-reveal__visual::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 48, 64, 0.07) 0%, transparent 55%);
    animation: pulse-glow 4s ease-in-out infinite reverse;
    pointer-events: none;
}

.book-reveal__book {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    overflow: hidden;
}

/* Shine sweep across the book cover */
.book-reveal__book::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.15) 42%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.15) 58%, transparent 70%);
    animation: book-shine 6s ease-in-out 3s infinite;
    z-index: 3;
    pointer-events: none;
}

.book-reveal__cover {
    width: 430px;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-reveal__cover:hover {
    transform: scale(1.03) rotateY(-3deg);
}

/* Book Slogan */
.book-reveal__slogan {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--dark-bg);
    margin: 20px 0 16px;
    line-height: 1.3;
}

.book-reveal__slogan span {
    display: block;
    color: var(--accent-dark);
    font-size: 1.1em;
}

.book-reveal__scarcity {
    font-size: 14px;
    color: var(--dark-bg);
    font-weight: 600;
    margin-top: 12px;
    padding: 10px 16px;
    background: rgba(123, 48, 64, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(123, 48, 64, 0.2);
    line-height: 1.5;
}

.book-reveal__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(123, 48, 64, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.book-reveal__proof-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.book-reveal__proof strong {
    color: var(--accent);
    font-size: 1.1rem;
}

.book-reveal__proof span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Package card extras */
.package-card__per-unit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    margin-bottom: 12px;
}

.package-card__guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #4CAF50;
}

.package-card__guarantee strong {
    color: #4CAF50;
}

.package-card__upgrade-hint {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    padding: 0;
}

.book-reveal__shadow {
    display: none;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--orange-light);
    margin-bottom: 16px;
}

.section-tag--light {
    color: #C45500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.section-title--center {
    text-align: center;
}

.section-title--light {
    color: var(--dark-bg);
}

.section-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

.section-desc p {
    display: inline;
}

.section-desc strong {
    color: var(--dark-bg);
}

.section-desc--center {
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc--light {
    color: var(--text-light);
}

.section-desc--light strong {
    color: var(--dark-bg);
    font-weight: 700;
}

/* ==============================================
   STATS SECTION
   ============================================== */
.stats {
    padding: 120px 0 100px;
    background: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1px solid rgba(123, 48, 64, 0.06);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.stat-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.stat-card__desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==============================================
   EASTER BANNER
   ============================================== */
.easter-banner {
    background: var(--white);
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
}

.easter-banner__inner {
    background: linear-gradient(135deg, rgba(123, 48, 64, 0.08), rgba(123, 48, 64, 0.03));
    border: 1px solid rgba(123, 48, 64, 0.25);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-bg);
}

@media (max-width: 480px) {
    .easter-banner__inner {
        padding: 20px 20px;
        font-size: 14px;
    }
}

/* ==============================================
   INLINE CTA BUTTONS (between sections)
   ============================================== */
/* ==============================================
   STICKY CTA – Mobile Bottom-Bar
   ============================================== */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 8px 14px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    background: rgba(212, 184, 150, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(123, 48, 64, 0.15);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-cta-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-bar__text {
    color: #3D1A22;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-cta-bar__btn {
    flex-shrink: 0;
    padding: 12px 22px;
    min-height: 44px;
    font-size: 14px;
    font-weight: 800;
    font-family: var(--font-body);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta-bar__btn:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: flex;
    }
}

/* ==============================================
   STICKY CTA – Desktop Floating Action Button
   ============================================== */
.sticky-cta-fab {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 800;
    font-family: var(--font-body);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(244, 110, 27, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    animation: fab-pulse 3.5s ease-in-out infinite;
    animation-play-state: paused;
}

.sticky-cta-fab.is-visible {
    transform: translateY(0);
    opacity: 1;
    animation-play-state: running;
}

.sticky-cta-fab:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 12px 40px rgba(244, 110, 27, 0.5), 0 6px 16px rgba(0, 0, 0, 0.2);
}

@keyframes fab-pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(244, 110, 27, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 8px 40px rgba(244, 110, 27, 0.55), 0 4px 16px rgba(0, 0, 0, 0.2);
    }
}

@media (min-width: 769px) {
    .sticky-cta-fab {
        display: block;
    }
}

/* ==============================================
   CREDENTIALS BOX
   ============================================== */
.credentials-box {
    margin: 36px 0 0;
    padding: 0 0 0 16px;
    border-left: 3px solid var(--accent-dark);
    text-align: left;
}

.credentials-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--orange-light);
    font-style: italic;
    margin: 0;
}

/* ==============================================
   PACKAGE BUILDER – Good/Better/Best + Flip
   ============================================== */
.packages {
    padding: 50px 0 100px;
    background: linear-gradient(160deg, #E8D5BF 0%, #F0E4D4 50%, #EDE0D0 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    scroll-margin-top: var(--bar-h, 60px);
    text-align: center;
}

.packages::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 48, 64, 0.06) 0%, transparent 60%);
    border-radius: 50%;
}

/* 3-column grid: Best / Better / Good (desktop) */
.pkg-grid {
    display: grid;
    grid-template-columns: 1.12fr 1.05fr 1fr;
    gap: 18px;
    margin-top: 40px;
    align-items: start;
}

/* Desktop order: Best left, Better middle, Good right */
.pkg-card--best { order: 1; }
.pkg-card--better { order: 2; }
.pkg-card--good { order: 3; }

/* --- Flip Card Container --- */
.pkg-card { position: relative; perspective: 1200px; border-radius: 22px; overflow: visible; }
.pkg-card__flipper { position: relative; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); transform-style: preserve-3d; border-radius: 22px; }
.pkg-card.is-flipped .pkg-card__flipper { transform: rotateY(180deg); }
.pkg-card__front, .pkg-card__back { border-radius: 22px; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.pkg-card__back { position: absolute; top: 0; left: 0; right: 0; transform: rotateY(180deg); border-radius: 22px; }

/* --- Card Inner --- */
.pkg-inner { padding: 32px 22px 26px; border-radius: 22px; text-align: center; display: flex; flex-direction: column; min-height: 100%; }

/* Good (single book) */
.pkg-card--good .pkg-card__front .pkg-inner { background: #fff; border: 2px solid rgba(123,48,64,0.1); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
/* Better (both books) */
.pkg-card--better .pkg-card__front .pkg-inner { background: #fff; border: 2px solid rgba(123,48,64,0.15); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
/* Best (everything) */
.pkg-card--best .pkg-card__front .pkg-inner { background: #fff; border: 3px solid var(--accent); box-shadow: 0 0 30px rgba(244,110,27,0.15), 0 8px 30px rgba(0,0,0,0.08); }
/* eBook back side */
.pkg-card__back .pkg-inner { background: linear-gradient(160deg, #1a3050 0%, #1f3a5a 50%, #244470 100%); border: 2px solid rgba(100,160,255,0.25); box-shadow: 0 0 40px rgba(100,160,255,0.08); }
.pkg-card__back .pkg-title { color: #fff; }
.pkg-card__back .pkg-subtitle { color: rgba(255,255,255,0.6); }
.pkg-card__back .pkg-price { color: #fff; }
.pkg-card__back .pkg-old-price { color: rgba(255,255,255,0.4); }
.pkg-card__back .pkg-features li { color: rgba(255,255,255,0.8); }
.pkg-card__back .pkg-features li strong { color: #fff; }

/* --- Badge --- */
.pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 8px 22px; font-size: 13px; font-weight: 800; letter-spacing: 0.5px; border-radius: 50px; white-space: nowrap; z-index: 5; }
.pkg-badge--gold { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 4px 15px rgba(244,110,27,0.4); }
/* Gold badge keeps orange glow since it uses --accent (orange CTA color) */
.pkg-badge--popular { background: linear-gradient(135deg, var(--orange-light), var(--orange)); color: #fff; box-shadow: 0 4px 15px rgba(123,48,64,0.4); }

/* --- Product Image --- */
.pkg-img { width: 100%; max-width: 180px; margin: 0 auto 16px; display: block; border-radius: 4px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.pkg-img--large { max-width: 220px; }

/* --- Typography --- */
.pkg-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--dark-bg); margin-bottom: 3px; }
.pkg-card--best .pkg-title { font-size: 1.3rem; }
.pkg-subtitle { font-size: 0.82rem; color: var(--text-light); margin-bottom: 14px; }

/* --- Pricing --- */
.pkg-pricing { display: flex; align-items: baseline; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.pkg-price { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--dark-bg); }
.pkg-card--best .pkg-price { font-size: 2.4rem; }
.pkg-old-price { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; }
.pkg-saving { font-size: 0.85rem; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.pkg-card--best .pkg-saving { font-size: 0.95rem; }

/* --- Free Shipping --- */
.pkg-free-ship { display: inline-block; padding: 5px 16px; background: linear-gradient(135deg, #4CAF50, #43A047); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 0.5px; border-radius: 50px; margin: 6px 0 8px; }

/* --- Features --- */
.pkg-features { list-style: none; text-align: left; margin: 14px 0 16px; flex: 1; }
.pkg-features li { font-size: 0.84rem; line-height: 1.5; color: var(--text); padding: 4px 0; }
.pkg-features li strong { color: var(--dark-bg); }

/* --- CTA Buttons --- */
.pkg-btn { display: block; width: 100%; padding: 14px 20px; font-size: 15px; 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; }
.pkg-btn:hover { transform: translateY(-2px); }
.pkg-btn--primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 6px 24px rgba(244,110,27,0.35); font-size: 16px; padding: 16px 20px; }
.pkg-btn--primary:hover { box-shadow: 0 10px 36px rgba(244,110,27,0.5); }
.pkg-btn--secondary { background: linear-gradient(135deg, #4CAF50, #388E3C); box-shadow: 0 6px 20px rgba(76,175,80,0.3); }
.pkg-btn--secondary:hover { box-shadow: 0 10px 30px rgba(76,175,80,0.45); }
.pkg-btn--ghost { background: linear-gradient(135deg, #4CAF50, #388E3C); color: #fff; border: 2px solid #4CAF50; }
.pkg-btn--ghost:hover { background: linear-gradient(135deg, #388E3C, #2E7D32); border-color: #388E3C; }
.pkg-btn--ebook { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 6px 20px rgba(59,130,246,0.3); }

/* --- Guarantee --- */
.pkg-guarantee { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; font-size: 0.76rem; color: #2E7D32; font-weight: 600; }

/* --- eBooks Included Note (best card) --- */
.pkg-ebooks-included { margin-top: 10px; font-size: 0.76rem; color: var(--text-light); text-align: center; }

/* --- Flip Trigger --- */
.pkg-flip-trigger { display: flex; align-items: center; justify-content: center; gap: 8px; 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 { font-size: 0.8rem; font-weight: 600; color: var(--orange); }
.pkg-flip-trigger__arrow { font-size: 0.75rem; color: var(--orange-light); transition: transform 0.3s; }

/* --- Flip Back --- */
.pkg-flip-back { display: flex; align-items: center; justify-content: center; gap: 8px; 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: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.pkg-flip-back:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* --- Book Tab Switcher (Good card) --- */
.book-tabs { display: flex; gap: 0; background: rgba(123,48,64,0.06); border-radius: 10px; padding: 3px; margin-bottom: 14px; }
.book-tab { flex: 1; padding: 12px 10px; min-height: 44px; border: none; border-radius: 8px; font-family: var(--font-body); font-size: 0.78rem; 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; }

/* --- Glow animation (best card) --- */
@keyframes card-glow {
    0%, 100% { box-shadow: 0 0 50px rgba(124,154,114,0.12), 0 20px 60px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 70px rgba(124,154,114,0.2), 0 20px 60px rgba(0,0,0,0.3); }
}
.pkg-card--best .pkg-card__front .pkg-inner { animation: card-glow 4s ease-in-out infinite; }

/* ==============================================
   PACKAGES FOOTER
   ============================================== */
.packages__footer { max-width: 700px; margin: 32px auto 0; text-align: center; }
.packages__trust { font-size: 13px; color: var(--text-light); }
.packages__methods { display: flex; justify-content: center; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.packages__methods span { font-size: 0.75rem; background: rgba(123,48,64,0.06); padding: 4px 12px; border-radius: 6px; color: var(--text); }
.packages__shipping-note { margin-top: 20px; font-size: 12px; color: var(--text-light); }

/* ==============================================
   WAITLIST / AUSVERKAUFT
   ============================================== */
.waitlist {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0 20px;
}

.waitlist__icon {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1;
}

.waitlist__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--white);
    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: 32px;
}

.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: 16px 20px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
}

.waitlist__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.waitlist__input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
}

.waitlist__btn {
    display: block;
    width: 100%;
    padding: 18px 24px;
    font-size: 17px;
    font-weight: 800;
    font-family: var(--font-body);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(244, 110, 27, 0.3);
    text-align: center;
}

.waitlist__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 110, 27, 0.4);
}

.waitlist__privacy {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .waitlist {
        padding: 20px 0 10px;
    }
    .waitlist__icon {
        font-size: 48px;
    }
}

/* ==============================================
   PACKAGE GRID – Responsive
   ============================================== */
@media (max-width: 900px) {
    .pkg-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
        gap: 28px;
    }
    /* Mobile order: Best → Better → Good */
    .pkg-card--best { order: 1; }
    .pkg-card--better { order: 2; }
    .pkg-card--good { order: 3; }
    .packages { padding: 40px 0 80px; }
    .pkg-card--best .pkg-price { font-size: 2.2rem; }
    .pkg-btn--primary { font-size: 17px; padding: 18px 20px; }
}

@media (max-width: 480px) {
    .pkg-inner { padding: 28px 16px 22px; }
    .pkg-price { font-size: 1.7rem !important; }
}

@media (max-width: 360px) {
    .pkg-inner { padding: 24px 14px 20px; }
    .pkg-title { font-size: 1rem; }
    .pkg-price { font-size: 1.5rem !important; }
}

@media (hover: none) and (pointer: coarse) {
    .pkg-card--best .pkg-card__front .pkg-inner { animation: none; }
}

/* ==============================================
   WHY PROTEIN SECTION
   ============================================== */
.why-protein {
    padding: 120px 0;
    background: linear-gradient(160deg, #E8D5BF 0%, #F0E4D4 50%, #EDE0D0 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.why-protein::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 48, 64, 0.05) 0%, transparent 60%);
    border-radius: 50%;
}

.protein-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.protein-reason {
    padding: 36px 28px;
    background: #fff;
    border: 1px solid rgba(123, 48, 64, 0.1);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.protein-reason:hover {
    background: #fff;
    transform: translateY(-4px);
    border-color: rgba(123, 48, 64, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.protein-reason__icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.protein-reason__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 12px;
}

.protein-reason p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
}

.protein-reason p strong {
    color: var(--dark-bg);
}

/* ==============================================
   PROTEIN SIMPLE (1 Mahlzeit reicht)
   ============================================== */
.protein-simple {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.protein-simple__card {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(123, 48, 64, 0.06);
}

.protein-simple__highlight {
    background: linear-gradient(135deg, #F6F8F3, #EFF3EA);
    padding: 20px 28px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    text-align: left;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px !important;
}

.protein-simple__nudge {
    background: linear-gradient(135deg, #E8D5BF, #EDE0D0);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    color: var(--text);
}

.protein-simple__nudge p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.target-audience {
    margin-top: 28px;
    padding: 24px 28px;
    background: rgba(123, 48, 64, 0.04);
    border: 1px solid rgba(123, 48, 64, 0.12);
    border-radius: var(--radius-lg);
}

.target-audience div div {
    padding: 6px 0;
    color: var(--text);
    line-height: 1.5;
}

.protein-simple__nudge strong {
    color: var(--accent);
}

/* ==============================================
   RECIPE PREVIEW
   ============================================== */
.recipe-preview {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
}

.recipe-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.recipe-cat {
    flex: 0 1 calc(33.333% - 12px);
    min-width: 200px;
    padding: 28px 20px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(123, 48, 64, 0.04);
    transition: all 0.3s;
    cursor: default;
}

.recipe-cat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.recipe-cat__emoji {
    font-size: 36px;
    margin-bottom: 10px;
}

.recipe-cat__name {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark-bg);
    margin-bottom: 4px;
}

.recipe-cat__count {
    font-size: 13px;
    color: #7B3040;
    font-weight: 600;
}

.recipe-highlight {
    margin-top: 40px;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(123, 48, 64, 0.08), rgba(123, 48, 64, 0.04));
    border: 1px solid rgba(123, 48, 64, 0.15);
    border-radius: var(--radius);
    display: inline-block;
}

.recipe-highlight p {
    font-size: 15px;
    color: var(--dark-bg);
    line-height: 1.6;
}

/* ==============================================
   BOOK SLIDER – Blick ins Buch
   ============================================== */
.book-slider {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    overflow: hidden;
    text-align: center;
}

.book-slider__wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.book-slider__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 40px calc(50% - 280px) 30px;
}

.book-slider__track::-webkit-scrollbar {
    display: none;
}

.book-slider__slide {
    flex: 0 0 560px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(60, 39, 35, 0.15), 0 0 0 1px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.book-slider__slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 1414;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

/* Arrow buttons (desktop) */
.book-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 0 0 4px rgba(123, 48, 64, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    animation: arrow-hint 2s ease-in-out 3;
}

@keyframes arrow-hint {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 0 0 4px rgba(123, 48, 64, 0.15); }
    50%      { box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 0 0 10px rgba(123, 48, 64, 0.25); }
}

.book-slider__arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18), 0 0 0 4px rgba(123, 48, 64, 0.2);
    transform: translateY(-50%) scale(1.1);
    animation: none;
}

.book-slider__arrow:hover svg {
    stroke: var(--white);
}

.book-slider__arrow--prev { left: 24px; }
.book-slider__arrow--next { right: 24px; }

.book-slider__arrow svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark-bg);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.book-slider__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.book-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--orange-soft);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
    position: relative;
}
.book-slider__dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.book-slider__dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.book-slider__dot:focus-visible,
.book-slider__dot:focus {
    outline: 3px solid var(--accent);
    outline-offset: -2px;
}

.book-slider__arrow:focus-visible,
.book-slider__arrow:focus {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Hide arrows on touch devices */
@media (hover: none) and (pointer: coarse) {
    .book-slider__arrow {
        display: none;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .book-slider__track {
        padding: 30px 24px;
        gap: 16px;
    }
    .book-slider__slide {
        flex: 0 0 80vw;
    }
    .book-slider {
        padding: 90px 0 70px;
    }
    .book-slider__arrow {
        width: 44px;
        height: 44px;
    }
    .book-slider__arrow--prev { left: 10px; }
    .book-slider__arrow--next { right: 10px; }
}

/* Mobile */
@media (max-width: 480px) {
    .book-slider__track {
        padding: 24px 16px;
        gap: 12px;
    }
    .book-slider__slide {
        flex: 0 0 85vw;
    }
    .book-slider {
        padding: 70px 0 56px;
    }
}

/* ==============================================
   SOCIAL PROOF
   ============================================== */
.social-proof {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-proof__headline {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange-soft);
    margin-bottom: 28px;
}

.social-proof__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    max-width: 700px;
    margin: 0 auto;
}

.social-proof__stat {
    text-align: center;
}

.social-proof__number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark-bg);
    line-height: 1.2;
    white-space: nowrap;
}

.social-proof__label {
    font-size: 14px;
    color: var(--orange-soft);
    font-weight: 500;
    margin-top: 4px;
    white-space: nowrap;
}

.social-proof__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--orange-soft);
}

/* Social Proof Bar */
.social-proof-bar {
    margin-top: 40px;
    text-align: center;
}

.social-proof-bar img {
    max-width: 480px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .social-proof-bar img {
        max-width: 320px;
        border-radius: 12px;
    }
}

/* Bekannt aus - Medienlogos */
.media-logos {
    margin-top: 48px;
    text-align: center;
}

.media-logos__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.media-logos__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.media-logos__logo {
    height: 28px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.media-logos__logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .media-logos {
        margin-top: 32px;
    }
    .media-logos__grid {
        gap: 20px;
    }
    .media-logos__logo {
        height: 22px;
    }
}

@media (max-width: 480px) {
    .media-logos__grid {
        gap: 16px;
    }
    .media-logos__logo {
        height: 18px;
    }
}

.social-proof__socials svg {
    opacity: 0.55;
}

.social-proof__divider {
    width: 1px;
    height: 40px;
    background: rgba(123, 48, 64, 0.15);
}

/* (Signup/Thankyou/Referral sections removed - replaced by Package Builder) */

/* ==============================================
   THANK YOU PAGE (eigenstaendig)
   ============================================== */
html.thankyou-html {
    background: var(--orange);
}

.thankyou-page {
    background: linear-gradient(160deg, var(--orange-deeper) 0%, var(--dark-bg) 40%, var(--dark-bg-light) 100%);
    min-height: 100vh;
}

.thankyou {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    padding-top: max(40px, env(safe-area-inset-top, 40px));
    padding-bottom: max(40px, env(safe-area-inset-bottom, 40px));
    position: relative;
    z-index: 1;
}

.thankyou .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thankyou__card {
    max-width: 600px;
    width: 100%;
    padding: 56px 48px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thankyou__icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thankyou__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.3;
}

.thankyou__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thankyou__desc p {
    margin-bottom: 14px;
}

.thankyou__desc strong {
    color: var(--dark-bg);
}

.thankyou__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 60px;
    box-shadow: 0 8px 25px rgba(244, 110, 27, 0.3);
    transition: all 0.3s ease;
}

.thankyou__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(244, 110, 27, 0.4);
}

@media (max-width: 768px) {
    .thankyou__card {
        padding: 40px 28px;
    }
    .thankyou__icon {
        font-size: 48px;
        margin-bottom: 16px;
    }
    .thankyou__title {
        font-size: 1.4rem;
    }
    .thankyou__desc {
        font-size: 15px;
    }
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    padding: 32px 0 80px;
    text-align: center;
    font-size: 14px;
    color: var(--orange-soft);
    background: var(--white);
    border-top: 1px solid rgba(123, 48, 64, 0.06);
    position: relative;
    z-index: 1;
}

.footer__legal {
    margin-top: 8px;
    font-size: 12px;
    color: var(--orange-soft);
    opacity: 0.9;
}

.footer__legal a {
    color: var(--orange-soft);
    text-decoration: none;
    padding: 14px 8px;
    display: inline-block;
    min-height: 44px;
    box-sizing: border-box;
}

.footer__legal a:hover {
    text-decoration: underline;
}

.footer__legal span {
    margin: 0 6px;
}

/* ==============================================
   SCROLL NUDGE (mobile only)
   ============================================== */
.scroll-nudge {
    display: none;
}

@media (max-width: 768px) {
    .scroll-nudge {
        display: flex;
        align-items: center;
        gap: 5px;
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(123, 48, 64, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(123, 48, 64, 0.4);
        color: var(--accent-light);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 7px 16px;
        border-radius: 50px;
        z-index: 100;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        white-space: nowrap;
    }

    .scroll-nudge.is-visible {
        opacity: 1;
    }

    .scroll-nudge.is-hidden {
        opacity: 0;
    }

    .scroll-nudge svg {
        animation: chevronBounce 1.6s ease-in-out infinite;
    }

    @keyframes chevronBounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(3px); }
    }
}

/* ==============================================
   RESPONSIVE
   ============================================== */

/* Tablet */
@media (max-width: 1024px) {
    .book-reveal__inner {
        gap: 50px;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .protein-reasons {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .recipe-categories {
        gap: 12px;
    }

    .recipe-cat {
        flex: 0 1 calc(33.333% - 10px);
        min-width: 180px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero {
        padding: 12px 20px 64px;
        padding-top: max(12px, env(safe-area-inset-top, 12px));
        padding-bottom: max(64px, calc(env(safe-area-inset-bottom, 0px) + 50px));
        min-height: calc(100vh - var(--bar-h, 40px));
        min-height: calc(100dvh - var(--bar-h, 40px));
        justify-content: center;
    }

    .hero .container {
        gap: clamp(14px, 3.2vh, 40px);
    }

    .hero__logo {
        margin: 0;
    }

    .hero__logo img {
        max-width: 160px;
    }

    .hero__badge {
        font-size: 10px;
        padding: 8px 10px;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        letter-spacing: 0.2px;
        white-space: nowrap;
        gap: 4px;
        margin: 0;
        max-width: calc(100% - 6px);
    }

    .hero__badge-dot {
        width: 5px;
        height: 5px;
        flex-shrink: 0;
    }

    .badge-break { display: none; }
    .badge-dash { display: inline; }

    .hero__title {
        margin: 0 auto;
    }

    .hero__subtitle {
        margin: 0 auto;
    }

    .hero__cta-btn {
        padding: 14px 30px;
        font-size: 16px;
        margin-top: 0;
    }

    .book-reveal {
        padding: 100px 0 110px;
    }

    .book-reveal__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .book-reveal__cover {
        width: 340px;
    }

    .book-reveal__text {
        text-align: center;
    }

    .section-tag {
        display: inline-block;
    }

    .stats {
        padding: 80px 0 60px;
    }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 28px 16px;
    }

    .stat-card__number {
        font-size: 1.8rem;
    }

    .features {
        padding: 80px 0;
    }

    .feature-item {
        font-size: 15px;
        padding: 16px 18px;
    }

    .hero__scroll-hint {
        bottom: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
        gap: 4px;
    }

    .hero__scroll-hint span {
        font-size: 12px;
        letter-spacing: 2px;
        color: rgba(45,17,24,0.5);
    }

    .hero__scroll-line {
        height: 22px;
        width: 1.5px;
        background: rgba(45,17,24,0.2);
    }

    /* Decorative overflow fix */
    .hero::before {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
    }

    .hero::after {
        width: 250px;
        height: 250px;
        bottom: -100px;
        left: -100px;
    }

    .book-reveal__glow-ring {
        width: 250px;
        height: 250px;
    }

    .why-protein::before {
        width: 300px;
        height: 300px;
    }

    /* Why Protein */
    .why-protein {
        padding: 80px 0;
    }

    .protein-reasons {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Protein Simple */
    .protein-simple {
        padding: 80px 0;
    }

    .protein-simple__card {
        padding: 32px 20px;
    }


    .protein-simple__nudge {
        padding: 20px 24px;
    }

    .target-audience div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Recipe Preview */
    .recipe-preview {
        padding: 80px 0;
    }

    .recipe-categories {
        gap: 12px;
    }

    .recipe-cat {
        flex: 0 1 calc(50% - 8px);
        min-width: 140px;
    }

    /* Social Proof */
    .social-proof {
        padding: 60px 0;
    }

    .social-proof__inner {
        flex-wrap: wrap;
        gap: 24px 40px;
    }

    .social-proof__divider {
        display: none;
    }

    .social-proof__stat {
        flex: 0 0 calc(50% - 20px);
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 10px 14px 58px;
        padding-top: max(10px, env(safe-area-inset-top, 10px));
        padding-bottom: max(58px, calc(env(safe-area-inset-bottom, 0px) + 44px));
        min-height: calc(100vh - var(--bar-h, 40px));
        min-height: calc(100dvh - var(--bar-h, 40px));
    }

    .hero .container {
        gap: clamp(12px, 3vh, 34px);
    }

    .hero__logo {
        margin: 0;
    }

    .hero__logo img {
        max-width: 140px;
    }

    .hero__badge {
        font-size: 9px;
        padding: 7px 8px;
        letter-spacing: 0.15px;
        gap: 3px;
        margin: 0;
        max-width: calc(100% - 4px);
    }

    .hero__badge-dot {
        width: 4px;
        height: 4px;
    }

    .hero__title {
        margin: 0 auto;
    }

    .hero__subtitle {
        margin: 0 auto;
    }

    .hero__cta-btn {
        padding: 13px 28px;
        font-size: 15px;
        margin-top: 0;
    }

    /* Decorative overflow fix */
    .hero::before {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -100px;
    }

    .hero::after {
        width: 150px;
        height: 150px;
        bottom: -75px;
        left: -75px;
    }

    .book-reveal__glow-ring {
        width: 180px;
        height: 180px;
    }

    .why-protein::before {
        width: 180px;
        height: 180px;
    }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 20px 12px 16px;
    }

    .stat-card__icon {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .stat-card__number {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }

    .stat-card__label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .stat-card__desc {
        font-size: 12.5px;
        line-height: 1.4;
    }

    .recipe-categories {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .recipe-cat {
        flex: 1 1 100%;
    }

    .social-proof__inner {
        flex-direction: column;
        gap: 16px;
    }

    .social-proof__stat {
        flex: 0 0 100%;
    }

    .social-proof__number {
        font-size: 1.6rem;
    }

    .hero__logo img {
        max-width: 140px;
    }

    .book-reveal__cover {
        width: 290px;
    }

    .stats__grid {
        gap: 12px;
    }
}

/* ==============================================
   EXTRA SMALL MOBILE (320px)
   ============================================== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding-bottom: 52px;
    }

    .hero .container {
        gap: clamp(10px, 2.8vh, 28px);
    }

    .hero__logo {
        margin: 0;
    }

    .hero__logo img {
        max-width: 130px;
    }

    .hero__badge {
        font-size: 8px;
        padding: 6px 10px;
        margin: 0;
    }

    .hero__title {
        font-size: 1.6rem;
        margin: 0 auto;
    }

    .hero__subtitle {
        font-size: 0.9rem;
        margin: 0 auto;
    }

    .hero__cta-btn {
        padding: 12px 26px;
        font-size: 15px;
        margin-top: 0;
    }

    .book-reveal__cover {
        width: 240px;
    }

    .book-reveal__glow-ring {
        width: 150px;
        height: 150px;
    }

    .stats__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-card__number {
        font-size: 1.2rem;
    }

    .stat-card__desc {
        font-size: 12px;
    }

    .section-tag {
        font-size: 12px;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

/* ==============================================
   SHORT SCREENS (iPhone SE, etc.)
   ============================================== */
/* Laptop/MacBook displays with limited height (e.g. 1366x768, 1440x900) */
@media (min-width: 769px) and (max-height: 920px) {
    .hero {
        padding-top: 8px;
        padding-bottom: 30px;
    }

    .hero .container {
        gap: clamp(8px, 1.8vh, 20px);
    }

    .hero__logo img {
        max-width: 160px;
    }

    .hero__badge {
        padding: 8px 18px;
    }

    .hero__title {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
    }

    .hero__subtitle {
        font-size: clamp(0.95rem, 2vw, 1.15rem);
    }

    .hero__cta-btn {
        padding: 14px 36px;
        font-size: 16px;
    }
}

@media (max-height: 670px) and (max-width: 480px) {
    .hero {
        padding-bottom: 30px;
        min-height: auto;
    }

    .hero .container {
        gap: clamp(8px, 2vh, 16px);
    }

    .hero__logo {
        margin: 0;
    }

    .hero__logo img {
        max-width: 110px;
    }

    .hero__badge {
        margin: 0;
        padding: 5px 6px;
        font-size: 7px;
    }

    .hero__title {
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .hero__subtitle {
        font-size: 0.82rem;
        margin: 0 auto;
        line-height: 1.4;
    }

    .hero__cta-btn {
        padding: 10px 22px;
        font-size: 14px;
        margin-top: 0;
    }

    .hero__scroll-hint {
        bottom: 6px;
        gap: 2px;
    }

    .hero__scroll-hint span {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero__scroll-line {
        height: 14px;
    }
}

/* Very short viewports: hide scroll hint to avoid overlap */
@media (max-height: 750px) {
    .hero__scroll-hint {
        display: none;
    }
}

/* ==============================================
   LARGE DESKTOP / 4K
   ============================================== */
@media (min-width: 1920px) {
    .container {
        max-width: 1300px;
    }

    .hero {
        padding: 30px 40px 80px;
    }

    .hero .container {
        gap: clamp(16px, 3vh, 44px);
    }
}

/* ==============================================
   TOUCH DEVICE HOVER FIX
   ============================================== */
@media (hover: none) and (pointer: coarse) {
    .stat-card:hover,
    .protein-reason:hover,
    .recipe-cat:hover {
        transform: none;
        box-shadow: inherit;
    }

    .package-card__btn:hover {
        transform: none;
    }

    .hero__cta-btn:hover {
        transform: none;
    }

    /* Disable continuous box-shadow animations on mobile (battery) */
    .cta-glow {
        animation: none;
    }

    .sticky-cta-fab {
        animation: none;
    }
}

/* Backdrop-filter fallback for older browsers */
@supports not (backdrop-filter: blur(10px)) {
    .hero__badge { background: rgba(123, 48, 64, 0.25); }
    .package-card--standard .package-card__inner { background: rgba(40, 57, 34, 0.92); }
    .package-card--hero .package-card__inner { background: rgba(58, 78, 50, 0.95); }
    .package-card--premium .package-card__inner { background: rgba(58, 78, 50, 0.95); }
    .protein-reason { background: #fff; }
    .sticky-cta-bar { background: rgba(212, 184, 150, 0.98); }
}

/* ==============================================
   REDUCED MOTION PREFERENCE
   ============================================== */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
    }

    [data-animate].is-visible {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .particle {
        display: none;
    }

    .hero__cta-btn::after {
        animation: none;
        display: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ==============================================
   REVIEWS SECTION
   ============================================== */
.reviews {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.review-card {
    padding: 32px 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(123, 48, 64, 0.06);
    text-align: left;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.review-card__stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
    font-style: italic;
}

.review-card__author {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-bg);
}

.review-card__source {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 80px 0;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 24px 18px;
    }
}

/* ==============================================
   ABOUT BENJAMIN SECTION
   ============================================== */
.about-benjamin {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.about-benjamin__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-benjamin__photo {
    position: relative;
}

.about-benjamin__photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(123, 48, 64, 0.15);
    border: 4px solid var(--accent-light);
}

.about-benjamin__text .section-desc {
    margin-bottom: 16px;
}

.about-benjamin__text .section-desc strong {
    color: var(--orange);
}

@media (max-width: 768px) {
    .about-benjamin {
        padding: 70px 0;
    }
    .about-benjamin__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .about-benjamin__photo {
        display: flex;
        justify-content: center;
    }
    .about-benjamin__photo img {
        width: 160px;
        height: 160px;
    }
}

/* ==============================================
   FAQ SECTION
   ============================================== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
}

.faq-list {
    max-width: 720px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    border: 1px solid rgba(123, 48, 64, 0.1);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--cream);
}

.faq-item[open] {
    border-color: rgba(123, 48, 64, 0.3);
    box-shadow: 0 4px 20px rgba(123, 48, 64, 0.08);
}

.faq-item__question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
    user-select: none;
}

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

.faq-item__question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--orange-soft);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] .faq-item__question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 24px 20px;
}

.faq-item__answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-item__answer strong {
    color: var(--text);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0;
    }
    .faq-item__question {
        font-size: 15px;
        padding: 16px 18px;
    }
    .faq-item__answer {
        padding: 0 18px 16px;
    }
    .faq-item__answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-item__question {
        font-size: 14px;
        padding: 14px 16px;
    }
}
