/* stylelint-disable CssSyntaxError */
@charset "UTF-8";
/* stylelint-disable color-function-notation */
/* stylelint-disable alpha-value-notation */
/* stylelint-disable-next-line comment-empty-line-before */
/*
Theme Name: Stronghold Gym Theme
Author: Dein Name
Version: 1.0
Description: Custom WordPress Theme auf Basis deiner HTML-Seite
*/

/* ================================
   STRONGHOLD GYM - VOLLSTÄNDIGE CSS
   ================================ */

/* === RESET & BASE STYLES === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Barlow, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* === CONTAINER SYSTEM === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.container-fullwidth {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === HERO SECTION === */

/* Ersetzen Sie .hero-video mit .hero-image in Ihrer CSS */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    .hero-image {
        min-height: 100vh;
    }
}
/* Hero Picture Tag - Responsive Fix */
.hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

/* Mobile Optimierung */
@media (max-width: 768px) {
    .hero-image {
        object-fit: cover;
        object-position: center center;
        min-height: 100vh;
    }
    
    .hero picture {
        display: block;
    }
    
    .hero picture source {
        display: none;
    }
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 80%));
    z-index: 1;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgb(255 255 255 / 25%);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 2px solid rgb(255 255 255 / 50%);
    box-shadow: 0 8px 32px rgb(0 0 0 / 40%);
}

.hero-logo-img {
    height: 50px;
    width: auto;
}

.hero-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.menu-toggle {
    background: rgb(255 107 53 / 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgb(255 255 255 / 50%);
    box-shadow: 0 8px 32px rgb(255 107 53 / 50%);
}

.menu-toggle:hover {
    background: rgb(255 87 34 / 100%);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgb(255 107 53 / 70%);
}

/* Hero Content */

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}' */

.hero-content {
    position: absolute;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}


.hero-content.fade-in {
    opacity: 1;
}

.hero-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    margin-bottom: 1.2rem;
    text-shadow: 5px 5px 15px rgb(0 0 0 / 100%);
    font-weight: 800;
    line-height: 1.1;
    color: white;
}

.hero p {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    margin-bottom: 2rem;
    text-shadow: 4px 4px 10px rgb(0 0 0 / 100%);
    opacity: 1;
    color: white;
    line-height: 1.4;
}

/* === BUTTONS === */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    color: white;
    padding: 1.4rem 3.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;

    /* box-shadow: 0 20px 60px rgba(255,107,53,0.8); */
    transition: all 0.3s ease;
    border: 4px solid rgb(255 255 255 / 60%);
    text-shadow: 2px 2px 6px rgb(0 0 0 / 80%);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 15;
    margin-top: 1rem;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);

    /* box-shadow: 0 30px 70px rgba(255,107,53,1); */
    background: linear-gradient(135deg, #ff5722 0%, #e64100 100%);
    border-color: rgb(255 255 255 / 80%);
}

.main-cta-button {
    display: inline-block;
    background: white;
    color: #f85c24;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
    border: 3px solid white;
    margin-top: 2rem;
    cursor: pointer;
}

.main-cta-button:hover {
    background: rgb(255 255 255 / 10%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgb(0 0 0 / 30%);
}

/* === MENU OVERLAY === */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.menu-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    max-height: 80vh;
    width: 90%;
    max-width: 400px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgb(0 0 0 / 20%);
    text-align: center;
    position: relative;
}

.menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav li {
    margin: 1.5rem 0;
}

.menu-nav a {
    color: #333;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    display: block;
    transition: color 0.2s ease;
}

.menu-nav a:hover {
    color: #f85c24;
}

.menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

/* === REGULAR HEADER === */
header {
    background: rgb(255 255 255 / 95%);
    color: #333;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

header.visible {
    transform: translateY(0);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #f85c24;
}

.logo-img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    color: #f85c24;
}

/* === SECTIONS === */
.section {
    padding: 4rem 0;
    background: white;
    margin: 0;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: black;
    text-align: center;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* === CARDS === */
.founders, .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.founder-card, .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
    border: 1px solid #f0f0f0;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.founder-card:hover, .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(255 107 53 / 15%);
    border-color: #f85c24;
}

.founder-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 4px solid #f85c24;
}

.feature-card h3, .founder-card h3 {
    color: #f85c24;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
} 

/* === AUSWERTUNG SECTION === */
.auswertung-section {
    background: #f8f9fa;
    color: #333;
}

.auswertung-title {
    color: #333 !important;
    font-weight: 600;
}

.auswertung-intro {
    color: #666;
    font-size: 1.1rem;
}

.auswertung-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 3px solid #f85c24;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
}

.auswertung-subtitle {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.auswertung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.auswertung-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.auswertung-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 10%);
}

.auswertung-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.auswertung-card p {
    color: #666;
    line-height: 1.6;
}

.auswertung-truth {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
}

.truth-title {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
}

.truth-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.truth-highlight {
    color: #f85c24;
    font-weight: 600;
}

.truth-quote {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 3px solid #f85c24;
}

.truth-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.5;
}

.truth-cite {
    font-weight: 600;
    color: #666;
}

/* === SENIOREN SECTION === */
.senioren-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

/* Einstein Quote */
.quote-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
    text-align: center;
    border-left: 4px solid #f85c24;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #cecece;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.quote-author {
    color: #f85c24;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Add decorative opening/closing quotes around black quote text blocks */
.quote-banner .quote-text { position: relative; }
.quote-banner .quote-text::before { content: "\201C"; position: absolute; left: -12px; top: -12px; font-size: 3rem; line-height: 1; color: rgb(0,0,0,0.15); }
.quote-banner .quote-text::after  { content: "\201D"; position: absolute; right: -12px; bottom: -12px; font-size: 3rem; line-height: 1; color: rgb(0,0,0,0.15); }

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: start;
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
}

.content-block h3 {
    color: #f85c24;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-block-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f85c24, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f85c24;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #f7f7f7;
    font-size: 0.95rem;
    line-height: 1.4;
}

.content-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f85c24;
    margin: 2rem 0;
}

.highlight-text p {
    color: #333;
    font-weight: 500;
    margin: 0;
    font-size: 1.1rem;
}

/* Success Section */
.success-section {
    background: linear-gradient(135deg, #000 0%, #f85c24 100%);
    color: white;
    padding: 4rem 0;
    margin: 4rem 0;
    text-align: center;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.success-stat {
    background: rgb(255 255 255 / 10%);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.success-stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.success-stat-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Questions Section */
.questions-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
}

.questions-title {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.question-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #f85c24;
}

.question-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    text-align: center;
    line-height: 1.5;
}

.answer-text {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.answer-highlight {
    color: #f85c24;
    font-weight: 600;
}

/* CTA Section */
.senioren-cta {
    background: white;
    border: 2px solid #f85c24;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 5px 20px rgb(255 107 53 / 10%);
}

.cta-title {
    color: #f85c24;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-text {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === DIAGNOSE HIGHLIGHTS === */
.diagnose-highlight {
    background: linear-gradient(135deg, #000 0%, #f85c24 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgb(255 107 53 / 30%);
}

.diagnose-focus {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.diagnose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.diagnose-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    transition: transform 0.3s ease;
}

.diagnose-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.diagnose-card h3 {
    color: #f85c24;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.modern-list li:last-child {
    border-bottom: none;
}

.modern-list li::before {
    content: " →’";
    position: absolute;
    left: 0;
    color: #f85c24;
    font-weight: bold;
    font-size: 1.3rem;
}

/* === BOOKING CTA SECTION === */
.booking-cta-section {
    background: linear-gradient(135deg, #000 0%, #f85c24 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgb(255 107 53 / 30%);
    margin: 4rem auto;
    max-width: 1200px;
    width: calc(100% - 40px);
    box-sizing: border-box;
    overflow: hidden;
}

.booking-cta-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.booking-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Booking Grid */
.quick-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.quick-booking-card {
    background: rgb(255 255 255 / 15%);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 20%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.quick-booking-card:hover {
    background: rgb(255 255 255 / 25%);
    transform: translateY(-3px);
}

.quick-booking-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Size inline SVGs used in quick-booking icons */
.quick-booking-icon svg { width: 2.5rem; height: 2.5rem; }

.quick-booking-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-booking-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.5;
    flex-grow: 1;
}

.quick-booking-button {
    display: inline-block;
    background: white;
    color: #f85c24;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
    border: 2px solid white;
    cursor: pointer;
    margin-top: auto;
}

.quick-booking-button:hover {
    background: #f85c24;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 30%);
}

/* Booking Alternative */
.booking-alternative {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgb(255 255 255 / 20%);
}

.alternative-text {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Size/align SVG icons inside booking contact items */
.booking-cta-section .contact-item svg { width: 1.2em; height: 1.2em; margin-right: 0.5rem; vertical-align: -0.2em; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* === MODAL SYSTEM === */
.booking-modal, .gallery-modal, .testing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.booking-modal.active, .gallery-modal.active, .testing-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 25px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgb(0 0 0 / 30%);
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-content.wide {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    max-height: none;
    max-width: none;
    border-radius: 40px;
    overflow: hidden;
}

.booking-modal.active .modal-content,
.gallery-modal.active .modal-content,
.testing-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #f85c24;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 25px 25px 0 0;
    text-align: center;
    flex-shrink: 0;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.modal-body {
    flex: 1;
    overflow: hidden auto;
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    background: #f8f9fa;
    margin: 0;
    border-bottom: 1px solid #dee2e6;
    flex-shrink: 0;
}

.booking-tab {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-tab:hover {
    background: #e9ecef;
    color: #333;
}

.booking-tab.active {
    background: white;
    color: #f85c24;
    border-bottom-color: #f85c24;
}

.booking-tab-icon {
    font-size: 1.2rem;
}

.booking-panel {
    display: none;
    padding: 2.5rem;
    animation: fadeIn 0.3s ease;
}

.booking-panel.active {
    display: block;
}

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

/* Contact Options */
.contact-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #f85c24;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgb(255 107 53 / 10%);
}

.contact-option h4 {
    color: #f85c24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-option p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(255 107 53 / 40%);
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.8rem 0;
    color: #333;
    font-weight: 500;
}

.booking-alt {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.booking-alt-text {
    color: #666;
    margin-bottom: 1rem;
}

/* Calendly */
.calendly-inline-widget {
    width: 100%;
    height: 600px;
    min-height: 600px;
    border: none;
    transform: scale(0.95);
    transform-origin: top left;
}

#calendly-panel {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden auto;
    max-height: calc(85vh - 200px);
}

/* Calendly Modal Fixes */
.booking-modal .modal-content {
    max-height: 85vh;
    width: 90%;
    max-width: 900px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.calendly-small-scale .calendly-inline-widget,
.calendly-small-scale iframe[src*="calendly.com"] {
    transform: scale(0.85);
    height: 550px;
    min-height: 550px;
}

/* === TESTIMONIALS === */
.testimonials {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 5rem 0;
}

.testimonials h2.testimonials-title {
    color: white;
}

.testimonials-title {
    color: white;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgb(255 255 255 / 10%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #f85c24;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.author {
    margin-top: 1rem;
    font-weight: 600;
    color: #f85c24;
}

/* ================================
   PRICING CARDS
   ================================ */

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / 15%);
}

.premium-card {
    border-color: #F15A24;
    transform: scale(1.05);
    position: relative;
}

.premium-card::before {
    content: "EMPFOHLEN";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #F15A24;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.premium-card .pricing-header {
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
    color: white;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.premium-card .pricing-header h3 {
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #F15A24;
    margin-bottom: 0.5rem;
}

.premium-card .price {
    color: white;
}

.pricing-header p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.premium-card .pricing-header p {
    color: rgb(255 255 255 / 90%);
}

.pricing-body {
    padding: 2rem;
}

.price-details {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.price-details li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
    border-bottom: 1px solid #f8f9fa;
    margin-bottom: 0;
}

.price-details li::before {
    content: "✓“";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-cta {
    text-align: center;
}

/* Comparison Summary */
.comparison-summary {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: #fff;
    border: 3px solid #f85c24;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(255 107 53 / 10%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comparison-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f85c24, #ff5722);
}

.comparison-summary h3 {
    color: #f85c24;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.comparison-summary p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1rem 0;
    color: #333;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.price-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgb(255 107 53 / 30%);
    transition: all 0.3s ease;
}

.price-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgb(255 107 53 / 40%);
}

.price-number {
    font-size: 2rem;
    font-weight: 800;
    margin-right: 0.5rem;
}

.price-text {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Vergleichstabelle */
.vergleichstabelle {
    border-collapse: collapse;
    width: 100%;
    margin-top: 2rem;
}

.vergleichstabelle th,
.vergleichstabelle td {
    border: 1px solid #ccc;
    padding: 1rem;
    text-align: left;
}

.vergleichstabelle th {
    background-color: #f85c24;
    color: white;
    font-weight: 700;
}

.vergleichstabelle tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Price Sidenote */
.price-sidenote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #f85c24;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    position: relative;
    font-family: Barlow, sans-serif;
    box-shadow: 0 3px 12px rgb(0 0 0 / 8%);
}

.price-sidenote::before {
    content: 'ðŸ’¡';
    position: absolute;
    top: -8px;
    left: -8px;
    background: #f85c24;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgb(255 107 53 / 30%);
}

.price-sidenote p {
    margin: 0;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
}

.price-highlightNote {
    color: #f85c24;
    font-weight: 600;
}

.price-sidenote-compact {
    background: rgb(255 107 53 / 10%);
    border: 1px solid rgb(255 107 53 / 20%);
    padding: 0.8rem 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    font-family: Barlow, sans-serif;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* === GALLERY === */
.gallery-section {
    background: #f8f9fa;
    padding: 3rem 0 2rem;
}

.gallery-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

#studio .gallery-title {
    font-size: 2.5rem;
    text-align: center;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)!important;
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgb(0 0 0 / 8%);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(255 107 53 / 15%);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
}

.gallery-caption h3 {
    color: #f85c24;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-caption p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
}

/* Gallery Modal Specifics */
.gallery-modal .modal-body {
    display: flex;
    flex-direction: column;
}

.gallery-modal .modal-image {
    width: 100%;
    height: 90vh;
    background: #f8f9fa;
    padding: 0.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-modal .modal-img {
    width: 98%;
    height: 98%;
    object-fit: contain;
    object-position: center center;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 10%);
}

.gallery-modal .modal-info {
    padding: 1.5rem 2rem;
    background: white;
    text-align: center;
}

.gallery-modal .modal-info h3 {
    color: #f85c24;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.gallery-modal .modal-info p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* === TESTING SECTION === */
.testing-booking-section {
    background: linear-gradient(135deg, #000 0%, #ff6b00 100%);
    color: rgb(255 255 255);
    margin-top: 0;
    padding: 5rem 1rem;
    overflow: visible; /* wichtig */
}

/* Nur in der Test-Section soll der Container NICHT weiß sein */
.testing-booking-section .container {
  background: transparent !important;
  box-shadow: none;
  border-radius: 0;

  /* nimm nur Seiten-Padding, wenn du willst */
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Grundtext in der dunklen Section hell machen */
.testing-booking-section {
  color: #fff;
}


.testing-booking-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.testing-booking-section .section-intro {
    color: rgb(255 255 255 / 90%);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testing-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 3rem auto;
    padding: 0 1rem;
}


.testing-option-card:nth-child(1) { 
    animation-delay: 0.1s; 

}

.testing-option-card:nth-child(2) { 
    animation-delay: 0.2s; 

}

.testing-option-card:nth-child(3) { 
    animation-delay: 0.3s; 

}

.testing-option-card:nth-child(4) { 
    animation-delay: 0.4s; 

}

.testing-option-card:nth-child(5) { 
    animation-delay: 0.5s; 

}

.testing-option-card:nth-child(6) { 
    animation-delay: 0.6s; 

}

.testing-option-card:hover {
    transform: translateY(-5px);
    background: rgb(255 255 255 / 25%);
    box-shadow: 0 15px 35px rgb(0 0 0 / 20%);
}

.testing-option-card.premium {
    border: 2px solid #FFD700;
    position: relative;
    transform: scale(1.02);
}

.testing-option-card.premium::before {
    content: "PREMIUM";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 1;
}

.testing-option-card.special {
    border: 2px solid #0f8;
}

.testing-option-card.free {
    border: 2px solid white;
}

.testing-option-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    background: rgb(255 255 255 / 10%);
}

.testing-option-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.testing-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 1rem 0;
    color: white;
}

.testing-duration {
    opacity: 0.9;
    font-size: 1rem;
    color: rgb(255 255 255 / 80%);
    font-weight: 500;
}

.testing-option-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.testing-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgb(255 255 255 / 90%);
    flex: 1;
}

.testing-book-button {
    width: 100%;
    background: white;
    color: #F15A24;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.testing-book-button:hover {
    background: #F15A24;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(0 0 0 / 30%);
}

/* Testing Package Offer */
.testing-package-offer {
    background: rgb(255 255 255 / 25%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    border: 2px solid white;
    box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
}

.package-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.package-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.package-price {
    margin: 2rem 0;
}

.original-price {
    display: block;
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: rgb(255 255 255 / 70%);
}

.package-discount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.package-button {
    background: white;
    color: #f85c24;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-button:hover {
    background: #f85c24;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 30%);
}

/* Contact Alternative */
.testing-contact-alternative {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgb(255 255 255 / 20%);
}

.testing-contact-alternative h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.testing-contact-alternative p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgb(255 255 255 / 10%);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgb(255 255 255 / 20%);
}

.contact-option:hover {
    background: rgb(255 255 255 / 20%);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.contact-icon {
    font-size: 1.2rem;
    color: #F15A24;
}

@media (width <= 992px) {
  .testing-booking-section {
    padding: 4rem 0;
  }

  .testing-booking-section h2 {
    font-size: 2rem;
  }

  .testing-option-header h3 {
    font-size: 1.2rem;
  }

  .testing-price {
    font-size: 1.8rem;
  }
}

/* Große Smartphones: 1-Spalter, Buttons & Texte verkleinern */
@media (width <= 600px) {
  .testing-booking-section {
    padding: 3rem 1rem;   /* innen etwas Luft lassen */
  }

  .testing-booking-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .testing-booking-section .section-intro {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .testing-option-card {
    border-radius: 16px;
  }

  .testing-option-header {
    padding: 1.5rem;
  }

  .testing-option-header h3 {
    font-size: 1.1rem;
  }

  .testing-price {
    font-size: 1.6rem;
  }

  .testing-option-body {
    padding: 1.5rem;
  }

  .testing-description {
    font-size: 0.95rem;
  }

  .testing-book-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Package-Offer & Contact-Alternative gleich mit anpassen */
  .testing-package-offer {
    padding: 2rem 1.5rem;
  }

  .package-content h3 {
    font-size: 1.5rem;
  }

  .package-content p,
  .package-button {
    font-size: 1rem;
  }

  .package-discount {
    font-size: 2rem;
  }

  .testing-contact-alternative h3 {
    font-size: 1.3rem;
  }

  .testing-contact-alternative p {
    font-size: 1rem;
  }

  .contact-options {
    gap: 1.5rem;
  }

  .contact-option {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (width <= 400px) {
  .testing-price { font-size: 1.4rem; }
  .package-discount { font-size: 1.7rem; }
}

/* === Responsive Fix für Mobile (unter 768px) === */
@media (width <= 768px) {
  .testing-options-grid {
    display: grid;
    grid-template-columns: 1fr; /* Eine Spalte auf kleinen Geru¤ten */
    gap: 2rem;
    padding: 0 1rem; /* Etwas Innenabstand links/rechts */
  }

  .testing-option-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    transform: none !important; /* Entfernt festes Transform für Layout-StabilitÃ¤t */
  }

  .testing-booking-section h2 {
    font-size: 1.8rem;
    padding: 0 1rem;
  }

  .section-intro {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .testing-book-button {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    margin-top: auto;
}


  /* Optional: Falls Karten auf Mobil zu groß wirken */
  .testing-option-header h3 {
    font-size: 1.2rem;
  }

  .testing-price {
    font-size: 1.8rem;
  }

  .testing-duration {
    font-size: 0.95rem;
  }

  .testing-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* === HEALTH MESSAGE SECTION === */

.health-message-section {
    background: #fff;
    padding: 5rem 0;
}

.health-message-box {
    background: #fff;
    padding: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #333;
}

.health-message-box h2 {
    color: #1a1a1a;
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.4;
}

.health-message-box h3 {
    color: #1a1a1a;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 3rem 0 2rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.health-message-box p {
    margin: 2.5rem 0;
    text-align: justify;
    color: #444;
    font-size: 1.2rem;
}

.health-message-box strong {
    color: #1a1a1a;
    font-weight: 600;
}

.health-message-box ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.health-message-box li {
    margin: 0.8rem 0;
    font-weight: 500;
}

.health-message-box blockquote {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f85c24;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
}

.health-message-box blockquote p {
    margin: 0;
    color: #333;
}

.health-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 3fr;
}

.content-with-image.reverse .image-content {
    order: -1;
}

.text-content {
    padding: 1rem 0;
}

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

.image-content img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 10%);
}

.responsive-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 10%);
}

/* Image-text pairs */
.image-text-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgb(0 0 0 / 8%);
}

.image-text-pair.reverse .image-content {
    order: -1;
}

.image-text-pair .image-content img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 15%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-text-pair .image-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgb(0 0 0 / 20%);
}

/* Highlight boxes */
.statistic-highlight,
.scientific-fact,
.key-question,
.problem-statement {
    background: #f8f9fa;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #f85c24;
    font-size: 1.2rem;
    border-radius: 8px;
}

.highlight-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #f85c24;
    margin: 2rem 0;
    border-radius: 8px;
}

.question-box {
    background: linear-gradient(135deg, #000 0%, #F15A24 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.question-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.question-image {
    text-align: center;
    margin: 2rem 0;
}

.question-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}

.clean-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.clean-list li {
    margin: 1rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
    color: #333;
}

.clean-list li:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

/* === PROCESS SECTION === */
.process-container {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgb(0 0 0 / 10%);
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #f85c24;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgb(255 107 53 / 10%);
    background: #fff;
}

.step-number {
    background: linear-gradient(135deg, #f85c24, #ff5722);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgb(255 107 53 / 30%);
}

.step-content {
    flex: 1;
}

.step-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Goals Section */
.goals-section {
    background: linear-gradient(135deg, #000 0%, #f85c24 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.goals-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgb(255 255 255 / 5%);
    border-radius: 50%;
    transform: rotate(45deg);
}

.goals-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.goal-card {
    background: rgb(255 255 255 / 15%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgb(255 255 255 / 20%);
    transition: all 0.3s ease;
}

.goal-card:hover {
    background: rgb(255 255 255 / 25%);
    transform: translateY(-3px);
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.goal-text {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Timeline Connector */
.timeline-connector {
    position: relative;
    padding: 1.5rem 0;
    text-align: center;
}

.timeline-connector::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #f85c24, #ff5722);
    transform: translateX(-50%);
}

.timeline-connector::after {
    content: ' →’';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #f85c24;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.4rem;
    border-radius: 50%;
    border: 2px solid #f85c24;
}

.flow-step {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgb(0 0 0 / 8%);
    position: relative;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.flow-step:nth-child(odd) {
    border-left-color: #f85c24;
}

.flow-step:nth-child(even) {
    border-left-color: #28a745;
}

.flow-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 12%);
}

/* === COMPACT SECTIONS === */
.compact-section {
    padding: 2rem 0;
    margin: 1rem 0;
}

.compact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.line-by-line p {
    margin: 0.8rem 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.line-by-line h3 {
    margin: 2rem 0 1rem;
    color: #F15A24;
    font-size: 1.4rem;
    font-weight: 600;
}

.stats-inline {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #F15A24;
    margin: 1.5rem 0;
}

.stats-inline ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.stats-inline li {
    margin: 0.5rem 0;
    font-weight: 500;
}

.highlight-stat {
    background: #fff3e0;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #F15A24;
    font-weight: 600;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
    margin: 0.5rem 0;
}

.sentence-break {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
    font-size: 1.1rem;
}

.sentence-break .line {
    display: block;
    margin: 0.8rem 0;
}

/* === SPECIAL SECTIONS === */
.highlight-section {
    background: white;
    color: black;
    padding: 0;
    text-align: center;
}

.highlight-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.final-cta-button {
    background: white; 
    border: 2px solid white;
}

.highlight-section.final-cta {
    background: white;
    color: black;
    padding: 0 0 4rem;
    text-align: center;
}

.testing-highlight {
    margin-top: 4rem;
    border-radius: 20px;
}

.about-highlight {
    margin-top: 2rem;
    border-radius: 20px;
}

/* === NAVIGATION === */
.page-navigation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #dee2e6;
}

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

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #F15A24;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(241 90 36 / 30%);
    min-width: 150px;
    justify-content: center;
}

.nav-button:hover {
    background: #d1471c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(241 90 36 / 40%);
}

.nav-button.prev {
    background: #6c757d;
    box-shadow: 0 4px 15px rgb(108 117 125 / 30%);
}

.nav-button.prev:hover {
    background: #5a6268;
    box-shadow: 0 6px 20px rgb(108 117 125 / 40%);
}

.nav-arrow {
    font-size: 1.2rem;
}

.page-indicator {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.page-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    transition: background 0.3s ease;
}

.dot.active {
    background: #F15A24;
}

.spacer {
    flex: 1;
}

/* Back Button */
.back-button-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    width: 100%;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(108 117 125 / 30%);
    border: 2px solid rgb(255 255 255 / 20%);
    font-family: Barlow, sans-serif;
}

.back-button:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(108 117 125 / 40%);
    color: white;
    text-decoration: none;
}

.back-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgb(108 117 125 / 30%);
}

.back-button-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(255 107 53 / 30%);
    border: 2px solid rgb(255 255 255 / 20%);
    margin: 2rem 0;
    font-family: Barlow, sans-serif;
}

.back-button-orange:hover {
    background: linear-gradient(135deg, #ff5722 0%, #e64100 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(255 107 53 / 50%);
    color: white;
    text-decoration: none;
}

.back-button-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #f8f9fa;
    color: #495057;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    border: 1px solid #dee2e6;
    margin: 1rem 0;
    font-family: Barlow, sans-serif;
}

.back-button-compact:hover {
    background: #e9ecef;
    color: #f85c24;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
    text-decoration: none;
    border-color: #f85c24;
}

/* === FOOTER - ALLES IN EINER ZEILE === */

footer {
    background: #1a1a1a;
    color: white;
    padding: 5rem 0 3rem;
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin: 4rem -50vw 0;
}

footer .container {
    max-width: 1400px; /* Breiter für mehr Platz */
    margin: 0 auto;
    padding: 0 2%; /* Weniger Padding für mehr Breite */
    width: 100%;
}

/* Footer-Container soll durchsichtig sein */
footer .container {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* Feste 4 Spalten */
    gap: 3rem; /* Guter Abstand zwischen Spalten */
    margin-bottom: 3rem;
    align-items: start; /* Oben ausrichten */
}

/* Alternative: Flexible aber begrenzte Breite */
.footer-content-flex {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr)); /* 4 Spalten, min 220px */
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section p strong {
    color: white;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem; /* Weniger Abstand */
}

/* Responsive: Tablet */
@media (width <= 1200px) {
    footer .container {
        max-width: 1200px;
        padding: 0 3%;
    }
    
    .footer-content {
        gap: 2rem; /* Weniger Abstand auf kleineren Screens */
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}

/* Responsive: Kleine Tablets */
@media (width <= 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr; /* 2x2 Grid */
        gap: 3rem 2rem; /* Vertikal mehr, horizontal weniger */
    }
}

/* Responsive: Mobile */
@media (width <= 600px) {
    footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr; /* Eine Spalte auf Mobile */
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 1rem;
    }
    
    .footer-bottom {
        margin-top: 3rem;
        padding-top: 2rem;
    }
}

