/* =================================================
  TEIL 1: BASIS-STILE (aus deiner style.css)
=================================================
*/

/* Globale Design-Variablen und Body-Styles */
:root {
    --color-text: #2d2d2d;
    --color-primary: #445e11;
    --color-secondary: #83a725;
    --color-bg-light: #fdf8f4;
    --color-bg-medium: #f9f3ee;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section {
    padding: 80px 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.container {
    max-width: 850px;
    margin: 0 auto;
}
h1, h2, h3 {
    color: var(--color-primary);  
    text-align: center;
    line-height: 1.3;
}
h1 { font-size: 42px; font-weight: 700; }
h2 { font-size: 36px; font-weight: 700; margin-bottom: 40px; }
p { font-size: 18px; }
.text-center { text-align: center; }

/* --- Header --- */
.header {
    padding: 10px 20px;
    background-color: #fff;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.header img {
    max-width: 250px;
    height: auto;
}

/* --- Hero Section --- */
.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-text {
    flex: 1;
    text-align: left;
}
.hero-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.hero h1 {
    color: var(--color-text);
    text-align: left;
}
.hero .subline {
    font-size: 22px;
    font-weight: 400;
    color: var(--color-primary);  
    margin-bottom: 40px;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(68, 94, 17, 0.3);
    border: none;
    cursor: pointer; /* Wichtig für Formular-Buttons */
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(68, 94, 17, 0.4);
}

/* --- Urgency Box --- */
.urgency-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 5px;
    max-width: 600px;
    text-align: center;
}
.urgency-box strong {
    color: #856404;
    font-size: 18px;
}

/* --- Problem Section --- */
.problem-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    display: inline-block;
    text-align: left;
    max-width: 500px;  
}
.problem-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
}
.problem-list li::before {
    content: "✅";  
    position: absolute;
    left: 0;
    top: 13px;
    font-size: 20px;
}

/* --- NEU: Top Testimonial Section --- */
.top-testimonial {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}
.top-testimonial blockquote {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
    font-style: italic;
    border-left: none;
    padding-left: 0;
}
.top-testimonial blockquote strong {
    display: block;
    margin-top: 20px;
    font-style: normal;
    color: var(--color-primary);
}

/* --- Social Proof Section --- */
.social-proof { background-color: var(--color-bg-medium); }
.testimonials {
    display: grid;
    gap: 30px;
    margin-top: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.social-proof blockquote {
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
    border-left: 4px solid var(--color-secondary);
    padding-left: 25px;
    text-align: left;
    font-style: italic;
}
.social-proof blockquote strong {
    color: var(--color-primary);
    font-style: normal;
    display: block;
    margin-top: 15px;
}

/* --- What You Get Section --- */
.what-you-get { background-color: var(--color-bg-light); }
.sub-headline {
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text);
    margin-top: -30px;
    margin-bottom: 50px;
    text-align: center;
}

/* KORREKTUR: 
  Dieser Block stapelt die Karten (1fr = eine Spalte)
  und zentriert sie (max-width + margin: auto)
*/
.journey-cards {
    display: grid;
    grid-template-columns: 1fr;  /* Zwingt die Boxen in eine Spalte */
    gap: 20px;                  /* Etwas weniger Abstand für Stapel-Optik */
    margin-top: 50px;
    max-width: 750px;           /* Zentriert und begrenzt die Breite (wie bei den Problem-Boxen) */
    margin-left: auto;          /* Zentriert */
    margin-right: auto;         /* Zentriert */
}

/* KORREKTUR: 
  Diese Regeln (die ich fälschlicherweise löschen ließ) 
  fügen das Box-Design wieder hinzu.
*/
.journey-card {
    background: white; 
    padding: 30px; 
    border-radius: 15px; 
    border-left: 5px solid var(--color-secondary); 
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease; /* Bonus: Gleicher Hover-Effekt wie die Boxen darüber */
}

/* Bonus: Hover-Effekt (wie bei den Problem-Boxen) */
.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.journey-card h3 { 
    font-size: 22px; 
    color: var(--color-text); 
    margin-bottom: 15px; 
    font-weight: 600; 
    text-align: left; 
}
.journey-card p { 
    font-size: 16px; 
    line-height: 1.6; 
    color: #555; 
    text-align: left; 
}

/* WICHTIG: Falls du noch Regeln für .feature-grid oder .feature-item hast, lösche sie. */

