/* strongerlab Landing Page Styles */
/* Version 2.0 - Modulares CSS */

:root {
    /* strongerlab Farbpalette */
    --color-black: #000000;
    --color-gray-brown: #8f857f;
    --color-gray-blue-light: #c0d1d9;
    --color-blue-gray: #5e7a8a;
    --color-navy: #1f2e3e;
    --color-turquoise-light: #9bcccc;
    --color-accent: #c0d1d9; /* Helles Blau als Akzent */
    
    --font-display: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-black);
    background: #ffffff;
}

/* Kopfzeile */
.header {
    padding: 2rem 0;
    background: var(--color-navy);
    border-bottom: 1px solid var(--color-blue-gray);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(31, 46, 62, 0.98);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-cta-button {
    display: inline-block;
    background: var(--color-turquoise-light);
    color: #333;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(155, 204, 204, 0.4), 
                0 0 20px rgba(155, 204, 204, 0.2) inset,
                0 0 30px rgba(155, 204, 204, 0.15);
    cursor: pointer;
    font-family: var(--font-display);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.header-cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-cta-button:hover {
    background: #a8d4d4;
    box-shadow: 0 6px 25px rgba(155, 204, 204, 0.5), 
                0 0 25px rgba(155, 204, 204, 0.3) inset,
                0 0 40px rgba(155, 204, 204, 0.2);
    transform: translateY(-2px);
}

.header-cta-button:hover::before {
    opacity: 1;
}

.header-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(155, 204, 204, 0.3);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Navigation Menu */
.navbar {
    width: 100%;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-display);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
    position: relative;
}

.nav-link:hover {
    color: var(--color-turquoise-light);
}

.nav-link.active {
    color: var(--color-turquoise-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-turquoise-light);
}

.nav-item-cta {
    margin-left: 1rem;
}

/* Mobile Menu Toggle (Hamburger) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(31, 46, 62, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(192, 209, 217, 0.2);
    }
    
    .nav-link {
        padding: 1.2rem 0;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-item-cta {
        margin-left: 0;
        margin-top: 1rem;
        border-bottom: none;
        width: 100%;
    }
    
    .nav-item-cta .header-cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        display: block;
    }
    
    /* Hamburger Animation */
    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label .hamburger::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    
    /* Show menu when toggle is checked */
    .nav-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    /* Overlay when menu is open */
    .nav-toggle:checked ~ .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Hero-Bereich */
.hero {
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue-gray) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 46, 62, 0.75) 0%, rgba(94, 122, 138, 0.65) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-turquoise-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.5;
    opacity: 0.95;
    max-width: 100%;
}

/* Datumsfeld */
.article-date {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 1rem;
    color: var(--color-blue-gray);
    font-size: 0.95rem;
    font-style: italic;
}

/* Hauptinhalt */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-section h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--color-blue-gray);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #333;
}

.content-section ul, .content-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #333;
}

/* Hervorhebungsbox */
.highlight-box {
    background: linear-gradient(135deg, rgba(155, 204, 204, 0.1) 0%, rgba(94, 122, 138, 0.1) 100%);
    border-left: 4px solid var(--color-turquoise-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

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

.benefit-card {
    background: white;
    border: 2px solid var(--color-gray-blue-light);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--color-turquoise-light);
    box-shadow: 0 8px 24px rgba(31, 46, 62, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-turquoise-light), var(--color-blue-gray));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-navy);
    margin-bottom: 0.8rem;
}

/* FAQ-Bereich */
.faq-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--color-gray-blue-light);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(155, 204, 204, 0.05);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: #333;
    line-height: 1.8;
    display: none;
    animation: fadeInDown 0.3s ease;
}

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

.faq-item.active {
    border-color: var(--color-turquoise-light);
    box-shadow: 0 4px 12px rgba(155, 204, 204, 0.15);
}

.faq-item.active .faq-question {
    background: rgba(155, 204, 204, 0.08);
    color: var(--color-navy);
}

/* Call-to-Action-Bereich */
.cta-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-black) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(192, 209, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(155, 204, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.cta-button {
    display: inline-block;
    background: var(--color-turquoise-light);
    color: var(--color-navy);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(155, 204, 204, 0.3);
}

.cta-button:hover {
    background: var(--color-gray-blue-light);
    box-shadow: 0 6px 24px rgba(155, 204, 204, 0.4);
    transform: translateY(-2px);
}

/* Fußzeile */
.footer {
    background: var(--color-black);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
    align-items: start;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #ffffff;
    font-family: var(--font-display);
}

.footer-brand {
    max-width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-brand .logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #ffffff;
    font-family: var(--font-display);
}

.footer-brand .tagline {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 15px;
}

/* .footer-links-wrapper wird nicht mehr benötigt, da Instagram jetzt eigene Spalte ist */

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-info .label {
    color: #ffffff;
    font-weight: 500;
    min-width: 50px;
}

.contact-info a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 8px;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 18px;
    flex-shrink: 0;
}

.social-link:hover {
    background: #2a2a2a;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #1a1a1a;
    padding: 24px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: #666666;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #a0a0a0;
}

/* Legacy Support für alte Footer-Struktur */
.footer-section {
    /* Behalten für Kompatibilität */
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-turquoise-light);
}