/* Sehr breite Screens (4K, Ultrawide) */
@media (width >= 1600px) {
    footer .container {
        max-width: 1600px;
        padding: 0 1%;
    }
    
    .footer-content {
        gap: 4rem; /* Mehr Platz auf sehr breiten Screens */
    }
    
    .footer-section h3 {
        font-size: 1.4rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 1rem;
    }
}

/* Optional: Noch kompaktere Version */
.footer-compact .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-compact .footer-section p,
.footer-compact .footer-section a {
    font-size: 0.85rem;
    margin: 0.8rem 0;
}

.footer-compact .footer-content {
    gap: 2rem;
}

/* === UTILITIES === */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card, .quick-booking-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.section-divider {
    height: 4px;
    background: linear-gradient(90deg, #F15A24 0%, #ff8c5a 50%, #F15A24 100%);
    margin: 4rem -15px;
    border-radius: 2px;
    width: calc(100% + 30px);
}

.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    border-radius: 15px;
    background: #f3f3f3;
    box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
}

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

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    margin: 2rem 0;
    border: 2px dashed #dee2e6;
}

.image-container {
    margin: 3rem 0;
    text-align: center;
}

/* === SCROLLBAR STYLING === */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #f85c24;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

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

/* Tablet (768px and up) */
@media (width >= 768px) {
    .container {
        padding: 0 30px;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .hero-content {
        width: 95%;
    }
    
    .quick-booking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testing-options-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
    
    .auswertung-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .diagnose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
}

/* Desktop (1024px and up) */
@media (width >= 1024px) {
    nav ul {
        display: flex;
    }
    
    .quick-booking-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testing-options-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    
    .testing-option-card.premium {
        transform: scale(1.02);
    }
    
    .auswertung-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .diagnose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin: 4rem 0;
    }
    
    .success-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .goals-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Desktop Modal Layout */
    .gallery-modal .modal-body {
        flex-direction: row;
        min-height: 500px;
    }
    
    .gallery-modal .modal-image {
        flex: 1.2;
        border-bottom: none;
        border-right: 1px solid #e9ecef;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
    }
    
    .gallery-modal .modal-info {
        flex: 0.8;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .gallery-modal .modal-img {
        max-height: 400px;
        height: auto;
        width: auto;
        max-width: 95%;
    }
}

/* Large Desktop (1200px and up) */
@media (width >= 1200px) {
    .container {
        padding: 0 2.5%;
    }
    
    body {
        font-size: 1.1rem;
    }
    
    .section h2 {
        font-size: clamp(2.2rem, 4vw, 3.3rem);
    }
    
    .section-intro {
        font-size: 1.3rem;
    }
    
    .founder-card, .feature-card, .testimonial-card, .pricing-card {
        padding: 2.5rem;
    }
    
    .cta-button {
        padding: 1.6rem 4rem;
        font-size: 1.2rem;
    }
    
    .quick-booking-button, .testing-book-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.2rem);
    }
    
    .hero p {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    }
    
    .founders, .features {
        gap: 2.5rem;
    }
    
    .gallery-grid {
        gap: 2rem;
    }
    
    .quick-booking-grid {
        gap: 2.5rem;
    }
    
    .testimonial-grid {
        gap: 2.5rem;
    }
    
    .pricing-container {
        gap: 2.5rem;
    }
    
    /* Gallery Modal Large Desktop */
    .gallery-modal .modal-content {
        max-width: 1600px;
        max-height: 95vh;
    }
    
    .gallery-modal .modal-image {
        height: 80vh;
        padding: 0.5rem;
    }
    
    .gallery-modal .modal-img {
        width: 98%;
        height: 98%;
    }
    
    .gallery-modal .modal-info {
        padding: 1.5rem 2rem;
    }
}

/* Extra Large Desktop (1400px and up) */
@media (width >= 1400px) {
    .container {
        padding: 0 2%;
    }
    
    body {
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: clamp(2.4rem, 4vw, 3.6rem);
    }
    
    .section-intro {
        font-size: 1.4rem;
    }
    
    .founder-card, .feature-card, .testimonial-card, .pricing-card {
        padding: 3rem;
    }
    
    .cta-button {
        padding: 1.8rem 4.5rem;
        font-size: 1.3rem;
    }
    
    .quick-booking-button, .testing-book-button {
        padding: 1.3rem 3rem;
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    }
    
    .hero p {
        font-size: clamp(1.3rem, 2.8vw, 2rem);
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .process-step {
        padding: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Extra Large Desktop (1600px and up) */
@media (width >= 1600px) {
    .container {
        padding: 0 1.5%;
    }
    
    body {
        font-size: 1.3rem;
    }
    
    .section h2 {
        font-size: clamp(2.6rem, 4vw, 4rem);
    }
    
    .section-intro {
        font-size: 1.5rem;
    }
    
    .founder-card, .feature-card, .testimonial-card, .pricing-card {
        padding: 3.5rem;
    }
    
    .cta-button {
        padding: 2rem 5rem;
        font-size: 1.4rem;
    }
    
    .quick-booking-button, .testing-book-button {
        padding: 1.4rem 3.5rem;
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: clamp(3.2rem, 6vw, 5.2rem);
    }
    
    .hero p {
        font-size: clamp(1.4rem, 3vw, 2.2rem);
    }
    
    .gallery-image {
        height: 260px;
    }
    
    .process-step {
        padding: 2.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testing-option-card {
        border-radius: 25px;
    }
    
    .testing-option-header {
        padding: 2.5rem;
    }
    
    .testing-option-body {
        padding: 2.5rem;
    }
    
    .testing-price {
        font-size: 2.6rem;
    }
    
    .modal-content {
        border-radius: 30px;
    }
    
    .modal-header {
        padding: 2rem;
    }
    
    .booking-panel {
        padding: 3rem;
    }
    
    .founders, .features {
        gap: 3rem;
    }
    
    .gallery-grid {
        gap: 2.5rem;
    }
    
    .quick-booking-grid {
        gap: 3rem;
    }
    
    .testimonial-grid {
        gap: 3rem;
    }
    
    .pricing-container {
        gap: 3rem;
    }
}

/* 4K Monitors (2000px+) */
@media (width >= 2000px) {
    .container {
        padding: 0 1%;
    }
    
    body {
        font-size: 1.4rem;
    }
    
    .section h2 {
        font-size: clamp(3rem, 4vw, 4.5rem);
    }
    
    .section-intro {
        font-size: 1.6rem;
    }
    
    .founder-card, .feature-card, .testimonial-card, .pricing-card {
        padding: 4rem;
    }
    
    .cta-button {
        padding: 2.2rem 5.5rem;
        font-size: 1.5rem;
    }
    
    .quick-booking-button, .testing-book-button {
        padding: 1.6rem 4rem;
        font-size: 1.4rem;
    }
    
    .hero h1 {
        font-size: clamp(3.6rem, 6.5vw, 6rem);
    }
    
    .hero p {
        font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .process-step {
        padding: 3rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .testing-option-header {
        padding: 3rem;
    }
    
    .testing-option-body {
        padding: 3rem;
    }
    
    .testing-price {
        font-size: 3rem;
    }
    
    footer {
        padding: 5rem 0 3rem;
    }
    
    .footer-section h3 {
        font-size: 1.6rem;
    }
    
    .modal-header {
        padding: 2.5rem;
    }
    
    .booking-panel {
        padding: 3.5rem;
    }
    
    .modal-title {
        font-size: 2.2rem;
    }
    
    .founders, .features {
        gap: 3.5rem;
    }
    
    .gallery-grid {
        gap: 3rem;
    }
    
    .quick-booking-grid {
        gap: 3.5rem;
    }
    
    .testimonial-grid {
        gap: 3.5rem;
    }
    
    .pricing-container {
        gap: 3.5rem;
    }
}

/* Ultra Wide Monitors (2560px+) */
@media (width >= 2560px) {
    body {
        font-size: 1.5rem;
    }
    
    .section h2 {
        font-size: clamp(3.5rem, 4vw, 5rem);
    }
    
    .section-intro {
        font-size: 1.8rem;
    }
    
    .founder-card, .feature-card, .testimonial-card, .pricing-card {
        padding: 4.5rem;
    }
    
    .cta-button {
        padding: 2.5rem 6rem;
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: clamp(4rem, 7vw, 6.5rem);
    }
    
    .hero p {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    }
    
    .gallery-image {
        height: 350px;
    }
}

/* Mobile Specific Overrides */
@media (width <= 767px) {
    .hero-nav {
        padding: 1rem;
    }
    
    .hero-logo {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .hero-logo-img {
        height: 40px;
    }
    
    .hero-logo-text {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .hero-content {
        top: 45%;
        width: 95%;
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: clamp(0.95rem, 3.5vw, 1.3rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-button {
        padding: 1.2rem 2.8rem;
        font-size: 1rem;
        margin-top: 0.8rem;
    }
    
    .menu-nav a {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    nav ul {
        display: none;
    }
    
    .founders, .features {
        grid-template-columns: 1fr;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .auswertung-content {
        padding: 2rem;
    }
    
    .auswertung-card {
        padding: 1.5rem;
    }
    
    .auswertung-truth {
        padding: 2rem;
    }
    
    .truth-quote {
        padding: 2rem;
    }
    
    .quick-booking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-booking-card {
        padding: 2rem;
    }
    
    .booking-cta-section {
        padding: 3rem 2rem;
        margin: 3rem 0;
    }
    
    .booking-cta-title {
        font-size: 1.8rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .main-cta-button {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }
    
    .booking-modal {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .booking-tabs {
        flex-direction: column;
    }
    
    .booking-tab {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .booking-panel {
        padding: 2rem;
    }
    
    .contact-option {
        padding: 1.5rem;
    }
    
    .calendly-inline-widget {
        height: 500px;
        transform: scale(0.9);
    }
    
    .testing-options-grid {
        grid-template-columns: 1fr;
    }
    
    .testing-option-card.premium {
        transform: none;
    }
    
    .testing-option-header {
        padding: 1.5rem;
    }
    
    .testing-option-body {
        padding: 1.5rem;
    }
    
    .testing-package-offer {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .content-with-image,
    .content-with-image.reverse,
    .image-text-pair,
    .image-text-pair.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-with-image.reverse .image-content,
    .image-text-pair.reverse .image-content {
        order: 0;
    }
    
    .image-content img {
        min-height: 250px;
        max-height: 300px;
    }
    
    .health-message-box {
        padding: 2rem;
        font-size: 1.1rem;
    }
    
    .health-message-box h2 {
        font-size: 1.8rem;
    }
    
    .health-message-box h3 {
        font-size: 1.4rem;
    }
    
    .statistic-highlight,
    .scientific-fact,
    .key-question,
    .problem-statement {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .content-block, .quote-section, .questions-section, .senioren-cta {
        padding: 2rem;
    }
    
    .success-section {
        padding: 3rem 0;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .diagnose-card {
        padding: 2rem;
    }
    
    .diagnose-highlight {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .diagnose-focus {
        font-size: 1.1rem;
    }
    
    .modern-list li {
        font-size: 1rem;
        padding-left: 2rem;
    }
    
    .page-nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-button {
        width: 100%;
        max-width: 300px;
    }
    
    .page-indicator {
        order: -1;
    }
    
    .compact-content {
        padding: 0 0.5rem;
    }
    
    /* Gallery Modal Mobile */
    .gallery-modal .modal-image {
        height: 75vh;
        padding: 0.5rem;
    }
    
    .gallery-modal .modal-img {
        width: 95%;
        height: 95%;
    }
    
    .gallery-modal .modal-info {
        padding: 1.2rem;
    }
}

/* Very Small Mobile (480px and below) */
@media (width <= 480px) {
    .hero-nav {
        padding: 0.8rem;
    }
    
    .hero-logo {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .hero-logo-img {
        height: 35px;
    }
    
    .hero-logo-text {
        font-size: 1rem;
    }
    
    .menu-toggle {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .hero-content {
        top: 50%;
        padding: 0.8rem;
    }
    
    .hero h1 {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 1.2rem;
    }
    
    .cta-button {
        padding: 1rem 2.2rem;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .founder-card, .feature-card {
        padding: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .auswertung-content {
        padding: 1.5rem;
    }
    
    .auswertung-card {
        padding: 1.2rem;
    }
    
    .auswertung-truth {
        padding: 1.5rem;
    }
    
    .truth-quote {
        padding: 1.5rem;
    }
    
    .booking-cta-section {
        padding: 2.5rem 1.5rem;
    }
    
    .quick-booking-card {
        padding: 1.5rem;
    }
    
    .quick-booking-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .main-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .booking-panel {
        padding: 1.5rem;
    }
    
    .contact-option {
        padding: 1.2rem;
    }
    
    .calendly-inline-widget {
        height: 450px;
        transform: scale(0.85);
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 1.8rem;
    }
    
    .testing-booking-section h2 {
        font-size: 2rem;
    }
    
    .testing-option-header h3 {
        font-size: 1.2rem;
    }
    
    .testing-price {
        font-size: 1.8rem;
    }
    
    .testing-description {
        font-size: 0.9rem;
    }
    
    .package-discount {
        font-size: 2rem;
    }
    
    .health-message-section {
        padding: 3rem 0;
    }
    
    .health-message-box {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block, .quote-section, .questions-section, .senioren-cta {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .success-title {
        font-size: 1.8rem;
    }
    
    .back-button,
    .back-button-orange {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        justify-content: center;
        margin: 1rem 0;
    }
    
    .back-button-compact {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
        margin: 1rem 0;
    }
    
    .highlight-section {
        padding: 3rem 0;
    }
    
    .highlight-content {
        padding: 0 1rem;
    }
    
    .testimonials {
        padding: 3rem 0;
    }
    
    .section h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .menu-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
    
    .menu-nav a {
        font-size: 1.3rem;
        padding: 0.8rem;
    }
    
    /* Gallery Modal Small Mobile */
    .gallery-modal .modal-image {
        height: 70vh;
        padding: 0.3rem;
    }
    
    .gallery-modal .modal-img {
        width: 98%;
        height: 98%;
    }
    
    .gallery-modal .modal-info {
        padding: 1rem;
    }
}

/* Very small screens */
@media (width <= 360px) {
    .hero h1 {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }
    
    .hero p {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Print styles */
@media print {
    .hero-nav,
    .menu-overlay,
    header,
    .menu-toggle,
    .cta-button,
    .booking-section {
        display: none;
    }
    
    .hero {
        height: auto;
        background: white;
        color: black;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-video {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section {
        padding: 2rem 0;
        break-inside: avoid;
    }
}

/* === COLOR UPDATES === */
.nav-button {
    background: #F15A24;
    box-shadow: 0 4px 15px rgb(241 90 36 / 30%);
}

.nav-button:hover {
    background: #d1471c;
    box-shadow: 0 6px 20px rgb(241 90 36 / 40%);
}

.dot.active {
    background: #F15A24;
}

.cta-button, .final-cta-button {
    background: #F15A24;
}

.cta-button:hover, .final-cta-button:hover {
    background: #d1471c;
}

/* === ADDITIONAL UTILITIES === */
.health-message {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    padding: 4rem;
}

.health-message h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
}

.health-message p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 1rem;
}

/* === GOOGLE RATING + REFERENZEN === */

/* Google Rating Section */
.google-rating-section {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.google-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.google-rating-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 12%);
}

.google-logo {
    display: flex;
    align-items: center;
}

.google-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    background-size: 400% 400%;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: googleGradient 3s ease-in-out infinite;
}

@keyframes googleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars-display {
    color: #FFD700;
    font-size: 1.8rem;
    text-shadow: 0 1px 3px rgb(0 0 0 / 10%);
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    line-height: 1;
}

.rating-details {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Referenzen Section */
.quick-testimonials {
    background: white;
    padding: 3rem 0;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-intro h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials-intro p {
    color: #666;
    font-size: 1.1rem;
}

.quick-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.quick-testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #F15A24;
    position: relative;
    transition: all 0.3s ease;
}

.quick-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(241 90 36 / 15%);
}

.quick-testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: #F15A24;
    opacity: 0.3;
    font-weight: 800;
}

.testimonial-text {
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.testimonial-author {
    color: #F15A24;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.star {
    color: #FFD700;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (width <= 768px) {
    .google-rating-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .rating-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .rating-info {
        align-items: center;
    }
    
    .quick-testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-intro h2 {
        font-size: 1.8rem;
    }
    
    .quick-testimonial {
        padding: 1.5rem;
    }
}

@media (width <= 480px) {
    .google-text {
        font-size: 1.5rem;
    }
    
    .stars-display {
        font-size: 1.5rem;
    }
    
    .rating-score {
        font-size: 1.5rem;
    }
}

/* Füge das zu deinem CSS hinzu: */
.text-lock {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 3rem; /* Leerzeile unter dem ganzen Block */
}

.text-lock .satz {
    display: block;
    margin: 0.6rem 0;
    line-height: 1.6;
    white-space: nowrap;
    font-size: 1.1rem;
}

/* Für kleine Bildschirme: Horizontal scrollen statt umbrechen */
@media (width <= 1200px) {
    .text-lock {
        overflow-x: auto;
        white-space: nowrap;
        padding: 20px;
    }
    
    .text-lock .satz {
        white-space: nowrap;
        min-width: max-content;
    }
}

/* === FEATURE CARDS - 3x2 GRID FIX FÜR TESTING SECTION === */

/* === EMOJI UND TITEL HORIZONTAL AUSRICHTEN === */

/* === ULTIMATE GRID FIX - HÃ–CHSTE PRIORITÄT === */

/* Super spezifisch und mit !important - überschreibt alles */

/* section#testing.section .container .features {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, auto) !important;
    gap: 2rem !important;
    margin: 3rem auto !important;
    max-width: 1200px !important;
    width: 100% !important;
    box-sizing: border-box !important;
} */

/* Sehr spezifische Feature Card Regel */

/* section#testing.section .container .features .feature-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 20px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%) !important;
    border: 1px solid #f0f0f0 !important;
     */

    /* Grid Layout Fix */
    /* stylelint-disable-next-line comment-empty-line-before */
    /* height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
     */

    /* Animation überschreiben falls nötig */
    /* stylelint-disable-next-line comment-empty-line-before */
    /* animation: fadeInUp 0.6s ease forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
} */

/* Feature Card Titel - horizontal */
section#testing.section .container .features .feature-card h3 {
    color: #f85c24 !important;
    margin-bottom: 1rem !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    
    /* Horizontale Ausrichtung */
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    min-height: 60px !important;
    flex-shrink: 0 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

/* Text */
section#testing.section .container .features .feature-card p {
    color: #666 !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    flex-grow: 1 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Hover */
section#testing.section .container .features .feature-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgb(255 107 53 / 15%) !important;
    border-color: #f85c24 !important;
}

/* Animation Delays überschreiben */
section#testing.section .container .features .feature-card:nth-child(1) { 
    animation-delay: 0.1s !important; 
}

section#testing.section .container .features .feature-card:nth-child(2) { 
    animation-delay: 0.2s !important; 
}

section#testing.section .container .features .feature-card:nth-child(3) { 
    animation-delay: 0.3s !important; 
}

section#testing.section .container .features .feature-card:nth-child(4) { 
    animation-delay: 0.4s !important; 
}

section#testing.section .container .features .feature-card:nth-child(5) { 
    animation-delay: 0.5s !important; 
}

section#testing.section .container .features .feature-card:nth-child(6) { 
    animation-delay: 0.6s !important; 
}

/* === JAVASCRIPT ÜBERSCHREIBUNG VERHINDERN === */

/* Diese Regel verhindert, dass JavaScript das Grid-Layout Ã¤ndert */
section#testing.section .container .features[style] {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
}

section#testing.section .container .features .feature-card[style] {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

/* === RESPONSIVE - GLEICHE SPEZIFITÄT === */

@media (width <= 1199px) {
    section#testing.section .container .features {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(3, auto) !important;
        max-width: 800px !important;
    }
}

@media (width <= 768px) {
    section#testing.section .container .features {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(6, auto) !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
    }
    
    section#testing.section .container .features .feature-card {
        padding: 1.5rem !important;
    }
    
    section#testing.section .container .features .feature-card h3 {
        font-size: 1.2rem !important;
        min-height: auto !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        white-space: normal !important;
    }
}

/* === TEXT AUF GLEICHE HORIZONTALE LINIE === */

/* Titel-Bereich: Feste Höhe für alle Titel */
section#testing.section .container .features .feature-card h3 {
    color: #f85c24 !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    
    /* Horizontale Ausrichtung */
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    
    /* WICHTIG: Feste Höhe für alle Titel */
    height: 80px !important; /* Feste Höhe statt min-height */
    margin-bottom: 1rem !important;
    flex-shrink: 0 !important;
    
    /* Text-Eigenschaften */
    line-height: 1.2 !important;
    text-align: center !important;
    
    /* Umbruch erlauben falls nötig */
    white-space: normal !important;
    overflow: hidden !important;
}

/* Text-Bereich: Beginnt immer an der gleichen Stelle */
section#testing.section .container .features .feature-card p {
    color: #666 !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    
    /* WICHTIG: Text soll verfügbaren Platz füllen */
    flex-grow: 1 !important;
    margin: 0 !important;
    
    /* Text vertikal zentrieren */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    
    /* Padding für besseren Look */
    padding: 0 1rem !important;
}

/* Spezielle Anpassung für lÃ¤ngere Titel */
section#testing.section .container .features .feature-card h3 {
    /* Falls Titel zu lang: kleinere Schrift */
    font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
    
    /* Bessere Verteilung bei Umbruch */
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* Emoji/Icon konstant halten */
section#testing.section .container .features .feature-card h3 span:first-child,
section#testing.section .container .features .feature-card h3 .emoji {
    font-size: 1.8rem !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    margin-right: 0.5rem !important;
}

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

/* Desktop Large: Mehr Höhe für Titel */
@media (width >= 1200px) {
    section#testing.section .container .features .feature-card h3 {
        height: 90px !important;
        font-size: 1.4rem !important;
    }
    
    section#testing.section .container .features .feature-card p {
        font-size: 1.1rem !important;
        padding: 0 1.5rem !important;
    }
}

/* Tablet: Angepasste Höhe */
@media (width <= 1199px) {
    section#testing.section .container .features .feature-card h3 {
        height: 85px !important;
        font-size: 1.2rem !important;
    }
    
    section#testing.section .container .features .feature-card p {
        font-size: 1rem !important;
    }
}

/* Mobile: Flexible Höhe */
@media (width <= 768px) {
    section#testing.section .container .features .feature-card h3 {
        height: auto !important; /* Auf Mobile flexible Höhe */
        min-height: 70px !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        font-size: 1.2rem !important;
    }
    
    section#testing.section .container .features .feature-card h3 span:first-child,
    section#testing.section .container .features .feature-card h3 .emoji {
        font-size: 1.5rem !important;
        margin-right: 0 !important;
        margin-bottom: 0.3rem !important;
    }
    
    section#testing.section .container .features .feature-card p {
        font-size: 0.95rem !important;
        padding: 0 0.5rem !important;
    }
}

/* Sehr kleine Bildschirme */
@media (width <= 480px) {
    section#testing.section .container .features .feature-card h3 {
        min-height: 60px !important;
        font-size: 1.1rem !important;
    }
    
    section#testing.section .container .features .feature-card h3 span:first-child,
    section#testing.section .container .features .feature-card h3 .emoji {
        font-size: 1.3rem !important;
    }
    
    section#testing.section .container .features .feature-card p {
        font-size: 0.9rem !important;
    }
}

