/* =============================================================
   landing.css — Landing-Page-spezifische Styles
   Erwartet, dass base.css vorher geladen wurde.
   ============================================================= */

/* -------------------------------------------------------------
   1. Site-Header
   ------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background-color: rgba(5, 5, 6, 0.7);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-inverse);
    pointer-events: none;
}

.site-header__inner,
.site-header__nav,
.site-header__actions {
    pointer-events: auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    height: 72px;
}


/* --- Nav: Desktop = inline · Mobile = Drop-Down-Overlay --- */
.site-header__nav {
    display: flex;
    gap: var(--space-lg);
}

.site-header__nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    transition: color var(--duration-fast) var(--ease-out);
}

.site-header__nav-link:hover {
    color: var(--text-inverse);
}

@media (max-width: 1023px) {
    .site-header__nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: rgba(10, 10, 10, 0.97);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        backdrop-filter: saturate(180%) blur(24px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--duration-medium) var(--ease-out);
        pointer-events: none;
    }

    .site-header__nav.is-open {
        max-height: calc(100vh - 72px);
        pointer-events: auto;
    }

    .site-header__nav-link {
        padding: var(--space-md) var(--container-padding-mobile);
        font-size: var(--fs-body-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* --- Actions-Gruppe rechts (CTA + Burger) --- */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: auto;
}

.site-header__cta {
    display: inline-flex;
}

@media (max-width: 480px) {
    .site-header__cta {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* --- Burger-Button (nur Mobile) --- */
.site-header__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    color: var(--text-inverse);
    cursor: pointer;
    transition: background-color var(--duration-fast) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out);
}

.site-header__menu-toggle:hover,
.site-header__menu-toggle:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.32);
}

@media (min-width: 1024px) {
    .site-header__menu-toggle {
        display: none;
    }
}

.site-header__menu-icon {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 14px;
}

.site-header__menu-icon span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform var(--duration-medium) var(--ease-out),
                opacity var(--duration-fast) var(--ease-out),
                top var(--duration-medium) var(--ease-out);
}

.site-header__menu-icon span:nth-child(1) { top: 0; }
.site-header__menu-icon span:nth-child(2) { top: 6px; }
.site-header__menu-icon span:nth-child(3) { top: 12px; }

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon span:nth-child(2) {
    opacity: 0;
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

/* -------------------------------------------------------------
   2. Hero — Probetraining-First (Cinematic Premium Red)
   Split-Layout: Text links auf dunklem Grund, Model rechts
   ------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #f5f1e8;
    color: #0a0a0c;
    overflow: hidden;
    padding-top: 72px; /* Header-Höhe */
    z-index: 3;
    display: flex;
    align-items: center;
}

/* Subtile Red-Orbs als Atmosphäre auf hellem Grund */
.hero::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vw;
    max-width: 1100px;
    max-height: 1100px;
    background: radial-gradient(circle at center, rgba(255, 0, 48, 0.14) 0%, rgba(255, 0, 48, 0.04) 35%, transparent 68%);
    filter: blur(70px);
    animation: heroOrbFloat 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vw;
    max-width: 700px;
    max-height: 500px;
    background: radial-gradient(ellipse at center, rgba(226, 0, 26, 0.1) 0%, transparent 65%);
    filter: blur(60px);
    animation: heroOrbFloat2 26s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroOrbFloat {
    0%   { transform: translate(-52%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-48%, -50%) scale(1.1); opacity: 1; }
}

