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

/* === CSS Variables === */
:root {
    /* Gold Palette - Premium Metallic */
    --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 Palette */
    --silver-primary: #C0C0C0;
    --silver-light: #E8E8E8;
    --silver-dark: #808080;
    --silver-gradient: linear-gradient(135deg, #606060 0%, #E8E8E8 25%, #C0C0C0 50%, #E8E8E8 75%, #606060 100%);

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

    /* Text Colors */
    --text-primary: #C0C0C0;
    --text-secondary: #909090;
    --text-muted: #606060;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1440px;

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

    /* Border Radius */
    --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;
}

/* Fließtext in h3 unter Section-Titeln: gleiche Zeilenhöhe wie Absätze */
h5.section-title + h3,
h2.section-title + h3 {
    line-height: 1.6;
}

/* Intro-Block nach Hero („Mal ganz ehrlich“, „Schluss mit der Fitness-Fassade“ etc.): engere Zeilenhöhe */
.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);
    /* Fallback */
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.silver-gradient {
    color: var(--silver-primary);
    /* Fallback */
    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));
}

@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;
    /* Center text/icons inside */
    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: 800px;
    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;
    /* Balance for centering */
}

.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;
    /* Balance for centering */
    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 (fixiert, kompakt, keine volle Breite) === */
#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 nach oben (Pfeil) – Stil der Seite === */
#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 === */
/* Index wie andere Seiten: gleicher Abstand „Fit in 12 Wochen“ (28px oben, Inhalt von oben) */
/* Abstand oben: Navbar ist fixed, Hero braucht genug Platz – „Fit in 12 Wochen“ unter der Nav */
.hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 100px 24px 40px;
    overflow: hidden;
}

/* Ernährungsseite: Hero wie Index – gleiche Abstände wie alle Seiten (Badge immer gleiche Stelle) */
body.page-ernaehrung .hero,
body.page-ernaehrung-test .hero {
    min-height: auto;
    padding: 100px 24px 40px;
    align-items: flex-start;
}

/* Weniger Abstand unter Hero-Buttons auf Ernährungsseite */
body.page-ernaehrung .hero-cta,
body.page-ernaehrung-test .hero-cta {
    margin-bottom: 24px;
}

/* Ernährungsseite: Layout wie Index – Standard-Container, Inhalte zentriert */
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;
}
/* Listen und Zitate in der Mitte (Block zentriert, Listentext linksbündig) */
body.page-ernaehrung .approach ul,
body.page-ernaehrung-test .approach ul {
    display: inline-block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

/* Liste „Maßgeschneidert…“: goldene Punkte, abgerundete Umrandung */
body.page-ernaehrung .approach .goal-list-box,
body.page-ernaehrung-test .approach .goal-list-box {
    list-style: disc;
    padding: calc(1.25rem - 10px) calc(3.5rem - 15px) calc(1.25rem - 10px) calc(4rem - 15px) !important;
    margin: 1rem auto;
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    max-width: 90%;
}
body.page-ernaehrung .approach .goal-list-box li::marker,
body.page-ernaehrung-test .approach .goal-list-box li::marker {
    color: var(--gold-primary);
}

/* Fullcoaching: gleiche goldene Punkte und Umrandung wie „Maßgeschneidert“-Liste */
body.page-beratung .goal-list-box {
    list-style: disc;
    padding: calc(1.25rem - 10px) calc(3.5rem - 15px) calc(1.25rem - 10px) calc(4rem - 15px) !important;
    margin: 1rem auto;
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    max-width: 90%;
    display: inline-block;
}
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;
}

/* Über-mich: gleiche goldene Listen-Box wie Fullcoaching */
body.page-ueber-mich .goal-list-box {
    list-style: disc;
    list-style-position: inside;
    padding: calc(1.25rem - 10px) calc(3.5rem - 15px) calc(1.25rem - 10px) 1.75em !important;
    margin: 1rem auto;
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    max-width: 90%;
    display: block;
    text-align: center;
}
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 .goal-list-box {
    padding-bottom: 0 !important;
}

