/* ========================================
   COACH MAREK - Premium Fitness Landing Page
   Farbschema: Gold, Silber, Schwarz
   ======================================== */

/* === CSS Variables === */
:root {
    --gold-primary: #E2B04E;
    --gold-light: #F9E8B3;
    --gold-dark: #B38728;
    --gold-gradient: linear-gradient(135deg, #B38728 0%, #F9E8B3 25%, #E2B04E 50%, #F9E8B3 75%, #B38728 100%);
    --gold-glow: 0 0 15px rgba(226, 176, 78, 0.3);

    --silver-primary: #C0C0C0;
    --silver-light: #E8E8E8;
    --silver-dark: #808080;
    --silver-gradient: linear-gradient(135deg, #606060 0%, #E8E8E8 25%, #C0C0C0 50%, #E8E8E8 75%, #606060 100%);

    --black: #000000;
    --black-soft: #0A0A0A;
    --black-card: #111111;
    --black-surface: #1A1A1A;
    --black-elevated: #222222;

    --text-primary: #C0C0C0;
    --text-secondary: #909090;
    --text-muted: #606060;

    --section-padding: 100px 0;
    --container-width: 1440px;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h5.section-title + h3,
h2.section-title + h3 {
    line-height: 1.6;
}

.hero + div,
.hero + div p,
.hero + div div,
.hero + div h2,
.hero + div h3,
.hero + div h4,
.hero + div h5 {
    line-height: 1.1;
}

.gold { color: var(--gold-primary); }

.gold-gradient {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.silver-gradient {
    color: var(--silver-primary);
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-emphasis {
    color: var(--gold-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin: 15px 0;
    text-shadow: 0 0 15px rgba(226, 176, 78, 0.4);
    font-size: 1.15rem;
}

.gold-glow { filter: drop-shadow(var(--gold-glow)); }

.silver-glow { filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.4)); }

@keyframes gold-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* === Container === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-medium);
    text-align: center;
}

.btn .material-icons { font-size: 20px; }

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(226, 176, 78, 0.4), 0 0 20px rgba(226, 176, 78, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--silver-dark);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--silver-dark);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 18px rgba(226, 176, 78, 0.4), 0 0 30px rgba(226, 176, 78, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.btn-whatsapp svg { width: 20px; height: 20px; }

/* === Section Styles === */
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    animation: pulse 2s infinite;
}

.section-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 12px;
    line-height: 0.85;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    flex: 0 0 200px;
}

.logo-icon { font-size: 1.5rem; }

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.nav-actions {
    flex: 0 0 200px;
    display: flex;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

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

.nav-actions .cta-nav {
    padding: 12px 24px;
    background: var(--gold-gradient);
    color: var(--black) !important;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-medium);
}

.nav-actions .cta-nav:hover { transform: scale(1.05); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* === Admin Trigger === */
#admin-trigger {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 9999;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: fit-content !important;
    min-width: unset;
    background: #000;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 4px;
    color: #eda347;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

#admin-trigger .material-icons { font-size: 20px; }

/* === Scroll to Top === */
#scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

#scroll-to-top.visible { opacity: 1; visibility: visible; }

#scroll-to-top:hover {
    background: rgba(212, 175, 55, 0.35);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

#scroll-to-top svg { width: 28px; height: 28px; color: inherit; }

/* === Hero Section === */
.hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 100px 24px 40px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute !important;
    inset: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero-badge .material-icons { font-size: 18px; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50%       { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--silver-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
}

.hero-cta .btn { min-width: 220px; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: none;
    flex-wrap: wrap;
}

.hero-stats .stat-divider { flex-basis: 100%; height: 0; }

.stat { text-align: center; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator .material-icons { font-size: 32px; color: var(--gold-primary); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}

/* === About Section === */
.about {
    padding: 48px 0 33px;
    background: transparent;
}

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

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 75%;
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gold-gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.feature .material-icons { color: var(--gold-primary); font-size: 20px; }

/* === Approach Section === */
.approach {
    padding: 48px 0 33px;
    background: transparent;
}

.approach .section-header {
    text-align: left !important;
    max-width: none;
    margin: 0 0 1.25em;
}

.approach .section-title {
    text-align: left !important;
    font-size: clamp(2.25rem, 5.5vw, 3.25rem);
    margin-bottom: 0.5em;
}

.approach p, .approach li, .approach .section-header p { text-align: left !important; }

.approach p, .approach li { font-size: 1.25rem; line-height: 1.6; }

.approach ul { padding-left: 1.25em; margin-bottom: 1.25em; }

.approach li { margin-bottom: 0; padding-bottom: 0.15em; }
.approach li p { font-size: inherit; margin: 0 0 0.15em; }
.approach li:last-child p { margin-bottom: 0; }

.approach .approach-list-intro {
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: 0.25em;
}

.approach h2.section-title.approach-divider {
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    margin-top: 1.25em;
    padding-top: 1.25em;
}

.list-plain { list-style: none; padding-left: 0; margin: 1em 0; }
.list-plain li { margin-bottom: 0.75em; }

/* Alle Überschriften in .approach: enger Zeilenabstand */
.approach h2.section-title, .approach .section-title { line-height: 0.85; }

/* === Pillars Grid === */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--black-card);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: visible;
    transition: all var(--transition-medium);
    box-shadow: 0 0 20px rgba(226, 176, 78, 0.25), 0 0 40px rgba(226, 176, 78, 0.1);
}

/* ✅ GOLD-GRADIENT HOVER – alle Cards */
.pillar-card:hover {
    border-color: #E2B04E;
    border-width: 3px;
    box-shadow: 0 0 20px rgba(226,176,78,1), 0 0 50px rgba(179,135,40,0.9), 0 0 100px rgba(249,232,179,0.6), 0 0 150px rgba(226,176,78,0.3);
}

.pillar-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, var(--black-card) 100%);
}