@keyframes heroOrbFloat2 {
    0%   { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    100% { transform: translateX(-50%) translateY(-20px); opacity: 1; }
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 820px;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.hero__headline {
    text-align: center;
}

.hero__bullets {
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta-row {
    justify-content: center;
}

.hero__logo {
    margin-bottom: var(--space-lg);
}

.hero__logo img {
    display: block;
    width: 160px;
    max-width: 100%;
    height: auto;
    /* Das weiße clever-fit-Logo über Filter auf dunkel invertieren,
       damit es auf dem hellen Hero-Hintergrund sichtbar ist.
       TODO: durch rote Logo-Variante ersetzen sobald verfügbar. */
    filter: brightness(0);
}

@media (min-width: 1024px) {
    .hero__logo img {
        width: 200px;
    }
}

.hero__headline {
    color: #0a0a0c;
    margin-bottom: var(--space-md);
    font-size: clamp(56px, 7vw, 104px);
    font-weight: var(--fw-black);
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.hero__price {
    background: linear-gradient(135deg, #ff0030 0%, #e2001a 45%, #b8001a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    white-space: nowrap;
    filter: drop-shadow(0 4px 20px rgba(255, 0, 48, 0.22));
}

.hero__subheadline {
    font-size: var(--fs-body-lg);
    line-height: var(--lh-body);
    color: rgba(10, 10, 10, 0.7);
    max-width: 540px;
    margin-bottom: var(--space-lg);
}

.hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--space-xl) auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 440px;
    width: 100%;
    text-align: left;
}

.hero__bullets li {
    position: relative;
    padding-left: 32px;
    color: rgba(10, 10, 10, 0.82);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: var(--fw-medium);
    text-align: left;
}

.hero__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 18px;
    height: 2px;
    background-color: var(--color-red-500);
}

.hero__cta-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero__scroll-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--fw-medium);
    font-size: var(--fs-body);
    transition: color var(--duration-fast) var(--ease-out);
}

.hero__scroll-link:hover {
    color: var(--text-inverse);
}

.hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-small);
}

.hero__trust-row strong {
    color: var(--text-inverse);
    font-weight: var(--fw-bold);
    margin-right: var(--space-xs);
}

/* -------------------------------------------------------------
   2b. Perks — 6 konkrete Leistungen
   ------------------------------------------------------------- */
.perks__grid {
    /* Mobile: horizontales Swipe-Carousel wie Reviews */
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--space-sm);
    margin-inline: calc(-1 * var(--container-padding-mobile));
    padding-inline: var(--container-padding-mobile);
    scroll-padding-inline: var(--container-padding-mobile);
}

.perks__grid::-webkit-scrollbar {
    display: none;
}

@media (min-width: 640px) {
    .perks__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        padding: 0;
        margin-inline: 0;
    }
}

@media (min-width: 1024px) {
    .perks__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.perk {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: transform var(--duration-medium) var(--ease-out),
                border-color var(--duration-medium) var(--ease-out);
    position: relative;
    overflow: hidden;
    /* Mobile Carousel: volle Viewport-Breite minus Padding, center-snap */
    flex: 0 0 calc(100vw - 2 * var(--container-padding-mobile));
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

@media (min-width: 640px) {
    .perk {
        flex: initial;
        min-width: 0;
        max-width: none;
    }
}

.perk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 48, 0.5), transparent);
    opacity: 0.5;
}

.perk:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 0, 48, 0.2);
}

.perk__icon {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: var(--fw-black);
    letter-spacing: var(--tracking-micro);
    color: var(--color-red-500);
    opacity: 0.7;
}

.perk__title {
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    line-height: 1.25;
}

.perk__text {
    color: rgba(245, 241, 232, 0.7);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body);
}

/* -------------------------------------------------------------
   Seca TRU "Hero Perk" — Mini-Visualisierung echter Messwerte
   ------------------------------------------------------------- */
.perk--seca .perk__text {
    margin-bottom: var(--space-sm);
}

.seca-preview {
    margin-top: var(--space-sm);
    padding: var(--space-md);
    background: #ffffff;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(10, 10, 10, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.seca-preview__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.seca-preview__logo {
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #0a0a0c;
}

.seca-preview__badge {
    font-size: 9px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.55);
    padding: 3px 8px;
    background: rgba(10, 10, 10, 0.05);
    border-radius: 999px;
}

/* --- Metric block (Körperfett / Muskelmasse) --- */
.seca-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seca-metric__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.seca-metric__label {
    font-size: 10px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(10, 10, 10, 0.55);
}