/* Weniger Abstand unter der goldenen Listen-Box (wie oben) */
.approach .goal-list-box {
    margin-bottom: 0;
    padding-bottom: 0 !important;
}
body.page-beratung .approach .goal-list-box {
    margin-bottom: 0;
    padding-bottom: 0 !important;
}
body.page-ernaehrung .approach .goal-list-box,
body.page-ernaehrung-test .approach .goal-list-box {
    margin-bottom: 0;
    padding-bottom: 0 !important;
}
.approach .goal-list-box li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
/* Überschrift direkt nach der Box ohne zusätzlichen Abstand */
.approach .goal-list-box + h2.section-title,
.approach .goal-list-box + p {
    margin-top: 0;
}
/* Alle Überschriften in .approach: einheitlich h2.section-title, enger Zeilenabstand */
.approach h2.section-title,
.approach .section-title {
    line-height: 0.85;
}

body.page-ernaehrung .approach blockquote,
body.page-ernaehrung .approach p:has(.gold-gradient),
body.page-ernaehrung-test .approach blockquote,
body.page-ernaehrung-test .approach p:has(.gold-gradient) {
    text-align: center !important;
}
/* Ernährungsseite: 4 Cards nebeneinander, gleiche Höhe, zentriert */
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;
}

/* Ernährungsseite: weniger Abstand oben bei „Die goldene Regel“, Tabelle zentrieren */
body.page-ernaehrung .nutrition-overview,
body.page-ernaehrung-test .nutrition-overview {
    padding-top: 0;
    padding-bottom: 4px;
}
/* Weniger Abstand vor dem Block „Die goldene Regel“ (Programs-Sektion davor) */
body.page-ernaehrung .programs,
body.page-ernaehrung-test .programs {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
body.page-ernaehrung .approach,
body.page-ernaehrung-test .approach {
    padding-bottom: 20px;
}
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;
}
body.page-ernaehrung .nutrition-overview .nutrition-intro > *:first-child,
body.page-ernaehrung-test .nutrition-overview .nutrition-intro > *:first-child {
    margin-top: 0 !important;
}
body.page-ernaehrung .nutrition-overview .nutrition-intro .section-title,
body.page-ernaehrung .nutrition-overview .nutrition-intro h6,
body.page-ernaehrung .nutrition-overview .nutrition-intro p,
body.page-ernaehrung-test .nutrition-overview .nutrition-intro .section-title,
body.page-ernaehrung-test .nutrition-overview .nutrition-intro h6,
body.page-ernaehrung-test .nutrition-overview .nutrition-intro p {
    margin-top: 0.35em;
    margin-bottom: 0.35em;
}
/* Ernährungs-Tabelle wie Training-Vergleichstabelle: Gold-Rahmen, abgerundet, 900px */
body.page-ernaehrung .nutrition-overview .table-container,
body.page-ernaehrung-test .nutrition-overview .table-container {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    max-width: 900px;
    padding: 20px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    background: var(--gold-gradient);
    display: block;
    text-align: left;
}
body.page-ernaehrung .nutrition-overview .premium-table,
body.page-ernaehrung-test .nutrition-overview .premium-table {
    font-size: 1rem;
    width: 100%;
    border-collapse: collapse;
}
body.page-ernaehrung .nutrition-overview .premium-table thead th,
body.page-ernaehrung-test .nutrition-overview .premium-table thead th {
    background: var(--gold-gradient);
    color: var(--black) !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    border-right: 1px solid var(--gold-primary);
    border-bottom: 1px solid var(--gold-primary);
    font-size: 0.9em;
}
body.page-ernaehrung .nutrition-overview .premium-table thead th:last-child,
body.page-ernaehrung-test .nutrition-overview .premium-table thead th:last-child {
    border-right: none;
}
body.page-ernaehrung .nutrition-overview .premium-table thead th .gold-gradient,
body.page-ernaehrung-test .nutrition-overview .premium-table thead th .gold-gradient {
    color: var(--black) !important;
    -webkit-text-fill-color: var(--black) !important;
    background: none !important;
    background-clip: unset !important;
}
body.page-ernaehrung .nutrition-overview .premium-table tbody td,
body.page-ernaehrung-test .nutrition-overview .premium-table tbody td {
    background: #0a0a0a;
    padding: 15px;
    border-right: 1px solid var(--gold-primary);
    border-bottom: 1px solid var(--gold-primary);
}
body.page-ernaehrung .nutrition-overview .premium-table tbody td:last-child,
body.page-ernaehrung-test .nutrition-overview .premium-table tbody td:last-child {
    border-right: none;
}
body.page-ernaehrung .nutrition-overview .premium-table tbody tr:last-child td,
body.page-ernaehrung-test .nutrition-overview .premium-table tbody tr:last-child td {
    border-bottom: none;
}
body.page-ernaehrung .nutrition-overview .premium-table th:first-child,
body.page-ernaehrung .nutrition-overview .premium-table td:first-child,
body.page-ernaehrung-test .nutrition-overview .premium-table th:first-child,
body.page-ernaehrung-test .nutrition-overview .premium-table td:first-child {
    width: 140px;
    min-width: 140px;
}
body.page-ernaehrung .nutrition-overview .premium-table tbody td:first-child,
body.page-ernaehrung-test .nutrition-overview .premium-table tbody td:first-child {
    color: var(--gold-primary);
    font-weight: bold;
}
body.page-ernaehrung .nutrition-overview .premium-table tbody td .silver-gradient,
body.page-ernaehrung-test .nutrition-overview .premium-table tbody td .silver-gradient {
    color: #e0e0e0;
}
/* Weniger Abstand zwischen Tabelle und CTA (Testimonials dazwischen kompakt) */
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: 20px;
    padding-bottom: 48px;
}

