/* SafeHer Theme – Production bundle
   Auto-generated from css/*.css modules.
   Rebuild: python3 css/build.py
   ============================================ */

/* --- 01-base.css: Reset, design tokens, body typography --- */
/* ============================================
   CSS Reset & Base Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Color Palette - Elegant & Professional */
    --primary-color: #1a1a1a;
    --secondary-color: #2a2a2a;
    --accent-color: #3a3a3a;
    --highlight-color: #c9a961;
    --light-highlight: #d4b876;
    --success-color: #4a7c59;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Georgia', 'Times New Roman', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    background-color: var(--primary-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* --- 02-navigation.css: Main nav, logo, mobile hamburger menu --- */
/* ============================================
   Navigation
   ============================================ */

.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: none;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.main-navigation.nav-scrolled {
    padding: 0.6rem 0;
    background: #1a1a1a;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.logo-image-wrapper {
    height: 2.2rem;
    width: 2.2rem;
    position: relative;
    display: inline-block;
    background-color: var(--highlight-color);
    opacity: 0.85;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: var(--transition-smooth);
}

.main-navigation.nav-scrolled .logo-image-wrapper {
    height: 1.9rem;
    width: 1.9rem;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo span {
    color: var(--highlight-color);
    font-weight: 200;
    letter-spacing: 0;
    margin-left: -0.15em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    border-radius: 1px;
    transition: width 0.25s ease;
}

.nav-menu a:hover {
    color: var(--highlight-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--highlight-color);
    color: var(--white) !important;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.01em;
}

.cta-button:hover {
    background: var(--light-highlight);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.35);
}

.cta-button::after {
    display: none;
}

/* ============================================
   Mobile Menu Toggle Button (Hamburger)
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    border-radius: 10px;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
    height: 18px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-icon span:nth-child(1) {
    width: 100%;
}

.hamburger-icon span:nth-child(2) {
    width: 70%;
}

.hamburger-icon span:nth-child(3) {
    width: 100%;
}

.mobile-menu-toggle:hover .hamburger-icon span {
    background-color: var(--highlight-color);
}

.mobile-menu-toggle:hover .hamburger-icon span:nth-child(2) {
    width: 100%;
}

.mobile-menu-toggle.menu-active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.menu-active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    width: 100%;
}

.mobile-menu-toggle.menu-active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--highlight-color);
    outline-offset: 2px;
}

/* Menu Overlay (abgestimmt auf dunkle Navigation) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.menu-overlay.overlay-active {
    opacity: 1;
    visibility: visible;
}

/* --- 03-home-hero-about.css: Hero, about, personal introduction --- */
/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.80) 0%,
        rgba(42, 42, 42, 0.70) 50%,
        rgba(26, 26, 26, 0.80) 100%
    );
    z-index: 1;
}

@keyframes scrollHint {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%       { transform: translateY(7px); opacity: 1; }
}

@keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
    50%       { box-shadow: 0 0 0 10px rgba(201, 169, 97, 0.2); }
}

.hero-buttons .btn-secondary .fa-chevron-down {
    display: inline-block;
}

.hero-buttons .btn-secondary {
    color: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.45);
}

.hero-buttons .btn-secondary:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.65);
    background: transparent;
    transform: translateY(-3px);
}

.hero-buttons .btn-primary {
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}


.hero-content h1.hero-seo-title {
    font-family: var(--font-primary), sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1.8rem 0;
    text-shadow: none;
    animation: fadeInUp 0.6s ease-out both;
}

.hero-h1-break {
    display: none;
}

@media (max-width: 768px) {
    .hero-h1-break {
        display: block;
    }

    .hero-container {
        align-items: flex-start;
        padding-top: 1.5rem;
    }
}

.hero-heading-wrapper {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 200;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Inter', sans-serif;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-line {
    display: block;
    font-weight: 200;
    opacity: 0.95;
}

.hero-title-highlight {
    display: block;
    color: var(--highlight-color);
    font-weight: normal;
    text-shadow: 0 4px 24px rgba(201, 169, 97, 0.4);
}

.hero-text-wrapper {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content h1, .hero-content h2.hero-title {
    font-size: 4rem;
    font-weight: 200;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Inter', sans-serif;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}


.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--highlight-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.hero-badge:hover {
    background: rgba(201, 169, 97, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.75;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 0.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
}

.btn-primary:hover {
    background: var(--highlight-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* btn-secondary auf hellem Hintergrund (Über mich CTA, etc.) */
.ueber-cta-buttons .btn-secondary,
.ueber-teaser-cta .btn-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.ueber-cta-buttons .btn-secondary:hover,
.ueber-teaser-cta .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.6rem;
        font-size: 0.92rem;
    }
}

/* Hero image styles removed - now using full background image */

/* ============================================
   About Section
   ============================================ */

.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    color: var(--highlight-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.4;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    font-family: var(--font-primary);
    text-shadow: 0 1px 2px rgba(201, 169, 97, 0.1);
    transition: var(--transition-smooth);
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-color), var(--light-highlight));
    border-radius: 2px;
}

.section-header .section-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-description {
    display: block;
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-section .section-header h2.section-title + .section-description {
    margin-top: 2.25rem;
}

.about-section .section-header .section-description {
    text-align: justify;
    text-align-last: start;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    hyphenate-limit-chars: 8 4 4;
    overflow-wrap: break-word;
    text-wrap: pretty;
    margin: 0 auto 1.15rem;
    max-width: min(700px, 68ch);
    line-height: 1.75;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.about-section .section-header .section-description:last-of-type {
    margin-bottom: 0;
}

.about-description-mobile {
    display: none;
}

.about-section .section-header {
    padding-bottom: 2.75rem;
}

.about-section .section-header .section-description strong {
    font-weight: 600;
    color: var(--primary-color, #1a1a1a);
    letter-spacing: 0;
}

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

    .about-description-mobile {
        display: block;
    }

    /* "Die Realität"-Section auf Mobile ausblenden (laut Clarity-Heatmaps kaum Engagement) */
    .about-section {
        display: none;
    }

    /*
     * Social-Proof-Section (Google Reviews) auf Mobile direkt unter Hero anzeigen.
     * Markup-Reihenfolge bleibt unverändert (Desktop = wie gehabt). Auf Mobile wird
     * via flex-order Hero → Trust-Strip → Reviews → ... visuell umsortiert.
     */
    #main-content {
        display: flex;
        flex-direction: column;
    }

    #main-content > .hero-section {
        order: -3;
    }

    #main-content > .trust-strip {
        order: -2;
    }

    #main-content > .google-reviews-section {
        order: -1;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Quote Block - Dark Card Style */
.quote-block {
    margin: 1.5rem 0;
    padding: 2.5rem 2rem 2rem;
    background: rgba(201, 169, 97, 0.07);
    border-left: 3px solid var(--highlight-color);
    border-radius: 12px;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.08);
}

.quote-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.14);
}

.quote-block::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-display, 'Playfair Display'), serif;
    color: var(--highlight-color);
    opacity: 0.35;
    line-height: 1;
}

.quote-block .quote-text {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    padding-left: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-family: var(--font-display, 'Playfair Display'), serif;
}

.quote-author {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--highlight-color);
    text-align: right;
    margin-top: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stats-cards-wrapper {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.5rem;
    margin-top: 2rem;
}

.stats-grid .stat-item {
    text-align: left;
    padding: 1.35rem 1.35rem 1.35rem 1.25rem;
    min-height: 8.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 12px;
    border-left: 3px solid var(--highlight-color);
    box-shadow:
        0 1px 2px rgba(26, 26, 26, 0.04),
        0 8px 24px rgba(26, 26, 26, 0.06);
    transition: var(--transition-smooth);
}

.stat-icon {
    font-size: 1.1rem;
    color: var(--highlight-color);
    margin-bottom: 0.55rem;
    opacity: 0.85;
}

.scenario-card {
    justify-content: flex-start !important;
    min-height: 10rem;
}

.scenario-headline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.scenario-text {
    font-size: 0.875rem;
    color: var(--medium-gray);
    line-height: 1.65;
    font-style: italic;
    margin: 0;
}

.stats-grid .stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 97, 0.35);
    box-shadow:
        0 2px 4px rgba(26, 26, 26, 0.05),
        0 12px 32px rgba(26, 26, 26, 0.09);
}

.stats-grid .stat-number {
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--highlight-color);
    margin-bottom: 0.65rem;
}

.stats-grid .stat-label {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
    max-width: 28ch;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-gray);
    font-weight: 500;
}

.stat-source {
    font-size: 0.7rem;
    color: var(--medium-gray);
    opacity: 0.6;
    margin-top: 0.3rem;
    font-style: italic;
}

.stat-source-inline {
    font-size: 0.75rem;
    opacity: 0.65;
    font-style: italic;
}

.core-values {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.values-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--highlight-color);
    margin: 0 0 1rem 0;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.value-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(201, 169, 97, 0.35);
    padding: 0.38rem 0.85rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: default;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    opacity: 0;
    transform: translateY(10px);
}

.value-tag i {
    font-size: 0.65rem;
    color: var(--highlight-color);
    flex-shrink: 0;
}

.value-tag:hover {
    background: var(--highlight-color);
    color: #1a1a1a;
    border-color: var(--highlight-color);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 18px rgba(201, 169, 97, 0.35);
}

.value-tag:hover i {
    color: #1a1a1a;
}

/* Staggered scroll-in animation */
.reveal-values.values-visible .value-tag {
    animation: value-pop-in 0.4s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

.reveal-values.values-visible .value-tag:nth-child(1) { animation-delay: 0.05s; }
.reveal-values.values-visible .value-tag:nth-child(2) { animation-delay: 0.1s; }
.reveal-values.values-visible .value-tag:nth-child(3) { animation-delay: 0.15s; }
.reveal-values.values-visible .value-tag:nth-child(4) { animation-delay: 0.2s; }
.reveal-values.values-visible .value-tag:nth-child(5) { animation-delay: 0.25s; }
.reveal-values.values-visible .value-tag:nth-child(6) { animation-delay: 0.3s; }
.reveal-values.values-visible .value-tag:nth-child(7) { animation-delay: 0.35s; }
.reveal-values.values-visible .value-tag:nth-child(8) { animation-delay: 0.4s; }

@keyframes value-pop-in {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Personal Introduction Section
   ============================================ */

.personal-intro-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.personal-intro-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.personal-intro-image {
    position: relative;
}

.personal-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--highlight-color);
    border-radius: 4px;
    z-index: 0;
}

.personal-intro-text {
    text-align: left;
}

.personal-intro-text .section-subtitle {
    text-align: left;
}

.personal-intro-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.personal-intro-text p {
    color: var(--medium-gray);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.personal-intro-text p strong {
    color: var(--primary-color);
    font-weight: 500;
}

.trainer-gender-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-top: 1.75rem;
    padding: 1.1rem 1.25rem;
    background: rgba(201, 169, 97, 0.07);
    border-left: 3px solid var(--highlight-color);
    border-radius: 0 8px 8px 0;
}

.trainer-gender-callout i {
    color: var(--highlight-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.trainer-gender-callout p {
    margin: 0 !important;
    font-size: 0.92rem;
    color: var(--primary-color) !important;
    font-weight: 500;
    line-height: 1.65;
}


/* --- 04-home-social-proof.css: Gallery carousel, testimonials, trainer seminars --- */
/* ============================================
   Seminar Gallery Carousel (Center Mode)
   ============================================ */

.seminar-gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
    overflow: hidden;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-wrapper {
    position: relative;
    margin: 4rem auto 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    touch-action: pan-y;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.carousel-slide {
    min-width: 400px;
    max-width: 400px;
    aspect-ratio: 3/4;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.85);
    filter: grayscale(50%) brightness(0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: grayscale(0%) brightness(1);
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-btn {
    background: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.carousel-btn:hover {
    background: var(--highlight-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--medium-gray);
}

.carousel-dot.active {
    background: var(--highlight-color);
    width: 32px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1200px) {
    .carousel-slide {
        min-width: 350px;
        max-width: 350px;
    }
}

@media (max-width: 968px) {
    .carousel-wrapper {
        gap: 1rem;
    }
    
    .carousel-slide {
        min-width: 300px;
        max-width: 300px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-track {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        gap: 0.5rem;
    }
    
    .carousel-slide {
        min-width: 280px;
        max-width: 280px;
    }
    
    .carousel-slide.active {
        transform: scale(0.95);
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .carousel-dots {
        gap: 0.7rem;
        margin-top: 2rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 28px;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */

.google-reviews-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.google-reviews-summary-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.google-reviews-g-wrap {
    flex-shrink: 0;
}

.google-reviews-g-logo {
    display: block;
    vertical-align: middle;
}

.google-reviews-summary-text {
    min-width: 0;
}

.google-reviews-summary-title {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.google-reviews-summary-sub {
    margin: 0;
    font-size: 0.88rem;
    color: var(--medium-gray);
    line-height: 1.4;
}

.google-reviews-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-color);
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.google-reviews-cta:hover {
    background: var(--highlight-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.google-reviews-cta .fa-arrow-up-right-from-square {
    font-size: 0.8em;
    opacity: 0.9;
}


/* ============================================
   Trainer Seminars Section
   ============================================ */

.trainer-seminars-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}


.trainer-seminars-wrapper {
    position: relative;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
}

/* Single card optimization - when card is directly in wrapper without grid */
.trainer-seminars-wrapper > .trainer-seminar-card {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
}

.trainer-seminar-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid var(--light-gray);
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow: hidden;
}

.trainer-seminar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--highlight-color);
}

.seminar-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--highlight-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seminar-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--highlight-color);
}

.seminar-icon i {
    color: var(--highlight-color);
}

.trainer-seminar-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.trainer-seminar-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.seminar-features {
    list-style: none;
    margin: 2rem 0;
}

.seminar-features li {
    color: var(--medium-gray);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.seminar-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.seminar-details {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.detail-item {
    color: var(--medium-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.detail-item i {
    color: var(--highlight-color);
    margin-right: 0.5rem;
}


/* --- 05-b2b.css: B2B / corporate page styles --- */
/* ============================================
   B2B Page Specific Styles
   ============================================ */

.b2b-intro-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.b2b-benefits-wrapper {
    position: relative;
}

.b2b-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.benefit-icon i {
    color: var(--highlight-color);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* B2B Process Section */

.b2b-process-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.process-steps-wrapper {
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* B2B Contact Form Enhancements */

.b2b-contact-section .form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.b2b-contact-section .form-group select:focus {
    outline: none;
    border-color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.15);
}

.b2b-contact-section .form-group select option {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive B2B Styles */

@media (max-width: 968px) {
    .b2b-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* B2B Benefits Carousel Mobile */
    .b2b-benefits-wrapper {
        overflow: hidden;
        position: relative;
    }
    
    .b2b-benefits {
        display: flex;
        gap: 1rem;
        margin-top: 3rem;
        margin-bottom: 0;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .b2b-benefits .benefit-card {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .b2b-benefits-wrapper .pricing-carousel-dots {
        display: flex;
    }
    
    /* Process Steps Carousel Mobile */
    .process-steps-wrapper {
        overflow: hidden;
        position: relative;
    }
    
    .process-steps {
        display: flex;
        gap: 1rem;
        margin-top: 3rem;
        margin-bottom: 0;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .process-steps .process-step {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .process-steps-wrapper .pricing-carousel-dots {
        display: flex;
    }
}

/* --- 06-pricing-funnel.css: Funnel labels, pricing carousel, 8-week course, pricing cards, module sheet --- */
/* ============================================
   Funnel Step Labels & Connector
   ============================================ */

.funnel-step-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.funnel-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--highlight-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.funnel-step-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--medium-gray);
}

.funnel-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 2.5rem 0;
}

.funnel-connector-line {
    width: 2px;
    height: 24px;
    background: rgba(201, 169, 97, 0.3);
}

.funnel-connector-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 50px;
    padding: 0.55rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--highlight-color);
}

.funnel-connector-box i {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .funnel-connector-box {
        font-size: 0.78rem;
        padding: 0.5rem 1rem;
        text-align: center;
    }
}

/* ============================================
   Pricing Steps Carousel (Mobile)
   ============================================ */

/* ---- Entrance animation ---- */
@keyframes pricingSlideEnter {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ---- Connector slide animations ---- */
@keyframes connectorLineGrow {
    from { transform: scaleY(0); opacity: 0; }
    to   { transform: scaleY(1); opacity: 1; }
}
@keyframes connectorPillPop {
    0%   { transform: scale(0.75); opacity: 0; }
    65%  { transform: scale(1.04); opacity: 1; }
    100% { transform: scale(1);    opacity: 1; }
}
@keyframes connectorNodeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0);   }
}

/* Mini Social Proof im Pricing-Header */
.pricing-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 1.25rem;
    margin: 0 auto 1.75rem;
    max-width: 700px;
    padding: 0.8rem 1rem;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}
.pricing-proof-quote {
    font-size: 0.82rem;
    color: var(--medium-gray);
    font-style: italic;
    line-height: 1.5;
}
.pricing-proof-quote strong {
    color: var(--highlight-color);
    font-style: normal;
    font-weight: 600;
}
.pricing-proof-sep {
    color: rgba(201, 169, 97, 0.4);
    font-size: 0.9rem;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .pricing-proof-sep { display: none; }
    .pricing-proof { gap: 0.35rem; }
}

/* Tab Nav – Desktop: hidden */
.pricing-steps-tabs {
    display: none;
}

/* Connection badge – Desktop: hidden */
.pricing-step-builds-on {
    display: none;
}

/* Track – Desktop: normal block flow */
.pricing-steps-track {
    display: block;
}

.pricing-step-slide {
    display: block;
}

/* Desktop connector visible */
.pricing-steps-desktop-connector {
    display: flex;
}

/* Mobile connector slide – Desktop: nicht im normalen Block-Flow sichtbar */
.pricing-step-connector-slide {
    display: none;
}

/* Swipe hint – hidden on desktop */
.pricing-swipe-hint {
    display: none;
}

@media (max-width: 768px) {
    /* Tab navigation */
    /* Segmented Control Container */
    .pricing-steps-tabs {
        display: flex;
        padding: 0 0 1.5rem;
    }

    .pricing-steps-segment {
        display: flex;
        width: 100%;
        background: rgba(201, 169, 97, 0.09);
        border-radius: 14px;
        padding: 4px;
        gap: 3px;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    }

    .pricing-step-tab {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.7rem 0.75rem;
        min-height: 50px;
        border-radius: 11px;
        border: none;
        background: transparent;
        cursor: pointer;
        color: var(--medium-gray);
        font-size: 0.83rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        font-family: var(--font-primary);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                    color 0.28s ease,
                    box-shadow 0.28s ease;
        position: relative;
        white-space: nowrap;
    }

    .pricing-step-tab.active {
        background: #fff;
        color: var(--primary-color);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10),
                    0 1px 4px rgba(0, 0, 0, 0.07);
    }

    .pricing-step-tab-num {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.68rem;
        font-weight: 800;
        flex-shrink: 0;
        background: rgba(201, 169, 97, 0.18);
        color: var(--highlight-color);
        transition: background 0.28s ease, color 0.28s ease;
    }

    .pricing-step-tab.active .pricing-step-tab-num {
        background: var(--highlight-color);
        color: #fff;
    }

    .pricing-step-tab-label {
        line-height: 1.2;
    }

    /* Connection badge auf Slide 2 */
    .pricing-step-builds-on {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--highlight-color);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 1rem;
        opacity: 0.8;
    }

    .pricing-step-builds-on-line {
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(201,169,97,0.35), transparent);
    }

    /* Entrance-Animation auf Slide-Inhalt */
    .pricing-step-slide.is-entering .pricing-step-builds-on {
        animation: pricingSlideEnter 0.38s ease both;
        animation-delay: 0s;
    }

    .pricing-step-slide.is-entering .funnel-step-label {
        animation: pricingSlideEnter 0.38s ease both;
        animation-delay: 0.06s;
    }

    .pricing-step-slide.is-entering .pricing-category {
        animation: pricingSlideEnter 0.42s ease both;
        animation-delay: 0.12s;
    }

    /* Viewport: clippt den bewegenden Track */
    .pricing-steps-viewport {
        overflow: hidden;
        width: 100%;
        background: var(--white);
    }

    /* Track: bewegt sich per translateX, kein eigenes overflow:hidden */
    .pricing-steps-track {
        display: flex;
        align-items: flex-start;
        width: 100%;
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    .pricing-step-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    /* Desktop connector & mobile connector slide */
    .pricing-steps-desktop-connector {
        display: none;
    }

    /* Connector Slide – permanenter Stop, volle Breite, vertikal zentriert */
    .pricing-step-connector-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        min-height: 320px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2.5rem 1.5rem;
        background: #ffffff;
        gap: 0;
        position: relative;
    }


    .pricing-connector-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        opacity: 1;
    }

    .pricing-connector-circle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 700;
        border: 2px solid var(--highlight-color);
    }

    .pricing-connector-node.completed .pricing-connector-circle {
        background: var(--highlight-color);
        color: #fff;
    }

    .pricing-connector-node.next .pricing-connector-circle {
        background: transparent;
        color: var(--highlight-color);
        font-size: 1.1rem;
    }

    .pricing-connector-node-label {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--dark-gray);
    }

    .pricing-connector-bridge {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin: 0.15rem 0;
    }

    .pricing-connector-vline {
        width: 2px;
        height: 28px;
        background: linear-gradient(to bottom, rgba(201,169,97,0.4), rgba(201,169,97,0.15));
        opacity: 1;
    }

    .pricing-connector-pill {
        background: linear-gradient(135deg, rgba(201,169,97,0.12), rgba(201,169,97,0.06));
        border: 1.5px solid rgba(201,169,97,0.4);
        border-radius: 50px;
        padding: 0.45rem 1rem;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--highlight-color);
        letter-spacing: 0.03em;
        white-space: nowrap;
        margin: 0.2rem 0;
    }

    .pricing-connector-pill i {
        margin-right: 0.2rem;
        font-size: 0.7rem;
    }

    .pricing-swipe-hint {
        display: block;
        text-align: center;
        font-size: 0.75rem;
        color: var(--medium-gray);
        margin: 0.75rem 0 0;
        opacity: 0.7;
        letter-spacing: 0.01em;
    }

    .pricing-swipe-hint i {
        margin-right: 0.3rem;
        color: var(--highlight-color);
    }

    /* Nach dem Swipen Hint ausblenden */
    .pricing-steps-track[data-swiped="true"] .pricing-swipe-hint {
        display: none;
    }
}