/* === ABSTAND ZWISCHEN TESTING HIGHLIGHT UND TESTING BOOKING REDUZIEREN === */

/* 1. Testing Highlight Section - weniger Abstand nach unten */
section#testing .highlight-section.testing-highlight {
    margin-bottom: 0.5rem !important; /* Sehr wenig Abstand */
    padding-bottom: 0.5rem !important; /* Wenig Innenabstand */
}

/* 2. Testing Booking Section - weniger Abstand nach oben */
.testing-booking-section {
    padding: 5rem 1rem;
    overflow: visible; /* wichtig */
}

/* 3. Falls es ein section-divider dazwischen gibt - ausblenden oder reduzieren */
section#testing + .section-divider,
.testing-highlight + .section-divider {
    height: 2px !important; /* Statt 4px */
    margin: 1rem -15px !important; /* Statt 4rem */
}

/* 4. Alternative: Direkter Nachbar-Selektor */
.testing-highlight + .testing-booking-section {
    margin-top: 0 !important;
    padding-top: 1.5rem !important;
}

/* 5. Super spezifisch - nur wenn Testing Booking direkt nach Testing Highlight kommt */
section#testing .testing-highlight + .testing-booking-section,
.testing-highlight ~ .testing-booking-section {
    margin-top: 0 !important;
    padding-top: 1.5rem !important;
}

.testing-option-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgb(255 255 255 / 15%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 20%);
    overflow: visible; /* wichtig! */
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    height: auto; /* ganz wichtig! */
    min-height: auto; /* ganz wichtig! */
}

/* WordPress Core Alignment Classes */
.alignleft { float: left; margin: 0 1em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1em; }
.aligncenter { display: block; margin: 0 auto; }