.seca-metric__tag {
    font-size: 9px;
    font-weight: var(--fw-bold);
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
}

.seca-metric__tag--ok {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
}

.seca-metric__tag--high {
    background: rgba(255, 0, 48, 0.1);
    color: #b8001a;
}

.seca-metric__value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: var(--fw-black);
    color: #0a0a0c;
    line-height: 1;
    margin: 4px 0 8px;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.seca-metric__value small {
    font-size: 0.45em;
    font-weight: var(--fw-semibold);
    color: rgba(10, 10, 10, 0.55);
}

.seca-metric__note {
    font-size: 10px;
    color: rgba(10, 10, 10, 0.5);
    margin-top: 6px;
    font-style: italic;
}

/* --- Range Bar mit farbigen Zonen --- */
.seca-range {
    position: relative;
    height: 7px;
    border-radius: 4px;
    margin-top: 2px;
    overflow: visible;
}

/* Körperfett: grün (gut) → gelb → rot (zu viel) */
.seca-range--fat {
    background: linear-gradient(
        to right,
        #22c55e 0%,
        #22c55e 62%,
        #eab308 62%,
        #eab308 82%,
        #ef4444 82%,
        #ef4444 100%
    );
}

/* Muskelmasse: rot (zu wenig) → gelb → grün (gut/viel) */
.seca-range--muscle {
    background: linear-gradient(
        to right,
        #ef4444 0%,
        #ef4444 20%,
        #eab308 20%,
        #eab308 45%,
        #22c55e 45%,
        #22c55e 100%
    );
}

.seca-range__dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #0a0a0c;
    box-shadow: 0 2px 6px rgba(10, 10, 10, 0.35);
    z-index: 1;
}

.seca-range__scale {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: rgba(10, 10, 10, 0.5);
    margin-top: 4px;
    font-variant-numeric: tabular-nums;
    padding: 0 2px;
}

/* --- Body Composition Chart (BCC) --- */
.seca-bcc {
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.seca-bcc__label {
    font-size: 10px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(10, 10, 10, 0.55);
    margin-bottom: 6px;
}

.seca-bcc__svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* -------------------------------------------------------------
   Perk-Widget — geteiltes Framework für Plan & Nutrition
   ------------------------------------------------------------- */
.perk-widget {
    margin-top: var(--space-sm);
    padding: var(--space-md);
    background: #ffffff;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(10, 10, 10, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.perk-widget__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.perk-widget__logo {
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #0a0a0c;
}

.perk-widget__badge {
    font-size: 9px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.55);
    padding: 3px 8px;
    background: rgba(10, 10, 10, 0.05);
    border-radius: 999px;
}

.perk-widget__title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.perk-widget__title strong {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: var(--fw-black);
    color: #0a0a0c;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.perk-widget__title span {
    font-size: 11px;
    color: rgba(10, 10, 10, 0.55);
    font-weight: var(--fw-medium);
}

.perk-widget__note {
    font-size: 10px;
    color: rgba(10, 10, 10, 0.5);
    font-style: italic;
    line-height: 1.4;
    padding-top: 4px;
    border-top: 1px solid rgba(10, 10, 10, 0.06);
    margin-top: 2px;
}

/* -------------------------------------------------------------
   Plan-Widget — Ziel / Trainingstage / Heute
   ------------------------------------------------------------- */
.plan-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.plan-info__label {
    font-size: 10px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(10, 10, 10, 0.55);
}

.plan-info__value {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: var(--fw-black);
    line-height: 1;
    color: #0a0a0c;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.plan-info__note {
    font-size: 11px;
    color: rgba(10, 10, 10, 0.55);
    font-weight: var(--fw-medium);
}

.plan-info__days {
    display: flex;
    gap: 5px;
    margin-top: 8px;
}