/* ============================================
   8-Wochen vs. Crashkurs Section
   ============================================ */

.eight-week-section {
    padding: var(--spacing-lg) 0;
    background: #f7f6f4;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 3rem auto 0;
    align-items: stretch;
}

.comparison-col {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1;
}

.comparison-col-other {
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 1px 2px rgba(26, 26, 26, 0.04),
                0 8px 24px -12px rgba(26, 26, 26, 0.08);
}

.comparison-col-other::before {
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.12), rgba(26, 26, 26, 0.04));
}

.comparison-col-safeher {
    border: 1px solid rgba(201, 169, 97, 0.35);
    box-shadow: 0 1px 2px rgba(201, 169, 97, 0.08),
                0 20px 40px -20px rgba(201, 169, 97, 0.28),
                0 8px 24px -12px rgba(26, 26, 26, 0.08);
}

.comparison-col-safeher::before {
    background: linear-gradient(90deg, var(--highlight-color), var(--light-highlight));
}

.comparison-col-safeher::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.06) 0%, rgba(201, 169, 97, 0) 60%);
    pointer-events: none;
}

.comparison-col:hover {
    transform: translateY(-4px);
}

.comparison-col-other:hover {
    box-shadow: 0 2px 4px rgba(26, 26, 26, 0.05),
                0 16px 32px -12px rgba(26, 26, 26, 0.14);
}

.comparison-col-safeher:hover {
    box-shadow: 0 2px 4px rgba(201, 169, 97, 0.12),
                0 28px 56px -20px rgba(201, 169, 97, 0.38),
                0 16px 32px -12px rgba(26, 26, 26, 0.12);
}

.comparison-col-header {
    position: relative;
    padding: 1.75rem 1.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    min-height: 88px;
    z-index: 2;
}

.comparison-col-safeher .comparison-col-header {
    border-bottom-color: rgba(201, 169, 97, 0.18);
}

.comparison-label {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    flex: 1 1 auto;
    min-width: 0;
}

.comparison-col-other .comparison-label {
    color: var(--medium-gray);
}

.comparison-col-safeher .comparison-label {
    color: var(--primary-color);
}

.comparison-logo {
    height: 14px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.comparison-badge {
    background: var(--highlight-color);
    color: var(--primary-color);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 2px 8px -2px rgba(201, 169, 97, 0.45);
    flex-shrink: 0;
}

.comparison-list {
    list-style: none;
    padding: 1.5rem 1.75rem 1.75rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.55;
    font-weight: 500;
}

.comparison-item i {
    font-size: 0.7rem;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 0.12rem;
}

.comparison-item-negative {
    color: var(--medium-gray);
}

.comparison-item-negative i {
    color: #b0392b;
    background: rgba(176, 57, 43, 0.1);
}

.comparison-item-positive {
    color: var(--primary-color);
}

.comparison-item-positive i {
    color: var(--white);
    background: var(--highlight-color);
    box-shadow: 0 2px 6px -1px rgba(201, 169, 97, 0.4);
}

.funnel-step-desc {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin: -0.6rem 0 1.5rem 2.5rem;
    line-height: 1.55;
    max-width: 48ch;
}

.eight-week-note {
    max-width: 680px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--medium-gray);
    line-height: 1.65;
    padding: 1rem 1.25rem;
    background: rgba(201, 169, 97, 0.07);
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

@media (max-width: 820px) {
    .comparison-table {
        grid-template-columns: 1fr;
        max-width: 560px;
        gap: 1.25rem;
        margin-top: 2.25rem;
    }

    .comparison-col-header {
        padding: 1.4rem 1.4rem 1rem;
        min-height: 0;
    }

    .comparison-list {
        padding: 1.25rem 1.4rem 1.5rem;
        gap: 0.85rem;
    }

    .comparison-item {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .comparison-col:hover {
        transform: none;
    }

    .funnel-step-desc {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .comparison-col-header {
        padding: 1.25rem 1.25rem 0.9rem;
    }

    .comparison-list {
        padding: 1.1rem 1.25rem 1.4rem;
    }

    .comparison-label {
        font-size: 0.74rem;
        letter-spacing: 0.08em;
    }

    .comparison-item {
        font-size: 0.88rem;
    }
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
    padding: var(--spacing-lg) 0;
    background: var(--white);
    position: relative;
    border-bottom: 2px solid var(--light-gray);
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--highlight-color);
}

.pricing-category {
    margin-bottom: 5rem;
    margin-top: 3rem;
    position: relative;
    padding: 2.5rem 0;
}

.pricing-category:not(:first-child) {
    padding-top: 5rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-category:not(:first-child)::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--highlight-color);
    z-index: 2;
}

.pricing-category-header {
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-category-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.pricing-category-subtitle {
    color: var(--medium-gray);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Eyebrow above workshop title – signals "Aufbaukurs nach Basisseminar" */
.pricing-category-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--highlight-color);
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin: 0 auto 1.1rem;
}

.pricing-category-eyebrow i {
    font-size: 0.7rem;
}

/* Outlook variant of funnel step label – emphasizes "Ausblick" character */
.funnel-step-eyebrow {
    display: inline-block;
    background: var(--highlight-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
    margin-right: 0.55rem;
    vertical-align: 0.05em;
}

.funnel-step-label--outlook .funnel-step-number {
    background: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
}

/* Workshop modules intro – minimal paragraph to match basis-card aesthetic */
.coaching-modules-intro {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0 0 0.85rem;
    font-weight: 500;
}

/* CTA note – soft reminder that workshop comes after Basisseminar */
.coaching-cta-note {
    font-size: 0.82rem;
    color: var(--medium-gray);
    text-align: center;
    margin: 0.85rem 0 0;
    line-height: 1.5;
}

.coaching-cta-note i {
    color: var(--highlight-color);
    margin-right: 0.3rem;
}

.coaching-cta-note strong {
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-cards-wrapper {
    position: relative;
    padding: 1rem 0;
    margin: 1rem 0;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pricing-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.pricing-carousel-dot:hover {
    background: var(--medium-gray);
}

.pricing-carousel-dot.active {
    background: var(--highlight-color);
    width: 24px;
    border-radius: 4px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-color: var(--highlight-color);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.pricing-card-header h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.pricing-badge {
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlight für 3-Monats-Pakete */
.pricing-card-highlight {
    border: 2px solid var(--highlight-color);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
    position: relative;
    background: linear-gradient(to bottom, var(--white) 0%, rgba(201, 169, 97, 0.02) 100%);
}

.pricing-card-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color) 0%, var(--light-highlight) 100%);
    border-radius: 12px 12px 0 0;
}

.pricing-card-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.25);
    border-color: var(--light-highlight);
}

.pricing-card-highlight .pricing-badge {
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--light-highlight) 100%);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.pricing-card-highlight .pricing-card-header {
    border-bottom-color: rgba(201, 169, 97, 0.2);
}

.pricing-card-highlight .pricing-card-header h4 {
    color: var(--highlight-color);
}

.pricing-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 8px;
    width: fit-content;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-features li {
    color: var(--medium-gray);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 1rem 0 0.3rem;
    text-align: center;
}

.pricing-note {
    display: block;
    font-size: 0.75rem;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.pricing-option {
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.pricing-option:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: rgba(201, 169, 97, 0.2);
}

.pricing-option-divider {
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin: 0.5rem 0;
}

.pricing-option-divider::before,
.pricing-option-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.pricing-option-divider::before {
    left: 0;
}

.pricing-option-divider::after {
    right: 0;
}

.pricing-option .pricing-features {
    margin: 0 0 0.8rem 0;
}

.pricing-option .pricing-price {
    font-size: 1.4rem;
    margin: 0.5rem 0 0;
}

.pricing-card-special {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(201, 169, 97, 0.03));
    border: 2px solid var(--highlight-color);
}

.pricing-card-special .pricing-card-header {
    border-bottom-color: var(--highlight-color);
}

.pricing-card-special .pricing-badge {
    background: var(--highlight-color);
    color: var(--white);
}

.pricing-legend-compact {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.pricing-legend-compact p {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

.pricing-legend-compact strong {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-info-box {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-left: 3px solid var(--highlight-color);
    border-radius: 8px;
    text-align: center;
}

.pricing-info-box p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-info-box strong {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-includes-box {
    margin-top: 2rem;
    padding: 0;
}

.pricing-includes-note {
    margin: 0 0 1rem 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

.pricing-includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pricing-include-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.02) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.pricing-include-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.3);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.04) 100%);
}

.pricing-include-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 10px;
}

.pricing-include-content {
    flex: 1;
}

.pricing-include-title {
    margin: 0 0 0.3rem 0;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.pricing-include-description {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Safety Pricing Category - Cool Design */
.pricing-category-safety {
    background: var(--light-gray);
    padding: 3.5rem 2.5rem;
    padding-bottom: 4rem;
    border-radius: 20px;
    margin-top: 6rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(201, 169, 97, 0.18);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.pricing-category-safety::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--highlight-color) 50%, transparent 100%);
    z-index: 1;
    border-radius: 2px;
}

.pricing-category-safety .pricing-category-header::after {
    background: linear-gradient(90deg, transparent 0%, var(--highlight-color) 50%, transparent 100%);
    width: 120px;
    height: 3px;
}

.pricing-category-safety .pricing-category-title {
    position: relative;
    z-index: 1;
}

.pricing-card-safety {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 2px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-safety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color) 0%, rgba(201, 169, 97, 0.8) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-safety:hover::before {
    transform: scaleX(1);
}

.pricing-card-safety:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.25);
    border-color: var(--highlight-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.pricing-card-safety-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    opacity: 0.15;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-safety:hover .pricing-card-safety-icon {
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
}

.pricing-card-safety .pricing-card-header {
    position: relative;
    z-index: 1;
}

.pricing-card-safety .pricing-card-header h4 {
    color: var(--primary-color);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pricing-badge-safety {
    background: linear-gradient(135deg, var(--highlight-color) 0%, rgba(201, 169, 97, 0.9) 100%);
    color: var(--white);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.pricing-price-safety {
    background: linear-gradient(135deg, var(--highlight-color) 0%, rgba(201, 169, 97, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card-safety .pricing-description {
    position: relative;
    z-index: 1;
    font-weight: 500;
    line-height: 1.7;
}

/* ================================
   Basisseminar – Kartenstruktur
   (spiegelt das coaching-card Muster)
   ================================ */

.basis-card {
    background:
        linear-gradient(160deg, #ffffff 0%, #fdfaf4 100%);
    border: 1.5px solid rgba(201, 169, 97, 0.22);
    border-radius: 20px;
    box-shadow: 0 4px 28px rgba(201, 169, 97, 0.1);
    overflow: hidden;
}

/* Two-column on desktop, single-column on mobile */
.basis-card-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .basis-card-content {
        flex-direction: row;
        align-items: stretch;
    }
    .basis-card-info {
        flex: 1.1;
        border-right: 1px solid rgba(201, 169, 97, 0.15);
    }
    .basis-card-details {
        flex: 0.9;
    }
}

.basis-card-info {
    padding: 1.6rem 1.6rem 1.2rem;
}

.basis-card-title {
    font-family: var(--font-display, 'Playfair Display'), serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.3rem;
    letter-spacing: -0.01em;
}

.basis-card-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--highlight-color);
    margin: 0 0 0.85rem;
}

.basis-card-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 1.2rem;
}

/* Module chips – 2×2 grid, static (no popup) */
.basis-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.basis-module {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
    border: 1px solid rgba(201, 169, 97, 0.18);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(26, 26, 26, 0.04);
}

.basis-module-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #c9a961 0%, #b8943d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(201, 169, 97, 0.3);
}

.basis-module-icon i {
    color: #fff;
    font-size: 0.88rem;
}

button.basis-module {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
}

button.basis-module:hover {
    border-color: rgba(201, 169, 97, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px -4px rgba(201, 169, 97, 0.35);
}

.basis-module > div:last-child {
    min-width: 0;
    padding-top: 0.05rem;
}

.basis-module strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 0.15rem;
}

.basis-module span {
    display: block;
    font-size: 0.72rem;
    color: var(--medium-gray);
    line-height: 1.35;
}

/* Detail + Preis + CTA */
.basis-card-details {
    padding: 1.4rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(201, 169, 97, 0.12);
}

@media (min-width: 900px) {
    .basis-card-details {
        border-top: none;
    }
}

.basis-price-block {
    margin: 1rem 0 0.25rem;
}

.basis-location-inline-note {
    font-size: 0.78em;
    color: var(--medium-gray);
    white-space: nowrap;
}

.basis-price-main {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.basis-price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.04em;
    line-height: 1;
}

.basis-price-unit {
    font-size: 0.88rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.basis-price-note {
    font-size: 0.76rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.basis-price-note i { margin-right: 0.3rem; }

/* Preis-Info über Amelia-Checkout – verhindert Preis-Schock */
.booking-price-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 680px;
    margin: 0 auto 1.75rem;
    padding: 1rem 1.5rem;
    background: #f8f7f4;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-left: 3px solid var(--highlight-color);
    border-radius: 10px;
}
.booking-price-info-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
}
.booking-price-info-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.04em;
    line-height: 1;
}
.booking-price-info-per {
    font-size: 0.71rem;
    color: var(--medium-gray);
    white-space: nowrap;
    margin-top: 0.25rem;
    text-align: center;
}
.booking-price-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0;
    margin: 0;
}
.booking-price-info-list li {
    font-size: 0.83rem;
    color: var(--text-dark, #333);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}
.booking-price-info-list li i {
    color: var(--highlight-color);
    font-size: 0.7rem;
    margin-top: 0.22rem;
    flex-shrink: 0;
}
@media (max-width: 540px) {
    .booking-price-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }
    .booking-price-info-amount {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
        padding-right: 0;
        border-right: none;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        width: 100%;
    }
}

.basis-price-credit {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--highlight-color);
    margin: 0 0 1rem;
    width: fit-content;
}
.basis-price-credit i {
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.basis-cta-reassurance {
    text-align: center;
    font-size: 0.76rem;
    color: var(--medium-gray);
    margin: 0.55rem 0 0;
}

.basis-cta-reassurance i {
    margin-right: 0.3rem;
    color: var(--highlight-color);
}

/* Mobile: span text in module chips hidden to stay compact */
@media (max-width: 520px) {
    .basis-module span { display: none; }
    .basis-module { padding: 0.75rem 0.75rem; gap: 0.55rem; }
    .basis-module-icon { width: 30px; height: 30px; border-radius: 8px; }
    .basis-module-icon i { font-size: 0.8rem; }
    .basis-module strong { font-size: 0.78rem; }
}

.pricing-anrechnung {
    position: relative;
    z-index: 1;
    font-size: 0.82rem;
    color: var(--highlight-color);
    font-weight: 600;
    margin-top: 0.75rem;
    padding: 0.6rem 0.85rem;
    background: rgba(201, 169, 97, 0.08);
    border-left: 3px solid var(--highlight-color);
    border-radius: 0 6px 6px 0;
    line-height: 1.4;
}

.pricing-anrechnung i {
    margin-right: 0.4rem;
}

/* Coaching Category */
.pricing-category-coaching {
    background: var(--light-gray);
    padding: 3.5rem 2.5rem;
    padding-bottom: 4rem;
    border-radius: 20px;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(201, 169, 97, 0.18);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.pricing-category-coaching::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--highlight-color) 50%, transparent 100%);
    z-index: 1;
    border-radius: 2px;
}