.pillar-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 20px;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
    z-index: 2;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pillar-icon .material-icons { font-size: 32px; color: var(--gold-primary); }

.pillar-card h3 { font-size: 1.25rem; margin-bottom: 15px; }
.pillar-card p { color: var(--text-secondary); margin-bottom: 25px; }

.pillar-features { list-style: none; }

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pillar-features .material-icons { font-size: 18px; color: var(--gold-primary); }

/* === Programs Section === */
.programs {
    padding: 48px 0 33px;
    background: transparent;
}

.programs .section-header { margin-bottom: 48px; }

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
    min-height: 860px;
}

.program-card {
    background: var(--black-card);
    border: 1px solid var(--black-elevated);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 420px;
    overflow: visible;
    transition: all var(--transition-medium);
}

/* ✅ GOLD-GRADIENT HOVER */
.program-card:hover {
    border-color: #E2B04E;
    border-width: 3px;
    box-shadow: 0 0 20px rgba(226,176,78,1), 0 0 50px rgba(179,135,40,0.9), 0 0 100px rgba(249,232,179,0.6), 0 0 150px rgba(226,176,78,0.3);
}

.program-card .btn {
    width: 100%;
    margin-top: auto;
    color: var(--black);
    background: var(--gold-gradient);
    border: none;
}

.program-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(226, 176, 78, 0.4), 0 0 20px rgba(226, 176, 78, 0.2);
}

.program-card .btn .gold-gradient {
    color: var(--black) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--black) !important;
    background-clip: unset !important;
}

.program-card > div:last-child {
    margin-top: auto;
    padding-top: 16px;
    width: 100%;
}

.program-card > div:last-child .btn { width: 100% !important; display: flex !important; justify-content: center; }
.program-card > a.btn:last-child { margin-top: auto; }

.program-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--black-card) 100%);
}

.program-badge {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 10px 26px;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    z-index: 2;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    min-width: 0;
}

.program-header > .material-icons,
.program-header > span:first-child {
    font-size: 26px;
    color: var(--gold-primary);
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.program-header h3 { font-size: 1.1rem; min-width: 0; overflow-wrap: break-word; }

.program-focus {
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
    overflow-wrap: break-word;
}

.program-result {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    overflow-wrap: break-word;
    line-height: 1.5;
}

.program-includes {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 16px;
    min-width: 0;
}

.program-includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
    min-width: 0;
    overflow-wrap: break-word;
}

.program-includes .material-icons { font-size: 16px; color: var(--gold-primary); flex-shrink: 0; }

/* === Process Section === */
.process {
    padding: 48px 0 33px;
    background: transparent;
}

.process .section-header { margin-bottom: 36px; }

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--silver-dark) 100%);
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    position: relative;
}

.step-number { font-size: 3rem; font-weight: 800; color: var(--gold-primary); text-align: center; }
.step-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.step-content p { color: var(--text-secondary); }

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--black-card);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon .material-icons { font-size: 28px; color: var(--gold-primary); }

/* === Testimonials Section === */
.testimonials {
    padding: 48px 0 33px;
    background: transparent;
}

.testimonials .section-header { margin-bottom: 36px; }

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

/* Werte-Cards Grid */
.values-cards-grid { display: flex; flex-direction: column; gap: 30px; }