.plan-info__days .day {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    aspect-ratio: 1;
    min-height: 32px;
    border-radius: 7px;
    background: rgba(10, 10, 10, 0.04);
    border: 1px solid rgba(10, 10, 10, 0.06);
    font-size: 10px;
    font-weight: var(--fw-semibold);
    color: rgba(10, 10, 10, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.plan-info__days .day.day--active {
    background: linear-gradient(180deg, #ff3355, #e2001a);
    border-color: #b8001a;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 0, 48, 0.25);
}

.plan-today {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(255, 0, 48, 0.05), rgba(255, 0, 48, 0.02));
    border: 1px solid rgba(255, 0, 48, 0.18);
    border-radius: 10px;
}

.plan-today__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-today__label {
    font-size: 10px;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e2001a;
}

.plan-today__tag {
    font-size: 9px;
    font-weight: var(--fw-semibold);
    color: rgba(10, 10, 10, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.plan-today__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: var(--fw-black);
    color: #0a0a0c;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.plan-today__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 11px;
    color: rgba(10, 10, 10, 0.65);
    font-weight: var(--fw-medium);
}

.plan-today__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.plan-today__meta em {
    font-style: normal;
    font-size: 14px;
    line-height: 1;
}

/* -------------------------------------------------------------
   Nutrition-Widget — Meal-List + Macro-Strip
   ------------------------------------------------------------- */
.meal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(10, 10, 10, 0.035);
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 8px;
}

.meal-item__icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.meal-item__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.meal-item__body strong {
    font-size: 11px;
    font-weight: var(--fw-bold);
    color: #0a0a0c;
    line-height: 1.3;
    letter-spacing: -0.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meal-item__body span {
    font-size: 10px;
    color: rgba(10, 10, 10, 0.55);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meal-item__kcal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    line-height: 1;
    gap: 1px;
}

.meal-item__kcal strong {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: var(--fw-black);
    color: #e2001a;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

.meal-item__kcal::after {
    content: 'kcal';
    font-size: 8px;
    font-weight: var(--fw-semibold);
    color: rgba(10, 10, 10, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* --- Macro-Strip: horizontal stacked bar als Legende --- */
.macro-strip {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.macro-strip__bar {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.04);
}

.macro-strip__seg {
    height: 100%;
}

.macro-strip__seg--protein {
    background: linear-gradient(90deg, #e2001a, #ff3355);
}

.macro-strip__seg--carbs {
    background: linear-gradient(90deg, #eab308, #fbbf24);
}

.macro-strip__seg--fat {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.macro-strip__labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(10, 10, 10, 0.7);
    font-weight: var(--fw-semibold);
    font-variant-numeric: tabular-nums;
}

.macro-strip__labels span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.macro-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.macro-dot--protein {
    background: #e2001a;
}

.macro-dot--carbs {
    background: #eab308;
}

.macro-dot--fat {
    background: #22c55e;
}

/* -------------------------------------------------------------
   Interne Snap-Sections auf Mobile
   Horizontaler Haupt-Carousel zwischen den 3 Perks bleibt.
   Innerhalb jeder Kachel: vertikaler Snap-Scroll zwischen
   den einzelnen Widget-Abschnitten (jeder "rastet ein" wie
   eine eigene Seite — kein smoother Continuous-Scroll).
   Titel + Icon + Beschreibung der Kachel bleiben fix oben.
   ------------------------------------------------------------- */
@media (max-width: 767px) {
    .perk--seca,
    .perk--plan,
    .perk--nutrition {
        display: flex;
        flex-direction: column;
        max-height: 78vh;
        max-height: 78dvh;
    }

    /* Header-Elemente (Icon, Titel, Beschreibung) bleiben fix oben */
    .perk--seca .perk__icon,
    .perk--seca .perk__title,
    .perk--seca .perk__text,
    .perk--plan .perk__icon,
    .perk--plan .perk__title,
    .perk--plan .perk__text,
    .perk--nutrition .perk__icon,
    .perk--nutrition .perk__title,
    .perk--nutrition .perk__text {
        flex-shrink: 0;
    }

    /* Widget-Container = vertikaler Snap-Scroll-Bereich */
    .perk--seca .seca-preview,
    .perk--plan .perk-widget,
    .perk--nutrition .perk-widget {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;

        /* SNAP: jede Section rastet ein */
        scroll-snap-type: y mandatory;

        /* Scrollbar verstecken — wir wollen die Segmente pur */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .perk--seca .seca-preview::-webkit-scrollbar,
    .perk--plan .perk-widget::-webkit-scrollbar,
    .perk--nutrition .perk-widget::-webkit-scrollbar {
        display: none;
    }

    /* Direkte Kinder des Widgets = Snap-Targets.
       Jedes Segment füllt die verfügbare Container-Höhe und zentriert
       seinen Inhalt vertikal. Der User "blättert" zwischen Abschnitten. */
    .perk--seca .seca-preview > *,
    .perk--plan .perk-widget > *,
    .perk--nutrition .perk-widget > * {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-height: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }

    /* Header-Segment und Titel-Segment oben ausrichten
       statt zentriert — sonst wirkt es hohl */
    .perk--seca .seca-preview > .seca-preview__header,
    .perk--plan .perk-widget > .perk-widget__header,
    .perk--nutrition .perk-widget > .perk-widget__header {
        justify-content: flex-start;
        min-height: 0;
        padding-top: 2px;
    }

    /* Fade-Indicator entfällt — mit Snap-Pages brauchen wir keinen
       "mehr Content unten" Hint mehr, jedes Segment ist klar abgegrenzt */
    .perk--seca::after,
    .perk--plan::after,
    .perk--nutrition::after {
        display: none;
    }
}

/* -------------------------------------------------------------
   2d. Steps — In 3 Schritten zum Probetraining
   ------------------------------------------------------------- */
.steps__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: 0;
    list-style: none;
}

@media (min-width: 768px) {
    .steps__list {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
        margin-bottom: var(--space-xl);
    }
}

.step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    position: relative;
}

@media (min-width: 768px) {
    .step {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-lg);
        gap: var(--space-sm);
    }
}

.step__number {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: var(--fw-black);
    line-height: 1;
    background: linear-gradient(180deg, #ff3355 0%, #e2001a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.05em;
    flex-shrink: 0;
    min-width: 36px;
}

@media (min-width: 768px) {
    .step__number {
        font-size: 64px;
        min-width: 0;
    }
}

.step__title {
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
}

.step__text {
    color: rgba(245, 241, 232, 0.7);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body);
}

.steps__cta {
    display: flex;
    justify-content: center;
}

/* -------------------------------------------------------------
   3. Section Header (shared)
   ------------------------------------------------------------- */
.section-header {
    max-width: 760px;
    margin-bottom: var(--space-xl);
}

.section-header .accent-line {
    display: block;
}

.section-header p.t-micro {
    margin-bottom: var(--space-xs);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

/* -------------------------------------------------------------
   4. Reviews — Google-Bewertungen (Social Proof)
   ------------------------------------------------------------- */
.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header--center .accent-line {
    margin-left: auto;
    margin-right: auto;
}

.reviews__overall {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.reviews__stars {
    font-size: 28px;
    letter-spacing: 4px;
    color: #FBBC04; /* Google Yellow */
    line-height: 1;
}

.reviews__overall-text {
    color: var(--text-secondary);
    font-size: var(--fs-body);
}

.reviews__overall-text strong {
    color: var(--text-primary);
    font-weight: var(--fw-bold);
}

.reviews__grid {
    /* Mobile: horizontales Swipe-Carousel mit Scroll-Snap */
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--space-sm);
    /* Negatives Margin, damit Carousel edge-to-edge scrollen kann */
    margin-inline: calc(-1 * var(--container-padding-mobile));
    padding-inline: var(--container-padding-mobile);
    scroll-padding-inline: var(--container-padding-mobile);
}

.reviews__grid::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .reviews__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
        margin-bottom: var(--space-xl);
        overflow-x: visible;
        padding: 0;
        margin-inline: 0;
    }
}

.review-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: transform var(--duration-medium) var(--ease-out),
                box-shadow var(--duration-medium) var(--ease-out),
                border-color var(--duration-medium) var(--ease-out);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), var(--glow-inner);
    position: relative;
    overflow: hidden;
    /* Mobile Carousel: volle Viewport-Breite minus Padding, center-snap */
    flex: 0 0 calc(100vw - 2 * var(--container-padding-mobile));
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 48, 0.6), transparent);
    opacity: 0.6;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 48, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 0, 48, 0.15), var(--glow-inner);
}