/* Leere Divs auf Ernährungsseite erzeugen keinen Abstand */
body.page-ernaehrung .nutrition-overview .nutrition-intro div:empty,
body.page-ernaehrung-test .nutrition-overview .nutrition-intro div:empty,
body.page-ernaehrung .section-header:empty,
body.page-ernaehrung-test .section-header:empty {
    display: none;
}
body.page-ernaehrung .hero-cta .bg-black-card:empty,
body.page-ernaehrung-test .hero-cta .bg-black-card:empty {
    display: none;
}

/* Beratungsseite/Fullcoaching: Hero wie Index – gleiche Abstände (Badge immer gleiche Stelle) */
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,
body.page-beratung .process {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Lücke zwischen Bullet-Liste und "Erstgespräch" verkleinern */
body.page-beratung .programs {
    padding-bottom: 4px;
}
body.page-beratung .process {
    padding-top: 4px;
}

/* Deutlich weniger Abstand zwischen Testimonials und CTA (war zu groß) */
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;
}

/* Beratung: Zahlen und Punkte im Bild-Stil (gold, klar sichtbar) */
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 ol>li p {
    margin: 0;
}

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

body.page-beratung .programs ul>li p {
    margin: 0;
}

/* Beratung: Vergleichstabelle Studio-Trainer vs. 1:1 Coach */
body.page-beratung .comparison-table-wrap {
    overflow-x: auto;
}

body.page-beratung .comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.3);
}

body.page-beratung .comparison-table th,
body.page-beratung .comparison-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    vertical-align: top;
}

body.page-beratung .comparison-table th {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-primary);
    font-weight: 600;
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
}

body.page-beratung .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

body.page-beratung .comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

body.page-beratung .comparison-table td strong {
    color: var(--gold-primary);
}

@media (max-width: 640px) {

    body.page-beratung .comparison-table th,
    body.page-beratung .comparison-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Motivationsseite: Hero wie Index – gleiche Abstände (Badge immer gleiche Stelle) */
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;
}

/* Über-mich: Hero wie Index – gleiche Abstände (Badge immer gleiche Stelle) */
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;
}

/* Training (page-tight): Hero wie Index – gleiche Abstände (Badge immer gleiche Stelle) */
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: 16px;
    padding-bottom: 36px;
}
/* Training: wie Index – Standard-Containerbreite, Inhalte zentriert */
body.page-tight .approach .container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
body.page-tight .approach .section-header {
    text-align: center !important;
    max-width: 100%;
    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;
}

/* Motivationsseite: Direkt nach Hero – About weniger Abstand, Inhalt zentrieren */
body.page-motivation .about {
    padding-top: 28px;
    padding-bottom: 28px;
}

body.page-motivation .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 700px;
    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;
}

/* Motivationsseite: Approach-Block zentrieren, weniger Abstand oben/unten */
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;
}

/* Motivationsseite: alle vier Karten in einer Reihe */
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 .approach p,
body.page-motivation .approach .section-header p {
    text-align: center !important;
}

