/* lp.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sektion 1: Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../pics/hero-arbeit.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* ← LÖSUNG: 16:9 Format */
    overflow: hidden;
    cursor: pointer;
}

.cta-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.cta-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.trust-badges {
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Sektion 2: Schmerz-Check */
.pain-check {
    padding: 80px 20px;
    background: #f9f9f9;
}

.pain-check h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pain-check-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.checklist {
    max-width: 800px;
    margin: 0 auto;
}

.checklist-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.checklist-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #25D366;
    border-radius: 5px;
    margin-right: 15px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checklist-item.checked .checkbox {
    background: #25D366;
}

.checklist-item.checked .checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.bridge-text {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 30px;
    background: white;
    border-left: 4px solid #25D366;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8;
}

/* Sektion 3: Hero's Journey */
.journey {
    padding: 80px 20px;
    background: white;
}

.journey h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-column {
    text-align: center;
}

.journey-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.journey-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.journey-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.final-statement {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

/* Sektion: Was NICHT funktioniert */
.not-solution {
    padding: 80px 20px;
    background: #fff5f5;
}

.not-solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #c53030;
}

.not-solution h3 {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.not-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.not-solution-card {
    background: white;
    border: 2px solid #fc8181;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.not-solution-card h4 {
    color: #c53030;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.not-solution-card h4::before {
    content: '❌';
    font-size: 1.5rem;
}

.not-solution-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.not-solution-card .why-not {
    background: #fff5f5;
    padding: 15px;
    border-radius: 8px;
    font-style: italic;
    color: #742a2a;
}

.solution-highlight {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 15px;
    border: 3px solid #25D366;
}

.solution-highlight h4 {
    color: #166534;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-highlight h4::before {
    content: '✅';
    font-size: 2rem;
}

.solution-highlight p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #166534;
}

.solution-highlight ul {
    margin-top: 20px;
    padding-left: 20px;
}

.solution-highlight li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #166534;
}

/* Sektion 4: Die Methode */
.method {
    padding: 80px 20px;
    background: #f9f9f9;
}

.method h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.method h3 {
    text-align: center;
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.method-content {
    max-width: 900px;
    margin: 0 auto;
}

.method-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #444;
}

.blog-link {
    display: inline-block;
    margin: 1rem 0;
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #20BA5A;
    text-decoration: underline;
}

/* NEU: Eigene Überschrift für die Tabelle */
.table-headline {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

/* Verbesserter Tabellen-Style */
.comparison-table-wrapper {
    position: relative;
    z-index: auto;
    clear: both;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    display: table;
    table-layout: auto;
}

.comparison-table tr {
    display: table-row;
}

.comparison-table td {
    display: table-cell;
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* LABEL-Spalte (linke Seite) */
.comparison-table td:first-child {
    background: #f0f0f0;
    font-weight: 600;
    color: #333;
    width: 40%;
}

/* WERT-Spalte (rechte Seite) */
.comparison-table td:last-child {
    background: #ffffff;
    color: #333;
    font-weight: 600;
    width: 60%;
}

/* Hover-Effekt */
.comparison-table tr:hover td:last-child {
    background: #f5f5f5;
}

.comparison-table th {
    background: #333;
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    text-align: left;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    background: #f9f9f9;
}

.comparison-table td:last-child {
    background: #f0fdf4;
    font-weight: 600;
}

.method-transition {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 3rem;
    color: #333;
}

/* Sektion 5: Social Proof */
.proof {
    padding: 80px 20px;
    background: white;
}

.proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.proof h3 {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.video-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(37, 211, 102, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: #25D366;
}

.video-quote {
    padding: 25px;
}

.video-quote p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.video-quote strong {
    color: #333;
    font-style: normal;
}

.transcript-toggle {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    padding: 8px 12px;
    background: #f0f0f0;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.transcript-toggle:hover {
    background: #e0e0e0;
}

.transcript-content {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #25D366;
    font-size: 0.95rem;
    line-height: 1.7;
    max-height: 300px;
    overflow-y: auto;
}

.transcript-content.active {
    display: block;
}

/* Video Modal/Popup */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close:hover {
    transform: scale(1.2);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-testimonials {
    max-width: 900px;
    margin: 0 auto;
}

.text-testimonials h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.testimonial-box {
    background: white;
    border-left: 4px solid #25D366;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.proof-transition {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 4rem;
}

/* Sektion 6: Workshop / Solution */
.workshop,
.solution {
    padding: 80px 20px;
    background: #f9f9f9;
}

.workshop h2,
.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.workshop h3,
.solution h3 {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.workshop-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.step {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h4 {
    font-size: 1.4rem;
    margin: 20px 0 15px;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.benefits {
    max-width: 900px;
    margin: 0 auto;
}

.benefits h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.benefit-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.benefit-item span {
    margin-right: 15px;
    font-size: 1.3rem;
}

.workshop-transition {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 4rem;
}

/* Sektion 7: FAQ / Testimonials */
.faq,
.testimonials {
    padding: 80px 20px;
    background: white;
}

.faq h2,
.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq h3,
.testimonials h3 {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

details {
    background: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

summary {
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #25D366;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    padding: 0 25px 25px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Sektion 8: Final CTA */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.choice-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    text-align: left;
}

.choice-text ol {
    margin: 2rem 0;
    padding-left: 20px;
}

.choice-text li {
    margin-bottom: 1.5rem;
}

.final-statement-cta {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.cta-button-final {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button-final:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.final-trust {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #25D366;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    /* GEÄNDERT: Responsive Tabellen-Fix */
    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table table {
        /* Erzwingt, dass der Browser die 'width'-Angaben der Zellen respektiert */
        table-layout: fixed;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;

        /* Erzwingt 50% Breite und Textumbruch */
        width: 50%;
        overflow-wrap: break-word;
        hyphens: auto;
        /* Hilft bei der Silbentrennung */
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    .video-close {
        top: 10px;
        right: 10px;
    }
}

/* Show-Buttons Grid Layout */
.show-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 2rem auto;
    max-width: 900px;
}

.show-buttons-grid .cta-button {
    width: 100%;
    text-align: center;
}

.no-shows-message {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

/* Responsive: Bei kleinen Bildschirmen nur 1 Button pro Zeile */
@media (max-width: 600px) {
    .show-buttons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        /* Erhöhter Abstand bei mobiler Ansicht */
    }
}