@media (min-width: 768px) {
    .review-card {
        flex: initial;
        min-width: 0;
        max-width: none;
    }
}


.review-card__stars {
    font-size: 18px;
    letter-spacing: 3px;
    color: #FBBC04;
    line-height: 1;
}

.review-card__quote {
    margin: 0;
    padding: 0;
    color: rgba(245, 241, 232, 0.92);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    flex-grow: 1;
    quotes: "\201C" "\201D";
}

.review-card__quote::before {
    content: open-quote;
    color: var(--color-red-500);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
}

.review-card__quote::after {
    content: close-quote;
    color: var(--color-red-500);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
}

.review-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card__author strong {
    color: var(--text-primary);
    font-weight: var(--fw-semibold);
}

.review-card__author .t-muted {
    color: rgba(245, 241, 232, 0.45);
}

.reviews__link {
    text-align: center;
}

.reviews__link a {
    color: var(--color-red-500);
    font-weight: var(--fw-semibold);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.reviews__link a:hover {
    color: var(--color-red-600);
}

/* -------------------------------------------------------------
   5. FAQ
   ------------------------------------------------------------- */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq__item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-out);
}

.faq__item:hover {
    border-color: rgba(255, 0, 48, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.faq__item[open] {
    border-color: rgba(255, 0, 48, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 0, 48, 0.08);
}

.faq__item summary {
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-display);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-body-lg);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-primary);
}

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