/* Coaching Card */
.coaching-card {
    background: var(--white);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.coaching-card:hover {
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.18);
    border-color: var(--highlight-color);
}

.coaching-founder-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.1rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.14) 0%, rgba(201, 169, 97, 0.06) 100%);
    color: #2d2d2d;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.65rem 1.5rem;
    text-align: center;
    line-height: 1.4;
    border-bottom: 1px solid rgba(201, 169, 97, 0.22);
}

.coaching-founder-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.coaching-founder-badge-main i {
    color: var(--highlight-color);
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .coaching-founder-badge {
        flex-direction: column;
        gap: 0.55rem;
        font-size: 0.74rem;
        padding: 0.75rem 0.9rem;
    }

    .coaching-founder-badge-main {
        line-height: 1.4;
        justify-content: center;
        max-width: 100%;
    }

    .coaching-founder-badge-main > span {
        text-wrap: balance;
    }
}

.coaching-price-original {
    font-size: 1rem;
    color: var(--medium-gray);
    text-decoration: line-through;
    font-weight: 400;
}

.coaching-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--light-highlight) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.35);
    z-index: 2;
}

.coaching-card-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
}

.coaching-card-info {
    padding: 2.5rem;
    padding-right: 2rem;
}

.coaching-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.coaching-card-subtitle {
    color: var(--highlight-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1.2rem 0;
}

.coaching-card-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 0 1rem 0;
}

.coaching-card-goal {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0 0 1.75rem 0;
    line-height: 1.6;
}

/* Coaching Modules Grid */
.coaching-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* button-reset so <button class="coaching-module"> looks identical to <div> */
button.coaching-module {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.coaching-module {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.25rem 1.35rem;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 97, 0.18);
    box-shadow:
        0 1px 2px rgba(26, 26, 26, 0.04),
        0 8px 20px -12px rgba(26, 26, 26, 0.08);
    transition: var(--transition-smooth);
    overflow: hidden;
    isolation: isolate;
}

.coaching-module::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--highlight-color), var(--light-highlight));
    opacity: 0;
    transform: scaleY(0.4);
    transform-origin: center;
    transition: var(--transition-smooth);
}

.coaching-module::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 120% at 100% 0%, rgba(201, 169, 97, 0.12) 0%, rgba(201, 169, 97, 0) 55%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: -1;
}

.coaching-module:hover {
    border-color: rgba(201, 169, 97, 0.45);
    transform: translateY(-3px);
    box-shadow:
        0 2px 4px rgba(26, 26, 26, 0.05),
        0 18px 36px -18px rgba(201, 169, 97, 0.45);
}

.coaching-module:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.coaching-module:hover::after {
    opacity: 1;
}

.coaching-module:hover .coaching-module-icon {
    transform: scale(1.05) rotate(-2deg);
    box-shadow:
        0 6px 14px -4px rgba(201, 169, 97, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.coaching-module-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--light-highlight) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 4px 10px -3px rgba(201, 169, 97, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.coaching-module-icon i {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1;
}

.coaching-module > div:last-child {
    min-width: 0;
    flex: 1;
    padding-top: 0.1rem;
}

.coaching-module strong {
    display: block;
    font-family: var(--font-primary, 'Inter'), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.coaching-module span {
    display: block;
    font-size: 0.82rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Coaching Card Details Sidebar */
.coaching-card-details {
    background: transparent;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(201, 169, 97, 0.12);
}

.coaching-detail-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.coaching-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.coaching-detail-item i {
    color: var(--highlight-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Coaching Location Block */
/* Workshop location – minimal, no card-in-card box (matches basis aesthetic) */
.coaching-location-block {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0.9rem 0 0.25rem;
}

.coaching-location-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--highlight-color);
    margin: 0 0 0.35rem;
}

.coaching-location-label i {
    margin-right: 0.3rem;
}

.coaching-location-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.15rem;
    line-height: 1.3;
}

.coaching-location-address {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--medium-gray);
    margin: 0 0 0.55rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.coaching-location-address:hover {
    color: var(--highlight-color);
}

.coaching-location-address .fa-external-link-alt {
    font-size: 0.65rem;
    margin-left: 0.25rem;
    opacity: 0.55;
}

.coaching-location-times {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    padding-top: 0.5rem;
    margin-top: 0.1rem;
}

.coaching-location-times span {
    font-size: 0.8rem;
    color: var(--dark-gray);
    line-height: 1.4;
}

.coaching-location-times strong {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    min-width: 1.7rem;
}

/* Coaching Price Block */
.coaching-price-block {
    margin: 1rem 0 0.25rem;
}

.coaching-price-main {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.coaching-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.04em;
    line-height: 1;
}

.coaching-price-unit {
    font-size: 0.88rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.coaching-price-total {
    font-size: 0.82rem;
    color: var(--medium-gray);
    margin: 0 0 0.5rem;
}

.coaching-price-note {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--highlight-color);
    margin: 0 0 0.35rem;
}

.coaching-price-note i {
    margin-right: 0.3rem;
}

.coaching-price-discount {
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--medium-gray);
    margin: 0 0 0.2rem;
}

.coaching-price-discount strong {
    font-weight: 700;
}

.coaching-price-compare {
    font-size: 0.76rem;
    color: var(--medium-gray);
    margin: 0 0 0.55rem;
}

.coaching-price-compare i,
.coaching-price-discount i {
    margin-right: 0.3rem;
}

.coaching-price-total {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0.35rem 0 0.2rem;
}

.coaching-price-total i {
    margin-right: 0.3rem;
    color: var(--highlight-color);
}

.coaching-price-total-compare {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--medium-gray);
    text-decoration: line-through;
}

/* ================================
   Module Detail – Bottom Sheet
   ================================ */

button.coaching-module[aria-expanded="true"] {
    border-color: rgba(201, 169, 97, 0.55);
    background: linear-gradient(180deg, #fffdf6 0%, #faf5e8 100%);
}

.module-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.module-sheet-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.module-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1101;
    background: #ffffff;
    border-radius: 22px 22px 0 0;
    padding: 0 1.5rem 2.5rem;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(105%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0.32s;
    visibility: hidden;
}

.module-sheet.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0s;
}

@media (min-width: 640px) {
    .module-sheet {
        top: 50%;
        bottom: auto;
        left: 50%;
        right: auto;
        width: 90%;
        max-width: 420px;
        border-radius: 18px;
        padding: 1.5rem 2rem 2rem;
        transform: translate(-50%, -44%) scale(0.96);
        opacity: 0;
        transition: opacity 0.22s ease, transform 0.22s ease,
                    visibility 0s linear 0.22s;
    }
    .module-sheet.is-open {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        transition: opacity 0.22s ease, transform 0.22s ease,
                    visibility 0s linear 0s;
    }
    .module-sheet-handle { display: none; }
}

.module-sheet-handle {
    width: 36px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 0.9rem auto 1.5rem;
}

.module-sheet-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.module-sheet-icon-wrap { flex-shrink: 0; }

.module-sheet-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c9a961 0%, #b8943d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(201, 169, 97, 0.35);
}

.module-sheet-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.module-sheet-meta {
    flex: 1;
    min-width: 0;
    padding-top: 0.15rem;
}

.module-sheet-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--highlight-color);
    margin: 0 0 0.25rem;
}

.module-sheet-title {
    font-family: var(--font-primary, 'Inter'), sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color, #1a1a1a);
    margin: 0;
    line-height: 1.3;
}

.module-sheet-close {
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    background: #f2f2f2;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    font-size: 0.82rem;
    transition: background 0.15s ease;
    margin-top: 0.05rem;
}

.module-sheet-close:hover {
    background: #e4e4e4;
    color: #1a1a1a;
}

.module-sheet-desc {
    font-size: 0.93rem;
    line-height: 1.72;
    color: #444;
    margin: 0;
}

.coaching-testimonial-mini {
    border-left: 3px solid var(--highlight-color);
    margin: 0.9rem 0 1rem;
    padding: 0.55rem 0.85rem;
    background: rgba(201, 169, 97, 0.06);
    border-radius: 0 6px 6px 0;
}

.coaching-testimonial-mini p {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0 0 0.2rem;
    line-height: 1.5;
}

.coaching-testimonial-mini cite {
    font-size: 0.75rem;
    font-style: normal;
    color: var(--medium-gray);
}

@media (max-width: 768px) {
    .coaching-price-amount {
        font-size: 2rem;
    }
}

/* Workshop spots note – matches basis-cta-reassurance aesthetic (subtle, centered) */
.coaching-spots-note {
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--medium-gray);
    text-align: center;
    margin: 0.55rem 0 0;
}

.coaching-spots-note i {
    color: var(--highlight-color);
    margin-right: 0.3rem;
}

.pricing-cta-coaching {
    background: var(--highlight-color);
    color: var(--white);
    border-color: var(--highlight-color);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.25);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    margin: 1.5rem auto 0;
}

.pricing-cta-coaching:hover {
    background: var(--white);
    color: var(--highlight-color);
    border-color: var(--highlight-color);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.35);
}

/* Pricing CTA Button */
.pricing-cta-button {
    display: block;
    width: 100%;
    padding: 1rem 2.5rem;
    margin-top: auto;
    background: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.pricing-cta-button:hover {
    background: var(--highlight-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}

.pricing-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.pricing-cta-safety {
    background: var(--highlight-color);
    color: var(--white);
    border-color: var(--highlight-color);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.25);
}

.pricing-cta-safety:hover {
    background: var(--white);
    color: var(--highlight-color);
    border-color: var(--highlight-color);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.35);
}

.pricing-cta-centered {
    display: block;
    max-width: 300px;
    margin: 2.5rem auto 0;
    text-align: center;
    font-weight: 600;
}