.values-cards-row--first {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.values-cards-row--second {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: calc(2 * (100% - 60px) / 3 + 30px);
    max-width: 100%;
    margin: 0 auto;
}

.values-cards-row--second .pillar-card { min-width: 0; }

.index-intro-text-wrap {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--black-elevated);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: all var(--transition-medium);
}

/* ✅ GOLD-GRADIENT HOVER */
.testimonial-card:hover {
    border-color: #E2B04E;
    border-width: 3px;
    box-shadow: 0 0 20px rgba(226,176,78,1), 0 0 50px rgba(179,135,40,0.9), 0 0 100px rgba(249,232,179,0.6), 0 0 150px rgba(226,176,78,0.3);
}

.testimonial-quote { position: absolute; top: 20px; right: 30px; }
.testimonial-quote .material-icons { font-size: 40px; color: rgba(212, 175, 55, 0.3); }

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author { display: flex; align-items: center; gap: 15px; }

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar .material-icons { font-size: 24px; color: var(--gold-primary); }
.author-info strong { display: block; color: var(--text-primary); }
.author-info span { font-size: 0.875rem; color: var(--gold-primary); }

/* === CTA Section === */
.cta-section {
    padding: 48px 0 33px;
    background: linear-gradient(180deg, var(--black) 0%, rgba(212, 175, 55, 0.1) 50%, var(--black) 100%);
    text-align: center;
}

.cta-content, .cta-section .container { max-width: var(--container-width); margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
.cta-text { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 28px; }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); }
.contact-item .material-icons { color: var(--gold-primary); }

/* === Footer === */
.footer {
    background: transparent;
    padding: 40px 0 24px;
    border-top: 1px solid var(--black-elevated);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-brand { max-width: 280px; }
.footer-brand .logo { display: inline-flex; align-items: center; gap: 8px; }
.footer-brand p { color: var(--text-secondary); margin-top: 10px; font-size: 0.9375rem; line-height: 1.5; }

.footer-nav { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-secondary); text-decoration: none; font-size: 0.9375rem; transition: color var(--transition-fast); }
.footer-nav a:hover { color: var(--gold-primary); }
.footer-nav-sep { width: 1px; height: 1em; background: rgba(212, 175, 55, 0.35); flex-shrink: 0; }

.footer-links, .footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-links a, .footer-legal a { color: var(--text-secondary); text-decoration: none; transition: color var(--transition-fast); }
.footer-links a:hover, .footer-legal a:hover { color: var(--gold-primary); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--black-elevated);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* === Comparison Grid === */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    padding: 20px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    background: var(--gold-gradient);
}