.faq__item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: var(--fw-regular);
    color: var(--color-red-500);
    transition: transform var(--duration-medium) var(--ease-out);
    line-height: 1;
}

.faq__item[open] summary::after {
    content: '−';
}

.faq__item p {
    padding: 0 var(--space-lg) var(--space-md);
    color: rgba(245, 241, 232, 0.72);
    line-height: var(--lh-body);
}

/* -------------------------------------------------------------
   10. Contact — Cinematic Closing Moment
   ------------------------------------------------------------- */
.contact {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            180deg,
            rgba(5, 5, 6, 0.92) 0%,
            rgba(5, 5, 6, 0.88) 50%,
            rgba(5, 5, 6, 0.96) 100%
        ),
        url('../images/studio/studio-overview.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    animation: contactBgZoom 40s ease-in-out infinite alternate;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 40vw;
    max-width: 900px;
    max-height: 500px;
    background: radial-gradient(ellipse at center, rgba(255, 0, 48, 0.25) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

@keyframes contactBgZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

.contact__info h2 {
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
}

.contact__address {
    font-style: normal;
    font-size: var(--fs-body-lg);
    line-height: var(--lh-body);
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact__details li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__details .t-micro {
    color: rgba(255, 255, 255, 0.5);
}

.contact__details a {
    color: var(--text-inverse);
    font-size: var(--fs-body-lg);
    font-weight: var(--fw-medium);
}

.contact__details a:hover {
    color: var(--color-red-500);
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    filter: invert(0.9) hue-rotate(180deg) saturate(0.6);
}

/* DSGVO Consent-Overlay */
.contact__map-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 400px;
    padding: var(--space-lg);
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.85);
    background: radial-gradient(
        ellipse at center,
        rgba(255, 0, 48, 0.08) 0%,
        transparent 60%
    );
}

.contact__map-pin {
    font-size: 44px;
    margin-bottom: var(--space-xs);
    filter: drop-shadow(0 0 16px rgba(255, 0, 48, 0.4));
}

.contact__map-title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    color: #ffffff;
    margin-bottom: 4px;
}

