/* ===========================================
   LANDINGPAGE STYLES v3
   Conversion-optimierte Komponenten für
   /familien.html, /therapeuten.html, /schulen.html
   =========================================== */

/* -----------------------------------------
   HERO SECTION
   ----------------------------------------- */
.lp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4fc 100%);
    min-height: 70vh;
}

.lp-hero-content {
    max-width: 600px;
}

.lp-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.lp-keyword-line {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.lp-benefit {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.lp-subline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lp-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-cta-group .btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 15px rgba(26, 75, 140, 0.3);
}

.lp-cta-group .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(26, 75, 140, 0.4);
}

.lp-cta-group .btn-secondary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: background 0.2s, color 0.2s;
}

.lp-cta-group .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.lp-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* -----------------------------------------
   PROBLEM SECTION (Empathie)
   ----------------------------------------- */
.lp-problem {
    padding: 5rem 5%;
    background: white;
    text-align: center;
}

.lp-problem h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.lp-pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.lp-pain-point {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    border-left: 4px solid var(--accent-color);
}

.lp-pain-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.lp-pain-point p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.lp-validation {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.lp-validation strong {
    color: var(--primary-color);
}

/* -----------------------------------------
   SOLUTION SECTION
   ----------------------------------------- */
.lp-solution {
    padding: 5rem 5%;
    background: linear-gradient(180deg, #e8f4fc 0%, white 100%);
}

.lp-solution h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.lp-solution-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.lp-solution h2 + .lp-solution-grid {
    margin-top: 3rem;
}

.lp-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.lp-solution-step {
    text-align: center;
    padding: 2rem;
}

.lp-step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.lp-solution-step h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.lp-solution-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

.lp-solution-visual {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lp-solution-visual img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lp-solution-example {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 2rem auto 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.lp-solution-example p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.lp-solution-example strong {
    color: var(--primary-color);
}

/* Download Box für PDFs */
.lp-download-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 2rem auto 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
}

.lp-download-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.lp-download-content {
    flex: 1;
}

.lp-download-content strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.lp-download-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
}

.lp-download-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.lp-download-content a:hover {
    text-decoration: underline;
}

/* -----------------------------------------
   PROOF SECTION (Social Proof)
   ----------------------------------------- */
.lp-proof {
    padding: 5rem 5%;
    background: white;
}

.lp-proof h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.lp-testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.lp-testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.lp-testimonial blockquote {
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}

.lp-testimonial cite {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-style: normal;
}

.lp-testimonial cite strong {
    color: var(--primary-color);
}

.lp-testimonial cite span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lp-trust-section {
    padding: 3rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.lp-trust-heading {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.lp-trust-badge img {
    width: 40px;
    height: 40px;
}

.lp-trust-badge span {
    font-weight: 500;
}

/* -----------------------------------------
   CONTENT HUB (Ratgeber-Links)
   ----------------------------------------- */
.lp-content-hub {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.lp-content-hub h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.lp-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.lp-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.lp-article-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.lp-article-card-content {
    padding: 1.5rem;
}

.lp-article-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.lp-article-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* -----------------------------------------
   FINAL CTA
   ----------------------------------------- */
.lp-final-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d6bb5 100%);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.lp-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.lp-product-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.lp-cta-content {
    position: relative;
    z-index: 1;
}

.lp-final-cta h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.lp-price {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.lp-price strong {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.lp-final-cta .lp-cta-group {
    margin-bottom: 1.5rem;
}

.lp-final-cta .btn-primary {
    background: var(--accent-color);
    color: white;
}

.lp-final-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.lp-final-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.lp-risk-reduction {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.lp-social-proof-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Wrapper für CTA-Box mit Abstand */
.lp-final-cta-wrapper {
    padding: 3rem 5%;
    background: var(--bg-light);
}

/* -----------------------------------------
   RESPONSIVE
   ----------------------------------------- */
@media (max-width: 900px) {
    .lp-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 5%;
        min-height: auto;
    }

    .lp-hero-content {
        max-width: 100%;
    }

    .lp-cta-group {
        justify-content: center;
    }

    .lp-hero-image {
        order: -1;
    }

    .lp-hero-image img {
        max-width: 80%;
    }

    .lp-solution-grid {
        grid-template-columns: 1fr;
    }

    .lp-final-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
        margin: 0 1rem;
    }

    .lp-product-image {
        width: 150px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .lp-hero h1 {
        font-size: 1.75rem;
    }

    .lp-cta-group {
        flex-direction: column;
    }

    .lp-cta-group .btn-primary,
    .lp-cta-group .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .lp-pain-points {
        grid-template-columns: 1fr;
    }

    .lp-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .lp-articles {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------
   HERO IMAGE SLIDER (Crossfade)
   ----------------------------------------- */
.lp-hero-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.lp-hero-slider picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: heroFade 10s infinite;
}

.lp-hero-slider picture:first-child {
    position: relative;
}

.lp-hero-slider picture:nth-child(2) {
    animation-delay: 5s;
}

.lp-hero-slider picture img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@keyframes heroFade {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}
