/* ============================================================ */
/* alternative.css – Stile der Startseite (templates/index.html).*/
/* Setzt die Befunde M07 (Farbverläufe reduzieren, Abstände      */
/* vereinheitlichen) und M08 (CTA als Button statt Banner) um.   */
/*                                                               */
/* Wird NACH bundle.min.css und landing.css geladen und          */
/* überschreibt deren Verläufe mit Flächen. bundle.min.css,      */
/* v5-theme.css und landing.css bleiben unangetastet, damit      */
/* upgrade.html und alle übrigen Seiten unverändert bleiben.     */
/*                                                               */
/* Der Dateiname stammt aus der Entstehung als Vergleichsfassung */
/* unter /alternative; die Seite ist seit dem Umzug die reguläre */
/* Startseite. Umbenennen wäre sauberer, berührt aber Cache und  */
/* index.html – bewusst offen gelassen.                          */
/* ============================================================ */

:root {
    /* Ein einziger Abstandswert für alle Landing-Sektionen (M07) */
    --alt-section-y: 72px;
    --alt-section-x: 20px;
    --alt-ground: #f6f8fa;   /* kühl gebrochenes Neutral zum Navy */
    --alt-line: #dde4ec;
}

/* ========== M07: Abschnittsabstände vereinheitlichen ========== */
/* Vorher gemischt: 40 / 60 / 80 px je nach Sektion. */
.hero-section,
.landing-section,
.benefits-section,
.social-proof-section,
.video-section,
.pricing-section,
.screenshot-section,
.founder-section,
.faq-section,
.cta-section {
    padding: var(--alt-section-y) var(--alt-section-x);
}

