/* REGENERATIO LANDINGPAGE - HIGH CONVERSION DESIGN SYSTEM */

/* Verhindert Boxed-Layouts bei WPBakery – erzwingt echte 100% Breite */
.regen-section-fw {
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box;
}

/* Der Inhalts-Container hält alles exakt auf 1290px max (1200px Content + 2x 45px Padding) */
.regen-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 80px 45px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

/* Typografie */
.regen-h1 { 
    font-size: 68px; 
    line-height: 1.1; 
    margin-top: 0;
    margin-bottom: 20px; 
    font-weight: 700; 
    font-family: 'Roboto', sans-serif;
}
.regen-h2 { 
    font-size: 40px; 
    line-height: 1.2; 
    margin-top: 0; 
    margin-bottom: 15px; 
    font-weight: 700; 
    color: #1c1d1f; 
    font-family: 'Roboto', sans-serif;
}
.regen-h3 { 
    font-size: 28px; 
    line-height: 1.3; 
    margin-top: 0; 
    margin-bottom: 15px; 
    font-weight: 700; 
    color: #1c1d1f; 
    font-family: 'Roboto', sans-serif;
}

/* Orangefarbene Trennlinien */
.regen-divider { 
    height: 4px; 
    width: 48px; 
    background-color: #ff5122; 
    margin: 15px 0 25px 0; 
}
.regen-divider-center { 
    height: 4px; 
    width: 48px; 
    background-color: #ff5122; 
    margin: 15px auto 25px auto; 
}

/* Premium Buttons mit exakt 3px Radius & 1px Letter-Spacing */
.regen-btn { 
    display: inline-block; 
    background-color: #ff5122; 
    color: #ffffff !important; 
    padding: 12px 30px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 18px; 
    border: none; 
    cursor: pointer;
    text-align: center;
    border-radius: 3px; 
    letter-spacing: 1px; 
    transition: background-color 0.3s ease;
}
.regen-btn:hover { 
    background-color: #d13d11; 
}

.regen-btn-secondary { 
    background-color: #1c1d1f; 
}
.regen-btn-secondary:hover { 
    background-color: #333333; 
}

/* Flex-Grid System */
.regen-row { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 40px; 
}
.regen-col-50 { 
    flex: 1 1 calc(50% - 20px); 
    min-width: 300px; 
    box-sizing: border-box;
}
.regen-col-33 { 
    flex: 1 1 calc(33.333% - 27px); 
    min-width: 280px; 
    box-sizing: border-box;
}

/* CSS-Akkordeon für flüssiges Öffnen */
.regen-faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border: none;
    overflow: hidden;
}
.regen-faq-trigger {
    padding: 20px;
    font-weight: 700;
    font-size: 20px;
    color: #1c1d1f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.regen-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 20px;
}
.regen-faq-item[open] .regen-faq-content {
    max-height: 1000px;
    transition: max-height 0.4s ease-in-out;
    padding: 0 20px 20px 20px;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .regen-container { 
        padding: 40px 30px; 
    }
    .regen-h1 { font-size: 42px; }
    .regen-h2 { font-size: 32px; }
    .regen-h3 { font-size: 24px; }
    .regen-row { gap: 20px; }
    .regen-col-50, .regen-col-33 { flex: 1 1 100%; }
    
    /* Hebt das Verschieben der Hero-Vorteilskästen auf Mobilgeräten auf */
    .regen-hero-overlapper {
        margin-bottom: 0 !important;
    }
    .regen-overlap-target {
        padding-top: 40px !important;
    }
}