/* Responsive Pricing Cards */
@media (max-width: 968px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
    }
    
    .pricing-card {
        padding: 1.3rem;
    }
    
    .pricing-category {
        margin-bottom: 3.5rem;
        margin-top: 2rem;
        padding: 2rem 0;
    }
    
    .pricing-category:not(:first-child) {
        padding-top: 3.5rem;
        margin-top: 3.5rem;
    }
    
    .pricing-category-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .pricing-category-title {
        font-size: 1.5rem;
    }
    
    .pricing-category-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .pricing-category-safety {
        padding: 2.5rem 1.5rem;
        padding-bottom: 3rem;
        margin-top: 4rem;
        margin-bottom: 3.5rem;
    }

    .pricing-category-safety .pricing-cards-wrapper {
        padding: 0;
        margin: 0.5rem 0;
    }

    .pricing-category-safety .pricing-cards-grid {
        padding: 0;
    }

    .pricing-category-safety .pricing-card {
        min-width: 100%;
        max-width: 100%;
    }

    .pricing-card-safety {
        max-width: 100%;
    }

    .pricing-card-safety-icon {
        font-size: 2rem;
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .pricing-price-safety {
        font-size: 1.7rem;
    }
    
    .pricing-category-coaching {
        padding: 2.5rem 1.5rem;
        padding-bottom: 3rem;
    }
    
    .coaching-card-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .coaching-card-info {
        padding: 2rem;
    }
    
    .coaching-card-title {
        font-size: 1.5rem;
    }

    .basis-card-title {
        font-size: 1.5rem;
    }
    
    .coaching-modules {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
    }
    
    .coaching-module {
        padding: 1.05rem 1.05rem 1.05rem 1.15rem;
        gap: 0.85rem;
    }

    .coaching-module-icon {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .coaching-module-icon i {
        font-size: 0.95rem;
    }

    .coaching-module strong {
        font-size: 0.94rem;
    }

    .coaching-module span {
        font-size: 0.78rem;
    }
    
    .coaching-card-details {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: var(--spacing-md) 0 1.5rem;
    }

    .pricing-section > .container {
        padding: 0 1rem;
    }
    
    .pricing-category {
        margin-bottom: 3rem;
        margin-top: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .pricing-cards-wrapper {
        padding: 0.8rem 0;
        margin: 0.8rem 0;
        overflow: hidden;
        position: relative;
        touch-action: pan-y;
    }
    
    .pricing-cards-grid {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 0;
        padding: 0 2rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-card {
        min-width: calc(100% - 3rem);
        max-width: calc(100% - 3rem);
        flex-shrink: 0;
        padding: 2rem 1.75rem;
        scroll-snap-align: start;
    }
    
    .pricing-carousel-dots {
        display: flex;
    }
    
    .pricing-category {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
    
    .pricing-category:not(:first-child) {
        padding-top: 3rem;
        margin-top: 3rem;
    }
    
    .pricing-category-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .pricing-category-title {
        font-size: 1.4rem;
    }
    
    .pricing-category-subtitle {
        font-size: 0.9rem;
    }
    
    .pricing-category-safety {
        padding: 2rem 0.85rem;
        padding-bottom: 2.5rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
        border-radius: 18px;
    }

    .pricing-category-safety .pricing-cards-wrapper {
        padding: 0;
        margin: 0.5rem 0;
    }

    .pricing-category-safety .pricing-cards-grid {
        padding: 0;
    }

    .pricing-category-safety .pricing-card {
        min-width: 100%;
        max-width: 100%;
    }

    .pricing-card-safety {
        max-width: 100%;
    }
    
    .pricing-price {
        font-size: 1.6rem;
    }
    
    .pricing-legend-compact p {
        font-size: 0.8rem;
    }

    .pricing-card-header {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .pricing-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
        white-space: nowrap;
    }
    
    .pricing-info-box {
        padding: 0.8rem 1rem;
        margin-top: 1rem;
    }
    
    .pricing-info-box p {
        font-size: 0.85rem;
    }
    
    .pricing-includes-box {
        margin-top: 1.5rem;
    }
    
    .pricing-includes-note {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .pricing-includes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-include-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .pricing-include-icon {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .pricing-include-title {
        font-size: 0.95rem;
    }
    
    .pricing-include-description {
        font-size: 0.85rem;
    }
    
    /* Coaching Card Mobile – minimalistisch, iPhone 16 */

    /* Redundante Texte auf Mobile ausblenden */
    .coaching-location-label {
        display: none;
    }

    .coaching-price-note {
        display: none;
    }

    .coaching-card-description {
        display: none;
    }

    .coaching-spots-note {
        display: none;
    }

    /* Äußeres Container-Padding reduzieren */
    .pricing-category-coaching {
        padding: 2rem 0.85rem;
        padding-bottom: 2.5rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
        border-radius: 18px;
        background: var(--light-gray);
        border: 1px solid rgba(201, 169, 97, 0.18);
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    }

    /* Founder-Badge kompakter */
    .coaching-founder-badge {
        padding: 0.6rem 1rem;
        gap: 0.3rem;
    }

    .coaching-founder-badge-main,
    .coaching-founder-badge-expire {
        font-size: 0.78rem;
    }

    .coaching-card {
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .coaching-card-content {
        grid-template-columns: 1fr;
    }

    /* Info-Bereich */
    .coaching-card-info {
        padding: 1rem 1rem 0.75rem;
    }

    .coaching-card-title {
        font-size: 1.15rem;
        padding-right: 0;
        margin-bottom: 0.2rem;
    }

    .basis-card-title {
        font-size: 1.15rem;
    }

    .coaching-card-subtitle {
        font-size: 0.82rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    /* Module-Grid – 2×2 Icon-Chips */
    .coaching-modules {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
        margin-bottom: 0;
    }

    .coaching-module {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 0.5rem;
        padding: 0.6rem 0.65rem;
        border-radius: 10px;
    }

    .coaching-module::before {
        width: 2px;
    }

    .coaching-module span {
        display: none;
    }

    .coaching-module-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .coaching-module-icon i {
        font-size: 0.78rem;
    }

    .coaching-module > div:last-child {
        padding-top: 0;
    }

    .coaching-module strong {
        font-size: 0.78rem;
        line-height: 1.3;
        margin-bottom: 0;
    }

    /* Details-Bereich */
    .coaching-card-details {
        border-left: none;
        border-top: 1px solid rgba(201, 169, 97, 0.12);
        padding: 1rem;
    }

    .coaching-detail-box {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }

    .coaching-detail-item {
        font-size: 0.78rem;
        gap: 0.35rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .coaching-detail-item i {
        font-size: 0.85rem;
    }

    .basis-location-inline-note {
        display: block;
        margin-top: 0.12rem;
        white-space: normal;
        line-height: 1.35;
    }

    /* Standort – nur Name + Zeiten */
    .coaching-location-block {
        padding: 0.7rem 0.9rem;
        margin-bottom: 0.85rem;
    }

    .coaching-location-name {
        font-size: 0.9rem;
        font-weight: 600;
        margin: 0 0 0.35rem;
    }

    .coaching-location-times {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .coaching-location-times span {
        font-size: 0.8rem;
    }

    /* Preis-Block */
    .coaching-price-block {
        padding: 0.5rem 0;
        border-bottom: none;
    }

    .coaching-price-amount {
        font-size: 1.75rem;
    }

    .coaching-price-discount {
        font-size: 0.8rem;
        margin: 0.15rem 0 0;
    }

    /* CTA vollbreit */
    .pricing-cta-coaching {
        width: 100%;
        display: block;
        text-align: center;
        font-size: 0.95rem;
        padding: 0.9rem 1rem;
        margin: 1rem 0 0;
    }

    /* Pricing CTA Buttons – Tablet/Mobile */
    .pricing-cta-button {
        font-size: 0.95rem;
        padding: 0.95rem 1.5rem;
        line-height: 1.3;
        min-height: 48px;
        letter-spacing: 0.01em;
    }

    .pricing-cta-centered {
        max-width: 380px;
        width: calc(100% - 2rem);
        margin: 1.75rem auto 0;
    }
}

/* Pricing – Extra kleine Screens (≤ 480px) */
@media (max-width: 480px) {
    .pricing-section > .container {
        padding: 0 0.75rem;
    }

    .pricing-category-safety {
        padding: 1.75rem 0.6rem;
        padding-bottom: 2.25rem;
        border-radius: 16px;
    }

    .pricing-category-safety .pricing-cards-grid,
    .pricing-cards-grid {
        padding: 0 0.5rem;
    }

    /* Pricing CTA Buttons – Extra Small */
    .pricing-cta-button {
        font-size: 0.92rem;
        padding: 0.9rem 1.1rem;
        border-radius: 40px;
        min-height: 46px;
    }

    .pricing-cta-centered {
        max-width: none;
        width: calc(100% - 1.25rem);
        margin: 1.5rem auto 0;
    }
}

/* --- 07-contact-footer.css: Contact section and site footer --- */
/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-section .section-subtitle,
.contact-section .section-title,
.contact-section .section-description {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: var(--highlight-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--highlight-color);
    margin-top: 0.2rem;
}

.contact-icon i {
    color: var(--highlight-color);
}

.contact-details h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details address {
    color: rgba(255, 255, 255, 0.9);
}

/* Maps-Link im Kontaktbereich – DSGVO-konform (Link, kein Iframe) */
.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    color: var(--highlight-color);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.maps-link:hover {
    color: var(--light-highlight);
    text-decoration: underline;
}

/* Verhindert, dass Telefonnummern als Links angezeigt werden */
.contact-details p,
.contact-details p a,
.contact-details a[href^="tel:"] {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    pointer-events: none;
    cursor: default;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

.submit-button:hover {
    background: var(--light-highlight);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

@media (max-width: 768px) {
    .contact-section .submit-button {
        padding: 1rem;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .contact-section .submit-button {
        padding: 0.9rem;
        font-size: 0.88rem;
    }
}

/* ============================================
   Footer
   ============================================ */

.main-footer {
    background: var(--primary-color);
    padding: 3rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.footer-brand h3:hover {
    transform: translateY(-1px);
    letter-spacing: 1.2px;
}

.footer-brand h3 span {
    color: var(--highlight-color);
    font-weight: 200;
    letter-spacing: 0;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--highlight-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

/* --- 08-responsive-core.css: Global responsive breakpoints --- */
/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .hero-content {
        max-width: 100%;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content h1, .hero-content h2.hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 1rem;
    }

    .contact-form {
        order: -1;
    }

    .about-text {
        display: none;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: rgba(26, 26, 26, 0.88);
        -webkit-backdrop-filter: blur(24px);
        backdrop-filter: blur(24px);
        box-shadow: -6px 0 24px rgba(0, 0, 0, 0.15);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 1.75rem 2rem;
        gap: 0;
        z-index: 999;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        list-style: none;
        margin: 0;
    }
    
    .nav-menu.menu-open {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 1.5rem;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 1.1rem 0;
        font-size: 1.05rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.86);
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        width: 100%;
        position: relative;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        color: var(--highlight-color);
        padding-left: 0.5rem;
    }
    
    .nav-menu .cta-button {
        background: transparent !important;
        color: var(--highlight-color) !important;
        border: 1.5px solid var(--highlight-color) !important;
        padding: 0.9rem 2rem !important;
        border-radius: 50px;
        text-align: center;
        width: 100%;
        font-size: 0.92rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        justify-content: center;
        box-shadow: none;
    }
    
    .nav-menu .cta-button:hover,
    .nav-menu .cta-button:active {
        background: linear-gradient(135deg, var(--highlight-color), var(--light-highlight)) !important;
        color: #1a1a1a !important;
        border-color: transparent !important;
        box-shadow: 0 8px 28px rgba(201, 169, 97, 0.35);
        padding-left: 2rem !important;
        transform: scale(1.01);
    }

}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    /* Mobile Menu Adjustments – iPhone 16 optimized */
    .main-navigation {
        padding: 0.7rem 0;
    }
    
    .main-navigation.nav-scrolled {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 1.25rem;
    }
    
    .logo {
        font-size: 1.35rem;
        gap: 0.5rem;
    }
    
    .logo-image-wrapper {
        height: 1.8rem;
        width: 1.8rem;
    }
    
    .main-navigation.nav-scrolled .logo-image-wrapper {
        height: 1.6rem;
        width: 1.6rem;
    }
    
    .nav-menu {
        max-width: 100%;
        width: 100%;
        padding: 5rem 1.5rem 2rem;
        border-radius: 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        position: relative;
        z-index: 1001;
    }
    
    .main-navigation .mobile-menu-toggle {
        z-index: 1001;
    }
    
    .hero-badge {
        display: none;
    }

    .hero-content h1.hero-seo-title {
        font-size: 0.88rem;
        letter-spacing: 0.2em;
    }

    .hero-buttons {
        gap: 0.75rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        gap: 0.3rem;
    }
    
    .hero-title-line {
        font-size: 2.2rem;
    }
    
    .hero-title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-content h1, .hero-content h2.hero-title {
        font-size: 2.5rem;
        font-weight: 200;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-heading-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .hero-text-wrapper {
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(26, 26, 26, 0.88) 0%,
            rgba(42, 42, 42, 0.78) 50%,
            rgba(26, 26, 26, 0.88) 100%
        );
    }
    
    .personal-intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .personal-intro-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
        padding-bottom: 0.5rem;
    }
    
    .section-subtitle::after {
        width: 50px;
        height: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    
    .values-list {
        justify-content: center;
    }
    
    
    .trainer-seminar-card {
        padding: 2rem;
    }
    
    /* Trainer Seminars Carousel Mobile */
    .trainer-seminars-wrapper {
        overflow: hidden;
        position: relative;
    }
    
    .trainer-seminars-wrapper > .trainer-seminar-card {
        max-width: 100%;
        margin: 0;
        padding: 2rem 1.5rem;
    }
    
    
    .trainer-seminars-wrapper .pricing-carousel-dots {
        display: flex;
    }
    
    
    
    /* Testimonials Carousel Mobile */
    .google-reviews-summary {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.35rem 1.25rem;
    }
    
    .google-reviews-summary-brand {
        flex-direction: column;
        align-items: center;
    }
    
    .google-reviews-cta {
        width: 100%;
    }
    
    
    /* Stats Carousel Mobile */
    .stats-cards-wrapper {
        overflow: hidden;
        position: relative;
        touch-action: pan-y;
    }
    
    .stats-grid {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    .stats-grid .stat-item {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .stats-cards-wrapper .pricing-carousel-dots {
        display: flex;
    }
}

/* --- 09-legal.css: Datenschutz, Impressum, AGB pages --- */
/* ============================================
   Legal Pages (Datenschutz & Impressum)
   ============================================ */

.legal-page-section {
    padding: 8rem 0 6rem;
    background: var(--white);
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--highlight-color);
    font-family: var(--font-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-section a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.legal-section a:hover {
    color: var(--light-highlight);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-page-section {
        padding: 6rem 0 4rem;
    }
    
    .legal-content {
        padding: 0 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.7;
    }
    
    .legal-section li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.6;
    }
    
    .legal-section strong {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* --- 10-utilities.css: Scroll-to-top, form messages, contact trust elements --- */
/* ============================================
   Scroll to Top Button (Mobile Only)
   ============================================ */

.scroll-to-top-btn {
    display: none; /* Hidden by default, shown via JavaScript on mobile */
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--light-highlight) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, var(--light-highlight) 0%, var(--highlight-color) 100%);
    box-shadow: 0 6px 30px rgba(201, 169, 97, 0.6);
    transform: translateY(-4px) scale(1.05);
}

.scroll-to-top-btn:active {
    transform: translateY(-2px) scale(0.95);
    box-shadow: 0 2px 15px rgba(201, 169, 97, 0.5);
}

.scroll-to-top-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Only show on mobile devices */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .scroll-to-top-btn {
        display: none !important;
    }
}

/* ============================================
   FORM SUCCESS / ERROR MESSAGES
   ============================================ */

.form-message {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInMessage 0.4s ease-out;
}

.form-message i {
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-success-message {
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: #2e7d32;
}

.form-success-message i {
    color: #2e7d32;
}

.form-error-message {
    background: rgba(198, 40, 40, 0.1);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #c62828;
}

.form-error-message i {
    color: #c62828;
}

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

/* ============================================
   CONTACT TRUST ELEMENTS
   ============================================ */

.contact-trust-elements {
    margin-top: 24px;
    padding: 20px;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    color: var(--highlight-color, #D4A843);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.trust-item:first-child {
    padding-top: 0;
}

.trust-item:last-child {
    padding-bottom: 0;
}

/* B2B page trust elements (lighter background) */
.b2b-contact-section .contact-trust-elements {
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
}

.b2b-contact-section .trust-item {
    color: rgba(255, 255, 255, 0.8);
}


/* --- 11-booking-amelia.css: Booking section and Amelia plugin overrides --- */
/* ============================================
   BOOKING SECTION (AMELIA)
   ============================================ */

.booking-section {
    padding: 30px 0 80px;
    background: var(--white);
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    color: var(--medium-gray);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.booking-tab:hover {
    background: rgba(201, 169, 97, 0.08);
    border-color: rgba(201, 169, 97, 0.3);
    color: var(--dark-gray);
}

.booking-tab.active {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.booking-tab i {
    font-size: 1rem;
}

.booking-tab-content {
    display: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.booking-tab-content.active {
    display: block;
}

/* Volle Breite für Amelia, damit nach Tab-Wechsel kein falsches Layout entsteht */
.booking-tab-content .amelia-app-booking,
.booking-tab-content .amelia-frontend {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.booking-fallback {
    text-align: center;
    padding: 60px 40px;
    background: rgba(212, 168, 67, 0.05);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 16px;
}

.booking-fallback i {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 20px;
}

.booking-fallback p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.booking-fallback .btn-primary {
    display: inline-block;
    margin-top: 20px;
}

/* Kundenbereich unterhalb der Terminbuchung (Amelia Customer Panel) */
.booking-customer-area {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-customer-area .section-header {
    margin-bottom: 2rem;
}

.booking-customer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.booking-customer-fallback-lead {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
}

.booking-customer-fallback {
    color: var(--medium-gray);
}

.booking-customer-fallback p:last-child {
    margin-bottom: 0;
}

.booking-customer-box .amelia-app-booking,
.booking-customer-box .amelia-frontend,
.booking-customer-box [class*="amelia-customer"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ============================================
   AMELIA PLUGIN STYLING (SafeHer Branding)
   ============================================ */

/* Amelia Container */
.amelia-app-booking,
.amelia-frontend {
    font-family: 'Poppins', sans-serif !important;
}

/* Amelia Kalender */
.amelia-app-booking .el-calendar,
.amelia-frontend .el-calendar {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(212, 168, 67, 0.2) !important;
    border-radius: 12px !important;
}

/* Amelia Buttons */
.amelia-app-booking .el-button--primary,
.amelia-frontend .el-button--primary,
.amelia-app-booking .amelia-booking-btn,
.amelia-frontend .amelia-booking-btn {
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--light-highlight) 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: var(--primary-bg) !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
}

.amelia-app-booking .el-button--primary:hover,
.amelia-frontend .el-button--primary:hover,
.amelia-app-booking .amelia-booking-btn:hover,
.amelia-frontend .amelia-booking-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4) !important;
}

/* Amelia Cards / Events */
.amelia-app-booking .amelia-event-card,
.amelia-frontend .amelia-event-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(212, 168, 67, 0.15) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.amelia-app-booking .amelia-event-card:hover,
.amelia-frontend .amelia-event-card:hover {
    border-color: var(--highlight-color) !important;
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15) !important;
}

/* Amelia Input Felder */
.amelia-app-booking input,
.amelia-app-booking .el-input__inner,
.amelia-frontend input,
.amelia-frontend .el-input__inner {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #fff !important;
}

.amelia-app-booking input:focus,
.amelia-app-booking .el-input__inner:focus,
.amelia-frontend input:focus,
.amelia-frontend .el-input__inner:focus {
    border-color: var(--highlight-color) !important;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1) !important;
}

/* Amelia Labels */
.amelia-app-booking label,
.amelia-frontend label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
}

/* Amelia Ausgewaehlte Elemente */
.amelia-app-booking .is-selected,
.amelia-app-booking .el-calendar-day.is-selected,
.amelia-frontend .is-selected {
    background: var(--highlight-color) !important;
    color: var(--primary-bg) !important;
}

/* Amelia Event Liste */
.amelia-app-booking .amelia-events-list,
.amelia-frontend .amelia-events-list {
    gap: 20px;
}

/* Amelia Event Titel */
.amelia-app-booking .amelia-event-title,
.amelia-frontend .amelia-event-title {
    color: #fff !important;
    font-weight: 600 !important;
}

/* Amelia Event Details */
.amelia-app-booking .amelia-event-info,
.amelia-app-booking .amelia-event-date,
.amelia-app-booking .amelia-event-time,
.amelia-frontend .amelia-event-info,
.amelia-frontend .amelia-event-date,
.amelia-frontend .amelia-event-time {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Amelia Preis */
.amelia-app-booking .amelia-event-price,
.amelia-frontend .amelia-event-price {
    color: var(--highlight-color) !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
}

/* Amelia Steps / Progress */
.amelia-app-booking .el-step__head.is-finish,
.amelia-app-booking .el-step__head.is-process,
.amelia-frontend .el-step__head.is-finish,
.amelia-frontend .el-step__head.is-process {
    color: var(--highlight-color) !important;
    border-color: var(--highlight-color) !important;
}

.amelia-app-booking .el-step__title.is-finish,
.amelia-app-booking .el-step__title.is-process,
.amelia-frontend .el-step__title.is-finish,
.amelia-frontend .el-step__title.is-process {
    color: var(--highlight-color) !important;
}

/* Amelia Modal / Popup */
.amelia-app-booking .el-dialog,
.amelia-frontend .el-dialog {
    background: var(--primary-bg) !important;
    border: 1px solid rgba(212, 168, 67, 0.2) !important;
    border-radius: 16px !important;
}

.amelia-app-booking .el-dialog__title,
.amelia-frontend .el-dialog__title {
    color: #fff !important;
}

/* Responsive Amelia */
@media (max-width: 768px) {
    .booking-section {
        padding: 20px 0 60px;
    }

    .booking-tabs {
        gap: 0.5rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .booking-tab {
        padding: 0.8rem 0.75rem;
        font-size: 0.82rem;
        gap: 0.4rem;
        border-radius: 50px;
    }
    
    .booking-tab i {
        font-size: 0.9rem;
    }

    .booking-container {
        padding: 0 15px;
    }

    .amelia-app-booking .amelia-event-card,
    .amelia-frontend .amelia-event-card {
        padding: 20px !important;
    }
}

/* --- 12-home-extras.css: How it works, B2B references on homepage --- */
/* ============================================================
   P1.2 – So funktioniert's / Buchungs-Erklärung
   ============================================================ */
.how-it-works {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2.5rem 2.5rem 2rem;
    margin-bottom: 2.5rem;
}

.hiw-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--highlight-color);
    margin: 0 0 1.75rem 0;
}

.how-it-works-steps {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.how-it-works-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(100% / 6);
    width: calc(100% * 2 / 3);
    height: 1px;
    background: rgba(201, 169, 97, 0.25);
    z-index: 0;
}

.hiw-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 0 1.5rem;
    position: relative;
}

.hiw-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 1.5px solid var(--highlight-color);
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hiw-step-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.hiw-step-content p {
    font-size: 0.8rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

.hiw-step-divider {
    display: none;
}

.hiw-price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
    text-align: center;
    margin-top: 1.5rem;
}

.hiw-price-note i {
    color: var(--highlight-color);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .how-it-works {
        padding: 1.75rem 1.25rem 1.5rem;
    }
    .how-it-works-steps {
        flex-direction: column;
        gap: 1.25rem;
    }
    .how-it-works-steps::before {
        display: none;
    }
    .hiw-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 0;
        gap: 1rem;
    }
    .hiw-step-content {
        flex: 1;
    }
}

/* ============================================================
   P1.4 – B2B Referenzen
   ============================================================ */
.b2b-references-section {
    padding: 5rem 0;
    background: var(--color-bg, #1a1a1a);
}

.b2b-references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.b2b-reference-card {
    background: var(--color-surface, #2a2a2a);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
}

.b2b-reference-icon {
    font-size: 2rem;
    color: var(--highlight-color, #c9a961);
    margin-bottom: 1rem;
}

.b2b-reference-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.b2b-reference-type {
    font-size: 0.8rem;
    color: var(--highlight-color, #c9a961);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.b2b-reference-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}

.b2b-references-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.b2b-references-note a {
    color: var(--highlight-color, #c9a961);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .b2b-references-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 13-faq-accordion.css: FAQ accordion component (homepage) --- */
/* ============================================================
   P2.3 – FAQ Accordion
   ============================================================ */
.faq-section {
    padding: 5rem 0;
    background: #1a1a1a;
    position: relative;
}
.faq-section .section-subtitle {
    color: var(--highlight-color, #c9a961);
}

.faq-section .section-title {
    color: #ffffff;
}

.faq-section .section-description {
    color: rgba(255,255,255,0.6);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover {
    background: #2f2f2f;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.faq-item--open {
    background: #2f2f2f;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.4;
}

.faq-question:hover {
    color: #ffffff;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--highlight-color, #c9a961);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item--open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer p + p {
    padding-top: 0.2rem;
}

.faq-answer strong {
    color: #ffffff;
}

.faq-answer a {
    color: var(--highlight-color, #c9a961);
    text-decoration: underline;
}

.faq-answer ul {
    padding: 0.25rem 1.5rem 1.25rem 2.75rem;
    margin: 0;
}

.faq-answer ul li {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.15rem;
}

.faq-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.faq-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin: 0;
}

/* --- 14-blog.css: Blog archive and single post --- */
/* ============================================================
   P2.2 – Blog Archive & Single Post
   ============================================================ */
.blog-archive-main,
.single-post-main {
    padding-top: 80px; /* Platz für fixe Navigation */
    min-height: 70vh;
}

.blog-hero {
    padding: 4rem 0 3rem;
    background: var(--color-bg, #1a1a1a);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.blog-archive-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 0.75rem;
}

.blog-archive-description {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    max-width: 600px;
}

.blog-posts-section {
    padding: 4rem 0;
    background: var(--color-bg, #1a1a1a);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--color-surface, #2a2a2a);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
    border-color: rgba(201,169,97,0.3);
    transform: translateY(-3px);
}

.blog-card-image-link {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--highlight-color, #c9a961);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: #fff;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--highlight-color, #c9a961);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}

.blog-card-link {
    font-size: 0.875rem;
    color: var(--highlight-color, #c9a961);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-link:hover {
    gap: 0.7rem;
}

.blog-pagination {
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    background: var(--color-surface, #2a2a2a);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.blog-pagination .page-numbers .current,
.blog-pagination .page-numbers a:hover {
    background: var(--highlight-color, #c9a961);
    color: #1a1a1a;
    border-color: transparent;
}

.blog-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: rgba(255,255,255,0.6);
}

/* Single Post */
.single-post-article {
    background: var(--color-bg, #1a1a1a);
}

.single-post-header {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--highlight-color, #c9a961);
}

.single-post-date {
    font-size: 0.85rem;
    color: var(--highlight-color, #c9a961);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.single-post-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.single-post-thumbnail {
    border-radius: 16px;
    overflow: hidden;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content {
    padding: 3rem 0 5rem;
}

.post-content-body {
    max-width: 720px;
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.post-content-body h2,
.post-content-body h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.post-content-body a {
    color: var(--highlight-color, #c9a961);
}

.post-content-body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.single-post-footer {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.single-post-cta {
    background: var(--color-surface, #2a2a2a);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(201,169,97,0.2);
}

.single-post-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.post-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    max-width: 48%;
}

.post-nav-link:hover {
    color: var(--highlight-color, #c9a961);
}

.post-nav-next {
    margin-left: auto;
    text-align: right;
}

.back-to-blog {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.back-to-blog:hover {
    color: var(--highlight-color, #c9a961);
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    .post-nav-link {
        max-width: 100%;
    }
}

/* --- 15-design-refresh.css: Typography refresh, scroll reveal, CTA hierarchy --- */
/* ============================================================
   PHASE 3 – Design Refresh
   ============================================================ */

/* ----------------------------------------------------------
   P3.2 – Typografie: Playfair Display für Headlines
   ---------------------------------------------------------- */
.hero-title,
.section-title,
.blog-archive-title,
.single-post-title,
.blog-card-title,
.quote-text,
.coaching-card-title {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 400;
}

.hero-title-line {
    display: block;
    color: #ffffff;
}

.hero-title-highlight {
    display: inline-block;
    color: var(--highlight-color);
    font-style: italic;
    font-weight: normal;
    position: relative;
    padding-bottom: 0.12em;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--highlight-color), rgba(201, 169, 97, 0.3));
    border-radius: 2px;
    animation: hiw-underline 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

@keyframes hiw-underline {
    to { width: 100%; }
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    font-weight: 600;
}

.quote-text {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    font-weight: 400;
}

/* ----------------------------------------------------------
   P3.1 – Hero: Bild, Badge, Pillars
   ---------------------------------------------------------- */
.hero-bg-image {
    object-position: center top;
}

.hero-overlay {
    background: linear-gradient(
        105deg,
        rgba(10, 10, 10, 0.82) 0%,
        rgba(10, 10, 10, 0.60) 50%,
        rgba(10, 10, 10, 0.25) 100%
    );
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.45);
    color: var(--highlight-color);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .hero-badge {
        display: none !important;
    }
}

.hero-pillars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 1.75rem auto 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.hero-pillar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.hero-pillar i {
    color: var(--highlight-color);
    font-size: 0.9rem;
}

.hero-pillar-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .hero-pillar-divider { display: none; }
    .hero-pillars { gap: 0.75rem; }
    .hero-pillar { font-size: 0.8rem; }
}

/* ----------------------------------------------------------
   P3.3 – Scroll-Reveal Animationen
   ---------------------------------------------------------- */
.reveal {
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(32px);
}

.reveal-fade {
    transform: none;
}

.reveal-left {
    transform: translateX(-32px);
}

.reveal-right {
    transform: translateX(32px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Verzögerung für gestaffelte Elemente */
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }

/* Reduced motion: Animationen deaktivieren */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ----------------------------------------------------------
   P3.5 – CTA Buttons: Klarere Hierarchie
   ---------------------------------------------------------- */
.btn-primary {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* ----------------------------------------------------------
   P3.5 – Zitat-Block: Display-Serif + Goldlinie
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    .quote-block {
        display: none;
    }
}

/* ----------------------------------------------------------
   P3.5 – Section Subtitle: Goldene Trennlinie
   ---------------------------------------------------------- */
.section-subtitle {
    display: inline-block;
    color: var(--highlight-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1px;
    background: var(--highlight-color);
    opacity: 0.6;
}

/* ----------------------------------------------------------
   P3.5 – Nav CTA Button: Desktop (Outline → Fill on Hover)
   ---------------------------------------------------------- */
.main-navigation .cta-button {
    background: transparent !important;
    color: var(--highlight-color) !important;
    border: 1.5px solid var(--highlight-color) !important;
    font-weight: 700;
    font-size: 0.82rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 0.55rem 1.25rem !important;
    box-shadow: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.18s ease, box-shadow 0.25s ease !important;
}

.main-navigation .cta-button:hover {
    background: linear-gradient(135deg, var(--highlight-color), var(--light-highlight)) !important;
    color: #1a1a1a !important;
    border-color: transparent !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 28px rgba(201, 169, 97, 0.35) !important;
}

.main-navigation .cta-button:active {
    background: var(--highlight-color) !important;
    color: #1a1a1a !important;
    transform: translateY(0) scale(0.98) !important;
    box-shadow: 0 1px 6px rgba(201, 169, 97, 0.18) !important;
}

/* reCAPTCHA v3 Badge ausblenden (Hinweistext wird inline beim Formular angezeigt) */
.grecaptcha-badge {
    visibility: hidden !important;
}

.recaptcha-notice {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.recaptcha-notice a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
}

/* --- 16-instagram-reviews.css: Instagram feed, Google reviews, hero badge, lead magnet --- */
/* ===================================
   Instagram Section
   =================================== */

.instagram-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.instagram-preview {
    max-width: 900px;
    margin: 0 auto;
}

.instagram-handle-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.instagram-handle-badge i {
    font-size: 1.3rem;
    color: #c13584;
}

.instagram-grid-link {
    display: block;
    text-decoration: none;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border-radius: 12px;
    overflow: hidden;
}

.instagram-cell {
    position: relative;
    aspect-ratio: 1;
    background: var(--primary-color);
    overflow: hidden;
    cursor: pointer;
}

.instagram-cell--1 { background: linear-gradient(135deg, #1a1a2e 0%, #2a1a1a 100%); }
.instagram-cell--2 { background: linear-gradient(135deg, #1e1e1e 0%, #2d2010 100%); }
.instagram-cell--3 { background: linear-gradient(135deg, #16213e 0%, #1a1a1a 100%); }
.instagram-cell--4 { background: linear-gradient(135deg, #2d2010 0%, #1a1a1a 100%); }
.instagram-cell--5 { background: linear-gradient(135deg, #1a1a2e 0%, #0f0f0f 100%); }
.instagram-cell--6 { background: linear-gradient(135deg, #1e1e1e 0%, #2a1a1a 100%); }

/* Subtle gold pattern */
.instagram-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.08), transparent 60%);
}

.instagram-cell-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.instagram-cell-overlay i {
    font-size: 2rem;
    color: #fff;
}

.instagram-grid-link:hover .instagram-cell-overlay {
    opacity: 1;
}

.instagram-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.instagram-follow-btn:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--white);
}

.instagram-follow-btn i {
    font-size: 1.1rem;
}

.coaching-founder-badge-expire {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: var(--highlight-color);
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 97, 0.35);
    box-shadow: 0 1px 3px rgba(201, 169, 97, 0.12);
    white-space: nowrap;
}

.coaching-founder-badge-expire i {
    font-size: 0.72rem;
}

@media (max-width: 768px) {
    .coaching-founder-badge-expire {
        font-size: 0.65rem;
        padding: 0.26rem 0.7rem;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 60px 0;
    }

    .instagram-grid {
        gap: 4px;
    }
}

/* ============================================
   Google Reviews Section
   ============================================ */

.google-reviews-section {
    padding: 100px 0 40px;
    background: var(--white);
}

/* Summary bar: Google G + score + stars + total */
.google-reviews-summary-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0 3.5rem;
    padding: 1.5rem 2rem;
    background: var(--light-gray);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.google-reviews-g-icon {
    flex-shrink: 0;
}

.google-reviews-score {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

.google-reviews-stars {
    display: flex;
    gap: 0.15rem;
    color: #f4b400;
    font-size: 1.1rem;
}

.google-reviews-total {
    font-size: 0.875rem;
    color: var(--medium-gray);
    white-space: nowrap;
}

/* Review cards grid */
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.google-review-card {
    background: var(--light-gray);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1.75rem;
    transition: var(--transition-smooth);
}

.google-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.google-review-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.google-reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--highlight-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-reviewer-meta {
    flex: 1;
    min-width: 0;
}

.google-reviewer-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.google-review-time {
    display: block;
    font-size: 0.78rem;
    color: var(--medium-gray);
    margin-top: 0.15rem;
}

.google-review-g-small {
    flex-shrink: 0;
    opacity: 0.85;
}

.google-review-stars {
    display: flex;
    gap: 0.1rem;
    color: #f4b400;
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
}

.google-review-stars .google-star-empty {
    color: rgba(255, 255, 255, 0.2);
}

.google-review-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Action buttons */
.google-reviews-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.google-review-card {
    cursor: pointer;
}

.google-review-read-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--highlight-color);
    letter-spacing: 0.02em;
}

/* Modal */
.google-review-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.google-review-modal[hidden] {
    display: none;
}

.google-review-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.google-review-modal-box {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.google-review-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s;
}

.google-review-modal-close:hover {
    color: var(--primary-color);
}

.google-review-modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.google-review-modal-text {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Expand button (mobile only, hidden by default) */
.google-reviews-expand {
    display: none;
}

@media (max-width: 640px) {
    .google-reviews-section {
        padding: 60px 0 24px;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-reviews-summary-bar {
        gap: 0.75rem;
    }

    .google-reviews-score {
        font-size: 1.75rem;
    }

    /* Collapsed state: only 2 full reviews + faded 3rd teaser */
    .google-reviews-grid--mobile-collapse.is-collapsed {
        margin-bottom: 0;
        position: relative;
    }

    .google-reviews-grid--mobile-collapse.is-collapsed .google-review-card:nth-child(n+4) {
        display: none;
    }

    .google-reviews-grid--mobile-collapse.is-collapsed .google-review-card:nth-child(3) {
        display: block;
        position: relative;
        max-height: 150px;
        overflow: hidden;
        padding-bottom: 0.5rem;
        pointer-events: none;
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
                mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
    }

    .google-reviews-grid--mobile-collapse.is-collapsed .google-review-card:nth-child(3):hover {
        transform: none;
        box-shadow: none;
    }

    /* Expand button */
    .google-reviews-expand {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        margin: -0.5rem auto 2.25rem;
        padding: 0.8rem 1.5rem;
        width: fit-content;
        background: var(--white);
        color: var(--primary-color);
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 999px;
        font-family: inherit;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        cursor: pointer;
        position: relative;
        z-index: 2;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        transition: var(--transition-smooth);
        -webkit-tap-highlight-color: transparent;
    }

    .google-reviews-expand:hover,
    .google-reviews-expand:focus-visible {
        border-color: var(--highlight-color);
        color: var(--highlight-color);
        box-shadow: 0 8px 24px rgba(201, 169, 97, 0.18);
        outline: none;
    }

    .google-reviews-expand .fa-chevron-down {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
    }

    .google-reviews-expand[aria-expanded="true"] .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* ============================================
   Hero Social Proof Badge
   ============================================ */

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
    animation: fadeInUp 1.1s ease-out 0.3s both;
    flex-wrap: wrap;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-proof-text {
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-proof-stars {
    color: #f5c842;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

.hero-proof-icon {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-proof-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 300;
    user-select: none;
}

.hero-proof-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: pulse-green 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
    60%  { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@media (max-width: 480px) {
    .hero-social-proof {
        gap: 0.45rem 0.6rem;
    }
    .hero-proof-divider {
        display: none;
    }
}

/* ============================================
   Lead Magnet Section
   ============================================ */

.lead-magnet-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.lead-magnet-card {
    background:
        radial-gradient(
            ellipse 80% 55% at 50% 0%,
            rgba(201, 169, 97, 0.09) 0%,
            transparent 68%
        ),
        #1e1b18;
    border: 1px solid rgba(201, 169, 97, 0.28);
    border-radius: 20px;
    padding: 3rem;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(201, 169, 97, 0.06);
}

.lead-magnet-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--highlight-color) 50%, transparent 100%);
    opacity: 0.65;
}

.lead-magnet-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.lead-magnet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(201, 169, 97, 0.18);
    border: 1px solid rgba(201, 169, 97, 0.35);
    color: var(--highlight-color);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.12);
}

.lead-magnet-title {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--highlight-color);
    margin-bottom: 0.75rem;
}

.lead-magnet-headline {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.lead-magnet-benefits {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.lead-magnet-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.95rem;
    line-height: 1.55;
}

.lead-magnet-benefits li i {
    color: var(--highlight-color);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.lead-magnet-coming-soon {
    margin-bottom: 1.5rem;
}

.lead-magnet-coming-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--highlight-color);
    margin-bottom: 0.75rem;
}

.lead-magnet-coming-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 0.75rem;
}

.lead-magnet-form {
    max-width: 600px;
    margin: 0 auto;
}

.lead-magnet-form-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.lead-magnet-input {
    flex: 1;
    min-width: 160px;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: border-color 0.2s, background 0.2s;
}

.lead-magnet-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.lead-magnet-input:focus {
    outline: none;
    border-color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.12);
}

.lead-magnet-submit {
    padding: 0.9rem 2.25rem;
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lead-magnet-submit:hover {
    background: var(--light-highlight);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.lead-magnet-submit--cta {
    display: inline-flex;
    text-decoration: none;
    color: var(--white);
    margin: 0 auto;
}

.lead-magnet-privacy {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    text-align: center;
}

.lead-magnet-privacy i {
    margin-right: 0.3rem;
}

@media (max-width: 640px) {
    .lead-magnet-card {
        padding: 2rem 1.5rem;
    }

    .lead-magnet-headline {
        font-size: 1.4rem;
    }

    .lead-magnet-form-row {
        flex-direction: column;
    }

    .lead-magnet-input {
        min-width: auto;
    }

    .lead-magnet-submit {
        width: 100%;
        justify-content: center;
    }
}

/* --- 17-hero-redesign.css: Hero mobile refinement and modern redesign --- */
/* ============================================================
   Hero Section – Mobile Refinement (Lead-Gen Optimized)
   Priorities on mobile:
   1. Trust signal visible above the fold (badge)
   2. Clear headline hierarchy, no clutter
   3. Social proof sits directly above the primary CTA
   4. One dominant, filled CTA; secondary demoted to text link
   5. Tight, professional vertical rhythm
   ============================================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 72px;
        padding-bottom: 2.5rem;
    }

    .hero-container {
        padding: 2rem 1.25rem 1rem;
        min-height: calc(100svh - 72px);
        align-items: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        gap: 0;
    }

    .hero-content h1.hero-seo-title {
        font-size: 0.82rem;
        letter-spacing: 0.22em;
        color: rgba(255, 255, 255, 0.6);
        margin: 0 0 1.75rem 0;
        order: 1;
    }

    .hero-badge {
        display: none !important;
    }

    .hero-heading-wrapper {
        margin: 0 0 1.5rem 0;
        order: 3;
    }

    .hero-title {
        font-size: clamp(1.4rem, 6.5vw, 2.3rem);
        line-height: 1.18;
        gap: 0.35rem;
        margin: 0;
        letter-spacing: -0.02em;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-title-line,
    .hero-title-highlight {
        font-size: inherit;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .hero-text-wrapper {
        margin: 0 0 2.25rem 0;
        order: 4;
        width: 100%;
    }

    .hero-content p.hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.85);
        max-width: 34ch;
        margin: 0 auto;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-pillars {
        display: none;
    }

    .hero-social-proof {
        order: 5;
        margin: 0 0 1.75rem 0;
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-proof-text {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.82);
    }

    .hero-proof-stars {
        font-size: 0.8rem;
    }

    .hero-proof-divider {
        display: none;
    }

    .hero-buttons {
        order: 6;
        flex-direction: column;
        gap: 0.55rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
        width: 100%;
        min-height: 50px;
        padding: 0.95rem 1.75rem;
        background: transparent;
        color: var(--highlight-color);
        border: 1.5px solid var(--highlight-color);
        border-radius: 100px;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        text-align: center;
        box-shadow: none;
        transition:
            background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
            color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.25s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
    }

    .hero-buttons .btn-primary i {
        font-size: 0.7rem;
        opacity: 0.8;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hero-buttons .btn-primary:hover,
    .hero-buttons .btn-primary:active {
        background: var(--highlight-color);
        color: #1a1a1a;
        border-color: var(--highlight-color);
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(201, 169, 97, 0.22);
    }

    .hero-buttons .btn-primary:hover i,
    .hero-buttons .btn-primary:active i {
        transform: translateY(2px);
        opacity: 1;
    }

    .hero-buttons .btn-primary::after {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.78) 0%,
            rgba(10, 10, 10, 0.65) 55%,
            rgba(10, 10, 10, 0.85) 100%
        );
    }
}

/* iPhone 16 (393px) and larger phones up to tablet:
   keep the hero headline on a single line. Below 390px the title
   is allowed to wrap (controlled 2/2 split via &nbsp; in markup). */
@media (min-width: 390px) and (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.15rem, 5vw, 2.3rem);
    }

    .hero-title-line,
    .hero-title-highlight {
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .hero-content p.hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-proof-text,
    .hero-proof-stars {
        font-size: 0.72rem;
    }
}

/* ============================================================
   Hero Section – Modern Redesign (Dynamic Content & Polish)
   Adds:
   - Live course status pill with pulsing dot
   - Ken-Burns effect on background image
   - Radial mesh overlay for depth
   - Decorative corner accents
   - Scroll indicator with animated line
   - Shimmer effect on highlighted headline word
   - Refined entrance animations (staggered)
   ============================================================ */

/* --- Ken Burns on background image -------------------------- */
@keyframes heroKenBurns {
    0%   { transform: scale(1.02) translate3d(0, 0, 0); }
    100% { transform: scale(1.12) translate3d(-1.5%, -1.5%, 0); }
}

.hero-bg-image.hero-bg-image--kenburns {
    transform-origin: center center;
    animation: heroKenBurns 28s ease-out infinite alternate;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-image.hero-bg-image--kenburns {
        animation: none;
    }
}

/* --- Radial mesh overlay for cinematic depth ---------------- */
.hero-overlay-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%,
            rgba(201, 169, 97, 0.12) 0%,
            rgba(201, 169, 97, 0) 60%),
        radial-gradient(ellipse 70% 60% at 80% 80%,
            rgba(10, 10, 10, 0.55) 0%,
            rgba(10, 10, 10, 0) 70%);
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* --- Decorative corner accents (desktop only) --------------- */
.hero-accent {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 160px;
    height: 160px;
    border-color: rgba(201, 169, 97, 0.4);
}

.hero-accent--tl {
    top: 100px;
    left: 2rem;
    border-top: 1px solid;
    border-left: 1px solid;
    border-top-left-radius: 4px;
}

.hero-accent--br {
    bottom: 80px;
    right: 2rem;
    border-bottom: 1px solid;
    border-right: 1px solid;
    border-bottom-right-radius: 4px;
}

@media (max-width: 968px) {
    .hero-accent { display: none; }
}

/* --- Live status pill (above the fold) ---------------------- */
.hero-live-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem 0.5rem 0.9rem;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    white-space: nowrap;
    animation: heroFadeDown 0.7s ease-out both;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: heroLivePulse 2s ease-in-out infinite;
}

@keyframes heroLivePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
    50%      { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-live-label {
    color: rgba(255, 255, 255, 0.7);
}

.hero-live-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.hero-live-date {
    color: #ffffff;
    font-weight: 600;
}

.hero-live-spots {
    color: var(--highlight-color);
    font-weight: 600;
}

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

/* --- Shimmer on the highlighted headline word --------------- */
.hero-title-highlight {
    background: linear-gradient(
        100deg,
        var(--highlight-color) 0%,
        #e8cf8e 45%,
        var(--highlight-color) 55%,
        var(--highlight-color) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroHighlightShimmer 6s ease-in-out infinite;
}

@keyframes heroHighlightShimmer {
    0%, 100% { background-position: 200% 0; }
    50%      { background-position: -50% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title-highlight {
        animation: none;
        background: none;
        -webkit-text-fill-color: var(--highlight-color);
        color: var(--highlight-color);
    }
}

/* --- Refined primary CTA: subtle glow + shine on hover ------ */
.hero-buttons .btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-buttons .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 80%
    );
    transform: translateX(-120%);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.hero-buttons .btn-primary:hover::after {
    transform: translateX(120%);
}

/* --- Scroll indicator (bottom of hero, desktop only) -------- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: heroScrollFadeIn 1s ease-out 0.6s both;
}

@keyframes heroScrollFadeIn {
    from { opacity: 0; transform: translate(-50%, -4px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

.hero-scroll-indicator:hover {
    color: var(--highlight-color);
    transform: translate(-50%, -2px);
}

.hero-scroll-line {
    position: relative;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--highlight-color) 100%
    );
    animation: heroScrollLine 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes heroScrollLine {
    0%   { top: -100%; }
    100% { top: 200%; }
}

@media (max-width: 968px) {
    .hero-scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-line::after { animation: none; }
}

/* --- Subtitle: two-part editorial treatment ----------------- */
.hero-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 46ch;
    margin: 0 auto;
    padding: 0;
    text-shadow: none;
}

.hero-subtitle-lead {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: -0.015em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    text-wrap: balance;
}

.hero-subtitle-lead::after {
    content: '';
    display: block;
    width: 42px;
    height: 1px;
    margin: 1.1rem auto;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--highlight-color) 50%,
        transparent 100%
    );
    opacity: 0.8;
}

.hero-subtitle-claim {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: -0.015em;
    text-transform: none;
    text-wrap: balance;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

@media (max-width: 968px) {
    .hero-subtitle-lead,
    .hero-subtitle-claim {
        font-size: 1.15rem;
        line-height: 1.48;
    }
}

@media (max-width: 768px) {
    .hero-content p.hero-subtitle {
        max-width: 36ch;
    }

    .hero-subtitle-lead,
    .hero-subtitle-claim {
        font-size: 1.05rem;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.95);
    }

    .hero-subtitle-lead::after {
        width: 32px;
        margin: 0.9rem auto;
    }
}

@media (max-width: 380px) {
    .hero-subtitle-lead,
    .hero-subtitle-claim {
        font-size: 1rem;
    }
}

/* --- Mobile tweaks for new elements ------------------------- */
@media (max-width: 768px) {
    .hero-live-status {
        order: 0;
        font-size: 0.68rem;
        padding: 0.4rem 0.8rem 0.4rem 0.7rem;
        gap: 0.4rem;
        margin: 0 0 1rem 0;
        max-width: calc(100vw - 2rem);
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
    }

    .hero-live-dot {
        width: 7px;
        height: 7px;
    }

    .hero-accent,
    .hero-overlay-mesh {
        display: none;
    }
}

@media (max-width: 380px) {
    .hero-live-status {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem 0.35rem 0.6rem;
        gap: 0.35rem;
    }

    .hero-live-divider {
        font-size: 0.6rem;
    }
}

/* --- 18-page-ueber-mich.css: Über mich about page --- */
/* ============================================
   Über mich Page
   ============================================ */

/* --- Hero --- */
.ueber-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ueber-hero__bg {
    position: absolute;
    inset: 0;
}

.ueber-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ueber-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(26,26,26,0.82) 0%,
        rgba(26,26,26,0.55) 55%,
        rgba(26,26,26,0.30) 100%
    );
}

.ueber-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.ueber-hero__content {
    max-width: 640px;
}

.ueber-hero__title {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.15;
    margin: 1.2rem 0 1.4rem;
}

.ueber-hero__title-line {
    display: block;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    opacity: 0.9;
}

.ueber-hero__title-highlight {
    display: block;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--highlight-color), var(--light-highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ueber-hero__subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.ueber-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    z-index: 3;
}

.ueber-hero__scroll:hover {
    color: var(--highlight-color);
}

.ueber-hero__scroll .hero-scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: currentColor;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* --- Facts Strip --- */
.ueber-facts-strip {
    background: var(--white);
    border-top: 1px solid rgba(26,26,26,0.07);
    border-bottom: 1px solid rgba(26,26,26,0.07);
    padding: 2rem 0;
}

.ueber-facts-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.ueber-fact {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 2.5rem;
    flex: 0 0 auto;
}

.ueber-fact__icon {
    width: 42px;
    height: 42px;
    background: rgba(201,169,97,0.1);
    border: 1px solid rgba(201,169,97,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight-color);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ueber-fact__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ueber-fact__body strong {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.ueber-fact__body span {
    color: var(--medium-gray);
    font-size: 0.78rem;
}

.ueber-fact-divider {
    width: 1px;
    height: 40px;
    background: rgba(26,26,26,0.1);
    flex-shrink: 0;
}

/* --- Story Section --- */
.ueber-story-section {
    background: var(--white);
    padding: 7rem 0;
}

.ueber-story-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.ueber-story-image__wrap {
    position: relative;
    border-radius: 4px;
    overflow: visible;
}

.ueber-story-image__wrap img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.ueber-story-image__deco {
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 2px solid var(--highlight-color);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

.ueber-story-image__badge {
    position: absolute;
    bottom: -1.2rem;
    right: -1.2rem;
    background: var(--highlight-color);
    color: #1a1a1a;
    border-radius: 4px;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(201,169,97,0.3);
}

.ueber-story-text .section-subtitle {
    margin-bottom: 0.5rem;
}

.ueber-story-text .section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.ueber-story-lead {
    font-size: 1.08rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ueber-story-text p {
    color: var(--medium-gray);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.ueber-quote {
    margin-top: 2.5rem;
    border-left: 3px solid var(--highlight-color);
    padding: 1rem 0 1rem 1.5rem;
}

.ueber-quote p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--primary-color) !important;
    font-style: italic;
    margin-bottom: 0.4rem !important;
}

.ueber-quote cite {
    color: var(--highlight-color);
    font-size: 0.85rem;
    font-style: normal;
    letter-spacing: 0.05em;
}

/* --- Credentials Section --- */
.ueber-credentials-section {
    background: #f7f6f4;
    padding: 7rem 0;
}

.ueber-credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ueber-credential-card {
    background: var(--white);
    border: 1px solid rgba(26,26,26,0.07);
    border-radius: 4px;
    padding: 2.2rem 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.ueber-credential-card:hover {
    border-color: rgba(201,169,97,0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201,169,97,0.12);
}

.ueber-credential-icon {
    width: 52px;
    height: 52px;
    background: rgba(201,169,97,0.1);
    border: 1px solid rgba(201,169,97,0.25);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight-color);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.ueber-credential-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.ueber-credential-card p {
    color: var(--medium-gray);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* --- Values Section --- */
.ueber-values-section {
    background: var(--white);
    padding: 7rem 0;
}

.ueber-values-section .core-values {
    margin-top: 0;
}

.ueber-values-section .section-title {
    color: var(--primary-color);
}

/* --- Gallery Strip --- */
.ueber-gallery-strip {
    background: var(--secondary-color);
    padding: 0;
    overflow: hidden;
}

.ueber-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1fr;
    grid-template-rows: 340px;
    gap: 3px;
}

.ueber-gallery-item {
    overflow: hidden;
}

.ueber-gallery-item--tall {
    grid-row: span 1;
}

.ueber-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.ueber-gallery-item:hover img {
    transform: scale(1.04);
}

/* --- CTA Section --- */
.ueber-cta-section {
    background: #f7f6f4;
    padding: 8rem 0;
    border-top: 1px solid rgba(26,26,26,0.06);
}

.ueber-cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.ueber-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    font-weight: 300;
}

.ueber-cta-text {
    color: var(--medium-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.ueber-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ueber-cta-buttons .btn-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.ueber-cta-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* --- Teaser on Homepage --- */
.ueber-teaser-section {
    background: var(--white);
    padding: 6rem 0;
    border-top: 1px solid rgba(26,26,26,0.06);
}

.ueber-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ueber-teaser-image {
    position: relative;
}

.ueber-teaser-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.ueber-teaser-image__deco {
    position: absolute;
    inset: -10px -10px 10px 10px;
    border: 2px solid var(--highlight-color);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

.ueber-teaser-content .section-subtitle {
    margin-bottom: 0.5rem;
}

.ueber-teaser-content .section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.ueber-teaser-excerpt p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.ueber-teaser-cta {
    margin-top: 2.2rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ueber-story-inner {
        gap: 3rem;
    }

    .ueber-facts-grid {
        justify-content: flex-start;
    }

    .ueber-fact {
        padding: 0.8rem 1.5rem;
    }

    .ueber-fact-divider {
        display: none;
    }
}

@media (max-width: 900px) {
    .ueber-story-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ueber-story-image__wrap img {
        height: 420px;
        object-position: center 15%;
    }

    .ueber-credentials-grid {
        grid-template-columns: 1fr;
    }

    .ueber-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px;
    }

    .ueber-teaser-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ueber-teaser-image img {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .ueber-hero {
        min-height: 80vh;
    }

    .ueber-hero__container {
        padding: 7rem 1.2rem 3rem;
    }

    .ueber-facts-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .ueber-fact {
        padding: 0.5rem 1rem;
    }

    .ueber-story-section {
        padding: 4rem 0;
    }

    .ueber-credentials-section {
        padding: 4rem 0;
    }

    .ueber-credentials-grid {
        gap: 1rem;
    }

    .ueber-credential-card {
        padding: 1.5rem;
    }

    .ueber-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
    }

    .ueber-cta-section {
        padding: 5rem 0;
    }

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

/* --- 19-page-faq.css: Dedicated FAQ page layout --- */
/* ============================================
   FAQ-Seite (page-faq.php)
   Warmes, modernes Layout mit kategorisierten Karten.
   ============================================ */

/* Mini-Hero – warmer Cream-Ton, zentriert, kleiner Gold-Divider */
.faq-hero {
    background: var(--white);
    padding: 9rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.faq-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 60px;
    background: linear-gradient(180deg, transparent, #f7f6f4);
    pointer-events: none;
}
.faq-hero-inner {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}
.faq-hero-inner .section-subtitle {
    color: var(--highlight-color);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.1rem;
    display: inline-block;
}
.faq-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--primary-color);
    margin-bottom: 0;
}
.faq-hero-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-color), var(--light-highlight, #e5c77a));
    border-radius: 3px;
    margin: 1.5rem auto 0;
}
.faq-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--medium-gray);
    max-width: 660px;
    margin: 1.75rem auto 0;
}

.faq-hero-link {
    color: var(--highlight-color);
    text-decoration: underline;
    text-decoration-color: rgba(201,169,97,0.4);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}
.faq-hero-link:hover {
    text-decoration-color: var(--highlight-color);
}

/* Body – gleiche Creme-Farbe, fließender Übergang */
.faq-body {
    padding: 1rem 0 4rem;
    background: #f7f6f4;
}
.faq-content {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Gruppen-Karte – weiß auf warmem Grund, mit Gold-Akzentlinie oben */
.faq-group {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.25rem 2.5rem 1.5rem;
    border: 1px solid rgba(26,26,26,0.05);
    box-shadow: 0 12px 40px rgba(26,26,26,0.06);
    scroll-margin-top: 100px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-group::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-color), var(--light-highlight, #e5c77a));
}
.faq-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(26,26,26,0.08);
}

.faq-group-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(26,26,26,0.06);
}
.faq-group-heading {
    flex: 1;
    min-width: 0;
}
.faq-group-icon {
    flex-shrink: 0;
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--highlight-color), var(--light-highlight, #e5c77a));
    color: #ffffff;
    font-size: 1.35rem;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(201,169,97,0.32);
}
.faq-group-count {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--highlight-color);
    background: rgba(201,169,97,0.1);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.55rem;
}
.faq-group-title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 0 0.35rem;
    letter-spacing: -0.01em;
}
.faq-group-intro {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Accordions innerhalb einer Gruppen-Karte: flache Liste mit Trennlinien */
.faq-group .faq-list {
    max-width: none;
    margin: 0;
    display: block;
}
.faq-group .faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26,26,26,0.07);
    border-radius: 0;
    box-shadow: none;
    transform: none;
    overflow: hidden;
    transition: background 0.25s ease;
}
.faq-group .faq-item:last-child {
    border-bottom: none;
}
.faq-group .faq-item:hover {
    background: rgba(201,169,97,0.04);
    transform: none;
    box-shadow: none;
    border-left-color: transparent;
}
.faq-group .faq-item--open {
    background: rgba(201,169,97,0.05);
    box-shadow: none;
    border-left-color: transparent;
}
.faq-group .faq-item .faq-question {
    padding: 1.2rem 0.5rem 1.2rem 0;
    font-size: 1.02rem;
    font-weight: 600;
    gap: 1.25rem;
    color: var(--primary-color);
}
.faq-group .faq-item--open .faq-question {
    color: var(--primary-color);
}
.faq-group .faq-item .faq-question:hover {
    color: var(--highlight-color);
}
.faq-group .faq-item .faq-answer p {
    padding: 0 0.5rem 1.2rem 0;
    color: #3a3a3a;
}
.faq-group .faq-item .faq-answer ul {
    padding: 0 0.5rem 1rem 1.5rem;
}
.faq-group .faq-item .faq-answer ul li {
    color: #3a3a3a;
}
.faq-group .faq-item .faq-answer strong {
    color: var(--primary-color);
}
.faq-group .faq-item .faq-answer a {
    color: var(--highlight-color);
    text-decoration: underline;
    text-decoration-color: rgba(201, 169, 97, 0.4);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s ease;
}
.faq-group .faq-item .faq-answer a:hover {
    text-decoration-color: var(--highlight-color);
}

/* CTA – dunkler Kontrast am Seitenende für visuellen Anker */
.faq-cta-section {
    padding: 4rem 0 5rem;
    background: #f7f6f4;
}
.faq-cta-card {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 3.25rem 2.25rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #262525 100%);
    color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(26,26,26,0.25);
    overflow: hidden;
}
.faq-cta-card::before {
    content: "";
    position: absolute;
    top: -50%; right: -20%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(201,169,97,0.22), transparent 60%);
    pointer-events: none;
}
.faq-cta-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
}
.faq-cta-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1rem;
    background: rgba(201,169,97,0.14);
    border: 1px solid rgba(201,169,97,0.4);
    color: var(--highlight-color);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.faq-cta-badge i { font-size: 0.85rem; }
.faq-cta-card h2 {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    color: #ffffff;
    margin-bottom: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.faq-cta-card p {
    position: relative;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto 1.85rem;
    font-size: 1rem;
}
.faq-cta-buttons {
    position: relative;
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}
.faq-cta-card .btn-secondary--light {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #ffffff;
}
.faq-cta-card .btn-secondary--light:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--highlight-color);
    color: var(--highlight-color);
}

/* Landing-Page: FAQ-CTA mit zwei Buttons */
.faq-section .faq-cta-buttons {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    .faq-list {
        gap: 0.35rem;
        margin-bottom: 2rem;
    }
    .faq-item {
        border-radius: 6px;
        box-shadow: none;
        border-left-width: 2px;
    }
    .faq-item:hover {
        transform: none;
        box-shadow: none;
    }
    .faq-question {
        padding: 0.95rem 1rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.92rem;
    }
    .faq-answer ul {
        padding: 0.2rem 1rem 0.85rem 2rem;
    }
    .faq-cta {
        gap: 0.75rem;
    }
    .faq-section .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0.75rem auto 0;
    }
    .faq-section .faq-cta-buttons .btn-primary,
    .faq-section .faq-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 7rem 0 2.5rem;
    }
    .faq-body {
        padding: 0.5rem 0 3rem;
    }
    .faq-content {
        gap: 1.25rem;
    }
    .faq-group {
        padding: 1.5rem 1.25rem 0.75rem;
        border-radius: 16px;
    }
    .faq-group-header {
        gap: 0.95rem;
        padding-bottom: 1.1rem;
        margin-bottom: 0.9rem;
    }
    .faq-group-icon {
        width: 44px; height: 44px; font-size: 1.05rem;
        border-radius: 12px;
    }
    .faq-group-title {
        font-size: 1.25rem;
    }
    .faq-group-count {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
    .faq-group .faq-item .faq-question {
        padding: 1rem 0.25rem 1rem 0;
        font-size: 0.98rem;
    }
    .faq-cta-section {
        padding: 3rem 0 4rem;
    }
    .faq-cta-card {
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
    }
}

/* --- 20-conversion.css: Conversion optimizations (Clarity data) --- */
/* ============================================================
   CONVERSION OPTIMIERUNGEN (Clarity-Daten 04/2026)
   ============================================================ */

/* --- Trust Strip --- */
.trust-strip {
    background: #111;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    padding: 0.85rem 1rem;
    overflow: hidden;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.trust-strip-item .fas {
    color: var(--highlight-color);
    font-size: 0.75rem;
}

.trust-strip-divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .trust-strip-divider {
        display: none;
    }
    .trust-strip-inner {
        gap: 0.4rem 1rem;
    }
    .trust-strip-item {
        font-size: 0.75rem;
    }
}

/* --- Mid-Page Contact Nudge --- */
.mid-contact-nudge {
    background: #f7f6f4;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    padding: 2rem 0;
}

.mid-contact-nudge-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
}

.mid-contact-nudge-text {
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.78);
    margin: 0;
    font-style: italic;
}

.mid-contact-nudge-btn {
    flex-shrink: 0;
    padding: 0.65rem 1.6rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.mid-contact-nudge-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 600px) {
    .mid-contact-nudge-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .mid-contact-nudge-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
}

/* Scroll-to-top transition */
.scroll-to-top-btn {
    transition: bottom 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                transform 0.3s ease;
}

/* --- 21-workshop-inquiry.css: Workshop inquiry form section --- */
/* ============================================
   Workshop Inquiry Section
   ============================================ */

.workshop-inquiry-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Section header: reuses site-wide .section-title / .section-subtitle / .section-description */
.workshop-inquiry-section .section-subtitle {
    color: var(--highlight-color);
}
.workshop-inquiry-section .section-title {
    color: var(--primary-color);
}
.workshop-inquiry-section .section-description {
    color: rgba(26,26,26,0.65);
}

/* ---- Two-column body ---- */
.wi-body {
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(320px, 560px);
    gap: 3rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

/* ---- Left: facts ---- */
.wi-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.wi-urgency-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,169,97,0.12);
    border: 1px solid rgba(201,169,97,0.35);
    color: #8a6c20;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    width: fit-content;
}

.wi-urgency-label i {
    font-size: 0.8rem;
}

.wi-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.wi-facts li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--primary-color);
    line-height: 1.45;
}

.wi-facts li i {
    color: var(--highlight-color);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
}

/* ---- Right: form card ---- */
.wi-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.08);
    border-top: 3px solid var(--highlight-color);
}

/* Urgency badge: hidden on desktop (shown in left column), visible on mobile */
.wi-urgency-mobile {
    display: none;
    margin-bottom: 1.25rem;
}

/* ---- Form fields ---- */
/* Name + Email nebeneinander */
.wi-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 0;
}

.wi-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.7rem;
}

.wi-fields-row .wi-field {
    margin-bottom: 0;
}

/* Datepicker wrapper */
.wi-date-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.wi-date-wrap input {
    cursor: pointer;
    padding-right: 3.15rem;
}

.wi-date-icon {
    position: absolute;
    right: 1rem;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    transform: none;
    line-height: 1;
    color: var(--highlight-color);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color 0.2s;
}

.wi-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(26,26,26,0.55);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wi-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.65;
}

.wi-form input,
.wi-form textarea {
    width: 100%;
    background: #fafaf9;
    border: 1.5px solid rgba(0,0,0,0.13);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    resize: none;
    -webkit-appearance: none;
}

.wi-form input::placeholder,
.wi-form textarea::placeholder {
    color: rgba(26,26,26,0.32);
    font-size: 0.92rem;
}

.wi-form input:focus,
.wi-form textarea:focus {
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(201,169,97,0.14);
    background: #fff;
}

/* Submit: reuses site-wide .submit-button (gold, border-radius 50px) */
.wi-form-wrap .submit-button {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wi-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
    font-size: 0.76rem;
    color: rgba(26,26,26,0.42);
    text-align: center;
    line-height: 1.5;
}

.wi-reassurance i {
    color: var(--highlight-color);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .workshop-inquiry-section {
        padding: 3.5rem 0;
    }

    .wi-body {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: start;
        margin-top: 2rem;
    }

    /* Hide desktop facts column, show urgency badge inside form card */
    .wi-info {
        display: none;
    }

    .wi-urgency-mobile {
        display: inline-flex;
    }

    .wi-form-wrap {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.06), 0 10px 28px rgba(0,0,0,0.07);
    }

    /* Name + Email nebeneinander auf Tablet */
    .wi-fields-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .workshop-inquiry-section {
        padding: 2.75rem 0;
    }

    .wi-form-wrap {
        padding: 1.85rem 1.15rem 1.35rem;
        border-radius: 14px;
    }

    /* Stack name + email on small phones */
    .wi-fields-row {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }

    .wi-field {
        gap: 0.45rem;
        margin-bottom: 0.95rem;
    }

    .wi-form label {
        font-size: 0.77rem;
        letter-spacing: 0.035em;
    }

    .wi-form input,
    .wi-form textarea {
        border-radius: 12px;
        padding: 0.95rem 1rem;
        font-size: 1.03rem;
    }

    .wi-form input {
        min-height: 54px;
    }

    .wi-form textarea {
        min-height: 122px;
    }

    .wi-urgency-mobile {
        margin-bottom: 1.1rem;
        font-size: 0.8rem;
        line-height: 1.25;
        max-width: 100%;
        white-space: normal;
    }

    .wi-form-wrap .submit-button {
        width: 100%;
        min-height: 56px;
        margin-top: 0.35rem;
    }

    .wi-reassurance {
        margin-top: 0.85rem;
        font-size: 0.82rem;
        line-height: 1.45;
    }
}

/* --- 22-flatpickr.css: Flatpickr datepicker brand overrides --- */
/* ============================================
   Flatpickr – SafeHer Brand Override
   ============================================ */

.flatpickr-calendar {
    font-family: var(--font-primary) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.14) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    overflow: hidden;
}

.flatpickr-months {
    background: var(--primary-color) !important;
    border-radius: 14px 14px 0 0;
    padding: 0.5rem 0;
}

.flatpickr-month {
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-current-month {
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.flatpickr-current-month select.flatpickr-monthDropdown-months {
    color: #fff !important;
    background: transparent !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: rgba(255,255,255,0.8) !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: var(--highlight-color) !important;
}

.flatpickr-weekday {
    color: rgba(26,26,26,0.45) !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
}

.flatpickr-day {
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    color: var(--primary-color) !important;
    transition: background 0.15s, color 0.15s !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: rgba(201,169,97,0.15) !important;
    border-color: transparent !important;
    color: var(--primary-color) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--highlight-color) !important;
    border-color: var(--highlight-color) !important;
    color: #fff !important;
    font-weight: 700 !important;
}

.flatpickr-day.today {
    border-color: var(--highlight-color) !important;
    color: var(--highlight-color) !important;
    font-weight: 600 !important;
}

.flatpickr-day.today.selected {
    color: #fff !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(26,26,26,0.2) !important;
}

.flatpickr-innerContainer {
    padding: 0.5rem !important;
}

.numInputWrapper:hover {
    background: rgba(201,169,97,0.08) !important;
}

.numInputWrapper input {
    color: #fff !important;
}

/* --- 23-live-online-seminar.css: Live online seminar landing page --- */
/* ============================================
   Live-Online-Seminar Page (page-live-online-seminar.php)
   ============================================ */

.live-online-seminar-page {
    --ls-black: #131210;
    --ls-off-white: #f4f2ed;
    --ls-gold: #c9a961;
    --ls-gold-light: rgba(201,169,97,0.15);
    --ls-gold-border: rgba(201,169,97,0.3);
    --ls-mid: #2a2723;
    --ls-muted: rgba(244,242,237,0.45);
    --ls-muted2: rgba(244,242,237,0.28);
    background: var(--ls-black);
    color: var(--ls-off-white);
    font-family: var(--font-primary);
}

/* Hero */
.ls-hero {
    position: relative;
    padding: 120px 40px 0;
    overflow: visible;
    max-width: 1200px;
    margin: 0 auto;
}
.ls-hero-ambient {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,97,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.ls-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 70vh;
}
.ls-hero-content {
    position: relative;
    z-index: 2;
    animation: lsFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes lsFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes lsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.ls-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ls-gold);
    background: rgba(201,169,97,0.08);
    border: 1px solid rgba(201,169,97,0.2);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 28px;
}
.ls-hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ls-gold);
    animation: lsPulse 2s ease infinite;
}
@keyframes lsPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.ls-hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ls-off-white);
    margin-bottom: 24px;
}
.ls-hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--ls-gold), #e8d492);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ls-hero-sub {
    font-size: 16px;
    color: var(--ls-muted);
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.ls-hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.ls-hero-ctas .btn-primary,
.ls-hero-ctas .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.ls-hero-ctas .btn-primary {
    background: transparent;
    color: var(--ls-gold);
    border: 2px solid var(--ls-gold);
}
.ls-hero-ctas .btn-primary:hover {
    background: var(--ls-gold);
    color: var(--ls-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}
.ls-hero-ctas .btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    border: 2px solid rgba(255, 255, 255, 0.45);
}
.ls-hero-ctas .btn-secondary:hover {
    color: var(--ls-off-white);
    border-color: rgba(255, 255, 255, 0.65);
    background: transparent;
    transform: translateY(-3px);
}

/* Section CTAs in live-online-seminar context */
.live-online-seminar-page .btn-primary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--ls-gold);
    border: 2px solid var(--ls-gold);
}
.live-online-seminar-page .btn-primary:hover {
    background: var(--ls-gold);
    color: var(--ls-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}

.ls-hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ls-hero-proof-avatars {
    display: flex;
    gap: 4px;
}
.ls-proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ls-gold);
    opacity: 0.6;
}
.ls-proof-dot:nth-child(2) { opacity: 0.4; }
.ls-proof-dot:nth-child(3) { opacity: 0.25; }
.ls-hero-proof-text {
    font-size: 12px;
    color: var(--ls-muted);
    letter-spacing: 0.02em;
}
.ls-hero-proof-text strong {
    color: var(--ls-gold);
}

/* Hero Mobile Background */
.ls-hero-mobile-bg {
    display: none;
}
.ls-hero-mobile-features {
    display: none;
}

/* Hero Visual — 3D scene (base tilt + idle drift + mouse/scroll via JS) */
@property --ls-tilt-base-x {
    syntax: '<angle>';
    inherits: false;
    initial-value: -7deg;
}
@property --ls-tilt-base-y {
    syntax: '<angle>';
    inherits: false;
    initial-value: -9deg;
}

.ls-hero-visual {
    position: relative;
    animation: lsFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    perspective: 880px;
    perspective-origin: 50% 62%;
}
.ls-hero-scene {
    position: relative;
    width: 100%;
    max-height: 580px;
    transform-style: preserve-3d;
    animation: lsSceneBreath 9s ease-in-out infinite;
}
@keyframes lsSceneBreath {
    0%, 100% { transform: scale(1) translateZ(0); }
    50%      { transform: scale(1.014) translateZ(0); }
}
.ls-hero-scene-inner {
    position: relative;
    transform-style: preserve-3d;
    --ls-tilt-mouse-x: 0deg;
    --ls-tilt-mouse-y: 0deg;
    --ls-tilt-base-x: -7deg;
    --ls-tilt-base-y: -8deg;
    transform: rotateX(calc(var(--ls-tilt-base-x) + var(--ls-tilt-mouse-x)))
               rotateY(calc(var(--ls-tilt-base-y) + var(--ls-tilt-mouse-y)));
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    animation: lsSceneIdleTilt 7s ease-in-out infinite;
}
.ls-hero-scene-inner.is-interacting {
    animation-play-state: paused;
}
@keyframes lsSceneIdleTilt {
    0%, 100% {
        --ls-tilt-base-x: -7deg;
        --ls-tilt-base-y: -8deg;
    }
    50% {
        --ls-tilt-base-x: -5deg;
        --ls-tilt-base-y: -5deg;
    }
}
.ls-hero-scene-shadow {
    position: absolute;
    left: 16%;
    right: 16%;
    bottom: 4%;
    height: 16%;
    transform: translateZ(-56px) rotateX(82deg);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.72) 0%, rgba(0,0,0,0.25) 40%, transparent 78%);
    filter: blur(26px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
}
.ls-hero-scene-glow {
    position: absolute;
    inset: 6% 4% 10%;
    transform: translateZ(-36px);
    background:
        radial-gradient(ellipse at 30% 55%, rgba(201, 169, 97, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 25%, rgba(120, 150, 200, 0.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: lsGlowPulse 8s ease-in-out infinite;
}
@keyframes lsGlowPulse {
    0%, 100% { opacity: 0.85; }
    50%      { opacity: 1; }
}
.ls-hero-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    max-height: 580px;
    transform-style: preserve-3d;
    transform: translateZ(0);
    z-index: 1;
    overflow: visible;
    background: transparent;
}
.ls-hero-img-layer {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: transparent;
}
.ls-hero-img-layer--bg {
    inset: 0;
    transform: translateY(var(--parallax-bg, 0px));
    filter: none;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    border-radius: 24px;
    box-shadow: none;
}
.ls-hero-img-layer--bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: saturate(0.92) brightness(0.88) contrast(1.05);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
}
.ls-hero-img-layer--bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 15%, rgba(255, 235, 200, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 75% 85%, rgba(20, 30, 50, 0.30) 0%, transparent 55%);
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}
.ls-hero-img-layer--bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(19, 18, 16, 0.12) 0%,
        transparent 30%,
        rgba(19, 18, 16, 0.30) 75%,
        rgba(19, 18, 16, 0.55) 100%
    );
    border-radius: 24px;
    pointer-events: none;
    z-index: 2;
}
.ls-hero-img-layer--fg {
    inset: 0;
    overflow: visible;
    transform: translateZ(48px) translateY(var(--parallax-fg, -4px));
    z-index: 3;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 12% 8%;
}
.ls-hero-img--cutout {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 58%;
    height: auto;
    max-height: 82%;
    object-fit: contain;
    object-position: center bottom;
    filter: saturate(1.02) brightness(1.02) contrast(1.03)
            drop-shadow(0 26px 32px rgba(0, 0, 0, 0.6))
            drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4))
            drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.ls-hero-img-layer--fg::before {
    content: '';
    position: absolute;
    left: 32%;
    right: 32%;
    bottom: 4%;
    height: 6%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, transparent 70%);
    filter: blur(14px);
    transform: translateZ(-14px);
    pointer-events: none;
    z-index: 1;
}
.ls-hero-img-sheen {
    display: none;
}
.ls-hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background:
        linear-gradient(140deg, rgba(40, 36, 30, 0.78) 0%, rgba(19, 18, 16, 0.85) 100%);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(244, 242, 237, 0.10);
    border-radius: 14px;
    padding: 14px 20px;
    z-index: 10;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.55),
        0 4px 12px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(201, 169, 97, 0.06);
    transform-style: preserve-3d;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.ls-hero-float-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.35) 0%, transparent 40%, transparent 60%, rgba(201, 169, 97, 0.20) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}
.ls-hero-float-card i {
    font-size: 18px;
    color: var(--ls-gold);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,169,97,0.18), rgba(201,169,97,0.06));
    border: 1px solid rgba(201,169,97,0.18);
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.ls-float-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ls-off-white);
    white-space: nowrap;
}
.ls-float-sub {
    font-size: 11px;
    color: var(--ls-muted);
    white-space: nowrap;
}
.ls-float-top {
    top: 12px;
    right: -56px;
    transform: translateZ(88px);
    z-index: 11;
    animation: lsFloat3dTop 7s ease-in-out infinite;
}
.ls-float-mid {
    top: 50%;
    left: -64px;
    transform: translateY(-50%) translateZ(108px);
    z-index: 11;
    animation: lsFloat3dMid 9s ease-in-out infinite;
    animation-delay: -2.2s;
}
.ls-float-bottom {
    bottom: 32px;
    right: -48px;
    transform: translateZ(120px);
    z-index: 12;
    animation: lsFloat3dBottom 8s ease-in-out infinite;
    animation-delay: -4s;
}
@keyframes lsFloat3dTop {
    0%, 100% { transform: translateZ(88px) translate(0, 0); }
    50%      { transform: translateZ(100px) translate(-3px, -10px); }
}
@keyframes lsFloat3dMid {
    0%, 100% { transform: translateY(-50%) translateZ(108px) translateX(0); }
    50%      { transform: translateY(calc(-50% - 9px)) translateZ(120px) translateX(4px); }
}
@keyframes lsFloat3dBottom {
    0%, 100% { transform: translateZ(120px) translate(0, 0); }
    50%      { transform: translateZ(132px) translate(2px, -9px); }
}
.ls-hero-float-card:hover {
    animation-play-state: paused;
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 0 1px rgba(201, 169, 97, 0.12);
}