@media (min-width: 768px) {
    .comparison-grid { gap: 0; background: var(--gold-gradient); }

    .comparison-header, .comparison-row {
        display: grid;
        grid-template-columns: 220px 1fr 1fr;
        gap: 0;
    }

    .comparison-header > div, .comparison-row > div {
        background: #0a0a0a;
        padding: 15px;
        display: flex;
        align-items: center;
        border-right: 1px solid transparent;
        border-bottom: 1px solid transparent;
        border-image: linear-gradient(135deg, #B38728, #F9E8B3, #E2B04E, #F9E8B3, #B38728) 1;
    }

    .comparison-header > div:last-child,
    .comparison-row > div:last-child { border-right: none; }

    .comparison-row:last-child > div { border-bottom: none; }

    .comparison-header { background: var(--gold-gradient); border: 1px solid transparent; border-image: linear-gradient(135deg, #B38728, #F9E8B3, #E2B04E) 1; }

    .comparison-header > div,
    .comparison-header-col3 {
        background: transparent !important;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9em;
    }

    .comparison-header .gold-gradient,
    .comparison-header > div span,
    .comparison-header-col3 span {
        color: var(--black) !important;
        -webkit-text-fill-color: var(--black) !important;
        background: none !important;
        background-clip: unset !important;
        -webkit-background-clip: unset !important;
        text-shadow: none;
    }
}

@media (max-width: 767px) {
    .comparison-header { display: none; }

    .comparison-row {
        background: rgba(255,255,255,0.05);
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .comparison-row > div:nth-child(1) { color: var(--gold-primary); font-weight: bold; font-size: 1.1em; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px; }
    .comparison-row > div:nth-child(2)::before { content: "Studio: "; color: #888; font-size: 0.8em; }
    .comparison-row > div:nth-child(3)::before { content: "Personal: "; color: var(--gold-primary); font-size: 0.8em; }
}

/* === Utility Boxes === */
.credo-box {
    border-left: 3px solid var(--gold-primary);
    padding-left: 20px;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
    font-style: italic;
}

/* ✅ Universeller Gold-Gradient-Hover für alle Card-Typen */
.gold-card-hover {
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.gold-card-hover:hover {
    border-color: #E2B04E !important;
    border-width: 3px !important;
    box-shadow: 0 0 20px rgba(226,176,78,1), 0 0 50px rgba(179,135,40,0.9), 0 0 100px rgba(249,232,179,0.6), 0 0 150px rgba(226,176,78,0.3) !important;
}

.conclusion-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0,0,0,0));
    padding: 30px;
    border-radius: 12px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    animation: goldPulse 2s ease-in-out infinite;
}

/* ✅ GOLD-GRADIENT HOVER */
.conclusion-box:hover {
    border-color: #E2B04E;
    border-width: 3px;
    box-shadow: 0 0 20px rgba(226,176,78,1), 0 0 50px rgba(179,135,40,0.9), 0 0 100px rgba(249,232,179,0.6), 0 0 150px rgba(226,176,78,0.3);
}

.goal-list-box {
    border-width: 3px !important;
    animation: goldPulse 2s ease-in-out infinite;
}

/* ✅ GOLD-GRADIENT HOVER */
.goal-list-box:hover {
    border-color: #E2B04E !important;
    border-width: 3px !important;
    box-shadow: 0 0 20px rgba(226,176,78,1), 0 0 50px rgba(179,135,40,0.9), 0 0 100px rgba(249,232,179,0.6), 0 0 150px rgba(226,176,78,0.3);
}

/* Goldene Nummerierung */
.comparison-section .list-gold-circles {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    counter-reset: step;
}

.comparison-section .list-gold-circles li {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.comparison-section .list-gold-circles li:first-child { margin-top: 0; }

.comparison-section .list-gold-circles li::before {
    content: counter(step) ". ";
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    min-width: 2ch;
    text-align: left;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover { transform: translateY(-5px); border-color: var(--gold-primary); }
.benefit-item .font-bold { display: block; margin-bottom: 5px; font-size: 1.1em; }

/* === Utility Classes === */
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.list-decimal { list-style: decimal; padding-left: 1.5rem; }
.list-disc { list-style: disc; padding-left: 1.5rem; }

/* === Legal Pages === */
.legal-page { min-height: 100vh; padding: 100px 24px 80px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 40px; color: var(--gold-primary); }
.legal-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 20px; color: var(--text-primary); }
.legal-content h3 { font-size: 1.2rem; margin-top: 30px; margin-bottom: 15px; color: var(--text-primary); }
.legal-content p, .legal-content li { color: var(--text-secondary); margin-bottom: 15px; line-height: 1.8; }
.legal-content ul { margin-left: 20px; margin-bottom: 20px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-primary); text-decoration: none; margin-bottom: 40px; }
.back-link:hover { text-decoration: underline; }

/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* --- Ernährung (page-ernaehrung / page-ernaehrung-test) --- */
body.page-ernaehrung .hero,
body.page-ernaehrung-test .hero {
    min-height: auto;
    padding: 100px 24px 40px;
    align-items: flex-start;
}

body.page-ernaehrung .hero-cta,
body.page-ernaehrung-test .hero-cta { margin-bottom: 24px; }

body.page-ernaehrung .approach .container,
body.page-ernaehrung-test .approach .container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

body.page-ernaehrung .approach .section-header,
body.page-ernaehrung-test .approach .section-header { text-align: center !important; margin-left: auto; margin-right: auto; }

body.page-ernaehrung .approach .section-title,
body.page-ernaehrung-test .approach .section-title { text-align: center !important; }

body.page-ernaehrung .approach p,
body.page-ernaehrung .approach .section-header p,
body.page-ernaehrung .approach .section-subtitle,
body.page-ernaehrung-test .approach p,
body.page-ernaehrung-test .approach .section-header p,
body.page-ernaehrung-test .approach .section-subtitle { text-align: center !important; }

body.page-ernaehrung .approach ul,
body.page-ernaehrung-test .approach ul { display: inline-block; text-align: left; margin-left: auto; margin-right: auto; }

body.page-ernaehrung .approach .goal-list-box,
body.page-ernaehrung-test .approach .goal-list-box {
    list-style: disc;
    padding: 1rem 3rem !important;
    margin: 1rem auto;
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    max-width: 90%;
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

body.page-ernaehrung .approach .goal-list-box li::marker,
body.page-ernaehrung-test .approach .goal-list-box li::marker { color: var(--gold-primary); }

body.page-ernaehrung .approach .goal-list-box li:last-child,
body.page-ernaehrung-test .approach .goal-list-box li:last-child { margin-bottom: 0; padding-bottom: 0; }

body.page-ernaehrung .approach,
body.page-ernaehrung-test .approach { padding-bottom: 20px; }

body.page-ernaehrung .approach .pillars-grid,
body.page-ernaehrung-test .approach .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
    align-items: stretch;
}

body.page-ernaehrung .approach .pillar-card,
body.page-ernaehrung-test .approach .pillar-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 28px 20px;
}

body.page-ernaehrung .approach .pillar-card.featured,
body.page-ernaehrung-test .approach .pillar-card.featured { padding-top: 44px; }

body.page-ernaehrung .approach .pillar-card p,
body.page-ernaehrung-test .approach .pillar-card p { flex: 1; margin-bottom: 16px; }

body.page-ernaehrung .approach .pillar-card .pillar-features,
body.page-ernaehrung-test .approach .pillar-card .pillar-features { margin-top: auto; }

body.page-ernaehrung .nutrition-overview,
body.page-ernaehrung-test .nutrition-overview { padding-top: 0; padding-bottom: 4px; }

body.page-ernaehrung .nutrition-overview .container,
body.page-ernaehrung-test .nutrition-overview .container { text-align: center; }

body.page-ernaehrung .nutrition-overview .nutrition-intro,
body.page-ernaehrung-test .nutrition-overview .nutrition-intro { margin-bottom: 12px; margin-top: 0; padding-top: 0; }

@keyframes goldPulse {
    0%, 100% {
        border-color: rgba(226, 176, 78, 0.3);
        box-shadow: 0 0 5px rgba(226, 176, 78, 0.2), 0 0 10px rgba(179, 135, 40, 0.1);
    }
    50% {
        border-color: #E2B04E;
        box-shadow: 0 0 20px rgba(226,176,78,1), 0 0 50px rgba(179,135,40,0.9), 0 0 100px rgba(249,232,179,0.6), 0 0 150px rgba(226,176,78,0.3);
    }
}

body.page-ernaehrung .nutrition-intro .section-tag,
body.page-ernaehrung-test .nutrition-intro .section-tag {
    border-width: 3px !important;
    animation: goldPulse 2s ease-in-out infinite !important;
    background: #111111 !important;
}

body.page-ernaehrung .testimonials,
body.page-ernaehrung-test .testimonials { padding-top: 12px; padding-bottom: 12px; }

body.page-ernaehrung .cta-section,
body.page-ernaehrung-test .cta-section { padding-top: 70px !important; padding-bottom: 48px; }

/* --- Fullcoaching / Beratung (page-beratung) --- */
body.page-beratung .hero {
    min-height: auto;
    padding: 100px 24px 40px;
    align-items: flex-start;
}

body.page-beratung .hero-cta { margin-bottom: 24px; }
body.page-beratung .programs { padding-top: 4px; padding-bottom: 4px; }
body.page-beratung .process { padding-top: 4px; }
body.page-beratung .testimonials { padding-top: 40px; padding-bottom: 12px; }
body.page-beratung .cta-section { padding-top: 12px; padding-bottom: 40px; }
body.page-beratung .programs .section-header { margin-bottom: 24px; }
body.page-beratung .section-header { margin-bottom: 28px; }
body.page-beratung .section-title { margin-bottom: 10px; }

body.page-beratung .goal-list-box {
    list-style: disc;
    padding: 1rem 3rem !important;
    margin: 1rem auto;
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    max-width: 90%;
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

body.page-beratung .goal-list-box li::marker { color: var(--gold-primary); }
body.page-beratung .goal-list-box li { margin-bottom: 0.5em; }
body.page-beratung .goal-list-box li:last-child { margin-bottom: 0; }

body.page-beratung .programs ol {
    list-style: none;
    padding-left: 0;
    counter-reset: beratung-num;
}

body.page-beratung .programs ol > li {
    position: relative;
    padding-left: 3.25rem;
    margin-bottom: 1.25rem;
    counter-increment: beratung-num;
}

body.page-beratung .programs ol > li::before {
    content: counter(beratung-num);
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--gold-primary);
    color: var(--black);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

body.page-beratung .programs ul { list-style: none; padding-left: 0; margin: 1.25em 0; }

body.page-beratung .programs ul > li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

body.page-beratung .programs ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
}

/* --- Motivation (page-motivation) --- */
body.page-motivation .hero {
    min-height: auto;
    padding: 100px 24px 40px;
    align-items: flex-start;
}

body.page-motivation .hero-title    { margin-bottom: 12px; }
body.page-motivation .hero-subtitle { margin-bottom: 12px; }
body.page-motivation .hero-text     { margin-bottom: 24px; }
body.page-motivation .hero-cta      { margin-bottom: 24px; }

body.page-motivation .about {
    padding-top: 28px;
    padding-bottom: 28px;
}

body.page-motivation .about-grid { grid-template-columns: 1fr; gap: 0; max-width: 1400px; margin: 0 auto; }
body.page-motivation .about-image { display: none; }
body.page-motivation .about-content { text-align: center; }
body.page-motivation .about-content .section-title,
body.page-motivation .about-content h2 { text-align: center !important; }
body.page-motivation .about-content p { text-align: center; margin-left: auto; margin-right: auto; }

body.page-motivation .approach { padding-top: 28px; padding-bottom: 28px; }

body.page-motivation .approach .section-header {
    text-align: center !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75em;
}

body.page-motivation .approach .section-title { text-align: center !important; }
body.page-motivation .approach p,
body.page-motivation .approach .section-header p { text-align: center !important; }

body.page-motivation .approach .pillars-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1300px;
    margin: 40px auto 0;
    gap: 30px;
    align-items: stretch;
}

body.page-motivation .pillar-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 30px 40px;
    text-align: center;
}