/* Motivationsseite: Process-Block („Keine Ausreden“ + Zitat) zentrieren, wenig Abstand */
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;
}

.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: 1px solid rgba(255, 255, 255, 0.1);
    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-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-card) 0%, var(--black-elevated) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px solid var(--silver-dark);
}

.image-placeholder .material-icons {
    font-size: 80px;
    color: var(--gold-primary);
}

.image-placeholder p {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

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

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

/* Drei Sektionen: links bündig mit gelber Schrift, größere Schrift */
.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;
}

/* Liste ohne eigene Nummerierung (Nummern nur im Text) */
.list-plain {
    list-style: none;
    padding-left: 0;
    margin: 1em 0;
}

.list-plain li {
    margin-bottom: 0.75em;
}

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

/* Erste Zeile „Ich betreue unter anderem:“ unterstrichen, wenig Abstand zur Liste */
.approach .approach-list-intro {
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: 0.25em;
}

/* Trennlinie vor „Was kostet“ und „Was erwartet dich“ */
.approach h2.section-title.approach-divider {
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    margin-top: 1.25em;
    padding-top: 1.25em;
}

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

.pillar-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(226, 176, 78, 0.35), 0 0 50px rgba(226, 176, 78, 0.15);
}

.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-icon-img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.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 (Abstände wie MEIN ANSATZ / pillar-cards) === */
.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);
}

.program-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(226, 176, 78, 0.3), 0 0 40px rgba(226, 176, 78, 0.12);
}

.program-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Button immer an unterer Linie der Karte (auch wenn in div gewrappt) */
.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-Cards: Anfragen-Button wie Referenz – Gold-Verlauf, dunkler Text, zentriert */
.program-card .btn {
    color: var(--black);
    background: var(--gold-gradient);
    border: none;
}
.program-card .btn:hover {
    background: var(--gold-gradient);
    border: none;
    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.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--black-card) 100%);
}

.program-card.featured:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(226, 176, 78, 0.3), 0 0 40px rgba(226, 176, 78, 0.12);
}

.program-card .btn-outline:hover {
    box-shadow: 0 0 18px rgba(226, 176, 78, 0.4), 0 0 30px rgba(226, 176, 78, 0.2);
}

.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;
    word-wrap: break-word;
}

.program-result {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-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: Zeile 1 = 3 Spalten, Zeile 2 = neues Grid mit 2 Karten gleicher Größe, zentriert */
.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;
}

/* Intro-Text nach Werte-Cards: gleiche Max-Breite wie Section-Header, nicht vom Grid aufgezogen */
.index-intro-text-wrap {
    max-width: 800px;
    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);
}

.testimonial-card:hover {
    border-color: var(--gold-primary);
}

.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 === */
/* Zusatz-Sections: Inhalt zentriert, eine Ebene weniger */
.about-extra .container,
.testimonial-extra .container {
    text-align: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Über-mich: Wrapper von About bis Ende About-extra – zentriert, max 1440px (Rahmen zur Kontrolle) */
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;
}
/* Über-mich: about-extra – Section volle Breite, Container + Wrapper zentriert, max 1440px */
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 .about-extra-inner *::before,
body.page-ueber-mich .about-extra .about-extra-inner *::after {
    text-align: center !important;
}
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;
}

.about-extra .container h3,
.testimonial-extra .container h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-extra .container p,
.testimonial-extra .container p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.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-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

/* Legacy-Klassen für Kompatibilität mit anderen Seiten */
.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;
}