.contact__map-info {
    font-size: var(--fs-body-sm);
    color: rgba(255, 255, 255, 0.68);
    max-width: 320px;
    line-height: var(--lh-body);
    margin-bottom: var(--space-xs);
}

.contact__map-note {
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-xs);
}

.contact__map-note a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact__map-note a:hover {
    color: var(--color-red-500);
}

/* -------------------------------------------------------------
   11. Footer
   ------------------------------------------------------------- */
.site-footer {
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.55);
    padding-block: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 2;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .site-footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.site-footer__logo-img {
    display: block;
    width: 140px;
    height: auto;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.site-footer__nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    transition: color var(--duration-fast) var(--ease-out);
}

.site-footer__nav a:hover {
    color: var(--text-inverse);
}

/* -------------------------------------------------------------
   12. Mobile Nav (Einfach, ohne Hamburger-Menü für Phase 1)
   ------------------------------------------------------------- */
@media (max-width: 1023px) {
    .hero__headline {
        font-size: clamp(40px, 9vw, 64px);
    }
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: var(--space-md);
    }
}

/* -------------------------------------------------------------
   12b. Studio-Gallery — 3D Coverflow via CSS Scroll-Snap
   Stage ist nativer horizontaler Scroll-Container. Browser macht
   das Snapping nativ — keine Touch-Handler im JS.
   JS setzt nur --offset/--abs pro Karte für den 3D-Tilt.
   ------------------------------------------------------------- */
.studio-gallery__stage {
    position: relative;
    perspective: 1400px;
    perspective-origin: 50% 50%;
    height: 320px;
    margin-top: var(--space-lg);

    /* Nativer horizontaler Scroll mit Snap */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    overflow-anchor: none;

    /* Scrollbar visuell verbergen (nativ bleibt Scroll funktional) */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.studio-gallery__stage::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .studio-gallery__stage {
        height: 440px;
    }
}

@media (min-width: 1024px) {
    .studio-gallery__stage {
        height: 500px;
    }
}

.studio-gallery__track {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    height: 100%;
    /* Padding links+rechts damit erste+letzte Karte zentriert werden können.
       Wert ist dynamisch — JS passt an Stage-Breite an. */
    padding-inline: var(--edge-pad, 50%);
    transform-style: preserve-3d;
    /* Verhindert dass flex-items zusammengedrückt werden */
    width: max-content;
}

.studio-photo {
    --offset: 0;
    --abs: 0;
    flex: 0 0 auto;
    margin: 0;
    width: min(78vw, 380px);
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    cursor: pointer;

    transform:
        rotateY(calc(var(--offset) * -28deg))
        translateZ(calc(var(--abs) * -100px));
    transform-origin: center center;
    transition:
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 380ms ease,
        filter 380ms ease;
    opacity: calc(1 - var(--abs) * 0.32);
    filter: brightness(calc(1 - var(--abs) * 0.25));
    z-index: calc(20 - var(--abs) * 10);
    will-change: transform, opacity;
}

/* Während aktiv gescrollt wird: Transitions kurz aus, damit die 3D-Updates
   1:1 mit dem Finger laufen und nicht hinterherziehen. */
.studio-gallery__stage.is-scrolling .studio-photo {
    transition: none;
}

@media (min-width: 768px) {
    .studio-photo {
        width: min(52vw, 540px);
    }
}

@media (min-width: 1024px) {
    .studio-photo {
        width: min(42vw, 620px);
    }
}

.studio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Navigation-Leiste: Pfeile + Dots */
.studio-gallery__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

/* Pfeile — runde Buttons mit CSS-Chevron */
.studio-gallery__arrow {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    transition:
        background 240ms ease,
        border-color 240ms ease,
        color 240ms ease,
        transform 180ms ease,
        box-shadow 240ms ease;
    -webkit-tap-highlight-color: transparent;
}