body.page-motivation .pillar-badge { white-space: nowrap; top: -5px; }
body.page-motivation .pillar-card p { text-align: center !important; margin-top: 15px; }
body.page-motivation .pillar-card h3 { margin-top: 20px; line-height: 1.2; }

body.page-motivation .process { padding-top: 28px; padding-bottom: 28px; }

body.page-motivation .process .section-header {
    text-align: center !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

body.page-motivation .process .section-title { text-align: center !important; }

body.page-motivation .cta-section .container { max-width: var(--container-width) !important; }
body.page-motivation .cta-title,
body.page-motivation .cta-text,
body.page-motivation .cta-buttons { max-width: none !important; width: auto !important; }

/* --- Über mich (page-ueber-mich) --- */
body.page-ueber-mich .hero {
    min-height: auto;
    padding: 100px 24px 40px;
    align-items: flex-start;
}

body.page-ueber-mich .hero-title    { margin-bottom: 12px; }
body.page-ueber-mich .hero-subtitle { margin-bottom: 10px; }
body.page-ueber-mich .hero-text     { margin-bottom: 18px; }
body.page-ueber-mich .hero-cta      { margin-bottom: 10px; }

body.page-ueber-mich .goal-list-box {
    list-style: disc;
    list-style-position: outside;
    padding: 1rem 2.5rem !important;
    margin: 1rem auto;
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    max-width: 90%;
    display: block;
    text-align: left !important;
    padding-bottom: 1rem !important;
    background: #111111 !important;
}

body.page-ueber-mich .goal-list-box li { margin-bottom: 0.5em; text-align: center; }
body.page-ueber-mich .goal-list-box li::marker { color: var(--gold-primary); }
body.page-ueber-mich .goal-list-box li:last-child { margin-bottom: 0; }

body.page-ueber-mich .page-content-inner {
    max-width: 1440px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
    padding: 0 24px;
}

body.page-ueber-mich .about-extra { width: 100%; box-sizing: border-box; }

body.page-ueber-mich .about-extra .container {
    max-width: 1440px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    text-align: center !important;
}

body.page-ueber-mich .about-extra .about-extra-inner {
    display: block !important;
    max-width: 1440px;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    box-sizing: border-box;
}

body.page-ueber-mich .about-extra .about-extra-inner *,
body.page-ueber-mich .about-extra .container * { text-align: center !important; }

body.page-ueber-mich .about-extra .goal-list-box { margin-left: auto; margin-right: auto; background: #111111 !important; }

/* --- Training (page-tight) --- */
body.page-tight .hero {
    padding: 100px 24px 40px !important;
    min-height: auto;
}

body.page-tight .hero-cta     { margin-bottom: 12px; }
body.page-tight .approach     { padding-top: 2px; padding-bottom: 2px; }
body.page-tight .testimonials { padding-top: 2px; }
body.page-tight .about        { display: none; }

body.page-tight section { padding: 12px 0; }
body.page-tight .cta-section { padding-top: 70px !important; }
body.page-tight .section-header { margin-bottom: 10px; }

body.page-tight .hero-text          { max-width: 600px !important; margin-left: auto !important; margin-right: auto !important; }
body.page-tight .pillar-card.border { max-width: 900px !important; margin-left: auto !important; margin-right: auto !important; }
body.page-tight .conclusion-box     { max-width: 900px !important; margin-left: auto !important; margin-right: auto !important; }
body.page-tight .conclusion-box.pulse-700 { max-width: 700px !important; animation: goldPulse 2s ease-in-out infinite !important; border-width: 3px !important; }

body.page-tight .approach .container      { text-align: center; max-width: var(--container-width); margin-left: auto; margin-right: auto; }
body.page-tight .approach .section-header { text-align: center !important; margin-left: auto; margin-right: auto; }
body.page-tight .approach .section-title  { text-align: center !important; }

body.page-tight .approach p,
body.page-tight .approach li,
body.page-tight .approach .section-header p { text-align: center !important; }

body.page-tight .approach ul { display: inline-block; text-align: left; list-style: none; padding-left: 0; }
body.page-tight .approach ul li::marker { content: none; }

body.page-tight h3, body.page-tight p, body.page-tight h5 {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-tight h3.maass-headline {
    max-width: 1400px !important;
}

body.page-tight .scroll-indicator { left: 50%; right: auto; margin-left: -16px; bottom: 4px; }

/* h5.animate-in global max-width */
h5.animate-in {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* === Animations & Particles === */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

#particles, #particles.hero-particles {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

@keyframes float {
    0%   { transform: translateY(0) rotate(0deg); }
    50%  { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@keyframes floatStar {
    0%   { transform: translate(0, 0); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translate(var(--move-x), var(--move-y)); opacity: 0; }
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(226,176,78,0.6) 100%);
    box-shadow: 0 0 10px rgba(226, 176, 78, 0.5);
    opacity: 0;
    animation: floatStar 35s linear infinite;
}

/* === Admin Editor === */
body.rb-admin-active .rb-editor-highlight { outline: 2px dashed #D4AF37 !important; outline-offset: 2px; cursor: text !important; }
body.rb-admin-active .rb-editor-active    { outline: 2px solid #D4AF37 !important; outline-offset: 2px; background-color: rgba(212, 175, 55, 0.05); }
body.rb-admin-active img { cursor: pointer !important; }

#rb-floating-toolbar {
    position: absolute;
    z-index: 2147483640;
    background: #0A0A0A;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    font-family: 'Outfit', sans-serif;
    transform: translateY(-120%);
    margin-top: -8px;
    flex-wrap: wrap;
    max-width: 400px;
}

.rb-tool-btn { background: #2a2a2a; color: #eee; border: 1px solid #444; border-radius: 3px; width: 28px; height: 28px; cursor: pointer; font-size: 14px; font-weight: bold; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.rb-tool-btn:hover { background: #D4AF37; border-color: #D4AF37; color: #000; }
.rb-tool-sep { width: 1px; height: 20px; background: #444; margin: 0 4px; }
.rb-tool-select { background: #2a2a2a; color: #eee; border: 1px solid #444; border-radius: 3px; height: 28px; font-size: 11px; padding: 0 4px; cursor: pointer; }

.rb-img-overlay { position: absolute; display: flex; gap: 8px; background: rgba(0,0,0,0.85); padding: 6px; border-radius: 6px; z-index: 2147483647 !important; pointer-events: auto; box-shadow: 0 4px 12px rgba(0,0,0,0.5); border: 1px solid rgba(212,175,55,0.3); }
.rb-img-btn { width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; transition: all 0.2s; box-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.rb-btn-delete  { background: #ef4444; }
.rb-btn-replace { background: #3b82f6; }
.rb-img-btn:hover { transform: scale(1.1); filter: brightness(1.2); }

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

@media (max-width: 1024px) {
    .navbar {
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        min-height: 56px;
        padding: 12px 0 !important;
    }

    .nav-container { padding-left: 16px; padding-right: 16px; min-height: 44px; }
    .logo { min-width: 0; flex-shrink: 0; }
    .logo-text { font-size: 1.25rem; }
    .logo, .nav-actions { flex: auto; }

    .nav-links {
        position: fixed !important;
        top: 0; right: 0;
        width: 100%; height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active { transform: translateX(0); }
    .nav-links a { font-size: 1.5rem; }
    .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; z-index: 1000; }

    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .pillars-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .values-cards-row--first { grid-template-columns: 1fr; }
    .values-cards-row--second { width: 100%; }
    .programs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    body.page-motivation .approach .pillars-grid { grid-template-columns: repeat(2, 1fr); }

    body.page-ernaehrung .approach .pillars-grid,
    body.page-ernaehrung-test .approach .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    body.page-ernaehrung .approach .pillar-card,
    body.page-ernaehrung-test .approach .pillar-card { min-height: 220px; }

    .hero-stats { gap: 30px; }
    .process-step { grid-template-columns: 60px 1fr; }
    .step-icon { display: none; }
    .process-timeline::before { left: 30px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 40px 0; }

    .hero { padding: 72px 16px 40px; min-height: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
    .hero-content { width: 100%; max-width: 100%; }
    .hero-cta > div { display: none !important; }
    .hero-title { font-size: 2rem; margin-bottom: 12px; line-height: 1.1; }
    .hero-subtitle { font-size: 1.2rem; margin-bottom: 12px; }
    .hero-text { margin-bottom: 16px; }
    .hero-badge { margin-bottom: 20px; }
    .hero-cta { flex-direction: column; align-items: center; margin-bottom: 24px; }
    .hero-stats { flex-direction: column; gap: 16px; padding-top: 20px; margin-bottom: 0; }
    .hero-stats .stat-divider { display: none; }

    .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .contact-info { flex-direction: column; align-items: center; gap: 16px; }

    .about, .programs, .approach, .testimonials, .cta-section { padding-top: 36px; padding-bottom: 36px; }

    .about-grid { gap: 32px; }
    .about-image { display: flex; justify-content: center; }
    .image-frame { max-width: 80%; }

    .section-header { margin-bottom: 24px; }

    .programs-grid { grid-template-columns: 1fr; grid-template-rows: unset; min-height: 0; }
    .programs-grid, .testimonials-grid { gap: 20px; }
    .pillar-card, .program-card, .testimonial-card { padding: 24px 16px; }
    .pillar-card.featured { padding-top: 44px; }
    .pillar-card.featured .pillar-badge { top: 0; left: 50%; transform: translate(-50%, -50%); font-size: 0.7rem; padding: 6px 12px; text-align: center; }

    .footer-content { flex-direction: column; text-align: center; align-items: center; gap: 16px; margin-bottom: 16px; }
    .footer-nav { justify-content: center; }
    .footer-nav-sep { display: none; }
    .footer-links, .footer-legal { flex-wrap: wrap; justify-content: center; }
    .footer-bottom { padding-top: 14px; }

    .container { padding-left: 16px; padding-right: 16px; }

    .scroll-indicator { display: none !important; }
    #admin-trigger { display: none !important; }
    .navbar { height: auto !important; min-height: auto !important; }

    body.page-motivation .approach .pillars-grid { grid-template-columns: repeat(2, 1fr); }

    body.page-ernaehrung .approach .pillars-grid,
    body.page-ernaehrung-test .approach .pillars-grid { grid-template-columns: 1fr; gap: 16px; }

    body.page-ernaehrung .approach .pillar-card,
    body.page-ernaehrung-test .approach .pillar-card { min-height: 0; }

    body.page-ernaehrung .hero,
    body.page-ernaehrung-test .hero,
    body.page-beratung .hero,
    body.page-motivation .hero,
    body.page-ueber-mich .hero { padding-top: 72px; padding-left: 16px; padding-right: 16px; padding-bottom: 16px; }

    body.page-ernaehrung .hero,
    body.page-ernaehrung-test .hero { padding-bottom: 8px; }

    body.page-ernaehrung .hero-cta,
    body.page-ernaehrung-test .hero-cta { margin-bottom: 8px; }

    body.page-beratung .hero { padding-bottom: 8px; }
    body.page-beratung .hero-cta { margin-bottom: 8px; }
    body.page-beratung .programs { padding-top: 12px; padding-bottom: 12px; }
    body.page-beratung .cta-section { padding-top: 12px; }

    body.page-tight .hero { padding-bottom: 8px !important; }
    body.page-tight .hero-cta { margin-bottom: 8px; }
    body.page-tight .approach { padding-top: 12px; }

    /* Ernährungs-Tabelle Mobile: gestapelte Karten */
    body.page-ernaehrung .nutrition-overview .premium-table thead,
    body.page-ernaehrung-test .nutrition-overview .premium-table thead { display: none; }

    body.page-ernaehrung .nutrition-overview .premium-table tr,
    body.page-ernaehrung-test .nutrition-overview .premium-table tr { display: block; margin-bottom: 1rem; padding: 12px; border: 1px solid rgba(212, 175, 55, 0.25); border-radius: var(--radius-md); background: var(--black-card); }

    body.page-ernaehrung .nutrition-overview .premium-table td,
    body.page-ernaehrung-test .nutrition-overview .premium-table td { display: block; padding: 6px 0 8px; border: none; text-align: left; }

    body.page-ernaehrung .nutrition-overview .premium-table td::before,
    body.page-ernaehrung-test .nutrition-overview .premium-table td::before { content: attr(data-label); display: block; font-weight: 700; color: var(--gold-primary); font-size: 0.8rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
}