/* === Responsive Design === */
@media (max-width: 1024px) {

    /* Navbar auf Tablet/Mobil immer sichtbar (Hintergrund + Platz) */
    .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;
        /* Hide button on mobile bar, it should be in the menu */
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
    }

    /* Add CTA to mobile menu via pseudo or we might need it in HTML */
    .nav-links::after {
        content: 'Coach Marek';
        color: var(--gold-primary);
        font-weight: 800;
        margin-top: 20px;
        opacity: 0.5;
    }

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

    /* Programme: 3 Karten bleiben bis 768px nebeneinander */
    .programs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* Motivationsseite: ab Tablet 2 Spalten (4 Cards = 2x2) */
    body.page-motivation .approach .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Ernährungsseite: ab Tablet 2 Spalten, gleiche Kartenhöhe */
    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) {

    /* Section-Abstände auf Handy reduzieren */
    :root {
        --section-padding: 40px 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stats .stat-divider {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

    /* Bild auf Mobile zentrieren und größer */
    .about-image {
        display: flex;
        justify-content: center;
    }

    .image-frame {
        max-width: 80%;
    }

    /* Abstände auf Mobile kompakter */
    .section-header {
        margin-bottom: 24px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        min-height: 0;
    }

    .pillar-card,
    .program-card,
    .testimonial-card {
        padding: 24px 16px;
    }

    /* Motivation: „Beliebtestes Paket“-Badge klar über der Karte, kein Überlappen mit Titel */
    .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;
    }

    /* Ernährungsseite: 3-Spalten-Tabelle auf Mobil als gestapelte Karten (alle Spalten lesbar) */
    body.page-ernaehrung .nutrition-overview .table-container,
    body.page-ernaehrung-test .nutrition-overview .table-container {
        width: 100%;
        max-width: 100%;
        overflow-x: visible;
    }
    body.page-ernaehrung .nutrition-overview .premium-table,
    body.page-ernaehrung-test .nutrition-overview .premium-table {
        width: 100%;
        font-size: 1rem;
    }
    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;
    }
    body.page-ernaehrung .nutrition-overview .premium-table td:first-child::before,
    body.page-ernaehrung-test .nutrition-overview .premium-table td:first-child::before {
        font-size: 0.95rem;
        text-transform: none;
    }

    /* Hero auf Handy: Abstand oben mind. Navbar-Höhe, damit „Fit in 12 Wochen“ nicht unter der Nav klebt */
    .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%;
    }

    /* Leere Karten im Hero ausblenden, damit Titel/Buttons sichtbar bleiben */
    .hero-cta>div {
        display: none !important;
    }

    .hero-text {
        margin-bottom: 24px;
    }

    .hero-cta {
        margin-bottom: 24px;
    }

    .hero-stats {
        padding-top: 20px;
        margin-bottom: 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;
    }

    /* Ernährungsseite Mobil: minimaler Abstand zwischen Hero-Buttons und nächstem Block */
    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-ernaehrung .about,
    body.page-ernaehrung-test .about {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    body.page-ernaehrung .approach,
    body.page-ernaehrung-test .approach {
        padding-top: 12px;
    }

    /* Beratungsseite Mobil: weniger Abstand zwischen Hero und nächstem Block */
    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;
    }

    /* Trainingsseite Mobil: minimaler Abstand Hero → Approach */
    body.page-tight .hero {
        padding-bottom: 8px !important;
    }
    body.page-tight .hero-cta {
        margin-bottom: 8px;
    }
    body.page-tight .approach {
        padding-top: 12px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Sections mit eigenem Padding kompakter */
    .about,
    .programs,
    .approach,
    .testimonials,
    .cta-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .programs .section-header,
    .testimonials .section-header,
    .cta-section .section-header {
        margin-bottom: 24px;
    }

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

    .footer-bottom {
        padding-top: 14px;
    }

    .about-grid {
        gap: 32px;
    }

    .programs-grid,
    .testimonials-grid {
        gap: 20px;
    }

    /* Motivationsseite Mobil: 4 Cards in 2 Spalten (2 pro Zeile) */
    body.page-motivation .approach .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Ernährungsseite Mobil: 4 Cards untereinander, einheitliche Breite */
    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;
    }

    /* Fix spacing around Headline on Mobile */
    .hero-title {
        margin-bottom: 12px;
        margin-top: 0;
        line-height: 1.1;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 12px;
    }

    .hero-text {
        margin-bottom: 16px;
    }

    /* Ensure Navbar doesn't expand */
    .navbar {
        height: auto !important;
        min-height: auto !important;
    }

    /* Hide Editor Trigger on Mobile */
    #admin-trigger {
        display: none !important;
    }

    .scroll-indicator {
        display: none !important;
    }
}