/* Hero Stats Bar */
.ls-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    margin-top: 48px;
    border-top: 1px solid rgba(244,242,237,0.06);
}
.ls-stat { text-align: center; }
.ls-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--ls-off-white);
    line-height: 1;
    margin-bottom: 6px;
}
.ls-stat-num span {
    font-size: 16px;
    color: var(--ls-gold);
    font-weight: 500;
}
.ls-stat-label {
    font-size: 11px;
    color: var(--ls-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.ls-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(244,242,237,0.08);
}

/* Sections */
.ls-section {
    padding: 96px 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.ls-container {
    max-width: 100%;
}
.ls-section-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ls-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.ls-section-label span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--ls-gold);
    border-radius: 1px;
}
.ls-section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ls-off-white);
    margin-bottom: 18px;
}
.ls-section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--ls-gold), #e8d492);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ls-section-sub {
    font-size: 15px;
    color: var(--ls-muted);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 48px;
}
.ls-divider {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244,242,237,0.08), transparent);
}

/* Für wen Grid */
.ls-fuerwen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ls-fw-card {
    background: rgba(244,242,237,0.02);
    border: 1px solid rgba(244,242,237,0.06);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.ls-fw-card:hover {
    border-color: rgba(201,169,97,0.25);
    background: rgba(201,169,97,0.03);
    transform: translateY(-2px);
}
.ls-fw-icon {
    font-size: 22px;
    color: var(--ls-gold);
    margin-bottom: 14px;
    display: block;
}
.ls-fw-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ls-off-white);
    margin-bottom: 8px;
}
.ls-fw-desc {
    font-size: 13px;
    color: var(--ls-muted);
    line-height: 1.65;
}