.footer-section p, .footer-section a {
    color: var(--color-gray-blue-light);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--color-turquoise-light);
}

/* Responsives Design - Mobile First */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .content {
        padding: 3.5rem 4%;
    }
    
    .hero {
        padding: 5rem 4% 3.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    /* Footer - Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    /* Basis-Anpassungen */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
    }
    
    /* Kopfzeile - Mobile */
    .header {
        padding: 1.2rem 0;
        position: sticky;
        top: 0;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 1rem;
        padding: 0 4%;
        justify-content: space-between;
    }
    
    .logo {
        max-width: 140px;
    }
    
    /* CTA-Button im Mobile-Menü anzeigen */
    .nav-item-cta .header-cta-button {
        display: block;
    }
    
            /* Hero-Bereich - Mobile */
            .hero {
                padding: 3rem 4% 2.5rem;
                min-height: 400px;
            }
    
    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.6;
    }
    
            /* Datumsfeld - Mobile */
            .article-date {
                padding: 0 4% 0.8rem;
                font-size: 0.85rem;
            }
            
            /* Hauptinhalt - Mobile */
            .content {
                padding: 2.5rem 4%;
            }
            
            .content-section {
                margin-bottom: 3rem;
            }
            
            .content-section h2 {
                font-size: clamp(1.5rem, 6vw, 2rem);
                margin-bottom: 1.2rem;
                line-height: 1.3;
            }
    
    .content-section h3 {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .content-section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .content-section ul, .content-section ol {
        margin-left: 1.2rem;
        margin-bottom: 1.2rem;
        padding-right: 0.5rem;
    }
    
    .content-section li {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0.6rem;
    }
    
    /* Hervorhebungsbox - Mobile */
    .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-left-width: 3px;
    }
    
    .highlight-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .highlight-box p {
        font-size: 0.95rem;
    }
    
    /* Vorteile-Grid - Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 0.8rem;
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* FAQ-Bereich - Mobile */
    .faq-section {
        padding: 3rem 4%;
        margin-top: 3rem;
    }
    
    .faq-container h2 {
        font-size: clamp(1.8rem, 7vw, 2.2rem) !important;
        margin-bottom: 1.5rem !important;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
        flex-wrap: nowrap;
        gap: 0.75rem;
        align-items: center;
    }
    
    /* Text-Teil soll flexibel sein und umbrechen */
    .faq-question-text {
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Icon bleibt immer rechts, auch bei langen Texten */
    .faq-arrow {
        width: 24px;
        height: 24px;
        margin-left: 0.75rem;
        flex-shrink: 0;
        align-self: center;
    }
    
    .faq-arrow::before {
        width: 10px;
        height: 2px;
    }
    
    .faq-arrow::after {
        width: 2px;
        height: 10px;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.2rem;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Call-to-Action-Bereich - Mobile */
    .cta-section {
        padding: 3.5rem 4%;
    }
    
    .cta-section h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        display: block;
        text-align: center;
        min-height: 48px; /* Touch-freundlich */
    }
    
    /* Fußzeile - Mobile */
    .footer {
        padding: 2.5rem 4% 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p, .footer-section a {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Sehr kleine Mobile Geräte (max 640px) */
@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
}

/* Kleine Mobile Geräte (max 480px) */
@media (max-width: 480px) {
    /* Noch kompaktere Abstände */
    .header {
        padding: 1rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 0 3%;
    }
    
    .logo {
        max-width: 120px;
    }
    
            .hero {
                padding: 2.5rem 3% 2rem;
                min-height: 350px;
            }
            
            .hero h1 {
                font-size: clamp(1.6rem, 9vw, 2rem);
            }
    
    .content {
        padding: 2rem 3%;
    }
    
    .content-section {
        margin-bottom: 2.5rem;
    }
    
    .content-section h2 {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
    }
    
    .benefit-card {
        padding: 1.2rem;
    }
    
    .faq-section {
        padding: 2.5rem 3%;
    }
    
    .cta-section {
        padding: 3rem 3%;
    }
    
    .footer {
        padding: 2rem 3% 1.5rem;
    }
    
    .highlight-box {
        padding: 1.2rem;
    }
}

/* Touch-Optimierungen für alle mobilen Geräte */
@media (hover: none) and (pointer: coarse) {
    /* Größere Touch-Targets */
    .faq-question {
        min-height: 48px;
    }
    
    .cta-button {
        min-height: 48px;
    }
    
    .footer-section a {
        padding: 0.3rem 0;
        display: inline-block;
        min-height: 44px;
        line-height: 1.5;
    }
    
    /* Entferne Hover-Effekte auf Touch-Geräten */
    .benefit-card:hover {
        transform: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
}

/* Landscape-Modus für Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2.5rem 4% 2rem;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
}

/* LLM-freundliche semantische Struktur */
article {
    display: block;
}

section[itemprop] {
    display: block;
}

/* Content-Bilder */
.content-image {
    margin: 2.5rem 0 3rem;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.content-image-caption {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-blue-gray);
}

/* Coaching-Konzept Section */
.coaching-section {
    background: linear-gradient(135deg, var(--color-gray-blue-light) 0%, rgba(155, 204, 204, 0.4) 100%);
    padding: 5rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--color-turquoise-light);
    color: var(--color-navy);
}

.coaching-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.coaching-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.coaching-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.coaching-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.coaching-badge {
    background: var(--color-navy);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Coaching Features Box - Neue Struktur statt Button-Badges */
.coaching-features-box {
    background: linear-gradient(135deg, rgba(155, 204, 204, 0.08) 0%, rgba(94, 122, 138, 0.05) 100%);
    border-left: 4px solid var(--color-turquoise-light);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

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

.coaching-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.coaching-feature-check {
    color: var(--color-turquoise-light);
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
    flex-shrink: 0;
}

.coaching-feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-navy);
}

.coaching-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.coaching-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid var(--color-gray-blue-light);
}

.coaching-card-icon {
    background: var(--color-turquoise-light);
    color: var(--color-navy);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.coaching-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.4rem;
}

.coaching-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.coaching-note {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: var(--color-gray-brown);
}

/* References-Bereich */
.references-section {
    background: #ffffff;
    padding: 4rem 0;
    margin-top: 4rem;
}

.references-container {
    max-width: 1200px;
    margin: 0 auto;
}

.references-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-navy);
    margin-bottom: 2rem;
    text-align: center;
}

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