/* === Aus HTML ausgelagert: Animation, Partikel, Admin-Editor === */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Partikel-Layer aus dem Layoutfluss – verhindert riesigen Abstand oben (Inline position:relative überschreiben) */
#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 (rb-*) – nur wenn im Einsatz */
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-tool-color-wrapper { position: relative; width: 28px; height: 28px; border-radius: 3px; overflow: hidden; border: 1px solid #444; cursor: pointer; }
.rb-tool-color { position: absolute; top: -2px; left: -2px; width: 32px; height: 32px; padding: 0; margin: 0; border: none; 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); }
#rb-debug-badge {
    position: fixed; bottom: 10px; right: 10px; background: #D4AF37; color: #000;
    padding: 4px 8px; font-size: 10px; border-radius: 4px; z-index: 2147483647;
    pointer-events: none; opacity: 0.8; font-family: monospace;
}
.rb-drag-over {
    outline: 2px solid #D4AF37 !important; outline-offset: 2px;
    background-color: rgba(212, 175, 55, 0.08) !important;
}

/* Training-Seite: reduzierte Abstände (Hero wie alle Seiten: 24px seitlich, Badge gleiche Stelle) */
body.page-tight section { padding: 12px 0; }
body.page-tight .section-header { margin-bottom: 10px; }
body.page-tight .hero { padding: 100px 24px 40px; min-height: auto; }
body.page-tight .about { display: none; }
body.page-tight .approach { padding-top: 2px; padding-bottom: 2px; }
body.page-tight .testimonials { padding-top: 2px; }
body.page-tight .approach ul { list-style: none; padding-left: 0; }
body.page-tight .approach ul li::marker { content: none; }
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; }
body.page-tight .scroll-indicator { left: 50%; right: auto; margin-left: -16px; bottom: 4px; }

/* Text um 30% schmaler (nur bei .page-content-narrow) */
body.page-content-narrow .approach .section-header,
body.page-content-narrow .approach .content-block,
body.page-content-narrow .approach .comparison-section,
body.page-content-narrow .approach ul:not(.nav-links),
body.page-content-narrow .approach ol,
body.page-content-narrow .approach h3 {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}
body.page-content-narrow .cta-section .cta-content {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile: volle Breite nutzen (~390px Bildschirm) */
@media (max-width: 768px) {
    body.page-content-narrow .approach .section-header,
    body.page-content-narrow .approach .content-block,
    body.page-content-narrow .approach .comparison-section,
    body.page-content-narrow .approach ul:not(.nav-links),
    body.page-content-narrow .approach ol,
    body.page-content-narrow .approach h3 {
        max-width: 100%;
    }
    body.page-content-narrow .cta-section .cta-content {
        max-width: 100%;
    }
    body.page-content-narrow .approach .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* === Impressum / Datenschutz (Legal-Seiten) === */
.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;
}
/* === Training Page Grid Layout === */
.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;
}

/* Comparison Grid (statt Tabelle) – Gold-Gradient überall */
.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: 140px 1fr 1fr; /* Merkmal fest schmal, beide anderen Spalten teilen Rest gleich */
        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;
    }
    
    /* Kopfzeile mit Gold-Gradient */
    .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;
    }
    
    /* Header-Text wie Button-Beschriftung: dunkel auf Gold (wie „Strategiegespräch buchen“) */
    .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;
    }
}

/* Mobile Fallback für Comparison */
@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) { /* Label */
        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;
    }
}

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

.conclusion-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0,0,0,0));
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.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; }

/* Goldene Nummerierung ohne Kreise (Ablauf + Qualitäten) */
.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;
}

/* ===== Über-mich: Letzte Priorität – Wrapper von oben bis zur Überschrift, zentriert, max 1440px (Rahmen zur Kontrolle) ===== */
body.page-ueber-mich .page-content-inner {
  max-width: 1440px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 24px;
}
body.page-ueber-mich section.about-extra {
  width: 100% !important;
}
/* Process-Timeline im Wrapper breiter nutzen, weniger leerer Raum rechts */
body.page-ueber-mich .page-content-inner .process .process-timeline {
  max-width: 100%;
}
body.page-ueber-mich .page-content-inner .process .container {
  max-width: 100%;
}
body.page-ueber-mich section.about-extra .container {
  max-width: 1440px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
body.page-ueber-mich section.about-extra .container .text-center,
body.page-ueber-mich section.about-extra .container *,
body.page-ueber-mich section.about-extra .about-extra-inner,
body.page-ueber-mich section.about-extra .about-extra-inner.text-center,
body.page-ueber-mich section.about-extra .about-extra-inner * {
  text-align: center !important;
}
body.page-ueber-mich section.about-extra .about-extra-inner {
  max-width: 1440px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}