/* ========== M07: Hero flächig statt Verlauf ========== */
.hero-section {
    background: var(--v5-primary-dark, #152a45);
}

/* Rautenmuster-Overlay entfernen */
.hero-section::before {
    content: none;
}

.hero-title {
    /* text-shadow entfernt – gealterter Effekt */
    text-shadow: none;
}

/* ========== M07: übrige Sektionen flächig ========== */
.benefits-section {
    background: var(--alt-ground);
}

.social-proof-section {
    background: #1f2937;
}

.video-section {
    background: var(--alt-ground);
}

.analysis-card-header {
    background: #f8f9fa;
}

.benefit-icon {
    background: var(--v5-primary, #1e3a5f);
}

.benefit-card.benefit-featured {
    background: #ffffff;
    border-color: rgba(16, 185, 129, 0.35);
}

.benefit-card.benefit-featured .benefit-icon {
    background: var(--v5-accent, #10b981);
}

.modules-toggle-btn {
    background: #ffffff;
    border-color: var(--alt-line);
}

.modules-toggle-btn:hover {
    background: var(--alt-ground);
    border-color: var(--v5-accent, #10b981);
}

.cta-section {
    background: var(--v5-primary-dark, #152a45);
}

/* ========== M08: Haupt-CTA als Button, nicht als Banner ========== */
/* Vorher: Verlauf, Großbuchstaben, Laufweite, kräftiger Schatten. */
.alt-btn-primary {
    display: inline-block;
    background: var(--v5-accent, #10b981);
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none !important;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    transition: background-color 0.15s ease;
}

.alt-btn-primary:hover,
.alt-btn-primary:focus {
    background: var(--v5-accent-dark, #059669);
    color: #ffffff !important;
    text-decoration: none !important;
}

.alt-btn-primary:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

/* Ruhiger Zweit-Link neben dem Button */
.alt-btn-secondary {
    display: inline-block;
    color: #7fe3c0 !important;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(127, 227, 192, 0.45);
    padding-bottom: 2px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.alt-btn-secondary:hover,
.alt-btn-secondary:focus {
    color: #a5eed4 !important;
    border-color: #a5eed4;
}

/* Zweit-Link auf hellem Grund (Video-Sektion) */
.alt-btn-secondary.on-light {
    color: var(--v5-accent-dark, #059669) !important;
    border-bottom-color: rgba(5, 150, 105, 0.4);
}

.alt-btn-secondary.on-light:hover,
.alt-btn-secondary.on-light:focus {
    color: var(--v5-accent, #10b981) !important;
    border-color: var(--v5-accent, #10b981);
}

/* Hero-CTA-Zeile: Button und Zweit-Link nebeneinander, linksbündig */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hero-cta .alt-btn-primary {
    /* v5-theme setzt .hero-cta .btn mit !important – hier nicht nötig,
       weil .alt-btn-primary keine .btn-Klasse trägt. */
    padding: 14px 30px;
}

.hero-note {
    margin-top: 14px;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* Konkrete Zusagen unter dem CTA – nehmen dem Besucher die Sorge,
   nach der Registrierung erst noch auf etwas warten zu müssen. */
.hero-assurances {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 9px;
}

.hero-assurances li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-assurances i {
    color: var(--v5-accent-light, #34d399);
    font-size: 0.95rem;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .hero-assurances {
        justify-items: center;
    }

    .hero-assurances li {
        text-align: left;
    }
}

@media (max-width: 992px) {
    .hero-cta {
        justify-content: center;
    }
}

/* CTA-Button in der Schluss-Sektion (v5-theme nutzt dort !important) */
.cta-section .alt-btn-primary {
    background: var(--v5-accent, #10b981) !important;
    padding: 16px 34px;
    font-size: 1.1rem;
}

.cta-section .alt-btn-primary:hover {
    background: var(--v5-accent-dark, #059669) !important;
}

/* Video-Sektion: gleicher Button statt eigenem Verlaufs-Button */
.video-cta {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* ========== M04: Logoleiste direkt unter dem Hero ========== */
/* Grafik, Beschriftung und Alternativtext bleiben unverändert –
   es ändert sich ausschließlich die Position im Seitenverlauf. */
.trust-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--alt-line);
    padding: 22px var(--alt-section-x);
}

.trust-strip img {
    display: block;
    width: 100%;
    max-width: 940px;
    height: auto;
    margin: 0 auto;
    opacity: 0.85;
}

/* ========== M06: Gründer-Block ========== */
.founder-section {
    background: #ffffff;
    border-top: 1px solid var(--alt-line);
    border-bottom: 1px solid var(--alt-line);
}

.founder-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 640px) {
    .founder-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }
}

/* Platzhalter, solange kein Portrait vorliegt: Monogramm.
   Sobald ein Foto existiert, <img> statt .founder-monogram einsetzen. */
.founder-monogram {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: var(--v5-primary, #1e3a5f);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .founder-monogram {
        margin: 0 auto;
    }
}

.founder-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--v5-gray-800, #1e293b);
    margin: 0 0 4px;
}

.founder-role {
    color: var(--v5-accent-dark, #059669);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.founder-text p {
    color: #5b6b7f;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.founder-standards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    padding: 0;
    list-style: none;
}

@media (max-width: 640px) {
    .founder-standards {
        justify-content: center;
    }
}

.founder-standards li {
    background: var(--alt-ground);
    border: 1px solid var(--alt-line);
    color: #46566a;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 5px;
}

.founder-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.93rem;
}

@media (max-width: 640px) {
    .founder-links {
        justify-content: center;
    }
}

.founder-links a {
    color: var(--v5-accent-dark, #059669);
    font-weight: 600;
    text-decoration: none;
}

.founder-links a:hover {
    text-decoration: underline;
}

/* ========== M03: sichtbare FAQ ========== */
.faq-section {
    background: var(--alt-ground);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--alt-line);
    border-radius: 10px;
    padding: 24px 26px;
}

.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--v5-gray-800, #1e293b);
    margin: 0 0 9px;
}

.faq-item p {
    color: #5b6b7f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