/* Kursinhalt – Learn Section */
.ls-section--wide {
    max-width: 1100px;
}
.ls-learn {
    width: 100%;
}
.ls-learn-header {
    margin-bottom: 40px;
}
.ls-learn-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ls-gold);
    background: rgba(201,169,97,0.08);
    border: 1px solid rgba(201,169,97,0.15);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 20px;
}
.ls-learn-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 6vw, 48px);
    font-weight: 700;
    color: var(--ls-off-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.ls-learn-title em {
    color: var(--ls-gold);
    font-style: normal;
}

/* Card Stack */
.ls-learn-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
}
.ls-learn-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(244,242,237,0.06);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.3s, transform 0.3s;
    overflow: hidden;
}
.ls-learn-card-glow {
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ls-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.ls-learn-card:hover {
    border-color: rgba(201,169,97,0.25);
    transform: translateY(-2px);
}
.ls-learn-card:hover .ls-learn-card-glow {
    opacity: 0.6;
}
.ls-learn-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.ls-learn-card-icon {
    font-size: 20px;
    color: var(--ls-gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,97,0.1);
    border: 1px solid rgba(201,169,97,0.2);
    border-radius: 12px;
    flex-shrink: 0;
}
.ls-learn-card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ls-gold);
    opacity: 0.9;
}
.ls-learn-card-headline {
    font-size: 16px;
    font-weight: 600;
    color: var(--ls-off-white);
    line-height: 1.4;
    margin: 0 0 10px;
}
.ls-learn-card-body {
    font-size: 13px;
    color: var(--ls-muted);
    line-height: 1.65;
    margin: 0;
}
/* Clickable card styles */
button.ls-learn-card {
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: inherit;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}
.ls-learn-card-arrow {
    margin-left: auto;
    font-size: 10px;
    color: var(--ls-muted2);
    transition: transform 0.3s ease, color 0.3s;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(244,242,237,0.08);
}
.ls-learn-card:hover .ls-learn-card-arrow {
    transform: rotate(90deg);
    color: var(--ls-gold);
    border-color: rgba(201,169,97,0.3);
}