/* --- Value Stack --- */
.value-stack {
    max-width: 500px;
    margin: 30px auto;
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.value-stack-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-primary);
}
.value-item {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.value-item:last-of-type {
    border-bottom: none;
}
.value-item span:first-child {
    color: var(--color-text);
}
.value-item span:last-child {
    color: var(--color-primary);
    font-weight: 600;
}
.value-total {
    border-top: 2px solid var(--color-primary);
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
}
.value-total span:last-child {
    text-decoration: line-through;
    opacity: 0.7;
}
.value-today {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: center;
    margin-top: 20px;
}
.value-savings {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    margin-top: 10px;
}

/* --- FAQ Section --- */
.faq { background-color: var(--color-bg-medium); }
.faq-item {
    margin: 15px 0;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: white;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
.faq-item summary {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    padding: 20px;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
}
.faq-item summary::-webkit-details-marker {  
    display: none;  
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 28px;
    font-weight: 400;
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item .faq-answer {
    font-size: 17px;
    line-height: 1.7;
    padding: 0px 25px 25px 25px;
    color: #333;
}

/* --- About Section --- */
.about {
    padding: 0;  
    background-color: var(--color-bg-light);
    overflow: hidden;  
}
.about-content-fullwidth {  
    max-width: 100%;
    margin: 0 auto;  
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.about-image-full img {
    width: 100%;
    height: 100%;  
    object-fit: cover;  
    display: block;
}
.about-text-full {
    padding: 6%;  
    text-align: left;
    box-sizing: border-box;
}
.about-text-full h2 {
    text-align: left;
    margin-top: 0;
}
.about .signature {  
    font-size: 24px;  
    color: var(--color-primary);  
    font-weight: 500;  
    margin-top: 20px;  
}

/* --- Final CTA Section --- */
.final-cta {
    background-color: var(--color-bg-medium);
    padding: 80px 20px 140px;
}
.final-cta h2 { color: var(--color-text); }
.final-cta .price { font-size: 52px; font-weight: 700; margin: 10px 0; color: var(--color-text); }
.final-cta .price-note { font-size: 18px; margin-bottom: 40px; opacity: 0.9; font-weight: 500;}
.old-price {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.7;
}
.trust-box {
    margin: 40px auto 0;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 10px;
}
.trust-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}
.trust-text p {
    margin: 0;
    font-size: 13px;
}
.trust-logo img {
    max-width: 120px;
}

/* --- Footer --- */
.footer {
    padding: 15px 20px;
    background-color: #f4f7f6;
    text-align: center;
    border-top: 1px solid #e9e9e9;
}
.footer-links a {
    color: #555;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}
.footer-links a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
.footer .copyright {
    margin-top: 10px;
    font-size: 12px;
    color: #888;
}

/* Anpassungen für Mobilgeräte */
@media (max-width: 768px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }

    .hero .container {  
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }
    .hero-text, .hero h1 {
        text-align: center;
    }
     .urgency-box {
        margin: 25px auto;
    }
    .about-content-fullwidth {
        grid-template-columns: 1fr;
    }
    .about-text-full {
        padding: 8%;
        text-align: center;
    }
    .about-text-full h2 {
        text-align: center;
    }

    .hero .subline { font-size: 20px; }
    .journey-cards { grid-template-columns: 1fr; }
}


/* =================================================
  TEIL 2: STILE AUS DER 9€-VORLAGE (inline)
=================================================
*/

.hero .container {
    /* Diese Regel wird von der obigen .hero .container überschrieben, */
    /* aber wir behalten sie für Vollständigkeit. */
    /* max-width: 1100px; */ /* Außer Kraft gesetzt durch max-width: 850px von oben */
}
.hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-image-full {
    flex: 0 0 40%;
    max-width: 450px;
}
.hero-image-full img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.hero-text-right {
    flex: 1;
}
@media (max-width: 800px) {
    /* Dieser Media-Query wird mit dem obigen @media (max-width: 768px) kombiniert. */
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-text-right h1, .hero-text-right p {
        text-align: center;
    }
    .hero-image-full {
        margin-bottom: 30px;
        max-width: 350px;
        flex: 0 0 auto;
    }
}


/* =================================================
  TEIL 3: NEUE STILE FÜR DIE CHECKLISTE
=================================================
*/

/* Styling für das E-Mail-Formular (basiert auf deinem Screenshot) */
.email-form-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 40px;
    max-width: 550px;
    margin: 40px auto 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.email-form-box h3 {
    color: var(--color-text);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
}
.email-form-box input[type="email"] {
    width: 100%;
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    box-sizing: border-box; /* Wichtig für 100% Breite */
}
.email-form-box input[type="email"]::placeholder {
    color: #999;
}
.email-form-box .cta-button {
    width: 100%; /* Button über die volle Breite */
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
}

/* Styling für die "Kennst du das auch?"-Boxen (basiert auf Screenshot) */
.problem-box-grid {
    display: grid;
    gap: 20px;
    max-width: 750px;
    margin: 40px auto 0;
}
.problem-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--color-secondary); /* Grüne Linie wie bei journey-card */
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
/* Beweglicher Effekt beim Hovern */
.problem-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.problem-box .emoji {
    font-size: 36px;
    flex-shrink: 0;
}
.problem-box p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
    color: #333;
}

/* Styling für dein rundes "Über mich"-Bild */
.about-me-image-round {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    margin-bottom: 25px;
}