.reference-item {
    background: #f8f9fa;
    border-left: 4px solid var(--color-turquoise-light);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reference-item:hover {
    background: #f0f2f4;
    border-left-color: var(--color-blue-gray);
    box-shadow: 0 4px 12px rgba(31, 46, 62, 0.08);
}

.reference-item p {
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.reference-item .reference-authors {
    font-weight: 600;
    color: var(--color-navy);
}

.reference-item .reference-title {
    font-style: italic;
    color: #555;
}

.reference-item .reference-meta {
    font-size: 0.9rem;
    color: var(--color-blue-gray);
    margin-top: 0.5rem;
}

.reference-item .reference-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--color-blue-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.reference-item .reference-link:hover {
    color: var(--color-navy);
    text-decoration: underline;
}

.reference-item .reference-link::after {
    content: " →";
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.reference-item .reference-link:hover::after {
    transform: translateX(4px);
}

/* FAQ-Überschrift & Pfeil */
.faq-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.faq-arrow {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    margin-left: 1rem;
    background: linear-gradient(135deg, var(--color-turquoise-light) 0%, var(--color-blue-gray) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(155, 204, 204, 0.3);
}

.faq-arrow::before,
.faq-arrow::after {
    content: '';
    position: absolute;
    background: white;
    transition: all 0.3s ease;
}

/* Horizontale Linie (immer sichtbar) */
.faq-arrow::before {
    width: 12px;
    height: 2px;
    border-radius: 1px;
}

/* Vertikale Linie (nur bei geschlossenem Zustand) */
.faq-arrow::after {
    width: 2px;
    height: 12px;
    border-radius: 1px;
    opacity: 1;
    transform: rotate(0deg);
}

/* Offener Zustand: Vertikale Linie ausblenden (Minus-Icon) */
.faq-item.active .faq-arrow::after {
    opacity: 0;
    transform: rotate(90deg);
}

/* Hover-Effekt */
.faq-question:hover .faq-arrow {
    background: linear-gradient(135deg, var(--color-blue-gray) 0%, var(--color-navy) 100%);
    box-shadow: 0 3px 12px rgba(94, 122, 138, 0.4);
    transform: scale(1.1);
}

.faq-item.active .faq-arrow {
    background: linear-gradient(135deg, var(--color-blue-gray) 0%, var(--color-navy) 100%);
    box-shadow: 0 3px 12px rgba(94, 122, 138, 0.4);
}

/* Modal/Pop-up Styles (Kontaktformular) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: relative;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue-gray) 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin: 0;
    color: white;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.close:hover,
.close:focus {
    opacity: 0.7;
}

.close:active {
    opacity: 0.5;
    transform: scale(0.95);
}

.modal-body {
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-navy);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--color-gray-blue-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-brown);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-turquoise-light);
}

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

.form-submit {
    background: var(--color-turquoise-light);
    color: var(--color-navy);
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    box-shadow: 0 4px 16px rgba(155, 204, 204, 0.3);
}

.form-submit:hover:not(:disabled) {
    background: var(--color-gray-blue-light);
    box-shadow: 0 6px 24px rgba(155, 204, 204, 0.4);
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-privacy {
    background: #f8f9fa;
    border: 1px solid var(--color-gray-blue-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.form-privacy-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.form-privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.form-privacy-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-privacy-checkbox label {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    cursor: pointer;
    flex: 1;
}

.form-privacy-checkbox a {
    color: var(--color-blue-gray);
    text-decoration: underline;
}

.form-privacy-checkbox a:hover {
    color: var(--color-navy);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
    font-weight: 500;
    line-height: 1.5;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
    font-size: 1rem;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
    font-size: 1rem;
}

.honeypot-field {
    display: none;
}

.modal-intro-text {
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.6;
}

/* Mobile Modal & Coaching-Section */
@media (max-width: 768px) {
    .modal {
        padding: 0 !important;
        align-items: flex-start !important;
    }
    
    .modal-content {
        width: 100% !important;
        margin: 0 !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    
    .modal-header {
        padding: 1.25rem 3.5rem 1.25rem 1.25rem !important;
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 100 !important;
        min-height: 70px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }
    
    .modal-header h2 {
        font-size: 1.4rem !important;
        flex: 1 !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        font-weight: 600 !important;
    }
    
    .modal-header .close {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 2rem !important;
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 0.5rem !important;
        margin-left: 1rem !important;
        flex-shrink: 0 !important;
        background: rgba(255, 255, 255, 0.25) !important;
        border-radius: 50% !important;
        transition: all 0.2s ease !important;
    }
    
    .modal-header .close:hover,
    .modal-header .close:active {
        background: rgba(255, 255, 255, 0.35) !important;
        transform: scale(1.05) !important;
    }
    
    .modal-header .close:active {
        transform: scale(0.95) !important;
    }
    
    .modal-body {
        padding: 1.5rem !important;
        overflow-y: auto !important;
        flex: 1 !important;
    }
    
    .form-message {
        padding: 1.5rem !important;
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        border-width: 3px !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        text-align: center !important;
    }
    
    .form-message.success {
        background-color: #d4edda !important;
        color: #155724 !important;
        border-color: #28a745 !important;
        display: block !important;
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2) !important;
    }
    
    .form-message.error {
        background-color: #f8d7da !important;
        color: #721c24 !important;
        border-color: #dc3545 !important;
        display: block !important;
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2) !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
    }
    
    .form-privacy {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }
    
    .form-privacy-text {
        font-size: 0.85rem;
    }
    
    .form-privacy-checkbox {
        gap: 0.6rem;
    }
    
    .form-privacy-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .form-privacy-checkbox label {
        font-size: 0.85rem;
    }
    
    .coaching-section {
        padding: 3rem 4%;
    }
    
    .coaching-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coaching-text h2 {
        font-size: clamp(1.6rem, 6vw, 2.1rem);
    }
    
    .coaching-text p {
        font-size: 1rem;
    }
    
    .coaching-cards {
        gap: 0.9rem;
    }
    
    .coaching-card {
        padding: 1.3rem 1.4rem;
    }
    
    /* Coaching Features Box - Mobile */
    .coaching-features-box {
        padding: 1.2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .coaching-features-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .coaching-feature-item {
        gap: 0.6rem;
    }
    
    .coaching-feature-check {
        font-size: 1.1rem;
    }
    
    .coaching-feature-text {
        font-size: 0.95rem;
    }
}

/* Sehr kleine Mobile Geräte – Modal & Coaching */
@media (max-width: 480px) {
    .modal-header {
        padding: 1rem 3rem 1rem 1rem !important;
        min-height: 60px !important;
    }
    
    .modal-header h2 {
        font-size: 1.2rem !important;
        line-height: 1.2 !important;
    }
    
    .modal-header .close {
        font-size: 1.8rem !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 0.4rem !important;
        margin-left: 0.75rem !important;
    }
    
    .coaching-section {
        padding: 2.5rem 3%;
    }
}

/* References-Bereich – Mobile */
@media (max-width: 768px) {
    .references-section {
        padding: 3rem 4%;
    }
    
    .references-section h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .reference-item {
        padding: 1.2rem 1.5rem;
    }
}