.studio-gallery__arrow::before {
    content: '';
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.studio-gallery__arrow--prev::before {
    transform: rotate(-135deg) translate(-1px, 1px);
}

.studio-gallery__arrow--next::before {
    transform: rotate(45deg) translate(-1px, 1px);
}

.studio-gallery__arrow:hover,
.studio-gallery__arrow:focus-visible {
    background: var(--color-red-600);
    border-color: var(--color-red-600);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 0, 48, 0.35);
    outline: none;
}

.studio-gallery__arrow:active {
    transform: translateY(0);
}

/* Dot-Indicators */
.studio-gallery__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.studio-gallery__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 300ms ease, width 300ms ease;
    -webkit-tap-highlight-color: transparent;
}

.studio-gallery__dot:hover {
    background: rgba(255, 255, 255, 0.55);
}

.studio-gallery__dot[aria-current="true"] {
    background: var(--color-red-600);
    width: 32px;
    border-radius: 6px;
}

/* Reduced Motion: keine 3D-Transition, nur Opacity */
@media (prefers-reduced-motion: reduce) {
    .studio-photo {
        transition: opacity 200ms ease;
    }
}

/* =============================================================
   13. Light-Mode Overrides
   Für alle Sektionen mit .section--light — Cards auf Weiß,
   Glass-Morphism durch weichen Schatten ersetzen, Text dunkel.
   ============================================================= */

/* Cards: weiß mit weichem Schatten statt Glass-Morphism */
.section--light .perk,
.section--light .review-card,
.section--light .faq__item,
.section--light .step {
    background: #ffffff;
    border-color: rgba(10, 10, 10, 0.06);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 4px 24px rgba(10, 10, 10, 0.05),
                0 1px 2px rgba(10, 10, 10, 0.04);
}

.section--light .perk:hover,
.section--light .review-card:hover {
    border-color: rgba(255, 0, 48, 0.28);
    box-shadow: 0 16px 48px rgba(10, 10, 10, 0.08),
                0 0 32px rgba(255, 0, 48, 0.08);
    transform: translateY(-3px);
}

.section--light .faq__item:hover {
    border-color: rgba(255, 0, 48, 0.22);
    background: #ffffff;
}

.section--light .faq__item[open] {
    border-color: rgba(255, 0, 48, 0.3);
    box-shadow: 0 12px 40px rgba(10, 10, 10, 0.08),
                0 0 28px rgba(255, 0, 48, 0.06);
}

/* Perk-Card Texte */
.section--light .perk__title {
    color: var(--text-primary);
}

.section--light .perk__text {
    color: rgba(10, 10, 10, 0.68);
}

/* Step-Card Texte */
.section--light .step__title {
    color: var(--text-primary);
}

.section--light .step__text {
    color: rgba(10, 10, 10, 0.68);
}

/* FAQ Texte */
.section--light .faq__item summary {
    color: var(--text-primary);
}

.section--light .faq__item p {
    color: rgba(10, 10, 10, 0.68);
}

/* Review-Card Texte */
.section--light .review-card__quote {
    color: rgba(10, 10, 10, 0.84);
}

.section--light .review-card__author strong {
    color: var(--text-primary);
}

.section--light .review-card__author {
    border-top-color: rgba(10, 10, 10, 0.08);
}

.section--light .review-card__author .t-muted,
.section--light .review-card__author .t-small.t-muted {
    color: rgba(10, 10, 10, 0.48);
}

/* Reviews: Overall-Rating Label auf hell */
.section--light .reviews__overall-text {
    color: rgba(10, 10, 10, 0.7);
}

.section--light .reviews__overall-text strong {
    color: var(--text-primary);
}

/* Section-Header Copy muted */
.section--light .t-muted,
.section--light .t-body.t-muted,
.section--light .t-body-lg.t-muted,
.section--light .t-small.t-muted {
    color: rgba(10, 10, 10, 0.62);
}

/* accent-line bleibt rot, Micro-Label bleibt rot (var(--color-red-500)) */

/* Link "Alle Bewertungen auf Google ansehen" passt sich an */
.section--light .reviews__link a {
    color: var(--color-red-600);
}

.section--light .reviews__link a:hover {
    color: var(--color-red-700);
}