/* Learn Modal */
.ls-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}
.ls-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.ls-modal {
    position: relative;
    background: #1e1d1a;
    border: 1px solid rgba(201,169,97,0.2);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,97,0.1);
}
.ls-modal-overlay.active .ls-modal {
    transform: scale(1) translateY(0);
}
.ls-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(244,242,237,0.1);
    background: rgba(244,242,237,0.04);
    color: var(--ls-muted);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.ls-modal-close:hover {
    background: rgba(244,242,237,0.1);
    color: var(--ls-off-white);
}
.ls-modal-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(201,169,97,0.1);
    border: 1px solid rgba(201,169,97,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.ls-modal-icon-wrap i {
    font-size: 26px;
    color: var(--ls-gold);
}
.ls-modal-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ls-gold);
    margin-bottom: 12px;
}
.ls-modal-title {
    font-family: var(--ls-font-display, inherit);
    font-size: 22px;
    font-weight: 600;
    color: var(--ls-off-white);
    line-height: 1.35;
    margin: 0 0 20px;
}
.ls-modal-body {
    font-size: 15px;
    color: rgba(244,242,237,0.72);
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 768px) {
    .ls-modal {
        padding: 40px 24px;
        border-radius: 20px;
    }
    .ls-modal-title {
        font-size: 20px;
    }
    .ls-modal-body {
        font-size: 14px;
    }
}