/* WordPress Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    overflow-wrap: normal;
}

/* WordPress Gallery */
.gallery { margin: 0 -4px; }
.gallery-item { display: inline-block; padding: 4px; vertical-align: top; }
.gallery-caption { font-size: 0.875em; color: #666; }

/* Block Editor Styles */
.wp-block-group { margin: 1em 0; }
.wp-block-columns { display: flex; flex-wrap: wrap; }
.wp-block-column { flex: 1; margin: 0 1em; }

/* Block Alignments */
.alignwide { max-width: 1200px; margin: 0 auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

/* === END OF CSS === */

.footer-section h3 {
    color: #f85c24;
    margin-bottom: 2rem;
    font-size: 1.3rem; /* Etwas kleiner für bessere Platznutzung */
    font-weight: 700;
    border-bottom: 2px solid #f85c24;
    padding-bottom: 0.5rem;
    line-height: 1.2;
}

.footer-section p {
    margin: 1rem 0;
    line-height: 1.7; /* Kompakter aber lesbar */
    color: #ccc;
    font-size: 0.95rem; /* Etwas kleiner */
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 1rem 0; /* Weniger Abstand vertikal */
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    font-size: 0.95rem; /* Etwas kleiner */
    line-height: 1.5;
}

.footer-section a:hover {
    color: #f85c24;
    transform: translateX(5px);
}

.footer-social-text {
    margin-top: 1.5rem;
    font-size: 0.9rem; /* Kleiner */
    color: #999;
    line-height: 1.5;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #333;
}

.footer-bottom p {
    margin: 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 1rem;
    color: #f85c24;
    font-weight: 600;
    font-style: italic;
}

/* Kontakt Section - Kompakter */
.footer-section p strong {
    color: white;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem; /* Weniger Abstand */
}

/* === ZUSÄTZLICHE CSS REGELN FÜR RECHTLICHE SEITEN === */

/* Impressum, AGB, Datenschutz - allgemeine Stile */
.page-impressum-container,
.agb-container,
.page-datenschutz-container {
    min-height: 100vh;
    background: #f8f9fa;
}

/* Content-Bereiche */
.agb-content,
.page-datenschutz-container .container > div,
.page-impressum-container .container > div {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
    line-height: 1.7;
}

/* Überschriften */
.agb-content h1,
.page-datenschutz-container h1:not(.hero h1),
.page-impressum-container h1:not(.hero h1) {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3rem 0 2rem;
    border-bottom: 2px solid #F15A24;
    padding-bottom: 1rem;
}

.agb-content h2,
.page-datenschutz-container h2:not(.hero h2),
.page-impressum-container h2:not(.hero h2) {
    color: #F15A24;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
}

/* Paragraphen */
.agb-content p,
.page-datenschutz-container p,
.page-impressum-container p {
    margin: 1.5rem 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

/* Listen */
.agb-content ul,
.agb-content ol,
.page-datenschutz-container ul,
.page-impressum-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.agb-content li,
.page-datenschutz-container li,
.page-impressum-container li {
    margin: 0.8rem 0;
    color: #333;
    line-height: 1.6;
}

/* Hervorhebungen */
.agb-content strong,
.page-datenschutz-container strong,
.page-impressum-container strong {
    color: #F15A24;
    font-weight: 600;
}

/* Links */
.agb-content a,
.page-datenschutz-container a:not(.cta-button),
.page-impressum-container a:not(.cta-button) {
    color: #F15A24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.agb-content a:hover,
.page-datenschutz-container a:not(.cta-button):hover,
.page-impressum-container a:not(.cta-button):hover {
    color: #d1471c;
    text-decoration: underline;
}

/* Highlight-Boxen (scoped to legal pages to avoid global bleed) */
.highlight-box,
.page-impressum-container .contact-info,
.page-datenschutz-container .contact-info,
.agb-content .contact-info {
    background: #fff3e0;
    border-left: 4px solid #F15A24;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Formular-Box für Widerrufsformular */
.formular-box {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.formular-box h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Navigation zwischen Seiten */
.agb-navigation {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.agb-navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.agb-navigation a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    transition: all 0.3s ease;
}

.agb-navigation a:hover {
    color: #F15A24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
}

/* Header für Unterseiten */
#scrollHeader.visible {
    transform: translateY(0);
    box-shadow: 0 2px 20px rgb(0 0 0 / 15%);
}

/* Mobile Optimierungen für Rechtliche Seiten */
@media (width <= 768px) {
    .page-impressum-container,
    .agb-container,
    .page-datenschutz-container {
        padding-top: 100px !important;
    }
    
    .agb-content,
    .page-datenschutz-container .container > div,
    .page-impressum-container .container > div {
        padding: 2rem !important;
        margin: 2rem 1rem !important;
    }
    
    .agb-content h1,
    .page-datenschutz-container h1:not(.hero h1),
    .page-impressum-container h1:not(.hero h1) {
        font-size: 1.5rem;
    }
    
    .agb-content h2,
    .page-datenschutz-container h2:not(.hero h2),
    .page-impressum-container h2:not(.hero h2) {
        font-size: 1.2rem;
    }
    
    .agb-navigation .container {
        flex-direction: column;
        text-align: center;
    }
    
    .agb-navigation a {
        width: 100%;
        max-width: 300px;
        display: inline-block;
        text-align: center;
    }
    
    .highlight-box,
    .contact-info,
    .formular-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}

@media (width <= 480px) {
    .page-impressum-container,
    .agb-container,
    .page-datenschutz-container {
        padding-top: 90px !important;
    }
    
    .agb-content,
    .page-datenschutz-container .container > div,
    .page-impressum-container .container > div {
        padding: 1.5rem !important;
        margin: 1rem 0.5rem !important;
    }
    
    .agb-content h1,
    .page-datenschutz-container h1:not(.hero h1),
    .page-impressum-container h1:not(.hero h1) {
        font-size: 1.3rem;
        margin: 2rem 0 1.5rem;
    }
    
    .agb-content h2,
    .page-datenschutz-container h2:not(.hero h2),
    .page-impressum-container h2:not(.hero h2) {
        font-size: 1.1rem;
        margin: 2rem 0 1rem;
    }
    
    .agb-content p,
    .page-datenschutz-container p,
    .page-impressum-container p {
        font-size: 0.95rem;
        margin: 1.2rem 0;
    }
    
    .highlight-box,
    .contact-info,
    .formular-box {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }
}

/* Dark Mode Support für Rechtliche Seiten */
@media (prefers-color-scheme: dark) {
    .page-impressum-container,
    .agb-container,
    .page-datenschutz-container {
        background: #1a1a1a;
    }
    
    .agb-content,
    .page-datenschutz-container .container > div,
    .page-impressum-container .container > div {
        background: #2d2d2d;
        color: #e9ecef;
    }
    
    .agb-content h1,
    .agb-content h2,
    .page-datenschutz-container h1:not(.hero h1),
    .page-datenschutz-container h2:not(.hero h2),
    .page-impressum-container h1:not(.hero h1),
    .page-impressum-container h2:not(.hero h2) {
        color: #F15A24;
    }
    
    .agb-content p,
    .agb-content li,
    .page-datenschutz-container p,
    .page-datenschutz-container li,
    .page-impressum-container p,
    .page-impressum-container li {
        color: #e9ecef;
    }
    
    .highlight-box,
    .page-impressum-container .contact-info,
    .page-datenschutz-container .contact-info,
    .agb-content .contact-info,
    .formular-box {
        background: #333;
        border-left-color: #F15A24;
    }
    
    .agb-navigation {
        background: #333;
        border-color: #495057;
    }
    
    .agb-navigation a {
        background: #495057;
        color: #e9ecef;
    }
    
    .agb-navigation a:hover {
        color: #F15A24;
        background: #6c757d;
    }
}

/* Print Styles für Rechtliche Seiten */
@media print {
    .page-impressum-container,
    .agb-container,
    .page-datenschutz-container {
        background: white;
        padding-top: 0 !important;
    }
    
    #scrollHeader,
    .agb-navigation,
    .cta-button {
        display: none !important;
    }
    
    .agb-content,
    .page-datenschutz-container .container > div,
    .page-impressum-container .container > div {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .agb-content h1,
    .agb-content h2,
    .page-datenschutz-container h1,
    .page-datenschutz-container h2,
    .page-impressum-container h1,
    .page-impressum-container h2 {
        color: #000;
        break-after: avoid;
    }
    
    .agb-content p,
    .page-datenschutz-container p,
    .page-impressum-container p {
        orphans: 3;
        widows: 3;
    }
    
    .highlight-box,
    .page-impressum-container .contact-info,
    .page-datenschutz-container .contact-info,
    .agb-content .contact-info,
    .formular-box {
        border: 1px solid #ccc;
        background: #f8f9fa;
        break-inside: avoid;
    }
}

/* Accessibility Verbesserungen */
.agb-content:focus,
.page-datenschutz-container .container > div:focus,
.page-impressum-container .container > div:focus {
    outline: 2px solid #F15A24;
    outline-offset: 2px;
}

.agb-navigation a:focus {
    outline: 2px solid #F15A24;
    outline-offset: 2px;
}

/* Smooth Scroll für Anker-Links */
html {
    scroll-behavior: smooth;
}

/* Widerruf-Section spezielle Stile */
.widerruf-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.widerruf-section h1,
.widerruf-section h2 {
    color: #333;
}

.widerruf-section .contact-info {
    text-align: center;
    font-weight: 600;
}


/* === EINFACHER TABELLEN FIX === */
@media (width <= 768px) {
    /* Container für horizontalen Scroll */
    .table-container {
        overflow-x: auto;
        margin: 2rem 0;
        border: 1px solid #ddd;
        border-radius: 8px;
    }
    
    .vergleichstabelle {
        min-width: 500px; /* Mindestbreite für Lesbarkeit */
        font-size: 0.9rem;
        margin: 0;
    }
    
    .vergleichstabelle th,
    .vergleichstabelle td {
        padding: 0.8rem !important;
        white-space: nowrap;
    }
    
    /* Scrollbalken stylen */
    .table-container::-webkit-scrollbar {
        height: 8px;
    }
    
    .table-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    .table-container::-webkit-scrollbar-thumb {
        background: #f85c24;
        border-radius: 4px;
    }
}

/* === DIAGNOSE CHECK TEXT MOBILE FIX === */
@media (width <= 768px) {
    .text-lock {
        overflow-x: visible !important;
        white-space: normal !important;
        text-align: left !important;
        padding: 0 15px !important;
    }
    
    .text-lock .satz {
        display: inline !important;
        white-space: normal !important;
        min-width: auto !important;
        margin: 0 !important;
        line-height: 1.6 !important;
    }
    
    /* SÃ¤tze fließend verbinden */
    .text-lock .satz::after {
        content: " ";
    }
    
    /* Text in normalen AbsÃ¤tzen umbrechen */
    .text-lock {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 2rem !important;
    }
}

@media (width <= 480px) {
    .text-lock {
        padding: 0 10px !important;
        font-size: 1rem !important;
    }
}

/* === BOOKING CTA MOBILE FIX - HOCHSPEZIFISCH === */
@media (width <= 768px) {
    section#diagnose-check .booking-cta-section,
    .booking-cta-section {
        text-align: center !important;
        margin: 0 auto !important;
        padding: 3rem 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    section#diagnose-check .quick-booking-grid,
    .quick-booking-grid {
        display: block !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    section#diagnose-check .quick-booking-card,
    .quick-booking-card {
        display: block !important;
        margin: 1rem auto !important;
        max-width: 300px !important;
        text-align: center !important;
    }
}

/* FALLBACK FÜR SCROLL-REVEAL AUF NICHT-STARTSEITEN */
body:not(.home) .scroll-reveal,
body:not(.page-template-page-home) .scroll-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

/* === MANAGED FITNESS FEATURES === */
.managed-fitness-features {
    background: white;
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: #F15A24;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(241 90 36 / 15%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* === EXCLUSIVITY HIGHLIGHT === */
.exclusivity-highlight {
    background: linear-gradient(135deg, #000 0%, #F15A24 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    color: white;
    text-align: center;
}

.exclusivity-content h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.exclusivity-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.exclusivity-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* === ANALYSE SECTION === */
.analyse-why {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
}

.why-content h3 {
    color: #F15A24;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    text-align: center;
}

.analyse-process {
    margin: 4rem 0;
}

.analyse-process h3 {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.analyse-results {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.analyse-results h3 {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.6rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 10%);
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.result-card h4 {
    color: #F15A24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* === ANALYSE VALUE === */
.analyse-value {
    background: linear-gradient(135deg, #000 0%, #F15A24 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
}

.value-content h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.value-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.price-highlight {
    color: #FFD700;
    font-weight: 700;
}

.value-highlight {
    background: rgb(255 255 255 / 15%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.value-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.value-explanation {
    opacity: 0.9;
    margin: 0;
}

/* === ANALYSE CTA === */
.analyse-cta-section {
    background: linear-gradient(135deg, #000 0%, #F15A24 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 25px;
    text-align: center;
    margin: 4rem auto;
    max-width: 1200px;
}

.analyse-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* === ANALYSE FAQ === */
.analyse-faq {
    margin: 4rem 0;
}

.analyse-faq h3 {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.6rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #F15A24;
}

.faq-item h4 {
    color: #F15A24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Health Message Quote Box */
.health-message {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-left: 5px solid #ff6b35;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.health-message::before { 
    content: "\201C";  /* Öffnendes Anführungszeichen " */
    position: absolute; 
    top: -15px; 
    left: 20px; 
    font-size: 4rem; 
    color: rgb(255 107 53 / 20%); 
    font-weight: bold; 
}

.health-message h2 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.health-message p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}


/* === NEW PRICING === */
.plus-card {
    border: 3px solid #FFD700;
    position: relative;
}

.plus-card::before {
    content: "BELIEBT";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}



.walk-in-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid #e9ecef;
}

.walk-in-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.walk-in-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.walk-in-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.walk-in-cost {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F15A24;
}

.walk-in-note {
    color: #666;
    font-style: italic;
}

/* === VALUE COMPARISON === */
.value-comparison {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
}

.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.value-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.value-table th,
.value-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.value-table th {
    background: #F15A24;
    color: white;
    font-weight: 700;
}

.value-table tr:nth-child(even) {
    background: #f8f9fa;
}

.value-table tr:last-child {
    background: #fff3e0;
    font-weight: 600;
}

.savings-badge {
    background: #28a745;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    display: inline-block;
    margin: 2rem 0;
    text-align: center;
}

.savings-amount {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

.savings-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Pricing: Padding der Karte komplett entfernen */
#mitgliedschaft .pricing-card {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;               /* saubere Kanten */
}

/* InnenabstÃ¤nde wieder dort setzen, wo sie hingehören */
#mitgliedschaft .pricing-header { padding: 2rem !important; }
#mitgliedschaft .pricing-body   { padding: 2rem !important; }

/* Optional: gleiche Höhe / sauberes Layout */
#mitgliedschaft .pricing-card .pricing-body { flex: 1; }

/* Typographie-Overrides nur für den Mitgliedschaftsbereich */
#mitgliedschaft .pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#mitgliedschaft .price {
  font-size: 3rem;
  font-weight: 800;
  color: #F15A24;
  margin-bottom: .5rem;
  line-height: 1.1;
}

#mitgliedschaft .premium-card .price { color: #fff; }

#mitgliedschaft .pricing-header p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

#mitgliedschaft .premium-card .pricing-header p {
  color: rgb(255 255 255 / 90%);
}

/* Liste */
#mitgliedschaft .price-details li {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  padding: .8rem 0 .8rem 2rem;
  position: relative;
  border-bottom: 1px solid #f8f9fa;
}

#mitgliedschaft .price-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

/* CTA Button angleichen */
#mitgliedschaft .pricing-cta .cta-button {
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
}

/* Basis: zu, bis .open gesetzt wird */
.main-nav .dropdown { position: relative; }

.main-nav .dropdown-menu{
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #fff; border-radius: 10px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
  padding: .5rem 0; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s ease; z-index: 2000;
}

/* sichtbar, wenn per Klick geöffnet */
.main-nav .dropdown.open .dropdown-menu{
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* WICHTIG: beim Hover NICHT ausblenden - im offenen Zustand sichtbar lassen */
.main-nav .dropdown.open:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Falls du vorher diese Zeile hattest "€“ ENTFERNEN/ÜBERSCHREIBEN:
.main-nav .dropdown:hover .dropdown-menu{ opacity:0; visibility:hidden; transform:translateY(-8px); }
*/

/* === VIDEO TESTIMONIALS === */
.video-testimonials-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.video-testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
    transition: all 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(0 0 0 / 15%);
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 30%);
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgb(0 0 0 / 50%);
}

.video-play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    transform: scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: #F15A24;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-info p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.testimonial-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #F15A24;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 90%);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgb(255 255 255 / 90%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2001;
}

.modal-video {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.modal-video-info {
    padding: 1.5rem;
    text-align: center;
}

/* Fallback Text-as-Video */
.testimonials-fallback {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
}

.testimonials-fallback h3 {
    color: #F15A24;
    margin-bottom: 1rem;
}

.text-as-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.text-video-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #F15A24;
    position: relative;
}

.quote-large {
    font-size: 4rem;
    color: #F15A24;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-weight: 800;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 1rem 0;
    color: #333;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: #F15A24;
    font-weight: 600;
    text-align: right;
}

.testimonials-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
}

.testimonials-cta h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* ================================
   EINSTEIGER SEITE CSS
   ================================ */

/* Hero Section */
.hero-einsteiger {
    background: linear-gradient(135deg, #000 0%, #f85c24 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-einsteiger::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(255 255 255 / 10%) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content-einsteiger {
    position: relative;
    z-index: 2;
}

.hero-content-einsteiger h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 30%);
    animation: fadeInUp 1s ease;
    color: white;
}

.hero-subtitle-einsteiger {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats-einsteiger {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stat-einsteiger {
    text-align: center;
}

.hero-stat-number-einsteiger {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: #ff8c5a;
}

.hero-stat-text-einsteiger {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Problem Section */
.problem-section-einsteiger {
    background: #f8f9fa;
    padding: 5rem 0;
}

.problem-content-einsteiger {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.problem-list-einsteiger {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-item-einsteiger {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f85c24;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
    transition: all 0.3s ease;
    text-align: center;
}

.problem-item-einsteiger:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(248 92 36 / 15%);
}

.problem-icon-einsteiger {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-item-einsteiger h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.problem-item-einsteiger p {
    color: #666;
    line-height: 1.6;
}

/* Solution Section */
.solution-section-einsteiger {
    background: white;
    padding: 5rem 0;
}

.solution-grid-einsteiger {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-card-einsteiger {
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease forwards;
}

.solution-card-einsteiger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 20%), transparent);
    transition: left 0.5s;
}

.solution-card-einsteiger:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(248 92 36 / 30%);
}

.solution-card-einsteiger:hover::before {
    left: 100%;
}

.solution-card-einsteiger:nth-child(1) { animation-delay: 0.1s; }
.solution-card-einsteiger:nth-child(2) { animation-delay: 0.2s; }
.solution-card-einsteiger:nth-child(3) { animation-delay: 0.3s; }
.solution-card-einsteiger:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.solution-icon-einsteiger {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(2px 2px 4px rgb(0 0 0 / 30%));
}

.solution-card-einsteiger h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.solution-card-einsteiger p {
    color: rgb(255 255 255 / 95%);
    line-height: 1.6;
}

/* Process Section */
.process-section-einsteiger {
    background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
    color: white;
    padding: 5rem 0;
}

.process-steps-einsteiger {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step-einsteiger {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number-einsteiger {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgb(248 92 36 / 30%);
    color: white;
}

.process-step-einsteiger h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f85c24;
    font-weight: 600;
}

.process-step-einsteiger p {
    color: rgb(255 255 255 / 90%);
    line-height: 1.6;
}

/* Success Stories */
.success-section-einsteiger {
    background: #f8f9fa;
    padding: 5rem 0;
}

.success-stories-einsteiger {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.success-story-einsteiger {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    border-left: 5px solid #f85c24;
    position: relative;
    transition: transform 0.3s ease;
}

.success-story-einsteiger:hover {
    transform: translateY(-5px);
}

.success-story-einsteiger::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #f85c24;
    opacity: 0.3;
    font-weight: 800;
}

.success-quote-einsteiger {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.6;
}

.success-author-einsteiger {
    font-weight: 600;
    color: #f85c24;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.success-details-einsteiger {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Section */
.cta-section-einsteiger {
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content-einsteiger {
    position: relative;
    z-index: 2;
}

.cta-title-einsteiger {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.cta-subtitle-einsteiger {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.secondary-einsteiger {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    margin-left: 1rem;
}

.secondary-einsteiger:hover {
    background: white !important;
    color: #f85c24 !important;
}

/* FAQ Section */
.faq-section-einsteiger {
    background: white;
    padding: 5rem 0;
}

.faq-list-einsteiger {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-einsteiger {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item-einsteiger:hover {
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.faq-question-einsteiger {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question-einsteiger:hover {
    background: #e9ecef;
}

.faq-answer-einsteiger {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-einsteiger.active .faq-answer-einsteiger {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-plus-einsteiger {
    font-size: 1.5rem;
    color: #f85c24;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item-einsteiger.active .faq-plus-einsteiger {
    transform: rotate(45deg);
}

.faq-answer-einsteiger p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (width <= 768px) {
    .hero-einsteiger {
        padding: 4rem 0 3rem;
    }

    .hero-content-einsteiger h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle-einsteiger {
        font-size: 1.1rem;
    }

    .hero-stats-einsteiger {
        gap: 2rem;
    }

    .hero-stat-number-einsteiger {
        font-size: 2rem;
    }

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

    .solution-grid-einsteiger,
    .process-steps-einsteiger,
    .success-stories-einsteiger {
        grid-template-columns: 1fr;
    }

    .step-number-einsteiger {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-title-einsteiger {
        font-size: 2rem;
    }

    .secondary-einsteiger {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }

    .problem-section-einsteiger,
    .solution-section-einsteiger,
    .process-section-einsteiger,
    .success-section-einsteiger,
    .cta-section-einsteiger,
    .faq-section-einsteiger {
        padding: 3rem 0;
    }

    .problem-list-einsteiger {
        grid-template-columns: 1fr;
    }
}

@media (width <= 480px) {
    .hero-content-einsteiger h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle-einsteiger {
        font-size: 1rem;
    }

    .solution-card-einsteiger,
    .success-story-einsteiger {
        padding: 2rem;
    }

    .cta-title-einsteiger {
        font-size: 1.8rem;
    }

    .cta-subtitle-einsteiger {
        font-size: 1.1rem;
 
    }
}

/* ================================
   HOBBYATHLET SEITE CSS
   ================================ */

/* Hero Section */
.hero-hobbyathlet {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 50%, #f85c24 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-hobbyathlet::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgb(248 92 36 / 10%) 50%, transparent 70%);
    top: 0;
    left: -100%;
    animation: slideAcross 8s ease-in-out infinite;
}

@keyframes slideAcross {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.hero-content-hobbyathlet {
    position: relative;
    z-index: 2;
}

.hero-content-hobbyathlet h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
    animation: fadeInUp 1s ease;
    color: white;
}

.hero-subtitle-hobbyathlet {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats-hobbyathlet {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stat-hobbyathlet {
    text-align: center;
    padding: 1rem;
    background: rgb(255 255 255 / 10%);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(248 92 36 / 30%);
    transition: transform 0.3s ease;
}

.hero-stat-hobbyathlet:hover {
    transform: translateY(-5px);
    background: rgb(248 92 36 / 20%);
}

.hero-stat-number-hobbyathlet {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: #f85c24;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 30%);
}

.hero-stat-text-hobbyathlet {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Problem Section */
.problem-section-hobbyathlet {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.problem-content-hobbyathlet {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.problem-list-hobbyathlet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-item-hobbyathlet {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #e53e3e;
    box-shadow: 0 8px 25px rgb(229 62 62 / 10%);
    transition: all 0.3s ease;
    text-align: center;
}

.problem-item-hobbyathlet:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgb(229 62 62 / 20%);
}

.problem-icon-hobbyathlet {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0.3);
}

.problem-item-hobbyathlet h3 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.problem-item-hobbyathlet p {
    color: #666;
    line-height: 1.6;
}

/* Solution Section */
.solution-section-hobbyathlet {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 5rem 0;
}

.solution-grid-hobbyathlet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-card-hobbyathlet {
    background: linear-gradient(135deg, #f85c24 0%, #ff6b35 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease forwards;
}

.solution-card-hobbyathlet::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgb(255 255 255 / 10%), transparent);
    animation: rotate 4s linear infinite;
}

.solution-card-hobbyathlet:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgb(248 92 36 / 40%);
}

.solution-card-hobbyathlet:nth-child(1) { animation-delay: 0.1s; }
.solution-card-hobbyathlet:nth-child(2) { animation-delay: 0.2s; }
.solution-card-hobbyathlet:nth-child(3) { animation-delay: 0.3s; }
.solution-card-hobbyathlet:nth-child(4) { animation-delay: 0.4s; }

.solution-icon-hobbyathlet {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(2px 2px 4px rgb(0 0 0 / 30%));
    position: relative;
    z-index: 2;
}

.solution-card-hobbyathlet h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.solution-card-hobbyathlet p {
    color: rgb(255 255 255 / 95%);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Process Section */
.process-section-hobbyathlet {
    background: linear-gradient(135deg, #000 0%, #1a202c 50%, #2d3748 100%);
    color: white;
    padding: 5rem 0;
}

.process-steps-hobbyathlet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step-hobbyathlet {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: rgb(255 255 255 / 5%);
    border-radius: 15px;
    border: 1px solid rgb(248 92 36 / 20%);
    transition: all 0.3s ease;
}

.process-step-hobbyathlet:hover {
    background: rgb(248 92 36 / 10%);
    border-color: #f85c24;
    transform: translateY(-5px);
}

.step-number-hobbyathlet {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f85c24 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgb(248 92 36 / 40%);
    color: white;
    position: relative;
}

.step-number-hobbyathlet::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 2px solid #f85c24;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

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

.process-step-hobbyathlet h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f85c24;
    font-weight: 600;
}

.process-step-hobbyathlet p {
    color: rgb(255 255 255 / 90%);
    line-height: 1.6;
}

/* Success Stories */
.success-section-hobbyathlet {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.success-stories-hobbyathlet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.success-story-hobbyathlet {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    border-left: 5px solid #f85c24;
    position: relative;
    transition: all 0.3s ease;
}

.success-story-hobbyathlet:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgb(248 92 36 / 15%);
}

.success-story-hobbyathlet::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #f85c24;
    opacity: 0.3;
    font-weight: 800;
}

.success-quote-hobbyathlet {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    line-height: 1.6;
}

.success-author-hobbyathlet {
    font-weight: 600;
    color: #f85c24;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.success-details-hobbyathlet {
    font-size: 0.9rem;
    color: #666;
}

/* Performance Section */
.performance-section-hobbyathlet {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.performance-section-hobbyathlet::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(248,92,36,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.performance-grid-hobbyathlet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.performance-item-hobbyathlet {
    text-align: center;
    padding: 2rem;
    background: rgb(255 255 255 / 5%);
    border-radius: 15px;
    border: 1px solid rgb(248 92 36 / 20%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.performance-item-hobbyathlet:hover {
    background: rgb(248 92 36 / 10%);
    transform: translateY(-5px);
    border-color: #f85c24;
}

.performance-icon-hobbyathlet {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.performance-item-hobbyathlet h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #f85c24;
    font-weight: 600;
}

.performance-item-hobbyathlet p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.performance-number-hobbyathlet {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f85c24;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 30%);
}

.performance-note-hobbyathlet {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* CTA Section */
.cta-section-hobbyathlet {
    background: linear-gradient(135deg, #f85c24 0%, #ff6b35 50%, #ff8c5a 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-hobbyathlet::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(255 255 255 / 10%) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotate 15s linear infinite;
}

.cta-content-hobbyathlet {
    position: relative;
    z-index: 2;
}

.cta-title-hobbyathlet {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 30%);
}

.cta-subtitle-hobbyathlet {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.secondary-hobbyathlet {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    margin-left: 1rem;
}

.secondary-hobbyathlet:hover {
    background: white !important;
    color: #f85c24 !important;
}

/* FAQ Section */
.faq-section-hobbyathlet {
    background: white;
    padding: 5rem 0;
}

.faq-list-hobbyathlet {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-hobbyathlet {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item-hobbyathlet:hover {
    box-shadow: 0 8px 25px rgb(248 92 36 / 10%);
    border-color: #f85c24;
}

.faq-question-hobbyathlet {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-hobbyathlet:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.faq-answer-hobbyathlet {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item-hobbyathlet.active .faq-answer-hobbyathlet {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-plus-hobbyathlet {
    font-size: 1.5rem;
    color: #f85c24;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item-hobbyathlet.active .faq-plus-hobbyathlet {
    transform: rotate(45deg);
}

.faq-answer-hobbyathlet p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (width <= 768px) {
    .hero-hobbyathlet {
        padding: 4rem 0 3rem;
    }

    .hero-content-hobbyathlet h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle-hobbyathlet {
        font-size: 1.1rem;
    }

    .hero-stats-hobbyathlet {
        gap: 1.5rem;
    }

    .hero-stat-hobbyathlet {
        padding: 0.8rem;
    }

    .hero-stat-number-hobbyathlet {
        font-size: 2rem;
    }

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

    .solution-grid-hobbyathlet,
    .process-steps-hobbyathlet,
    .success-stories-hobbyathlet,
    .performance-grid-hobbyathlet {
        grid-template-columns: 1fr;
    }

    .step-number-hobbyathlet {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-title-hobbyathlet {
        font-size: 2rem;
    }

    .secondary-hobbyathlet {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }

    .problem-section-hobbyathlet,
    .solution-section-hobbyathlet,
    .process-section-hobbyathlet,
    .success-section-hobbyathlet,
    .performance-section-hobbyathlet,
    .cta-section-hobbyathlet,
    .faq-section-hobbyathlet {
        padding: 3rem 0;
    }

    .problem-list-hobbyathlet {
        grid-template-columns: 1fr;
    }

    .performance-number-hobbyathlet {
        font-size: 2rem;
    }
}

@media (width <= 480px) {
    .hero-content-hobbyathlet h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle-hobbyathlet {
        font-size: 1rem;
    }

    .solution-card-hobbyathlet,
    .success-story-hobbyathlet {
        padding: 2rem;
    }

    .cta-title-hobbyathlet {
        font-size: 1.8rem;
    }

    .cta-subtitle-hobbyathlet {
        font-size: 1.1rem;
    }

    .performance-item-hobbyathlet {
        padding: 1.5rem;
    }
}

.exclusivity-info,
.exclusivity-info h3,
.exclusivity-info .exclusivity-item {
  color: #000 !important; /* Schwarz */
}

/* === KONTAKT SECTION === */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(0 0 0 / 12%);
}

.method-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F15A24, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-info {
    flex: 1;
}

.method-info h3 {
    color: #F15A24;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.method-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.method-info a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.method-info a:hover {
    color: #F15A24;
}

.method-hours {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.method-hours strong {
    color: #333;
}

/* === KONTAKT MAP === */
.contact-map {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
}

.map-info h3 {
    color: #F15A24;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.map-details {
    display: grid;
    gap: 1rem;
}

.map-detail {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #F15A24;
}

.map-detail strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

/* === CONTACT FAQ === */
.contact-faq {
    margin: 4rem 0;
}

.contact-faq h3 {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-faq .faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
    border-left: 4px solid #F15A24;
}

.contact-faq .faq-item h4 {
    color: #F15A24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-faq .faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* === FINAL CONTACT CTA === */
.final-contact-cta {
    background: linear-gradient(135deg, #000 0%, #F15A24 100%);
    color: white;
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    margin: 4rem 0;
}

.final-cta-content h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1.4rem 3.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid white;
    text-align: center;
    cursor: pointer;
}

.cta-button-secondary:hover {
    background: white;
    color: #F15A24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(255 255 255 / 30%);
    text-decoration: none;
}

#managed-fitness {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    scroll-margin-top: 120px;
    position: relative;
}

#managed-fitness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f85c24, #ff6b35, #f85c24);
}

#managed-fitness h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 800;
}

#managed-fitness .intro-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    line-height: 1.6;
}

.managed-fitness-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.managed-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgb(0 0 0 / 8%);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #f85c24;
    position: relative;
    overflow: hidden;
}

.managed-card.featured {
    border-top-color: #28a745;
    transform: scale(1.05);
}

.managed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgb(248 92 36 / 15%);
}

.managed-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.managed-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.managed-card h3 {
    color: #f85c24;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.managed-card.featured h3 {
    color: #28a745;
}

.managed-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.managed-benefits {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.managed-benefits li {
    padding: 0.5rem 0;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.managed-benefits li::before {
    margin-right: 0.8rem;
    color: #28a745;
    font-weight: bold;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgb(40 167 69 / 30%);
}

.managed-card .cta-button {
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgb(248 92 36 / 30%);
}

.managed-card.featured .cta-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 5px 15px rgb(40 167 69 / 30%);
}

.managed-card .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(248 92 36 / 40%);
}

.managed-card.featured .cta-button:hover {
    box-shadow: 0 10px 25px rgb(40 167 69 / 40%);
}

.managed-cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 5%);
    border: 1px solid rgb(248 92 36 / 10%);
}

.managed-cta-section h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.managed-cta-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.main-cta-button {
    background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgb(248 92 36 / 30%);
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgb(248 92 36 / 40%);
}

/* Responsive */
@media (width <= 768px) {
    #managed-fitness h2 {
        font-size: 2.2rem;
    }
    
    #managed-fitness .intro-text {
        font-size: 1.1rem;
    }
    
    .managed-fitness-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .managed-card {
        padding: 2rem;
    }
    
    .managed-card.featured {
        transform: none;
    }
    
    .managed-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .managed-cta-section {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .managed-cta-section h3 {
        font-size: 1.5rem;
    }
    
    .main-cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
}

@media (width <= 480px) {
    .managed-card .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .managed-benefits {
        font-size: 0.9rem;
    }
}

/* === GRID LAYOUT === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* Desktop: 3 */
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (width <= 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }  /* Tablet: 2 */
}

@media (width <= 600px) {
  .gallery-grid { grid-template-columns: 1fr; }             /* Phone: 1 */
}

/* === IMAGE TILE (bereinigt) === */
.gallery-image,
.gallery-image::before,
.gallery-image::after {
  background: none !important;
  content: none !important;
}

.gallery-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Optional: Lazyload-Übergang */
.gallery-image img.lazyload,
.gallery-image img.lazyloading { opacity: 0; }
.gallery-image img.lazyloaded { opacity: 1; }

/* Deine weiteren Regeln ... */

/* === PRICING COMPARISON SECTION === */

/* Fügen Sie dieses CSS zu Ihrer style.css hinzu */

.pricing-comparison-section {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgb(0 0 0 / 10%);
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #F15A24, #ff8c5a, #F15A24);
}

/* === COMPARISON GRID === */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.comparison-card.highlight {
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
    color: white;
    border-color: #F15A24;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgb(241 90 36 / 30%);
}

.comparison-card.standard {
    border-color: #dee2e6;
}

.comparison-card.standard:hover {
    border-color: #F15A24;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 10%);
}

.card-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-card.highlight .card-label {
    color: rgb(255 255 255 / 90%);
}

.comparison-card.standard .card-label {
    color: #F15A24;
}

.price-display {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1;
}

.comparison-card.highlight .price-display {
    color: white;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 30%);
}

.comparison-card.standard .price-display {
    color: #333;
}

.price-range {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.comparison-card.highlight .card-description {
    color: rgb(255 255 255 / 95%);
}

.comparison-card.standard .card-description {
    color: #666;
}

.card-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    padding: 0;
}

.card-features li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.card-features li::before {
    content: '✓“';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
}

.comparison-card.highlight .card-features li::before {
    color: rgb(255 255 255 / 90%);
}

.comparison-card.standard .card-features li::before {
    color: #F15A24;
}

/* === VS DIVIDER === */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F15A24, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgb(241 90 36 / 40%);
}

.vs-line {
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, #F15A24, rgb(241 90 36 / 30%));
}

/* === ADDITIONAL COMPONENTS === */
.value-proposition {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #F15A24;
    margin: 2rem 0;
    text-align: center;
}

.value-proposition h3 {
    color: #F15A24;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.value-proposition p {
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
    border-color: #F15A24;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--brand-gradient);
    color: #fff;
    border-radius: 20px;
    border: 1px solid rgb(255,255,255,0.2);
}
.cta-section h3, .cta-section p { color: #fff; }

/* Utility: apply brand gradient anywhere */
.bg-brand-gradient { background: var(--brand-gradient) !important; color: #fff; }
.bg-brand-gradient, .bg-brand-gradient * { --on-gradient-text: #fff; }

/* Fitness Profiling banner (Preise page) */

/* removed profiling-banner and light CTA variant (reverted) */

.cta-title {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === RESPONSIVE DESIGN === */
@media (width <= 768px) {
    .pricing-comparison-section {
        padding: 2rem;
        margin: 2rem 0;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .comparison-card.highlight {
        transform: none;
        order: -1;
    }

    .vs-divider {
        display: none;
    }

    .price-display {
        font-size: 2.5rem;
    }

    .comparison-card {
        padding: 2rem;
    }

    .cta-section {
        padding: 2rem;
    }

    .highlight-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (width <= 480px) {
    .pricing-comparison-section {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .price-display {
        font-size: 2rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Special highlights within tier cards */
        .tier-highlight {
            background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin: 1.5rem 0;
            text-align: center;
        }

        .tier-highlight h5 {
            color: white;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .tier-highlight p {
            color: rgb(255 255 255 / 90%);
            margin: 0;
            font-size:1rem;
        } 

        /* === ENHANCED TESTING SECTION === */

/* Fügen Sie dieses CSS zu Ihrer style.css hinzu */

/* === VIDEO SECTION CENTERED === */
.video-section-centered {
    max-width: 800px;
    margin: 3rem auto;
}

.video-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 10%);
    border: 1px solid #e9ecef;
}

.video-header {
    text-align: center;
    margin-bottom: 2rem;
}

.video-header h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.video-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* === YOUTUBE CONTAINER === */
.youtube-container {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.youtube-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgb(0 0 0 / 15%);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.youtube-container:hover .thumbnail-image {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 30%);
    transition: all 0.3s ease;
}

.youtube-container:hover .play-overlay {
    background: rgb(0 0 0 / 50%);
}

.play-button-large {
    transform: scale(1);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgb(0 0 0 / 30%));
}

.youtube-container:hover .play-button-large {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgb(0 0 0 / 80%);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-info {
    padding: 1rem 0 0;
}

.video-info h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-info p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* === EMBEDDED VIDEO === */
.embedded-video-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.embedded-video-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 12px;
}

/* === KOMPAKTE TEST CARDS === */
.tests-overview {
    margin: 4rem 0;
    text-align: center;
}

.tests-overview h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.test-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.test-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 8%);
    transition: all 0.3s ease;
    border-top: 4px solid #F15A24;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(241 90 36 / 2%), rgb(255 87 34 / 5%));
    z-index: 1;
}

.test-card > * {
    position: relative;
    z-index: 2;
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgb(241 90 36 / 15%);
    border-top-color: #ff5722;
}

.test-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.test-card h4 {
    color: #F15A24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.test-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* === VIDEO BENEFITS (entfernt da nicht mehr benötigt) === */

/* === CTA SECTION === */
.testing-cta {
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.testing-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgb(255 255 255 / 5%);
    border-radius: 50%;
    transform: rotate(45deg);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.testing-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testing-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    font-size: 1rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #F15A24;
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(255 255 255 / 30%);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #F15A24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(255 255 255 / 30%);
}

/* === RESPONSIVE DESIGN === */
@media (width <= 968px) {
    .video-section-centered {
        margin: 2rem auto;
    }
    
    .test-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .video-thumbnail {
        height: 220px;
    }
    
    .embedded-video-container iframe {
        height: 220px;
    }
}

@media (width <= 768px) {
    .tests-overview h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .test-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .test-card {
        padding: 1.2rem;
    }
    
    .test-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .test-card h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .test-card p {
        font-size: 0.85rem;
    }
    
    .testing-cta {
        padding: 2rem;
    }
    
    .testing-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .embedded-video-container iframe {
        height: 200px;
    }
}

@media (width <= 480px) {
    .video-container {
        padding: 1.5rem;
    }
    
    .video-header h3 {
        font-size: 1.3rem;
    }
    
    .test-cards-grid {
        gap: 0.8rem;
    }
    
    .test-card {
        padding: 1rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .embedded-video-container iframe {
        height: 180px;
    }
    
    .testing-cta {
        padding: 1.5rem;
    }
    
    .testing-cta h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* cutomer journey */





        /* Journey Flow */
        .journey-flow {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 3rem 0;
        }

        .step {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 2rem;
            position: relative;
            margin-bottom: 1rem;
        }

        .step-start {
            border-left: 5px solid #f85c24;
            background: linear-gradient(135deg, #f85c24 0%, #ff6b35 100%);
            color: white;
        }

        .step-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .step-number {
            background: #f85c24;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-start .step-number {
            background: rgb(255 255 255 / 20%);
            border: 2px solid white;
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0;
        }

        .step-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .step-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
        }

        .feature-box {
            background: rgb(255 255 255 / 10%);
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            border: 1px solid rgb(255 255 255 / 20%);
        }

        .step:not(.step-start) .feature-box {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
        }

        .feature-value {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .feature-label {
            font-size: 0.85rem;
            opacity: 0.8;
            line-height: 1.3;
        }

        /* Decision Point */
        .decision-point {
            background: #f8f9fa;
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }

        .decision-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .decision-subtitle {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .decision-paths {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .path {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .path:hover {
            border-color: #f85c24;
            box-shadow: 0 4px 15px rgb(248 92 36 / 10%);
        }

        .path-title {
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .path-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .path-direct {
            border-left: 4px solid #28a745;
        }

        .path-detailed {
            border-left: 4px solid #f85c24;
        }

        /* Arrow Connector */
        .connector {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 40px;
            color: #dee2e6;
        }

        .arrow-down {
            font-size: 1.5rem;
            color: #adb5bd;
        }

        /* Customer Types */
        .customer-overview {
            margin: 4rem 0 2rem;
        }

        .overview-title {
            text-align: center;
            color: #333;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

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

        .customer-card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .customer-card:hover {
            border-color: #f85c24;
            box-shadow: 0 4px 15px rgb(248 92 36 / 10%);
        }

        .customer-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .customer-title {
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .customer-description {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .customer-path {
            background: #f8f9fa;
            padding: 0.8rem;
            border-radius: 6px;
            font-size: 0.85rem;
            color: #495057;
        }

        .path-highlight {
            font-weight: 600;
            color: #f85c24;
        }

        /* Summary Box */
        .summary {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)!important;
            border-radius: 8px;
            padding: 2rem;
            margin: 3rem 0;
            text-align: center;
        }

        .summary-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .summary-text {
            color: #666;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive */
        @media (width <= 768px) {
            .container {
                padding: 1.5rem;
                margin: 1rem;
            }

            .step-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .step-features {
                grid-template-columns: 1fr;
            }

            .decision-paths {
                grid-template-columns: 1fr;
            }

            .customer-grid {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 1.8rem;
            }

        }


        /* === 3-STUFEN-KONZEPT CSS === */
        .simple-steps {
            background: #f8f9fa;
            padding: 5rem 0;
            font-family: Barlow, sans-serif;
        }

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

        .simple-steps h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .simple-steps .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .step-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-align: center;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgb(248 92 36 / 15%);
            border-color: #f85c24;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 20px rgb(248 92 36 / 30%);
        }

        .step-card h3 {
            font-size: 1.8rem;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .step-subtitle {
            font-size: 1.1rem;
            color: #f85c24;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .step-card ul {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: left;
        }

        .step-card li {
            padding: 0.5rem 0;
            color: #333;
            font-size: 1rem;
            line-height: 1.5;
            position: relative;
            padding-left: 1.5rem;
        }

        .step-card li::before {
            content: '✓…';
            position: absolute;
            left: 0;
            top: 0.5rem;
        }

        .step-price {
            background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            margin: 1.5rem 0 0.5rem;
            display: inline-block;
            box-shadow: 0 5px 15px rgb(248 92 36 / 30%);
        }

        .step-duration {
            color: #666;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 0.5rem;
        }

        /* Spezielle Styling für unterschiedliche Karten */
        .step-card:nth-child(1) .step-price {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            box-shadow: 0 5px 15px rgb(40 167 69 / 30%);
        }

        .step-card:nth-child(2) .step-price {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            box-shadow: 0 5px 15px rgb(0 123 255 / 30%);
        }

        /* Verbindungslinien zwischen den Karten (nur auf Desktop) */
        @media (width >= 992px) {
            .step-cards {
                position: relative;
            }
            
            .step-card:not(:last-child)::after {
                content: ' →’';
                position: absolute;
                right: -1rem;
                top: 50%;
                transform: translateY(-50%);
                font-size: 2rem;
                color: #f85c24;
                z-index: 10;
            }
        }

        /* Responsive Design */
        @media (width <= 768px) {
            .simple-steps {
                padding: 3rem 0;
            }
            
            .simple-steps h2 {
                font-size: 2rem;
            }
            
            .step-cards {
                gap: 1.5rem;
                margin-top: 2rem;
            }
            
            .step-card {
                padding: 2rem;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .step-card h3 {
                font-size: 1.5rem;
            }
        }

        @media (width <= 480px) {
            .simple-steps .container {
                padding: 0 1rem;
            }
            
            .step-card {
                padding: 1.5rem;
            }
            
            .simple-steps h2 {
                font-size: 1.8rem;
            }
            
            .step-card h3 {
                font-size: 1.3rem;
            }
        }

        /* Animation beim Scrollen */
        .step-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .step-card:nth-child(1) { animation-delay: 0.1s; }
        .step-card:nth-child(2) { animation-delay: 0.2s; }
        .step-card:nth-child(3) { animation-delay: 0.3s; }

        /* @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        } */

        /* Call-to-Action Button unter den Stufen */
        .steps-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .steps-cta-button {
            background: linear-gradient(135deg, #f85c24 0%, #ff5722 100%);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgb(248 92 36 / 30%);
            font-family: Barlow, sans-serif;
        }

        .steps-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgb(248 92 36 / 40%);
            text-decoration: none;
            color: white;
        }
        
/*! style.fix.css "€” Patch to neutralize conflicts and redundancy without changing your HTML.
   Load this AFTER your current style.css. */

:root{
  --color-primary:#F15A24;
  --color-primary-2:#ff5722;
  --color-dark:#1a1a1a;
  --color-light:#fff;
  --shadow-1:0 5px 20px rgb(0 0 0 / 8%);
  --brand-gradient: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
}

/* 1) Container: keep it layout-only.
      Your style.css later overwrites .container with a white box + shadow
      (added in a "customer journey" block) which bleeds into other pages.
      We revert that here and reapply the box look only where needed. */


/* 1b) Re-apply boxed look to journey content instead of the generic container */
.journey-flow,
.customer-overview,
.summary,
.journey-wrapper{
  background:#fff;
  border-radius:8px;
  padding:2rem;
  box-shadow:0 4px 20px rgb(0 0 0 / 8%);
}

/* 2) Gallery: fix responsive columns.
      An earlier .gallery-grid rule with !important forces 3 columns everywhere.
      We restore 3/2/1 cols across breakpoints and win with !important as well. */
.gallery-grid{grid-template-columns:repeat(3,minmax(0,1fr)) ; gap:24px ;}

@media (width <= 900px){ .gallery-grid{grid-template-columns:repeat(2,1fr) ;} }

@media (width <= 600px){ .gallery-grid{grid-template-columns:1fr !important;} }

/* 3) Video container name collision.
      You use .video-container for testimonials AND again for a centered YouTube
      block with very different visuals. Scope them to their sections. */
.video-testimonials-section .video-container{
  background:#000 ;
  border:0 ;
  padding:0 ;
  box-shadow:none ;
}

.video-section-centered .video-container{
  background:#fff ;
  border:1px solid #e9ecef ;
  border-radius:20px ;
  padding:2rem ;
  box-shadow:0 8px 30px rgb(0 0 0 / 10%) ;
}

/* 4) Contact option duplication.
      Same class name used for booking modal vs. dark testing CTA.
      Normalize by scoping to each context. */
.booking-panel .contact-option{
  background:#f8f9fa ;
  color:#333 ;
  border:0 ;
}

.testing-booking-section .contact-option,
.testing-contact-alternative .contact-option,
.contact-options .contact-option{
  background:rgb(255 255 255 / 10%) ;
  color:#fff ;
  border:1px solid rgb(255 255 255 / 20%) t;
}

/* 5) Feature card: single source of truth; keep testing grid tweaks scoped */
.feature-card{
  background:#fff;
  border:1px solid #f0f0f0;
  border-radius:15px;
  padding:2rem;
  box-shadow:var(--shadow-1);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card:hover{
  transform:translateY(-6px);
  border-color:var(--color-primary);
  box-shadow:0 15px 30px rgb(241 90 36 / 15%);
}

section#testing .features .feature-card{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* 6) Footer: prevent 100vw overflow from creating horizontal scrollbars */
footer{ overflow-x: clip; }

/* 7) Safety: avoid accidental horizontal overflow without masking bugs */
html, body{ max-width:100%; }


/* SG-Hilfsklassen für neue Elemente */
.sg-probetraining {
    padding: 40px 0;
    background-color: rgb(255 255 255 / 2%);  /* Modern notation statt rgba() */
}

.sg-coming-soon {
    display: inline-block;
    padding: 4px 12px;
    background: rgb(255 255 255 / 10%);  /* Modern notation mit % statt 0.1 */
    border-radius: 4px;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* CTA-Row für Zielgruppen */
.cta-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.booking-cta-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid currentcolor;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.booking-cta-outline:hover {
    background: rgb(255 255 255 / 10%);  /* Modern notation */
}

/* FAQ-Items falls noch nicht vorhanden */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: rgb(255 255 255 / 3%);  /* Modern notation statt rgba() */
    border-radius: 8px;
}

.faq-item-question {
    margin: 0 0 10px;  /* Shorthand: 0 am Ende entfernt */
    cursor: pointer;
}

.faq-item-answer {
    padding-top: 10px;
}

/* Responsive Anpassungen */
@media (width <= 768px) {  /* Modern range notation statt max-width */
    .cta-row {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* style.css "€” GANZ AM ENDE der Datei nach allen anderen Styles */

/* style.css "€” STRONGHOLD UPDATE 2024 (OHNE DARK THEME) */

/* ========================================
   STRONGHOLD WEBSITE UPDATE 2024
   ======================================== */

/* SG-Hilfsklassen für neue Elemente */
.sg-probetraining {
    padding: 40px 0;
    background-color: rgb(255 255 255 / 2%);
}

.sg-probetraining .feature-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.sg-coming-soon {
    display: inline-block;
    padding: 4px 12px;
    background: rgb(255 255 255 / 10%);
    border-radius: 4px;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Konzept-Banner */
.comparison-summary h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-summary p {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.comparison-summary .booking-cta-primary {
    display: block;
    margin: 0 auto;
    max-width: 250px;
}

/* Timeline Connector */
.timeline-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgb(255 255 255 / 20%) 0%, rgb(255 255 255 / 60%) 50%, rgb(255 255 255 / 20%) 100%);
    margin: 2rem auto;
}

/* Pricing Adjustments */
.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.price-sidenote-compact {
    display: block;
    font-size: 0.875rem;
    color: rgb(255 255 255 / 60%);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.features-grid .feature-card {
    background: rgb(255 255 255 / 3%);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.features-grid .feature-card:hover {
    transform: translateY(-4px);
    background: rgb(255 255 255 / 5%);
}

.feature-link {
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: transform 0.2s ease;
}

.feature-link:hover {
    transform: translateX(4px);
}

/* CTA-Row für Zielgruppen */
.cta-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

/* Booking CTAs */
.booking-cta-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid currentcolor;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    font-weight: 600;
}

.booking-cta-outline:hover {
    background: rgb(255 255 255 / 10%);
    transform: translateY(-2px);
}

.booking-cta-primary {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 15%);
}

.booking-cta-secondary {
    background: rgb(255 255 255 / 10%);
    padding: 12px 24px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.booking-cta-secondary:hover {
    background: rgb(255 255 255 / 15%);
    border-color: rgb(255 255 255 / 30%);
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: rgb(255 255 255 / 3%);
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 10%);
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgb(255 255 255 / 5%);
}

.faq-item-question {
    margin: 0 0 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-item-answer {
    padding-top: 10px;
    line-height: 1.6;
    opacity: 0.85;
}

.faq-item-answer p {
    margin: 0;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Section Spacing */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Feature List für Ablauf */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-list .feature-card {
    text-align: left;
}

.feature-list .feature-card h3 {
    margin-bottom: 0.5rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 16 / 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 80%) 0%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
    color: white;
    font-weight: 600;
}

/* Container */


/* Responsive Design */
@media (width <= 768px) {
    .cta-row {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .timeline-connector {
        width: 60px;
    }
    
    .booking-cta-primary,
    .booking-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (width <= 480px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .comparison-summary h2 {
        font-size: 1.75rem;
    }
    
    .pricing-card .price {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* ========================================
   END STRONGHOLD UPDATE 2024
   ======================================== */

   /* style.css "€” LAYOUT VERBESSERUNGEN */

/* ========================================
   STRONGHOLD LAYOUT OPTIMIERUNGEN
   ======================================== */

/* Concept Equation Styling */
.concept-equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.equation-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgb(255 255 255 / 5%);
    border-radius: 12px;
    min-width: 150px;
}

.equation-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;
}

.equation-icon {
    font-size: 2rem;
}

.equation-operator {
    font-size: 2rem;
    font-weight: 300;
    color: rgb(255 255 255 / 50%);
}

.equation-result {
    background: linear-gradient(135deg, rgb(255 107 53 / 10%) 0%, rgb(255 107 53 / 20%) 100%);
    border: 1px solid rgb(255 107 53 / 30%);
}

/* Probetraining Steps */
.probetraining-wrapper {
    background: rgb(255 255 255 / 3%);
    border-radius: 16px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.probetraining-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.probetraining-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text {
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: rgb(255 255 255 / 30%);
}
.step-arrow::before { content: "\2192"; }

/* Pricing Card Improvements */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card.featured {
    position: relative;
    max-width: 450px;
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}


.pricing-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card .feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing-card .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

.booking-cta-primary.full-width {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.guarantee {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Feature Cards Three Columns */
.features-grid.three-columns {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 5%);
    border-radius: 12px;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (width <= 768px) {
    .concept-equation {
        flex-direction: column;
    }
    
    .equation-operator {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .probetraining-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* ========================================
   END LAYOUT OPTIMIERUNGEN
   ======================================== */

   .fitness-profiling-section {
            background: white;
            border-radius: 25px;
            padding: 4rem 3rem;
            box-shadow: 0 10px 40px rgb(0,0,0,0.1);
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .fitness-profiling-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #F15A24, #ff8c5a, #F15A24);
        }

        /* === HEADER === */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #F15A24, #ff5722);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgb(241, 90, 36, 0.3);
        }

        .section-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .price-highlight {
            display: inline-block;
            background: #fff3e0;
            color: #F15A24;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border: 2px solid #F15A24;
            margin-top: 1rem;
        }

        /* === CONTENT GRID === */
        .profiling-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin: 4rem 0;
            align-items: start;
        }

        .content-text {
            padding: 1rem 0;
        }

        .content-text h3 {
            color: #F15A24;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .content-text p {
            color: #333;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .content-text strong {
            color: #F15A24;
            font-weight: 600;
        }

        /* === FEATURES LIST === */
        .features-list {
            list-style: none;
            margin: 2rem 0;
            padding: 0;
        }

        .features-list li {
            margin: 1rem 0;
            padding: 1rem 0 1rem 3rem;
            position: relative;
            border-bottom: 1px solid #f0f0f0;
            font-size: 1rem;
            line-height: 1.6;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list li::before {
            content: 'ðŸ”¬';
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            top: 0.8rem;
        }

        /* === VIDEO SECTION === */
        .video-section {
            background: #f8f9fa;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .video-section:hover {
            border-color: #F15A24;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgb(0,0,0,0.1);
        }

        .video-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #333 0%, #555 100%);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .video-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgb(241, 90, 36, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .play-button::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 5px;
        }

        .video-section:hover .play-button {
            background: #F15A24;
            transform: scale(1.1);
        }

        .video-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            position: relative;
            z-index: 2;
        }

        .video-description {
            color: #F15A24;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* === GALLERY SECTION === */
        .gallery-section {
            margin: 4rem 0;
        }

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

        .gallery-header h3 {
            color: #333;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .gallery-header p {
            color: #666;
            font-size: 1.1rem;
        }

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

        .gallery-item {
            position: relative;
            background: white;
            border-radius: 15px;
            /* stylelint-disable-next-line color-function-alias-notation */
            overflow: hidden;
            /* stylelint-disable-next-line color-function-alias-notation */
            box-shadow: 0 4px 15px rgb(0,0,0,8%);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgb(241, 90, 36, 0.15);
        }

        .gallery-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            border-radius: 15px 15px 0 0;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-image::before {
            content: 'ðŸ“¸';
            font-size: 3rem;
            opacity: 0.5;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(241, 90, 36, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 2rem;
        }

        .gallery-caption {
            padding: 1rem;
            text-align: center;
        }

        .gallery-caption h4 {
            color: #F15A24;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .gallery-caption p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        /* === SCIENTIFIC APPROACH === */
        .scientific-approach {
            background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            margin: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .scientific-approach::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgb(255,255,255,0.05);
            border-radius: 50%;
            transform: rotate(45deg);
        }

        .scientific-approach h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .scientific-approach p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
        }

        .science-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .science-stat {
            text-align: center;
        }

        .science-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            display: block;
        }

        .science-stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* === CTA SECTION === */
        .cta-section {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem;
            background: #fff3e0;
            border-radius: 20px;
            border-left: 4px solid #F15A24;
        }

        .cta-title {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .cta-text {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
            color: white;
            padding: 1.4rem 3.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 8px 25px rgb(241, 90, 36, 0.3);
            margin: 0 1rem 1rem 0;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgb(241, 90, 36, 0.4);
            text-decoration: none;
            color: white;
        }

        .cta-button.secondary {
            background: white;
            color: #F15A24;
            border-color: #F15A24;
            box-shadow: 0 8px 25px rgb(0,0,0,0.1);
        }

        .cta-button.secondary:hover {
            background: #F15A24;
            color: white;
        }

        /* === MODAL SYSTEM === */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            border-radius: 15px;
            max-width: 90vw;
            max-height: 90vh;
            overflow: auto;
            box-shadow: 0 20px 60px rgb(0, 0, 0, 0.3);
            transform: scale(0.8);
            transition: all 0.3s ease;
            position: relative;
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }




        .modal-close:hover {
            color: #F15A24;
            transform: rotate(90deg);
        }

        .modal-image {
            width: 100%;
            height: 80vh;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #ccc;
        }

        /* === RESPONSIVE DESIGN === */
        @media (width <= 768px) {
            .fitness-profiling-section {
                padding: 2rem;
                margin: 2rem 0;
            }

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

            .section-subtitle {
                font-size: 1.1rem;
            }

            .profiling-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin: 3rem 0;
            }

            .video-placeholder {
                height: 250px;
            }

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

            .gallery-image {
                height: 150px;
            }

            .scientific-approach {
                padding: 2rem;
            }

            .scientific-approach h3 {
                font-size: 1.6rem;
            }

            .scientific-approach p {
                font-size: 1.1rem;
            }

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

            .science-stat-number {
                font-size: 2rem;
            }

            .cta-section {
                padding: 2rem;
            }

            .cta-button {
                display: block;
                margin: 1rem auto;
                text-align: center;
            }
        }

        @media (width <= 480px) {
            .fitness-profiling-section {
                padding: 1.5rem;
                border-radius: 15px;
            }

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

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-image {
                height: 180px;
            }

            .science-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .cta-button {
                padding: 1.2rem 2.5rem;
                font-size: 1rem;
            }
        }
 /* stylelint-disable-next-line comment-empty-line-before */
 /* === PROBETRAINING WRAPPER === */
        .sg-probetraining {
            padding: 60px 0;
            background: #f8f9fa;
        }



        .probetraining-wrapper {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgb(0, 0, 0, 0.08);
            border-top: 4px solid #F15A24;
        }

        /* === PROBETRAINING CONTENT === */
        .probetraining-content {
            text-align: center;
        }

        .probetraining-content h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #333;
            font-weight: 700;
        }

        /* === PROBETRAINING STEPS === */
        .probetraining-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 2.5rem 0;
            flex-wrap: wrap;
        }

        .probetraining-steps .step {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #f8f9fa;
            padding: 16px 24px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .probetraining-steps .step:hover {
            background: #fff;
            border-color: #F15A24;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgb(241, 90, 36, 0.15);
        }

        .probetraining-steps .step-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgb(241, 90, 36, 0.30);
        }

        .probetraining-steps .step-text {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            white-space: nowrap;
        }

        .probetraining-steps .step-arrow {
            font-size: 1.8rem;
            color: #F15A24;
            font-weight: 700;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .probetraining-steps .step:hover + .step-arrow {
            opacity: 1;
            transform: translateX(3px);
        }

        /* === CTA BUTTON - OPTIMIERT & ZENTRIERT === */
        .probetraining-cta-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 2.5rem;
        }

        .booking-cta-secondary {
            display: inline-block;
            background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            /* stylelint-disable-next-line declaration-block-no-duplicate-properties */
            border: 2px solid transparent;
            box-shadow: 0 6px 20px rgb(241, 90, 36, 0.30);
            cursor: pointer;
            text-decoration: none;
            border: none;
        }

        .booking-cta-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgb(241, 90, 36, 0.40);
            text-decoration: none;
            color: white;
        }

        .booking-cta-secondary:active {
            transform: translateY(-1px);
        }

        /* === RESPONSIVE === */
        @media (width <= 768px) {
            .probetraining-wrapper {
                padding: 2rem;
            }
            
            .probetraining-content h3 {
                font-size: 1.7rem;
            }
            
            .probetraining-steps {
                flex-direction: column;
                gap: 15px;
            }
            
            .probetraining-steps .step {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .probetraining-steps .step-arrow {
                transform: rotate(90deg);
                margin: 5px 0;
            }
            
            .probetraining-steps .step:hover + .step-arrow {
                transform: rotate(90deg) translateX(3px);
            }
            
            .booking-cta-secondary {
                width: 90%;
                max-width: 400px;
                padding: 1rem 2rem;
            }
        }

        @media (width <= 480px) {
            .sg-probetraining {
                padding: 40px 0;
            }

            .probetraining-wrapper {
                padding: 1.5rem;
                border-radius: 15px;
            }
            
            .probetraining-content h3 {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .probetraining-steps {
                margin: 1.5rem 0;
            }

            .probetraining-steps .step {
                padding: 12px 18px;
            }
            
            .probetraining-steps .step-number {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .probetraining-steps .step-text {
                font-size: 0.9rem;
            }

            .probetraining-cta-wrapper {
                margin-top: 2rem;
            }

            .booking-cta-secondary {
                width: 100%;
                font-size: 1rem;
            }
        }

        /* ================================
   PRICING SECTION - OPTIMIERT
   ================================ */

.pricing-container {
    padding: 60px 0;
    background: #f8f9fa;
}

.pricing-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid #F15A24;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgb(0, 0, 0, 0.15);
}

.pricing-badge {
    background: #F15A24;
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    font-weight: 700;
    color: #333;
}


 .price .currency {
    font-size: 1.5rem;
    color: #F15A24;
    font-weight: 700;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #F15A24;
}

.price .period {
    font-size: 1.2rem;
    color: #F15A24;
    font-weight: 600;
} 



.price-sidenote-compact {
    color: #666;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0 2rem 2rem;
    margin: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
    border-bottom: 1px solid #f8f9fa;
    font-size: 1rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.booking-cta-primary.full-width {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    display: block;
    text-align: center;
}

/* Mobile Optimierung */
@media (width <= 600px) {
    .pricing-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .price .amount {
        font-size: 2.8rem;
    }
    
    .feature-list,
    .price-note,
    .booking-cta-primary.full-width {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.booking-modal {
    position: fixed; /* WICHTIG: fixed statt absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Volle Viewport-Höhe */
    background: rgb(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex; /* Flexbox für Zentrierung */
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px; /* Padding für kleine Screens */
    overflow-y: auto; /* Falls Modal größer als Viewport */
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh; /* Maximal 90% der Viewport-Höhe */
    overflow-y: auto; /* Scrollbar falls Inhalt zu groß */
    box-shadow: 0 20px 60px rgb(0, 0, 0, 0.3);
    position: relative;
    margin: auto; /* ZusÃ¤tzliche Zentrierung */
}

.modal-close {
    position: sticky; /* Sticky damit X immer sichtbar beim Scrollen */
    top: 15px;
    right: 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    margin-bottom: -45px; /* Damit es nicht Layout verschiebt */
}

.modal-close:hover {
    background: #F15A24;
    color: white;
    border-color: #F15A24;
    transform: rotate(90deg);
}

/* Mobile Optimierung */
@media (width <= 768px) {
    .booking-modal {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
}

* Premium Pricing Section */
.pricing-section-premium {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F15A24, transparent);
}

/* Header Area */
.pricing-header-area {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #F15A24;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid #ffe0b2;
}

.pricing-main-title {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Showcase */
.pricing-showcase {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card-premium {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgb(0, 0, 0, 0.08),
        0 0 0 1px rgb(241, 90, 36, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F15A24, #ff6b35, #F15A24);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

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

.pricing-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgb(241, 90, 36, 0.15),
        0 0 0 1px rgb(241, 90, 36, 0.2);
}

/* Premium Badge */
.premium-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgb(241, 90, 36, 0.3);
}

.premium-badge svg {
    width: 16px;
    height: 16px;
}

/* Card Content */
.pricing-card-content {
    position: relative;
}

/* Title Area */
.pricing-title-area {
    margin-bottom: 2rem;
}

.pricing-card-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.pricing-card-tagline {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Price Display */
.pricing-display {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.8rem;
    color: #F15A24;
    font-weight: 700;
}

.price-amount {
    font-size: 4.5rem;
    color: #F15A24;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.price-period {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
}

.price-addon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e9ecef;
}

.price-addon svg {
    flex-shrink: 0;
    color: #F15A24;
}

/* Features */
.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    padding-left: 0.5rem;
    background: #fafafa;
    border-radius: 8px;
}

.feature-check {
    width: 20px;
    height: 20px;
    color: #F15A24;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

/* Value Highlight */
.value-highlight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #ffe0b2;
}

.value-highlight-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-highlight-content svg {
    color: #F15A24;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-highlight-content strong {
    color: #F15A24;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.value-highlight-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* CTA Button */
.pricing-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
    color: white;
    padding: 1.4rem 2rem;
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgb(241, 90, 36, 0.3);
    margin-bottom: 1.5rem;
}

.pricing-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgb(241, 90, 36, 0.4);
}

.pricing-cta-button svg {
    transition: transform 0.3s ease;
}

.pricing-cta-button:hover svg {
    transform: translateX(4px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.trust-item svg {
    color: #2e7d32;
}

/* Footer Link */
.pricing-footer-link {
    text-align: center;
    margin-top: 3rem;
}

.pricing-footer-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #F15A24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.pricing-footer-link a:hover {
    gap: 0.8rem;
}

/* Responsive */
@media (width <= 768px) {
    .pricing-section-premium {
        padding: 4rem 0;
    }

    .pricing-main-title {
        font-size: 2rem;
    }

    .pricing-card-premium {
        padding: 2rem;
    }

    .premium-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .pricing-card-title {
        font-size: 1.6rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-cta-button {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }
}
/* stylelint-disable-next-line comment-empty-line-before */
/* KONZEPT BANNER - Professionell */
        .concept-banner {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .concept-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F15A24 0%, #ff8c5a 50%, #F15A24 100%);
        }

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

        .concept-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .concept-badge {
            display: inline-block;
            background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
            color: white;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgb(241, 90, 36, 0.25);
        }

        .concept-title {
            font-size: 2.5rem;
            color: #1a1a1a;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .concept-subtitle {
            font-size: 1.25rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Equation Grid */
        .concept-equation {
            display: grid;
            grid-template-columns: 1fr auto 1fr auto 1.5fr;
            gap: 2rem;
            align-items: center;
            margin: 3rem 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .equation-component {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgb(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .equation-component:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgb(241, 90, 36, 0.15);
            border-color: #F15A24;
        }

        .component-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            box-shadow: 0 8px 20px rgb(241, 90, 36, 0.3);
        }

        .component-label {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            text-align: center;
            line-height: 1.3;
        }

        .component-sublabel {
            font-size: 0.95rem;
            color: #666;
            text-align: center;
            margin-top: 0.5rem;
            line-height: 1.4;
        }

        /* Operators */
        .equation-operator {
            font-size: 3rem;
            font-weight: 800;
            color: #F15A24;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgb(241, 90, 36, 0.1);
            border-radius: 50%;
        }

        /* Result Component - größer und prominenter */
        .equation-result {
            background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
            color: white;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgb(241, 90, 36, 0.35);
            position: relative;
            overflow: hidden;
        }

        .equation-result::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgb(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }

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

        .result-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: rgb(255, 255, 255, 0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            border: 2px solid rgb(255, 255, 255, 0.3);
            position: relative;
            z-index: 2;
        }

        .result-label {
            font-size: 1.5rem;
            font-weight: 800;
            text-align: center;
            line-height: 1.3;
            position: relative;
            z-index: 2;
        }

        .result-sublabel {
            font-size: 1rem;
            text-align: center;
            margin-top: 0.8rem;
            opacity: 0.95;
            line-height: 1.4;
            position: relative;
            z-index: 2;
        }

        /* Description */
        .concept-description {
            text-align: center;
            max-width: 800px;
            margin: 3rem auto 2.5rem;
            font-size: 1.2rem;
            color: #333;
            line-height: 1.8;
        }

        /* CTA Button */
        .concept-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
            color: white;
            padding: 1.4rem 3.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgb(241, 90, 36, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgb(241, 90, 36, 0.4);
        }

        /* Features Grid unter der Equation */
        .concept-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-highlight {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgb(0, 0, 0, 0.05);
            text-align: center;
            border-left: 4px solid #F15A24;
        }

        .feature-highlight h4 {
            color: #F15A24;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .feature-highlight p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (width <= 1024px) {
            .concept-equation {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .equation-operator {
                width: 50px;
                height: 50px;
                font-size: 2rem;
                margin: 0 auto;
                transform: rotate(90deg);
            }

            .concept-features {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (width <= 768px) {
            .concept-banner {
                padding: 3rem 0;
            }

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

            .concept-subtitle {
                font-size: 1.1rem;
            }

            .component-label,
            .result-label {
                font-size: 1.2rem;
            }

            .concept-description {
                font-size: 1.1rem;
            }
        }
        /* stylelint-disable-next-line comment-empty-line-before */
        /* FIX: Caption nicht mehr abschneiden */
.gallery-item {
  aspect-ratio: auto;     /* oder: unset */
  overflow: visible;      /* Caption darf darunter sichtbar sein */
}

/* (optional) Bildrahmen hübsch halten */
.gallery-image {
  overflow: hidden;       /* Rundungen/Shadow bleiben am Bild */

  /* height: 180px;  // behÃ¤ltst du ja bereits in deiner CSS */
}

/* 1) Bereich insgesamt schmaler + mittig (optional) */
.section--narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* 2) Überschrift zentrieren */
#about h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* 3) Founder-Karten in der Mitte ausrichten */
#about .founders {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;        /* vertikal / horizontal */
  justify-content: center; /* zentriert die Reihe */
  align-items: stretch;
  max-width: 1000px;       /* begrenzt die Spaltenbreite */
  margin: 0 auto;          /* zentriert den Block */
}

/* 4) Kartenbreite + Typo */
#about .founder-card {
  width: clamp(260px, 30%, 340px);
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgb(0,0,0,0.06);
}

/* 5) Portraits schön rund und konsistent */
#about .founder-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
}
.centered-headline { text-align: center; }

.centered-headline .subtitle {
  max-width: 60ch;
  margin: 0 auto 2rem;
}

:root { --brand-orange:#F15A24; }

.arrow-down { 
  color: var(--brand-orange);    /* steuert die SVG-Farbe */
  display: inline-block;
}

.arrow-down svg {
  width: clamp(28px, 3.5vw, 52px);  /* responsiv skalieren */
  height: auto;
  vertical-align: middle;
}

/* Optional: dezentes Bounce */
.arrow-down--bounce { animation: arrow-bounce 1.2s ease-in-out infinite; }

@keyframes arrow-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* Überschrift & Intro zentrieren */
.managed-fitness-features h1 {
  text-align: center;
  margin-bottom: .5rem;
}
/* stylelint-disable-next-line rule-empty-line-before */
.managed-fitness-features .section-intro {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 2rem;
  line-height: 1.5;
  opacity: .95;
}

/* Grid: 3 Spalten auf Desktop, darunter flüssig */
.managed-fitness-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
  gap: 1.25rem 1.5rem;                   /* Reihen-/Spaltenabstand */
  max-width: 1100px;                     /* angenehme Blockbreite */
  margin: 0 auto;                        /* zentriert */
  padding: 0 1rem;
}

/* Karten-Stil */
.managed-fitness-features .feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgb(0,0,0,.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 200px;                     /* gleichmÃ¤ßige Höhe */
}

/* Icons/Emojis größer + Markenfarbe */
:root { --brand-orange: #F15A24; }
/* stylelint-disable-next-line rule-empty-line-before */
.managed-fitness-features .feature-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .5rem;
  color: var(--brand-orange);
}

/* Typo Feinschliff */
.managed-fitness-features .feature-card h3 {
  margin: .25rem 0 .35rem;
}

.managed-fitness-features .feature-card p {
  opacity: .9;
}

/* Hover (optional) */
.managed-fitness-features .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgb(0,0,0,.08);
  transition: .2s ease;
}

/* Responsiv: 2 Spalten ab ~992px, 1 Spalte mobil */
@media (width <= 992px) {
  .managed-fitness-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 640px) {
  .managed-fitness-features .features-grid {
    grid-template-columns: 1fr;
  }
}

sg-probetraining {
  background: linear-gradient(180deg, #0f1113 0%, #161a1d 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 6rem) 0;

  /* optional: fast Vollbildhöhe */
  /* stylelint-disable-next-line comment-empty-line-before */
  /* min-height: 70vh; */
}

/* Inhalt mittig & angenehm schmal */
.sg-probetraining .probetraining-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  place-items: center;
}

.sg-probetraining .probetraining-content {
  text-align: center;
}

.sg-probetraining h3 {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  margin: 0 0 1rem;
}

/* Steps: zentriert, mit krÃ¤ftigen Pfeilen */
.probetraining-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(.5rem, 1.5vw, 1rem) clamp(1rem, 2.5vw, 2rem);
  margin: 1rem 0 2rem;
}

.step {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgb(255,255,255,0.04);
  border: 1px solid rgb(255,255,255,0.08);
  border-radius: 999px;
  padding: .5rem .9rem;
  backdrop-filter: blur(2px);
}

/* Nummer als Badge */
.step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 4px 14px rgb(241,90,36,.35);
}

.step-text {
  font-weight: 600;
  letter-spacing: .2px;
}

/* DIE PFEILE: größer + fetter */
.step-arrow {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;          /* dicker */
  letter-spacing: -2px;      /* kompakter Look */
  color: var(--brand-orange);
  line-height: 1;
  transform: translateY(2px);
}

/* Button veredeln (falls schon gestylt, das hier ergÃ¤nzt nur) */
.booking-cta-secondary {
  background: var(--brand-orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .9rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgb(241,90,36,.35);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
/* stylelint-disable-next-line rule-empty-line-before */

/* Hover: nur etwas heller */
.booking-cta-secondary:hover {
  /* Variante A: fixer, etwas hellerer Ton */
  background: #ff6a3a; /* ~+10% Helligkeit zu #F15A24 */
}
/* stylelint-disable-next-line rule-empty-line-before */
.booking-cta-secondary:active {
  transform: translateY(0);
}

/* Responsiv: bei sehr schmalen Screens Pfeile kleiner & Umbruch hübsch */
@media (width <= 520px) {
  .probetraining-steps { gap: .5rem .75rem; }
  .step-arrow { font-size: 1.6rem; letter-spacing: -1px; }
  .step { padding: .45rem .75rem; }
  .step-number { width: 30px; height: 30px; }
}

/* Fix: Schwarzer Text im Testing-Contact-Alternative Block */
.testing-contact-alternative,
.testing-contact-alternative h3,
.testing-contact-alternative p {
  color: #111;
}

.testing-contact-alternative .contact-option {
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
}

.testing-contact-alternative .contact-option:visited { color: #111; }
.testing-contact-alternative .contact-option:hover   { color: #111; background: #f8f9fa; }

/* Booking Modal über allem */
.booking-modal {
    z-index: 10000 !important;
}

/* Das 2-Spalten-Grid innerhalb der Section mittig einschrÃ¤nken */
.fitness-profiling-section .profiling-content {
  max-width: 1100px;         /* nach Wunsch enger/weiter */
  margin-inline: auto;       /* zentriert */
}

/* Mobile einspaltig */
@media (width <= 900px) {
  .fitness-profiling-section .profiling-content {
    grid-template-columns: 1fr !important;
  }
}

/* QUICK FIX: X nach rechts */
.modal-close {
    position: absolute !important;
    left: auto !important;
    right: 20px !important;
    top: 20px !important;
}

/* PRICING SECTION */
.pricing-section-home {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.pricing-header-area {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-eyebrow {
    display: inline-block;
    background: #fff3e0;
    color: #F15A24;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pricing-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* FEATURED CARD - OBEN */
.pricing-featured-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgb(241,90,36,0.25);
    border: 3px solid #F15A24;
    position: relative;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.premium-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgb(241,90,36,0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-featured-card .pricing-card-content {
    margin-top: 1rem;
}

.pricing-title-area {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.pricing-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.pricing-card-tagline {
    font-size: 1.1rem;
    color: #666;
}

.pricing-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    color: #F15A24;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #F15A24;
}

.price-period {
    font-size: 1.3rem;
    color: #666;
}

.price-addon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 1rem;
}

.price-addon svg {
    flex-shrink: 0;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
    color: #555;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    width: 20px;
    height: 20px;
    color: #F15A24;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.value-highlight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 1.8rem;
    border-radius: 15px;
    border-left: 5px solid #F15A24;
    margin-bottom: 2rem;
}

.value-highlight-content {
    display: flex;
    gap: 1rem;
}

.value-highlight-content svg {
    color: #F15A24;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.value-highlight strong {
    display: block;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.value-highlight p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.pricing-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
    color: white;
    padding: 1.3rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: Barlow, sans-serif;
    box-shadow: 0 4px 20px rgb(241,90,36,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.pricing-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgb(241,90,36,0.4);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
    opacity: 0.6;
}

.trust-item svg {
    color: #2e7d32;
}

/* ZWEITE REIHE - ZWEI KARTEN */
.pricing-secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-card-secondary {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgb(0,0,0,0.08);
    border: 3px solid #e9ecef;
    transition: all 0.3s;
}

.pricing-card-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(241,90,36,0.15);
    border-color: #F15A24;
}

.pricing-card-secondary .pricing-card-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-card-secondary .price-main {
    margin-bottom: 1.5rem;
}

.pricing-card-secondary .price-amount {
    font-size: 3.2rem;
    color: #333;
}

.pricing-card-secondary .price-note {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-card-secondary .feature-item {
    font-size: 1.05rem;
    padding: 0.8rem 0;
}

.pricing-card-secondary .tier-highlight {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #6c757d;
    margin-bottom: 1.5rem;
}

.pricing-card-secondary .tier-highlight h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-card-secondary .tier-highlight p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-card-secondary .pricing-cta-button {
    background: #6c757d;
}

.pricing-card-secondary .pricing-cta-button:hover {
    background: #5a6268;
}

/* FOOTER LINK */
.pricing-footer-link {
    text-align: center;
    margin-top: 2rem;
}

.pricing-footer-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #F15A24;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.pricing-footer-link a:hover {
    gap: 0.8rem;
}

/* RESPONSIVE */
@media (width <= 768px) {
    .pricing-main-title {
        font-size: 2.2rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-featured-card {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .pricing-secondary-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card-secondary {
        padding: 2rem;
    }
    
    .value-highlight-content {
        flex-direction: column;
    }
}

/* ENDORSEMENTS SECTION */
.endorsements-section {
    padding: 5rem 0;
    background: white;
}

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

.endorsements-header {
    text-align: center;
    margin-bottom: 4rem;
}

.endorsements-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-family: Barlow, sans-serif;
}

.endorsements-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* LOGOS GRID */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    place-items: center center;
    margin-bottom: 4rem;
}

.partner-logo {
    width: 100%;
    max-width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.partner-logo:hover {
    border-color: #F15A24;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(241,90,36,0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* PLACEHOLDER - wenn noch keine Logos vorhanden */
.partner-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #999;
    text-align: center;
    font-family: Barlow, sans-serif;
}

/* CREDENTIALS */
.credentials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
}

.credentials-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    font-family: Barlow, sans-serif;
}

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

.credential-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgb(0,0,0,0.05);
    transition: all 0.3s;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(241,90,36,0.15);
}

.credential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.credential-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: Barlow, sans-serif;
}

.credential-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* TRUST INDICATORS */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.trust-stat {
    text-align: center;
}

.trust-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #F15A24;
    display: block;
    margin-bottom: 0.5rem;
    font-family: Barlow, sans-serif;
}

.trust-stat-label {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (width <= 768px) {
    .endorsements-section {
        padding: 3rem 0;
    }
    
    .endorsements-header h2 {
        font-size: 2rem;
    }
    
    .endorsements-header p {
        font-size: 1.1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
    
    .partner-logo {
        max-width: 150px;
        height: 100px;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-stat-number {
        font-size: 2.5rem;
    }
}

 /* === SCROLL PROGRESS BAR === */
        .scroll-progress-container {
            position: fixed;
            left: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        /* Sichtbar nach erstem Scroll - aber dezenter */
        .scroll-progress-container.visible {
            opacity: 0.4; /* Dezenter statt 1 */
        }

        /* VollstÃ¤ndig sichtbar beim Hover oder aktiven Scrollen */
        .scroll-progress-container.active,
        .scroll-progress-container:hover {
            opacity: 1;
        }

        /* Nach 3 Sekunden InaktivitÃ¤t ausblenden */
        .scroll-progress-container.idle {
            opacity: 0.15; /* Sehr dezent */
        }

        /* Nur auf Desktop anzeigen */
        @media (width <= 1024px) {
            .scroll-progress-container {
                display: none;
            }
        }

        /* Track - Dezentere Hintergrund-Leiste */
        .scroll-progress-track {
            position: relative;
            width: 3px; /* Schmaler: 3px statt 4px */
            height: 400px;
            background: rgb(200, 200, 200, 0.15); /* Transparenter */
            border-radius: 10px;
            backdrop-filter: blur(10px);
            cursor: pointer; /* Zeigt an, dass man darauf hovern kann */
        }
        
        /* Track bei Hover sichtbarer */
        .scroll-progress-container:hover .scroll-progress-track {
            background: rgb(200, 200, 200, 0.35);
        }

        /* Fill - Dezentere Orange Fortschritts-Leiste */
        .scroll-progress-fill {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: linear-gradient(to bottom, rgb(241, 90, 36, 0.7), rgb(255, 87, 34, 0.7)); /* Transparenter */
            border-radius: 10px;
            transition: height 0.1s linear !important;
            box-shadow: 0 0 10px rgb(241, 90, 36, 0.3); /* Weicherer Schatten */
        }

        /* Sektions-Marker */
        .progress-marker {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.3s ease;
        }

        /* Marker Punkt - kleiner */
        .marker-dot {
            width: 10px; /* Kleiner: 10px statt 12px */
            height: 10px;
            background: white;
            border: 2px solid rgb(221, 221, 221, 0.5); /* Transparenter */
            border-radius: 50%;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* Anfangs- und End-Marker deutlicher */
        .progress-marker:first-child .marker-dot,
        .progress-marker:last-child .marker-dot {
            width: 14px;
            height: 14px;
            background: #F15A24;
            border: 3px solid white;
            box-shadow: 0 0 0 2px rgb(241, 90, 36, 0.3), 0 2px 8px rgb(0, 0, 0, 0.15);
        }

        /* Anfangs- und End-Marker bei Hover noch deutlicher */
        .progress-marker:first-child:hover .marker-dot,
        .progress-marker:last-child:hover .marker-dot {
            transform: scale(1.4);
            box-shadow: 0 0 0 3px rgb(241, 90, 36, 0.4), 0 4px 15px rgb(241, 90, 36, 0.5);
        }

        /* Marker Punkt wenn aktiv */
        .progress-marker.active .marker-dot {
            background: #F15A24;
            border-color: #F15A24;
            transform: scale(1.4);
            box-shadow: 0 0 10px rgb(241, 90, 36, 0.6);
        }

        /* Marker Punkt wenn bereits durchlaufen */
        .progress-marker.passed .marker-dot {
            background: rgb(241, 90, 36, 0.6); /* Dezenter für durchlaufene */
            border-color: rgb(241, 90, 36, 0.6);
        }

        /* Label - nur bei Hover sichtbar */
        .marker-label {
            position: absolute;
            left: 24px;
            top: 50%;
            transform: translateY(-50%);
            white-space: nowrap;
            background: linear-gradient(135deg, #F15A24, #ff5722);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            opacity: 0;
            pointer-events: auto !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgb(241, 90, 36, 0.3);
            cursor: pointer !important;        /* neu hinzufügen */
        }

        /* Label Pfeil */
        .marker-label::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-right: 6px solid #F15A24;
        }

        /* Label NUR bei Hover anzeigen */
        .progress-marker:hover .marker-label,
        .scroll-progress-container:hover .progress-marker.active .marker-label,
        .scroll-progress-container.active .progress-marker.active .marker-label {
            opacity: 1;
            left: 32px;
        }

        /* Anfangs- und End-Marker Labels prominenter */
        .progress-marker:first-child .marker-label,
        .progress-marker:last-child .marker-label {
            font-weight: 700;
            font-size: 14px;
            padding: 9px 18px;
        }

        /* Hover Effekt */
        .marker-dot:hover {
            transform: scale(1.3);
            border-color: #F15A24;
        }

        /* Prozent-Anzeige - dezenter */
        .scroll-percentage {
            margin-top: 20px;
            text-align: center;
            opacity: 0.6; /* Dezenter */
            transition: opacity 0.3s ease;
        }

        .scroll-progress-container:hover .scroll-percentage,
        .scroll-progress-container.active .scroll-percentage {
            opacity: 1;
        }

        .scroll-percentage span {
            display: inline-block;
            background: white;
            color: #F15A24;
            padding: 5px 10px; /* Kleiner */
            border-radius: 20px;
            font-size: 11px; /* Kleiner */
            font-weight: 700;
            box-shadow: 0 2px 8px rgb(0, 0, 0, 0.08);
            border: 1.5px solid rgb(241, 90, 36, 0.5); /* Dezenter */
        }

        /* Animation für sanftes Einblenden */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px) translateY(-50%);
            }
            /* stylelint-disable-next-line rule-empty-line-before */
            to {
                opacity: 0.4; /* Dezent einblenden */
                transform: translateX(0) translateY(-50%);
            }
        }

        .scroll-progress-container.visible {
            animation: fadeInLeft 0.8s ease;
        }
 /* stylelint-disable-next-line comment-empty-line-before */
 /* Nur für Kontakt-Sektion - keine globalen Styles */
    #kontakt {
        padding: 6rem 0 4rem;
        /* stylelint-disable-next-line font-family-name-quotes */
        font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: transparent;
    }

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

    #kontakt h2 {
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ff6b35 0%, #F15A24 100%);
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    #kontakt .section-intro {
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto 4rem;
        line-height: 1.6;
    }

    #kontakt .contact-container {
        display: block;
    }

    /* Kontaktmethoden Grid */
    #kontakt .contact-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }

    #kontakt .contact-method {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        padding: 2.5rem 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 2px 10px rgb(0, 0, 0, 0.05);
    }

    #kontakt .contact-method::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35 0%, #F15A24 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #kontakt .contact-method:hover {
        transform: translateY(-8px);
        border-color: #ff6b35;
        box-shadow: 0 15px 40px rgb(255, 107, 53, 0.15);
    }

    #kontakt .contact-method:hover::before {
        transform: scaleX(1);
    }

    #kontakt .method-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgb(255, 107, 53, 0.1) 0%, rgb(241, 90, 36, 0.1) 100%);
        border-radius: 16px;
        transition: all 0.4s ease;
    }

    #kontakt .contact-method:hover .method-icon {
        background: linear-gradient(135deg, rgb(255, 107, 53, 0.2) 0%, rgb(241, 90, 36, 0.2) 100%);
        transform: scale(1.1) rotate(5deg);
    }

    #kontakt .method-icon svg {
        width: 32px;
        height: 32px;
        fill: none;
        stroke: #ff6b35;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    #kontakt .method-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        color: #ff6b35;
        font-weight: 700;
    }

    #kontakt .method-info p {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        /* stylelint-disable-next-line declaration-property-value-keyword-no-deprecated */
        word-break: break-word;
        padding-right: 1rem;
        color: #333;
    }

    #kontakt .method-info a {
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        position: relative;
    }

    #kontakt .method-info a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #ff6b35 0%, #F15A24 100%);
        transition: width 0.3s ease;
    }

    #kontakt .method-info a:hover {
        color: #ff6b35;
    }

    #kontakt .method-info a:hover::after {
        width: 100%;
    }

    #kontakt .method-hours {
        background: #f8f9fa;
        padding: 1.25rem;
        border-radius: 12px;
        font-size: 0.95rem;
        color: #666;
        margin-top: 1.25rem;
        border-left: 3px solid #ff6b35;
    }

    #kontakt .method-hours strong {
        color: #333;
        display: block;
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

    /* Map Section */
    #kontakt .contact-map {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        padding: 2.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgb(0, 0, 0, 0.05);
    }

    #kontakt .contact-map:hover {
        border-color: #ff6b35;
        box-shadow: 0 10px 30px rgb(255, 107, 53, 0.1);
    }

    #kontakt .map-container {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgb(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    #kontakt .map-container:hover {
        box-shadow: 0 10px 30px rgb(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

    #kontakt .map-container iframe {
        display: block;
        width: 100%;
        height: 450px;
        border: none;
    }

    #kontakt .map-info h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        color: #ff6b35;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    #kontakt .map-info h3 svg {
        width: 32px;
        height: 32px;
        fill: none;
        stroke: #ff6b35;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    #kontakt .map-details {
        display: grid;
        gap: 1.5rem;
    }

    #kontakt .map-detail {
        background: #f8f9fa;
        padding: 1.75rem;
        border-radius: 12px;
        border-left: 4px solid #ff6b35;
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    #kontakt .map-detail:hover {
        background: #fff;
        transform: translateX(8px);
        border-left-width: 6px;
        box-shadow: 0 4px 15px rgb(255, 107, 53, 0.1);
    }

    #kontakt .map-detail-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgb(255, 107, 53, 0.1);
        border-radius: 10px;
    }

    #kontakt .map-detail-icon svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: #ff6b35;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    #kontakt .map-detail-content {
        flex: 1;
        color: #333;
    }

    #kontakt .map-detail strong {
        color: #333;
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    /* Responsive Design */
    @media (width >= 992px) {
        #kontakt .contact-map {
            grid-template-columns: 1.5fr 1fr;
        }
    }

    @media (width <= 992px) {
        #kontakt .contact-methods {
            grid-template-columns: 1fr;
        }
        
        #kontakt .contact-map {
            grid-template-columns: 1fr;
        }
    }

    @media (width <= 768px) {
        #kontakt h2 {
            font-size: 2.2rem;
        }

        #kontakt .section-intro {
            font-size: 1.05rem;
            margin-bottom: 3rem;
        }

        #kontakt .container-fullwidth {
            padding: 0 1rem;
        }

        #kontakt .map-container iframe {
            height: 350px;
        }

        #kontakt .contact-method {
            padding: 2rem 1.5rem;
        }

        #kontakt .map-info h3 {
            font-size: 1.5rem;
        }
    }

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #kontakt.scroll-reveal {
        animation: fadeInUp 0.8s ease-out;
    }

    /* Scroll Progress Bar "€“ saubere Interaktion & Layering */
.scroll-progress-container {
  /* unterhalb Modals/Overlays, oberhalb Content */
  z-index: 900;              /* Modal ~2000, Menu-Overlay ~1000 */
  pointer-events: none;      /* Container blockt keine Klicks */
}

.scroll-progress-track {
  position: relative;
  pointer-events: auto;      /* Track darf Events durchlassen */
}

/* Interaktive Elemente reaktivieren */
.scroll-progress-container .progress-marker,
.scroll-progress-container .marker-dot,
.scroll-progress-container .marker-label {
  pointer-events: auto;
  cursor: pointer;
}

/* Aktiver Marker etwas hervorheben (optional) */
.progress-marker.active .marker-dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgb(241, 90, 36, 0.15);
}
/* stylelint-disable-next-line comment-empty-line-before */
/* === FINAL CTA (Highlight Section) === */
/* stylelint-disable-next-line color-hex-length */
.highlight-section.final-cta {
    background: linear-gradient(135deg, #000 0%, #F15A24 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.highlight-section.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgb(255,255,255,0.1), transparent 70%);
    opacity: 0.4;
    animation: pulseBackground 6s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.highlight-section.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgb(0,0,0,0.4);
}

.highlight-section.final-cta p.final-cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgb(255,255,255,0.9);
    /* stylelint-disable-next-line shorthand-property-no-redundant-values */
    margin: 0 auto 2.5rem auto;
    max-width: 800px;
    text-shadow: 0 2px 8px rgb(0,0,0,0.3);
}

.highlight-section.final-cta .final-cta-button {
    display: inline-block;
    background: white;
    color: #F15A24;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgb(0,0,0,0.3);
    border: none;
}

.highlight-section.final-cta .final-cta-button:hover {
    background: #F15A24;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgb(0,0,0,0.4);
}

/* Mobile Anpassung */
@media (width <= 768px) {
    .highlight-section.final-cta {
        padding: 4rem 1.5rem;
    }

    .highlight-section.final-cta h2 {
        font-size: 2rem;
    }

    .highlight-section.final-cta p.final-cta-text {
        font-size: 1rem;
    }

    .highlight-section.final-cta .final-cta-button {
        width: 100%;
        max-width: 320px;
    }
}

.mf-timeline-section {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f8f9fa;
            padding: 4rem 2rem;
            line-height: 1.6;
        }

        .mf-timeline-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .mf-timeline-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .mf-timeline-header h2 {
            font-size: 2.8rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .mf-timeline-header p {
            font-size: 1.3rem;
            color: #666;
            font-weight: 300;
        }

        /* Timeline Container */
        .mf-timeline-wrapper {
            position: relative;
            padding: 2rem 0;
        }

        /* Verbindungslinie */
        .mf-timeline-wrapper::before {
            content: '';
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, #F15A24 0%, #F15A24 33%, #F15A24 66%, #F15A24 100%);
            z-index: 1;
        }

        .mf-timeline-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        /* Step Card */
        .mf-step-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgb(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
        }

        .mf-step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgb(241, 90, 36, 0.15);
        }

        .mf-step-card--highlight {
            border: 3px solid #F15A24;
            box-shadow: 0 15px 50px rgb(241, 90, 36, 0.2);
        }

        /* Step Number */
        .mf-step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #F15A24 0%, #ff7849 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 25px rgb(241, 90, 36, 0.3);
            border: 5px solid white;
            position: relative;
            z-index: 3;
        }

        .mf-step-card h3 {
            font-size: 1.8rem;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .mf-step-subtitle {
            text-align: center;
            color: #F15A24;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .mf-step-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .mf-step-features li {
            padding: 0.8rem 0;
            color: #444;
            font-size: 1.05rem;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .mf-step-features li:last-child {
            border-bottom: none;
        }

        .mf-step-features li::before {
            content: '';
            width: 20px;
            height: 20px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F15A24' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            flex-shrink: 0;
        }

        /* Price Info - kein Button-Look */
        .mf-step-price {
            text-align: center;
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            padding: 0.5rem 0;
            border-bottom: 2px solid;
        }

        .mf-step-price--free {
            color: #F15A24;
            border-bottom-color: rgb(241, 90, 36, 0.2);
        }

        .mf-step-price--included {
            color: #2e7d32;
            border-bottom-color: rgb(46, 125, 50, 0.2);
        }

        .mf-step-price--premium {
            color: #F15A24;
            border-bottom-color: rgb(241, 90, 36, 0.3);
            font-size: 1.6rem;
        }

        .mf-step-duration {
            text-align: center;
            color: #888;
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .mf-duration-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        /* Value Badge */
        .mf-value-badge {
            display: inline-block;
            color: #999;
            padding: 0;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 0.3rem;
            text-align: center;
        }

        .mf-value-badge::before {
            content: '(';
        }

        .mf-value-badge::after {
            content: ')';
        }

        /* Responsive Design */
        @media (width <= 1024px) {
            .mf-timeline-steps {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .mf-timeline-wrapper::before {
                left: 50%;
                right: auto;
                width: 4px;
                height: 100%;
                top: 0;
                transform: translateX(-50%);
                background: linear-gradient(to bottom, #F15A24 0%, #F15A24 100%);
            }

            .mf-step-number {
                margin: 0 auto 1.5rem;
            }
        }

        @media (width <= 768px) {
            .mf-timeline-header h2 {
                font-size: 2rem;
            }

            .mf-timeline-header p {
                font-size: 1.1rem;
            }

            .mf-step-card {
                padding: 2rem;
            }

            .mf-step-card h3 {
                font-size: 1.5rem;
            }
        }

        /* Animations */
        @keyframes mfFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mf-step-card {
            animation: mfFadeInUp 0.6s ease forwards;
        }

        .mf-step-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .mf-step-card:nth-child(2) {
            animation-delay: 0.3s;
        }

        .mf-step-card:nth-child(3) {
            animation-delay: 0.5s;
        }

        section#wegweiser .features-grid.three-columns {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section#wegweiser {
    margin-bottom: 5rem;
}

/* === PROBETRAINING SECTION - MODERNISIERT === */

.sg-probetraining {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Dezenter Hintergrund-Effekt */
.sg-probetraining::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* stylelint-disable-next-line declaration-block-no-redundant-longhand-properties */
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgb(241, 90, 36, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.sg-probetraining .container {
    position: relative;
    z-index: 1;
}

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

.probetraining-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.probetraining-content > p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* === STEPS - MODERNISIERT MIT BESSEREN PFEILEN === */

.probetraining-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.probetraining-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e9ecef;
    box-shadow: 0 5px 20px rgb(0, 0, 0, 0.05);
    min-width: 180px;
    position: relative;
}

.probetraining-steps .step:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #F15A24;
    box-shadow: 0 15px 35px rgb(241, 90, 36, 0.2);
}

.probetraining-steps .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgb(241, 90, 36, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.probetraining-steps .step:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgb(241, 90, 36, 0.6);
}

/* Kleines Badge auf der Nummer */
.probetraining-steps .step-number::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #F15A24;
    border-radius: 50%;
}

.probetraining-steps .step-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

/* === PFEILE - DEUTLICH VERBESSERT === */

.probetraining-steps .step-arrow {
    font-size: 3rem;
    font-weight: 900;
    color: #F15A24;
    line-height: 1;
    text-shadow: 0 2px 8px rgb(241, 90, 36, 0.3);
    animation: arrowPulse 2s ease-in-out infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

/* Alternative: Dickere SVG-Pfeile (optional) */
.probetraining-steps .step-arrow::before {
    content: "\2192";
    font-size: 3.5rem;
    background: linear-gradient(90deg, #F15A24 0%, #ff5722 100%);
    /* stylelint-disable-next-line declaration-block-no-duplicate-properties */
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgb(241, 90, 36, 0.3));
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateX(5px) scale(1.1);
        opacity: 1;
    }
}

/* === FEATURES GRID === */

.probetraining-content .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.probetraining-content .feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgb(0, 0, 0, 0.05);
}

.probetraining-content .feature-card:hover {
    transform: translateY(-5px);
    border-color: #F15A24;
    box-shadow: 0 15px 35px rgb(241, 90, 36, 0.15);
}

.probetraining-content .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(241, 90, 36, 0.1) 0%, rgb(255, 87, 34, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.probetraining-content .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgb(241, 90, 36, 0.2) 0%, rgb(255, 87, 34, 0.2) 100%);
}

.probetraining-content .feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.probetraining-content .feature-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* === CTA BUTTON === */

.probetraining-content .cta-button,
.probetraining-content .final-cta-button {
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%);
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 30px rgb(241, 90, 36, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.probetraining-content .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgb(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.probetraining-content .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.probetraining-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgb(241, 90, 36, 0.4);
}

.probetraining-content .cta-button:active {
    transform: translateY(-1px);
}

/* === RESPONSIVE === */

@media (width <= 768px) {
    .sg-probetraining {
        padding: 3rem 0;
    }
    
    .probetraining-content h3 {
        font-size: 2rem;
    }
    
    .probetraining-content > p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .probetraining-steps {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .probetraining-steps .step {
        min-width: 250px;
        width: 100%;
        max-width: 350px;
    }
    
    /* Pfeile werden vertikal */
    .probetraining-steps .step-arrow::before {
        content: "\2193";
        transform: rotate(0deg);
    }
    
    @keyframes arrowPulse {
        0%, 100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(5px) scale(1.1);
        }
    }
    
    .probetraining-content .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .probetraining-content .cta-button {
        width: 100%;
        max-width: 350px;
        padding: 1.2rem 2.5rem;
    }
}

@media (width <= 480px) {
    .probetraining-content h3 {
        font-size: 1.7rem;
    }
    
    .probetraining-steps .step {
        padding: 1.5rem;
    }
    
    .probetraining-steps .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .probetraining-content .feature-card {
        padding: 2rem;
    }
}

/* === GALLERY SECTION - MODERNISIERT === */

.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

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

/* Titel */
.gallery-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layout */
.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

/* Gallery Items - Klickbare Cards */
.gallery-section .gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-section .gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgb(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Animation Delays */
.gallery-section .gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-section .gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-section .gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-section .gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-section .gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-section .gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-section .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(241, 90, 36, 0.2);
    border-color: #F15A24;
}

/* Image Area mit SVG Icon oder Bild */
.gallery-section .gallery-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgb(241, 90, 36, 0.05) 0%, rgb(255, 87, 34, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
    background: linear-gradient(135deg, rgb(241, 90, 36, 0.1) 0%, rgb(255, 87, 34, 0.15) 100%);
}

/* Optional: Hintergrundbild statt Icon */
.gallery-section .gallery-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-section .gallery-item:hover .gallery-bg-image {
    transform: scale(1.05);
}

/* Overlay bei Bildern */
.gallery-section .gallery-image:has(.gallery-bg-image)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(241, 90, 36, 0.3) 0%, rgb(255, 87, 34, 0.4) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image:has(.gallery-bg-image)::after {
    background: linear-gradient(135deg, rgb(241, 90, 36, 0.5) 0%, rgb(255, 87, 34, 0.6) 100%);
}

/* Icon über Bild positionieren */
.gallery-section .gallery-image:has(.gallery-bg-image) .gallery-icon {
    z-index: 3;
    position: relative;
}

/* Icon Container */
.gallery-section .gallery-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgb(241, 90, 36, 0.15);
    transition: all 0.4s ease;
    color: #F15A24;
}

.gallery-section .gallery-item:hover .gallery-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgb(241, 90, 36, 0.3);
    background: #F15A24;
    color: white;
}

.gallery-section .gallery-icon svg {
    transition: all 0.3s ease;
}

/* Caption */
.gallery-section .gallery-caption {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.gallery-section .gallery-caption h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-caption h3 {
    color: #F15A24;
}

.gallery-section .gallery-caption p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Health Message Block - Modernisiert */
.health-message {
    background: white;
    color: #333;
    padding: 4rem 3rem;
    text-align: center;
    border-radius: 25px;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 15px 40px rgb(0, 0, 0, 0.08);
    border: 3px solid #F15A24;
    position: relative;
    overflow: hidden;
}

/* Optionaler farbiger Akzent oben */
.health-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #F15A24, #ff8c5a, #F15A24);
}

.health-message h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #333;
}

.health-message p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Summary Section */
.summary {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgb(0, 0, 0, 0.08);
    border-top: 4px solid #F15A24;
    margin: 3rem auto;
    max-width: 1000px;
}

.summary-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.summary-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
}

/* Contact Alternative */
.testing-contact-alternative {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 5px 20px rgb(0, 0, 0, 0.05);
}

.testing-contact-alternative h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testing-contact-alternative p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.testing-contact-alternative .contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.testing-contact-alternative .contact-option {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8f9fa;
    color: #333;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(0, 0, 0, 0.05);
}

.testing-contact-alternative .contact-option:hover {
    background: white;
    border-color: #F15A24;
    color: #F15A24;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(241, 90, 36, 0.15);
}

.testing-contact-alternative .contact-icon {
    font-size: 1.5rem;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #F15A24, transparent);
    margin: 4rem auto;
    max-width: 600px;
    opacity: 0.3;
}

/* === RESPONSIVE === */

@media (width <= 900px) {
    .gallery-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .health-message {
        padding: 3rem 1.5rem;
    }
    
    .health-message h2 {
        font-size: 1.7rem;
    }
    
    .health-message p {
        font-size: 1.1rem;
    }
}

@media (width <= 600px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-section .container-fullwidth {
        padding: 0 1rem;
    }
    
    .gallery-section .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-section .gallery-image {
        height: 150px;
    }
    
    .gallery-section .gallery-icon {
        width: 70px;
        height: 70px;
    }
    
    .gallery-section .gallery-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .health-message {
        padding: 2.5rem 1.5rem;
        margin: 3rem 1rem;
    }
    
    .health-message h2 {
        font-size: 1.5rem;
    }
    
    .health-message p {
        font-size: 1rem;
    }
    
    .summary {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .summary-title {
        font-size: 1.5rem;
    }
    
    .summary-text {
        font-size: 1rem;
    }
    
    .testing-contact-alternative {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
    
    .testing-contact-alternative h3 {
        font-size: 1.5rem;
    }
    
    .testing-contact-alternative .contact-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testing-contact-alternative .contact-option {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (width <= 480px) {
    .gallery-section .gallery-caption {
        padding: 1.2rem;
    }
    
    .gallery-section .gallery-caption h3 {
        font-size: 1.1rem;
    }
    
    .gallery-section .gallery-caption p {
        font-size: 0.9rem;
    }
}

/* Fade In Animation (falls nicht global vorhanden) */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === FOOTER CTA FIX - Überschreibt die alten Styles === */

/* Haupt-Section */
.highlight-section.final-cta {
    background: white !important;
    color: #333 !important;
    padding: 5rem 0 !important;
    text-align: center;
    position: relative;
    margin: 3rem 0;
}

/* Container */
.highlight-section.final-cta .container-fullwidth {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Content Wrapper - jetzt mit Border */
.highlight-section.final-cta .highlight-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 0 15px 50px rgb(0, 0, 0, 0.1);
    border: 3px solid #F15A24;
    position: relative;
    overflow: hidden;
}

/* Farbiger Streifen oben */
.highlight-section.final-cta .highlight-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #F15A24, #ff8c5a, #F15A24);
    z-index: 1;
}

/* Subtiler Hintergrund-Effekt */
.highlight-section.final-cta .highlight-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(241, 90, 36, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Überschrift */
.highlight-section.final-cta h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #333 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

/* Text */
.highlight-section.final-cta .final-cta-text {
    font-size: 1.2rem !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin-bottom: 2.5rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Button - komplett neu gestylt */
.highlight-section.final-cta .final-cta-button,
.highlight-section.final-cta .cta-button {
    display: inline-block !important;
    background: linear-gradient(135deg, #F15A24 0%, #ff5722 100%) !important;
    color: white !important;
    padding: 1.5rem 4rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 10px 30px rgb(241, 90, 36, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Button Hover */
.highlight-section.final-cta .final-cta-button:hover,
.highlight-section.final-cta .cta-button:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgb(241, 90, 36, 0.4) !important;
    color: white !important;
}

/* Button Active */
.highlight-section.final-cta .final-cta-button:active,
.highlight-section.final-cta .cta-button:active {
    transform: translateY(-2px) !important;
}

/* Optional: Icon hinzufügen (kannst du im PHP einfügen) */
.final-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgb(241, 90, 36, 0.1) 0%, rgb(255, 87, 34, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* === RESPONSIVE === */

@media (width <= 768px) {
    .highlight-section.final-cta {
        padding: 3rem 0 !important;
    }
    
    .highlight-section.final-cta .container-fullwidth {
        padding: 0 1rem;
    }
    
    .highlight-section.final-cta .highlight-content {
        padding: 3rem 2rem;
    }
    
    .highlight-section.final-cta h2 {
        font-size: 2rem !important;
    }
    
    .highlight-section.final-cta .final-cta-text {
        font-size: 1.1rem !important;
    }
    
    .highlight-section.final-cta .final-cta-button,
    .highlight-section.final-cta .cta-button {
        padding: 1.3rem 3rem !important;
        font-size: 1.1rem !important;
    }
}

@media (width <= 480px) {
    .highlight-section.final-cta .highlight-content {
        padding: 2.5rem 1.5rem;
    }
    
    .highlight-section.final-cta h2 {
        font-size: 1.7rem !important;
    }
    
    .highlight-section.final-cta .final-cta-text {
        font-size: 1rem !important;
    }
    
    .highlight-section.final-cta .final-cta-button,
    .highlight-section.final-cta .cta-button {
        padding: 1.2rem 2.5rem !important;
        font-size: 1rem !important;
        width: 100%;
        max-width: 350px;
    }
}

 /* Prozess-Container mit Pfeilen */
        .process-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .process-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgb(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            overflow: hidden;
        }

        .process-card::before {
            content: attr(data-number);
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 100px;
            font-weight: 900;
            color: rgb(241, 90, 36, 0.08);
            z-index: 0;
            line-height: 1;
        }

        .process-card:hover {
            transform: translateY(-8px);
            border-color: #F15A24;
            box-shadow: 0 15px 40px rgb(241, 90, 36, 0.15);
        }

        .card-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fff3e0 0%, #ffe4cc 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .card-number {
            display: none;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .card-description {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #666;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Pfeile zwischen den Karten */
        .arrow-separator {
            font-size: 3rem;
            color: #F15A24;
            margin: 0 1.5rem;
            flex-shrink: 0;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: translateX(0);
                opacity: 1;
            }

            50% {
                transform: translateX(10px);
                opacity: 0.7;
            }
        }

        /* CTA Button */
        .cta-wrapper {
            margin-top: 4rem;
            text-align: center;
            display: flex;
            justify-content: center;
        }

        .cta-button {
            display: inline-block;
            background: #F15A24;
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 10px 30px rgb(241, 90, 36, 0.3);
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #d1471c;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgb(241, 90, 36, 0.4);
        }

        /* Responsive */
        @media (width <= 1024px) {
            .process-wrapper {
                flex-direction: column;
                gap: 2rem;
            }

            .arrow-separator {
                transform: rotate(90deg);
                margin: 0;
            }

            .process-card {
                max-width: 500px;
                width: 100%;
            }
        }

        @media (width <= 768px) {
            .section-title {
                font-size: 2rem;
            }

            .card-icon-wrapper {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .card-number {
                width: 35px;
                height: 35px;
                font-size: 1.1rem;
            }

            .arrow-separator {
                font-size: 2.5rem;
            }
        }

/* Sektion zentrieren */
.booking-cta-section {
  max-width: 960px;
  margin: 0 auto;           /* Block auf der Seite zentrieren */
  padding: 2rem 1rem;
  text-align: center;        /* Überschriften & Texte zentrieren */
  display: flex;
  flex-direction: column;
  align-items: center;       /* direkte Kinder horizontal zentrieren */
  gap: 1.5rem;
}

/* Karten/Grid mittig */
.quick-booking-grid {
  display: grid;
  grid-template-columns: 1fr;                /* bei Bedarf mehr Spalten */

  /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
  gap: 1rem;
  justify-items: center;                      /* Inhalt in der Grid-Zelle zentrieren */
}

/* Karte auf angenehme Breite begrenzen */
.quick-booking-card {
  width: 100%;
  max-width: 420px;
}

/* Button mittig */
.cta-button {
  display: inline-flex;
  margin-inline: auto;
}

/* Kontaktzeile mittig & schön verteilt */
.booking-alternative .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
}
/* stylelint-disable-next-line rule-empty-line-before */
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.icon { width: 20px; height: 20px; }

/* Hover-Effekte für Badges */
.section#qualifikationen > .container > div:nth-child(2) > div {
    cursor: pointer;
}

.section#qualifikationen > .container > div:nth-child(2) > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(241,90,36,0.2);
    border-color: #F15A24 !important;
}

/* Hover-Effekte für Feature Cards */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(255,107,53,0.15);
    border-color: #F15A24;
}

/* Responsive Design */
@media (width <= 768px) {
    .section#qualifikationen {
        padding: 3rem 0 !important;
    }
    
    .section#qualifikationen .container {
        padding: 0 1.5rem !important;
    }
    
    .section#qualifikationen h2 {
        font-size: 2rem !important;
    }
    
    .section#qualifikationen > .container > div:nth-child(2) {
        gap: 1rem !important;
    }
    
    .section#qualifikationen > .container > div:nth-child(2) > div {
        min-width: 150px !important;
        padding: 1rem 1.5rem !important;
    }
    
    .section#qualifikationen > .container > div:nth-child(3) {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
    
    .feature-card:last-child {
        grid-column: span 1 !important;
    }
}
/* --- Mobile Header Fix --- */
#hamburger { 
  display: none; 
  /* Basis-Styling, falls nicht vorhanden */
  align-items: center; 
  justify-content: center; 
  flex-direction: column;
}
#hamburger .ham-line {
  width: 24px;
  height: 2px;
  background: currentColor; /* nutzt die Textfarbe (weiß/dunkel) des Buttons */
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
#hamburger.active .ham-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#hamburger.active .ham-line:nth-child(2) { opacity: 0; }
#hamburger.active .ham-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile: Hamburger zeigen, Desktop-Menü verstecken */
@media (max-width: 991px) {
  #hamburger { display: flex; }
  #desktopMenu { display: none; }
}

/* Desktop: Desktop-Menü zeigen, Hamburger verstecken */
@media (min-width: 992px) {
  #desktopMenu { display: flex; }
  #hamburger { display: none; }
}

/* Overlay sicher über allen Header-Elementen */
.menu-overlay { z-index: 100002; } /* höher als alle 100000er-Zahlen im Header */

/* Optional schöner: wenn Header beim Scrollen eine Klasse bekommt */
#mainNav.scrolled {
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* Fallback-Bild */
.hero--profiling { background: url('/assets/img/profiling/hero-1280.jpg') center/cover no-repeat; }

/* Nur wenn unterstützt, nutze moderne Formate */
@supports (background-image: image-set(url('x') type('image/webp') 1x)) {
  .hero--profiling {
    background-image: image-set(
      url('/assets/img/profiling/hero-640.webp') type('image/webp') 1x,
      url('/assets/img/profiling/hero-1280.webp') type('image/webp') 2x
    );
  }
}

/* iOS Problemfix */
@media (max-width: 768px) {
  .hero--profiling { background-attachment: scroll; } /* NIE fixed auf Mobile */
}
/* Header-Layout */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 16px; background: #fff;
}
.site-header .header-cta { margin-left: auto; }

/* Mobile: CTA im Header ausblenden, dafür Hero-/Sticky-CTA nutzen */
@media (max-width: 768px) {
  .site-header .header-cta { display: none; }
}

/* Optional: mobile Sticky-CTA unten */
@media (max-width: 768px) {
  .mobile-stick-cta {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 110;
  }
  .mobile-stick-cta .btn { width: 100%; }
}

/* Abstände zwischen Sektionen konsistent */
section { padding-block: clamp(32px, 6vw, 72px); }
section + section { border-top: 1px solid rgba(0,0,0,.06); }
/* ========================================
   MOBILE HERO CTA BUTTON FIX - NICHT LÖSCHEN!
   Muss GANZ am Ende bleiben!
   ======================================== */
@media (max-width: 768px) {
    /* Hero Section anpassen */
    section#home.hero,
    section.hero {
        height: auto !important;
        min-height: 100vh !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 80px 16px !important;
    }
    
    /* Hero Content sichtbar machen */
    section#home.hero .hero-content,
    section.hero .hero-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        padding: 20px !important;
        opacity: 1 !important;
        animation: none !important;
        z-index: 999 !important;
    }
    
    /* Hero Text Container */
    section#home.hero .hero-content .hero-text,
    section.hero .hero-content .hero-text {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* CTA BUTTON - SUPER SPEZIFISCH */
    section#home.hero .hero-content .hero-text a.cta-button,
    section.hero .hero-content .hero-text a.cta-button {
        display: block !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 20px auto 0 auto !important;
        padding: 14px 24px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        background: #f85c24 !important;
        color: white !important;
        border: 3px solid white !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 9999 !important;
        position: relative !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(241, 90, 36, 0.3) !important;
    }
    
    /* Badge verstecken - nimmt zu viel Platz */
    section#home.hero .exclusivity-badge,
    section.hero .exclusivity-badge {
        display: none !important;
    }
}
/* ======================================== */