/* Bottom CTA */
.ls-learn-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(244,242,237,0.06);
}
.ls-learn-result {
    font-size: 15px;
    color: var(--ls-muted);
    line-height: 1.7;
    margin: 0;
}
.ls-learn-result strong {
    color: var(--ls-off-white);
    font-weight: 600;
}

/* Mobile – iPhone 16 (393px) optimized */
@media (max-width: 600px) {
    .ls-learn-header {
        margin-bottom: 32px;
    }
    .ls-learn-stack {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ls-learn-card {
        padding: 22px 20px;
        border-radius: 14px;
    }
    .ls-learn-card-headline {
        font-size: 15px;
    }
    .ls-learn-card-body {
        font-size: 13px;
    }
    .ls-learn-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding-top: 28px;
    }
    .ls-learn-bottom .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Technik */
.ls-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ls-tech-card {
    background: rgba(244,242,237,0.02);
    border: 1px solid rgba(244,242,237,0.06);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.3s, transform 0.3s;
}
.ls-tech-card:hover {
    border-color: rgba(201,169,97,0.2);
    transform: translateY(-2px);
}
.ls-tech-card i {
    font-size: 24px;
    color: var(--ls-gold);
    display: block;
    margin-bottom: 14px;
}
.ls-tech-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ls-off-white);
    margin-bottom: 8px;
}
.ls-tech-detail {
    font-size: 13px;
    color: var(--ls-muted);
    line-height: 1.65;
}
.ls-tech-notice {
    background: rgba(201,169,97,0.04);
    border: 1px solid rgba(201,169,97,0.15);
    border-radius: 16px;
    padding: 22px 24px;
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ls-tech-notice > i {
    color: var(--ls-gold);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.ls-tech-notice-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ls-off-white);
    margin-bottom: 4px;
}
.ls-tech-notice-text {
    font-size: 13px;
    color: var(--ls-muted);
    line-height: 1.65;
}
.ls-tech-notice-text strong {
    color: var(--ls-off-white);
}

/* Vertrauen */
.ls-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.ls-trust-card {
    background: rgba(244,242,237,0.02);
    border: 1px solid rgba(244,242,237,0.06);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.ls-trust-card:hover {
    border-color: rgba(201,169,97,0.2);
    transform: translateY(-2px);
}
.ls-trust-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--ls-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.ls-trust-label {
    font-size: 12px;
    color: var(--ls-muted);
    letter-spacing: 0.04em;
}
.ls-trainer-card {
    background: rgba(244,242,237,0.02);
    border: 1px solid rgba(244,242,237,0.06);
    border-radius: 20px;
    padding: 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}
.ls-trainer-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201,169,97,0.3);
}
.ls-trainer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.85);
}
.ls-trainer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--ls-off-white);
    margin-bottom: 4px;
}
.ls-trainer-role {
    font-size: 11px;
    color: var(--ls-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}
.ls-trainer-quote {
    font-size: 14px;
    color: var(--ls-muted);
    line-height: 1.7;
    font-style: italic;
}

/* Preis */
.ls-preis-box {
    background: rgba(244,242,237,0.02);
    border: 1px solid rgba(244,242,237,0.08);
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.ls-preis-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,97,0.08);
    border: 1px solid rgba(201,169,97,0.2);
    color: var(--ls-gold);
    font-size: 11px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.ls-preis-badge i {
    font-size: 13px;
}
.ls-preis-strikethrough {
    font-size: 20px;
    color: var(--ls-muted2);
    text-decoration: line-through;
    margin-right: 8px;
}
.ls-preis-amount {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    color: var(--ls-gold);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
}
.ls-preis-currency {
    font-size: 32px;
    font-weight: 500;
    color: var(--ls-gold);
}
.ls-preis-note {
    font-size: 13px;
    color: var(--ls-muted);
}
.ls-preis-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding: 0;
}
.ls-preis-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(244,242,237,0.75);
}
.ls-preis-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: rgba(201,169,97,0.1);
    border: 1px solid rgba(201,169,97,0.25);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23c9a961' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    margin-top: 2px;
}

/* Booking Section – heller Kasten wie .booking-section auf der Startseite,
   damit Amelias „Event list“-Design (in Customize auf Light) nicht auf Schwarz schwebt */
.ls-booking-wrap {
    margin-top: 32px;
    background: var(--white, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 24px;
    min-height: 200px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.live-online-seminar-page .ls-booking-wrap .amelia-app-booking,
.live-online-seminar-page .ls-booking-wrap .amelia-frontend,
.live-online-seminar-page .ls-booking-wrap [class*="amelia"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.ls-booking-fallback {
    font-size: 14px;
    color: var(--ls-muted);
    text-align: center;
    margin: 0;
}

/* FAQ */
.ls-faq-list {
    display: flex;
    flex-direction: column;
}
.ls-faq-item {
    border-bottom: 1px solid rgba(244,242,237,0.06);
}
.ls-faq-q {
    width: 100%;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--ls-off-white);
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}
.ls-faq-q:hover {
    color: var(--ls-gold);
}
.ls-faq-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ls-gold);
    flex-shrink: 0;
}
.ls-faq-chevron {
    margin-left: auto;
    font-size: 12px;
    color: var(--ls-muted);
    transition: transform 0.3s, color 0.3s;
}
.ls-faq-q[aria-expanded="true"] .ls-faq-chevron {
    transform: rotate(180deg);
    color: var(--ls-gold);
}
.ls-faq-a {
    font-size: 14px;
    color: var(--ls-muted);
    line-height: 1.7;
    padding: 0 0 24px 18px;
}

/* CTA Final */
.ls-cta-final {
    position: relative;
    overflow: hidden;
    background: rgba(201,169,97,0.04);
    border: 1px solid rgba(201,169,97,0.15);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    margin: 0 40px 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.ls-cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,169,97,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.ls-cta-final h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ls-off-white);
    margin-bottom: 16px;
    position: relative;
}
.ls-cta-final h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--ls-gold), #e8d492);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ls-cta-final p {
    font-size: 15px;
    color: var(--ls-muted);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
}
.ls-cta-spots {
    font-size: 12px;
    color: var(--ls-muted);
    margin-top: 16px;
    letter-spacing: 0.04em;
    position: relative;
}
.ls-cta-spots span {
    color: var(--ls-gold);
    font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
    .ls-hero-scene {
        animation: none;
    }
    .ls-hero-scene-glow {
        animation: none;
    }
    .ls-hero-scene-inner {
        transition: none;
        transform: none;
        animation: none;
    }
    .ls-hero-img-layer--bg,
    .ls-hero-img-layer--fg {
        transform: none;
    }
    .ls-hero-img-wrap {
        transform: none;
    }
    .ls-float-top,
    .ls-float-mid,
    .ls-float-bottom {
        animation: none;
    }
    .ls-float-mid {
        transform: translateY(-50%);
    }
    .ls-hero-img-sheen {
        animation: none;
        opacity: 0;
    }
    .ls-hero-mobile-bg img {
        animation: none;
    }
    .ls-hero-pill {
        animation: none;
    }
}

/* ───── Live-Online-Seminar Responsive ───── */
@media (max-width: 1024px) {
    .ls-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: auto;
    }
    .ls-hero-visual {
        max-width: 420px;
        margin: 0 auto;
    }
    .ls-float-top    { right: -18px; top: 8px; }
    .ls-float-mid    { left: -22px; }
    .ls-float-bottom { right: -14px; bottom: 28px; }
}
@media (max-width: 768px) {
    .ls-hero {
        padding: 0;
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Mobile: image becomes full-bleed background */
    .ls-hero-mobile-bg {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .ls-hero-mobile-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        filter: saturate(0.95) brightness(0.78) contrast(1.05);
    }
    .ls-hero-mobile-bg-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(19,18,16,0.88) 0%,
            rgba(19,18,16,0.65) 35%,
            rgba(19,18,16,0.30) 70%,
            rgba(19,18,16,0.15) 100%
        );
    }
    .ls-hero-ambient {
        display: none;
    }
    .ls-hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        padding: 100px 24px 48px;
        position: relative;
        z-index: 2;
    }
    /* Hide desktop visual on mobile */
    .ls-hero-visual {
        display: none;
    }
    .ls-hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ls-hero-title {
        font-size: clamp(32px, 9vw, 48px);
        margin-bottom: 20px;
    }
    .ls-hero-title .ls-br-desktop {
        display: none;
    }
    .ls-hero-sub {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
        max-width: 340px;
        margin-bottom: 32px;
        color: rgba(244,242,237,0.75);
    }
    .ls-hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin-bottom: 32px;
    }
    .ls-hero-ctas .btn-primary,
    .ls-hero-ctas .btn-secondary {
        justify-content: center;
        text-align: center;
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
    .ls-hero-proof {
        justify-content: center;
    }
    /* Mobile Feature Pills */
    .ls-hero-mobile-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    .ls-hero-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(19,18,16,0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(244,242,237,0.1);
        border-radius: 100px;
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 500;
        color: var(--ls-off-white);
        white-space: nowrap;
    }
    .ls-hero-pill i {
        font-size: 12px;
        color: var(--ls-gold);
    }
    .ls-hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    .ls-stat-divider {
        display: none;
    }
    .ls-section {
        padding: 64px 16px;
    }
    .ls-fuerwen-grid {
        grid-template-columns: 1fr;
    }
    .ls-tech-grid {
        grid-template-columns: 1fr;
    }
    .ls-trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .ls-preis-box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
        text-align: center;
    }
    .ls-preis-box .ls-preis-amount {
        justify-content: center;
    }
    .ls-preis-box .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .ls-trainer-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ls-trainer-avatar {
        margin: 0 auto 12px;
    }
    .ls-cta-final {
        margin: 0 16px 60px;
        padding: 48px 24px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ls-cta-final h2 {
        font-size: 28px;
    }
    .ls-cta-final .btn-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

