/* --------------------------- */
/* GLOBAL BRANDING */
/* --------------------------- */

:root {
    --primary: #2D6CCF;
    --primary-light: #E7F0FF;
    --accent: #00C896;
    --text-dark: #1A1F2C;
    --text-light: #4a5568;
    --bg-light: #F5F7FB;
    --border: #e2e8f0;
    --radius: 12px;
}

/* RESET */
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary);
}

.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --------------------------- */
/* HEADER */
/* --------------------------- */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav a {
    margin-left: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav a:hover {
    color: var(--primary);
}

@media (max-width: 700px) {
    .header {
        flex-direction: column;
        gap: 0.6rem;
    }

    .nav a {
        margin: 0 0.5rem;
    }
}

/* --------------------------- */
/* HERO SECTION */
/* --------------------------- */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-image img {
    width: 420px;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 300px;
    }
}

/* --------------------------- */
/* BENEFITS */
/* --------------------------- */

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card h3 {
    margin-bottom: 0.6rem;
}

/* --------------------------- */
/* WIZARD */
/* --------------------------- */

.wizard-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.wizard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wizard-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Progress bar */
.wizard-progress {
    width: 100%;
    background: var(--border);
    height: 8px;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.wizard-progress-bar {
    background: var(--primary);
    height: 8px;
    border-radius: var(--radius);
    transition: 0.25s;
}

/* Grid – identische Kartengrößen */
.wizard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Karten voll klickbar */
.wizard-card {
    cursor: pointer;
    display: block;
    height: 100%;
}

/* Input unsichtbar */
.wizard-card input {
    display: none;
}

/* Karten-Style */
.card-inner {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.25s;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Hover */
.wizard-card:hover .card-inner {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

/* Active */
.wizard-card input:checked + .card-inner {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 12px 28px rgba(45,108,207,0.15);
}

/* Icon-Styling */
.wizard-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

/* Wizard Button */
.wizard-button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 999px;
}



/* Mobile Styles */
@media (max-width: 500px) {
    .card-inner {
        padding: 1.4rem 1rem;
    }
    .wizard-icon {
        width: 48px;
        height: 48px;
    }
}

/* --------------------------- */
/* FOOTER */
/* --------------------------- */

.footer {
    background: white;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.footer-col a {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding: 1rem;
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .footer-inner {
        text-align: center;
    }
}
/* --------------------------- */
/* WIZARD STEP 1 – eigenes Layout */
/* --------------------------- */

.wizard-step1 {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.wizard-step1-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.wizard-step1-header h1 {
    margin: 0 0 0.5rem 0;
}

.wizard-step1-header p {
    margin: 0;
    color: var(--text-light);
}
/* Kleiner Hinweistext unter der Schritt-Überschrift */
.wizard-step-hint {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-light);
}
.wizard-step1-card-inner.selected {
    opacity: 0.85;
}
/* Progressbar */
.wizard-step1-progress {
    width: 100%;
    background: var(--border);
    height: 8px;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.wizard-step1-progress-bar {
    background: var(--primary);
    height: 8px;
    border-radius: var(--radius);
}

/* Grid für die Karten */
.wizard-step1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Karte voll klickbar */
.wizard-step1-card {
    display: block;
    cursor: pointer;
    height: 100%;
}

.wizard-step1-card input {
    display: none;
}

.wizard-step1-card-inner {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.25s;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

/* Icon */
.wizard-step1-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}

/* Hover- und Active-States */
.wizard-step1-card:hover .wizard-step1-card-inner {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.wizard-step1-card input:checked + .wizard-step1-card-inner {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 12px 28px rgba(45,108,207,0.15);
}

/* Button unten */
.wizard-step1-button {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

/* Mobile Tweaks */
@media (max-width: 500px) {
    .wizard-step1-card-inner {
        padding: 1.4rem 1rem;
    }

    .wizard-step1-icon {
        width: 48px;
        height: 48px;
    }
}

/* --------------------------- */
/* FINAL FIX FOR STEP 1 HEIGHT & ALIGNMENT */
/* --------------------------- */

.wizard-step1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch; /* <<< wichtig */
}

.wizard-step1-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wizard-step1-card-inner {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.25s;
    text-align: center;

    /* <<< das ist der Hauptfix */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.wizard-step1-card input:checked + .wizard-step1-card-inner {
    border-color: var(--primary);
    background: var(--primary-light);
}

.wizard-step1-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    flex-shrink: 0; /* <<< verhindert Zusammenquetschen */
}

/* --------------------------- */
/* WIZARD STEP 2 – modernes Kartenlayout */
/* --------------------------- */

.wizard-step2 {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.wizard-step2-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.wizard-step2-header p {
    color: var(--text-light);
}
.wizard-step2-card-inner.selected {
    opacity: 0.85;
}

.wizard-step2-progress {
    width: 100%;
    background: var(--border);
    height: 8px;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.wizard-step2-progress-bar {
    background: var(--primary);
    height: 8px;
    border-radius: var(--radius);
}

.wizard-step2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.wizard-step2-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.wizard-step2-card input {
    display: none;
}

.wizard-step2-card-inner {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.25s;
    text-align: center;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.wizard-step2-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}

.wizard-step2-card:hover .wizard-step2-card-inner {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.wizard-step2-card input:checked + .wizard-step2-card-inner {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 12px 28px rgba(45,108,207,0.15);
}

.wizard-step2-button {
    width: 100%;
    margin-top: 1rem;
}
/* --------------------------- */
/* WIZARD STEP 3 – Kartenlayout */
/* --------------------------- */

.wizard-step3 {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.wizard-step3-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.wizard-step3-header p {
    color: var(--text-light);
}
.wizard-step3-card-inner.selected {
    opacity: 0.85;
}

.wizard-step3-progress {
    width: 100%;
    background: var(--border);
    height: 8px;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.wizard-step3-progress-bar {
    background: var(--primary);
    height: 8px;
    border-radius: var(--radius);
}

.wizard-step3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.wizard-step3-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.wizard-step3-card input {
    display: none;
}

.wizard-step3-card-inner {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.25s;

    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wizard-step3-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}

.wizard-step3-card:hover .wizard-step3-card-inner {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.wizard-step3-card input:checked + .wizard-step3-card-inner {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 12px 28px rgba(45,108,207,0.15);
}

.wizard-step3-button {
    width: 100%;
    margin-top: 1rem;
}
/* --------------------------- */
/* WIZARD STEP 4 – Ergebnis-Seite */
/* --------------------------- */

.wizard-step4 {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.wizard-step4-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.wizard-step4-header p {
    margin: 0.3rem 0 0 0;
    color: var(--text-light);
}

.wizard-step4-progress {
    width: 100%;
    background: var(--border);
    height: 8px;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.wizard-step4-progress-bar {
    background: var(--primary);
    height: 8px;
    border-radius: var(--radius);
}

.wizard-step4-main {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.wizard-step4-highlight {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: left;
}

.wizard-step4-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}

.wizard-step4-text {
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.wizard-step4-urgency {
    margin-top: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.wizard-step4-side {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.wizard-step4-side ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.wizard-step4-side li {
    margin-bottom: 0.4rem;
    font-size: 0.98rem;
}

.wizard-step4-info {
    font-size: 0.95rem;
    color: var(--text-light);
}

.wizard-step4-cta {
    text-align: center;
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(45,108,207,0.15);
}

.wizard-step4-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    border-radius: 999px;
}

/* Mobile */
@media (max-width: 700px) {
    .wizard-step4-main {
        grid-template-columns: 1fr;
    }
}
/* --------------------------- */
/* WIZARD STEP 4 – PREMIUM ERGEBNIS */
/* --------------------------- */

.wizard-step4 {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.wizard-step4-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.wizard-step4-header h1 {
    margin-bottom: 0.4rem;
}

.wizard-step4-header p {
    margin: 0;
    color: var(--text-light);
}

.wizard-step4-progress {
    width: 100%;
    background: var(--border);
    height: 8px;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.wizard-step4-progress-bar {
    background: var(--primary);
    height: 8px;
    border-radius: var(--radius);
}

.wizard-step4-main {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Highlight-Box links */
.wizard-step4-highlight {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.wizard-step4-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.wizard-step4-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.8rem;
}

.wizard-step4-title {
    margin: 0 0 0.6rem 0;
}

.wizard-step4-text {
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.wizard-step4-urgency {
    margin-top: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* Wichtigkeits-Badge */
.wizard-step4-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.wizard-step4-badge-high {
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
}

.wizard-step4-badge-medium {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.wizard-step4-badge-low {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}

/* Steps-Liste */
.wizard-step4-steps h3 {
    margin-top: 1.4rem;
    margin-bottom: 0.6rem;
}

.wizard-step4-steps ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Seitenbox rechts */
.wizard-step4-side {
    background: #ffffff;
    padding: 1.6rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

.wizard-step4-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.wizard-step4-tag {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-light);
}

.wizard-step4-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.wizard-step4-list li {
    margin-bottom: 0.4rem;
}

.wizard-step4-info {
    color: var(--text-light);
}

/* CTA unten */
.wizard-step4-cta {
    text-align: center;
    background: var(--primary-light);
    padding: 1.6rem 1.2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(45,108,207,0.15);
}

.wizard-step4-button {
    display: inline-block;
    margin-top: 0.7rem;
    padding: 0.9rem 2.4rem;
    font-size: 1.1rem;
    border-radius: 999px;
}

.wizard-step4-cta-note {
    margin-top: 0.7rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Mobile */
@media (max-width: 700px) {
    .wizard-step4-main {
        grid-template-columns: 1fr;
    }
}
/* ============================= */
/* STEP 5 / FINISH – PREMIUM     */
/* ============================= */

.finish-wrapper {
    max-width: 760px;
    margin: 0 auto 4rem;
    padding: 2.5rem 1rem 3rem;
    text-align: center;
}

.finish-title {
    font-size: 2.3rem;
    margin: 0 0 0.4rem 0;
    color: var(--text-dark);
}

.finish-subtitle {
    max-width: 620px;
    margin: 0 auto 1.2rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.finish-urgency-hint {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(245,158,11,0.14);
    color: #b45309;
    font-size: 0.9rem;
    font-weight: 600;
}

.finish-card {
    margin-top: 1.8rem;
    background: #ffffff;
    border-radius: 18px;
    padding: 2.2rem 2.4rem;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.finish-card form {
    margin: 0;
}

.finish-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
    gap: 1.8rem;
}

/* Felder links */
.finish-field {
    margin-bottom: 0.9rem;
    text-align: left;
}

.finish-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.finish-field input,
.finish-field select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #f7f9fc;
    font-size: 1rem;
    box-sizing: border-box;
}

.finish-field input:focus,
.finish-field select:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(45,108,207,0.18);
}

/* Rechte Spalte */
.finish-right {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.finish-trustbox {
    background: #eef4ff;
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    font-size: 0.94rem;
    color: var(--text-light);
}

.finish-trustbox strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.finish-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.finish-check input {
    margin-top: 0.18rem;
}

.finish-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Button */
.finish-submit {
    margin-top: 1.6rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease,
                box-shadow 0.18s ease;
}

.finish-submit:hover {
    background: #1f57ad;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

/* Mobile */
@media (max-width: 720px) {
    .finish-card {
        padding: 1.6rem 1.4rem;
    }

    .finish-card-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .finish-wrapper {
        padding-top: 1.8rem;
    }

    .finish-title {
        font-size: 2rem;
    }
}

/* ============================= */
/*         HOMEPAGE PREMIUM      */
/* ============================= */

.home {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ---------- HERO ---------- */

.home-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    margin-bottom: 3.5rem;
    gap: 2rem;
}

.hero-left {
    flex: 1;
}

.home-hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.home-hero p {
    font-size: 1.17rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Button */
.hero-button {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: var(--primary);
    color: white;
    border-radius: 999px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: 0.2s;
}

.hero-button:hover {
    background: #1f57ad;
}

/* ⭐ Trust Rating */
.hero-trust {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.hero-trust span {
    color: var(--text-light);
}

/* Right Illustration */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
}

/* ---------- BENEFITS ---------- */

.home-benefits {
    margin-top: 3rem;
    text-align: left;
}

.home-benefits h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 1.8rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: left;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.benefit-card h3 {
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
}

/* ---------- TRUST LOGOS ---------- */

.trust-logos {
    text-align: center;
    margin: 3.5rem 0;
    color: var(--text-light);
}

.trust-logo-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.trust-logo {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ---------- CTA ---------- */

.home-cta {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    margin-bottom: 4rem;
}

.home-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.home-cta p {
    color: var(--text-light);
    margin-bottom: 1.4rem;
}

.home-cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: 999px;
    font-size: 1.15rem;
    font-weight: 600;
}

.home-cta-button:hover {
    background: #1f57ad;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    .home-hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-left, .hero-right {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .home {
        padding: 1rem;
    }
    .home-hero {
        padding: 2rem 1.4rem;
    }
}

/* ========================================= */
/* DANKE-SEITE PREMIUM */
/* ========================================= */

.thanks-wrapper {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem;
}

.thanks-title {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.thanks-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Main card */
.thanks-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-card h3 {
    margin-top: 0;
}

.thanks-steps {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.thanks-steps li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.thanks-info {
    background: var(--primary-light);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.thanks-personal-copy {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.98rem;
}

/* ========================================= */
/* DANKE-SEITE PREMIUM (Layout, ohne Widget)*/
/* ========================================= */

.thanks-wrapper {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem;
}

.thanks-title {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.thanks-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-card h3 {
    margin-top: 0;
}

.thanks-steps {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.thanks-steps li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.thanks-info {
    background: var(--primary-light);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.thanks-extra {
    margin-top: 2rem;
}

.thanks-extra h3 {
    margin-bottom: 1rem;
}

.extra-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.extra-card {
    display: block;
    background: white;
    padding: 1.4rem;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    color: var(--text-dark);
    transition: 0.2s;
}

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

/* ====================================== */
/* FLOATING WHATSAPP WIDGET PREMIUM       */
/* ====================================== */

.wa-floating-stack {
    position: fixed;
    bottom: 22px;
    right: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 9999;
    animation: waStackIn 0.6s ease-out 0.6s backwards;
}

/* Haupt-Widget mit Foto + Name + Button */
.wa-floating {
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-floating-photo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5ecf9;
    display: block;
}

.wa-floating-info {
    font-size: 14px;
    line-height: 1.2;
    margin-right: 4px;
    color: var(--text-dark);
}

.wa-floating-label {
    font-size: 12px;
    color: var(--text-light);
}

.wa-floating-info strong {
    display: block;
    margin: 1px 0;
}

.wa-floating-info span {
    font-size: 12px;
    color: #10b981;
}

/* Online-Status Punkt */
.wa-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    margin-right: 3px;
    animation: waPulse 1.6s infinite;
    vertical-align: middle;
}

/* runder WhatsApp Button */
.wa-floating-btn {
    background: #25D366;
    color: #ffffff !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.wa-floating-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.55);
    background: #1ebe5d;
}

/* Pop-Message Blase */
.wa-bubble {
    max-width: 280px;
    background: #111827;
    color: #f9fafb;
    padding: 10px 12px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
}

/* kleiner Pfeil */
.wa-bubble::after {
    content: "";
    position: absolute;
    right: 38px;
    bottom: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #111827 transparent transparent transparent;
}

/* sichtbar */
.wa-bubble.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* dauerhaft ausblenden */
.wa-bubble.is-hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

/* ANIMATIONS */
@keyframes waStackIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        transform: scale(1.4);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Mobile leicht höher setzen */
@media (max-width: 640px) {
    .wa-floating-stack {
        right: 12px;
        bottom: 16px;
    }
}
/* STEP 4 KOMPAKT-FEINSCHLIFF */
.wizard-step4 {
    max-width: 860px;
}

.wizard-step4-highlight,
.wizard-step4-side {
    padding: 1.5rem 1.6rem;
}

.wizard-step4-icon {
    width: 44px;
    height: 44px;
}

.wizard-step4-title {
    margin: 0 0 0.4rem 0;
}

.wizard-step4-text {
    margin-top: 0.4rem;
    margin-bottom: 0.8rem;
    font-size: 0.98rem;
}
/* --- Finish Progress Hinweis --- */
.finish-progress {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.finish-progress span {
    color: var(--primary);
    font-weight: 600;
}

/* --- kleiner Hinweis unter Submit --- */
.finish-hint {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- Danke-Timeline --- */
.thanks-timeline {
    margin-top: 1.2rem;
    padding-left: 1.1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}
.thanks-timeline li {
    margin-bottom: 0.35rem;
}
#micro-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--primary);
    z-index: 99999;
    transition: width 0.15s ease-out;
}
#exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.exit-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.exit-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.4rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
}
/* ============================= */
/* HERO – FINAL PREMIUM VERSION  */
/* ============================= */

.home-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    margin-bottom: 3.5rem;
    gap: 2.5rem;
}

.hero-left {
    flex: 1.2;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.55;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: var(--primary);
    color: white;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.hero-button:hover {
    background: #1f57ad;
    transform: translateY(-2px);
}

.hero-trustline {
    margin-top: 1.4rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.hero-trustline span {
    color: var(--primary);
    font-weight: 600;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 430px;
    border-radius: 16px;
}

/* Mobile Optimierung */
@media (max-width: 900px) {
    .home-hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-left {
        text-align: center;
    }
    .hero-img {
        max-width: 340px;
    }
}
/* ====================================== */
/* ULTRA TRUST ENGINE – Social Proof Box  */
/* ====================================== */

.ultra-social-proof {
    background: white;
    border-radius: 18px;
    padding: 1.8rem;
    margin: 2.5rem 0;
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
    position: relative;
    animation: uspFadeIn 0.7s ease-out;
}

@keyframes uspFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Close button */
.usp-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-light);
}
.usp-close:hover {
    color: var(--primary);
}

/* Live line */
.usp-live-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.usp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    animation: uspPulse 1.6s infinite;
}

@keyframes uspPulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.usp-dynamic-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.usp-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.usp-card {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.usp-card-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
}
/* Sticky Mini CTA */
.sticky-mini-cta {
    position: sticky;
    top: 0;
    z-index: 9998;
    background: var(--primary-light);
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    text-align: center;
    border-bottom: 1px solid rgba(45,108,207,0.25);
}

.sticky-mini-cta a {
    margin-left: 8px;
    font-weight: 600;
    color: var(--primary);
}

/* Startseiten-Progressbar */
.home-progressbar {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 999px;
    margin: 2rem 0 3rem 0;
    overflow: hidden;
}

.home-progress {
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 999px;
    transition: width 1.2s ease-out;
}

/* Empfehlungsbereich */
.rec-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    margin: 3rem 0;
}

.rec-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.rec-card {
    background: var(--bg-light);
    padding: 1.4rem;
    border-radius: 14px;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

/* Welcome Back Banner */
.welcome-back {
    background: #eef4ff;
    border-left: 4px solid var(--primary);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: wbFade 0.6s ease-out;
}
@keyframes wbFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Exit Popup Overlay */
#exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.3s ease-out;
}

/* Popup Box */
.exit-box {
    background: #fff;
    padding: 2rem;
    width: 92%;
    max-width: 420px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    animation: slideUp 0.35s ease-out;
    position: relative;
}

/* Close Button (X) */
.exit-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

/* CTA Button */
.exit-btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--primary);
    padding: 0.9rem 1.4rem;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}
.exit-btn:hover {
    background: #1e58b1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* ===================================== */
/* EXIT POPUP PREMIUM */
/* ===================================== */

#exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.35s ease forwards;
}

.exit-box {
    background: white;
    width: 90%;
    max-width: 420px;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: slideUp 0.35s ease forwards;
    position: relative;
}

/* Foto */
.exit-photo img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #e5ecf9;
}

/* Titel */
.exit-title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

/* Text */
.exit-text {
    color: var(--text-light);
    margin-bottom: 1.4rem;
}

/* Close X */
.exit-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
}

/* Primary Button */
.exit-btn-primary {
    display: block;
    margin: 0 auto 1rem auto;
    padding: 0.9rem 1.4rem;
    background: #25D366;
    color: white !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transition: 0.2s ease;
}
.exit-btn-primary:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* Secondary + Tertiary Buttons */
.exit-buttons-secondary {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.exit-btn-secondary {
    padding: 0.8rem;
    border-radius: 10px;
    background: var(--primary-light);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.exit-btn-tertiary {
    background: none;
    border: none;
    padding: 0.6rem;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* ========================================= */
/* PREMIUM EXIT / SCROLL POPUP               */
/* ========================================= */

.scroll-popup-box {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    padding: 2rem 1.6rem;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.22);
    position: relative;
    text-align: center;
}

/* Titel */
.scroll-popup-title {
    margin: 0 0 0.4rem 0;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

/* Text */
.scroll-popup-text {
    margin: 0 auto 1.5rem auto;
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.45;
    max-width: 90%;
}

/* Close X */
.scroll-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #6b7280;
}

/* Hauptbutton */
.scroll-popup-btn-primary {
    display: inline-block;
    width: 85%;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    background: #2563eb;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: background 0.2s ease;
}

.scroll-popup-btn-primary:hover {
    background: #1e4fc7;
}

/* Zweitbutton */
.scroll-popup-btn-secondary {
    display: inline-block;
    width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: #f3f4f6;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    color: #374151;
}

.scroll-popup-btn-secondary:hover {
    background: #e5e7eb;
}

/* ===================================== */
/* NAV: RECHTLICHES DROPDOWN             */
/* ===================================== */

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Container für Rechtliches rechtsbündig */
.nav-legal {
    margin-left: auto;              /* schiebt es nach rechts */
    position: relative;
    font-size: 0.9rem;
}

/* Button dezenter als Hauptlinks */
.nav-legal-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #6b7280;                 /* etwas heller */
    font: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-legal-toggle:hover {
    color: #111827;                 /* beim Hover dunkler */
}

/* Dropdown-Box */
.nav-legal-menu {
    position: absolute;
    right: 0;
    top: 110%;
    min-width: 180px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    padding: 0.5rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 9999;
}

/* Links im Dropdown */
.nav-legal-menu a {
    display: block;
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
}

.nav-legal-menu a:hover {
    background: #f3f4f6;
}

/* Hover- / Fokus-Logik (Desktop) */
.nav-legal:hover .nav-legal-menu,
.nav-legal:focus-within .nav-legal-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Mobile: etwas mehr Abstand oben */
@media (max-width: 640px) {
    .nav {
        gap: 1rem;
    }
    .nav-legal-menu {
        top: 130%;
    }
}
/* ===================================== */
/* RECHTLICHE SEITEN (Impressum etc.)    */
/* ===================================== */

.legal-wrapper {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 0 1.25rem;
}

.legal-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.legal-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

.legal-section {
    margin-bottom: 1.8rem;
}

.legal-section h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.legal-section p {
    margin: 0.2rem 0 0.6rem 0;
    line-height: 1.6;
    color: var(--text-dark);
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .legal-wrapper {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .legal-wrapper h1 {
        font-size: 1.6rem;
    }
}
.welcome-back {
    max-width: 900px;
    margin: 0 auto 1rem;
    padding: 0.75rem 1rem;
    background: #e0f2fe;
    border-radius: 999px;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.welcome-back-sub {
    font-size: 0.85rem;
    color: #1f2933;
}
.ultra-social-proof.usp-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ultra-social-proof.usp-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
/* STICKY CTA NUR AUF MOBILE */
.sticky-cta-mobile {
    display: none; /* Desktop: versteckt */
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 9999;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        text-align: center;
    }
}
/* Honeypot-Feld verstecken */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Mikro-Trust direkt unter dem Button */
.finish-micro-trust {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #6b7280; /* dezentes Grau */
    text-align: center;
}
/* Honeypot-Feld verstecken */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Fortschrittsanzeige Finish-Step */
.finish-progress {
    margin: 1rem 0 1.5rem;
}

.finish-progress-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.finish-progress-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.finish-progress-fill {
    width: 90%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #2D6CCF, #00C896);
}

/* Mikro-Trust unter dem Button */
.finish-micro-trust {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #6b7280;
    text-align: center;
}
.ds-badge {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    max-width: 380px;
}

.ds-badge-icon {
    font-size: 0.9rem;
}


/* --- 2) STICKY CTA FIX (verhindert Überlappung) --- */
@media (max-width: 768px) {
    body {
        padding-bottom: 95px; /* Platz für CTA */
    }
}

/* --- 4) GRIDS KORREKT EINSPALTIG --- */
@media (max-width: 600px) {

    .benefit-grid,
    .rec-grid,
    .usp-grid,
    .extra-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
    }
}

/* --- 5) HEADER FIX (Abstände + Wrap) --- */
@media (max-width: 640px) {
    .header {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem !important;
    }
}

/* --- 6) TEXTE GLOBAL ETWAS KLEINER --- */
@media (max-width: 600px) {
    h1, h2 {
        font-size: 1.45rem !important;
    }
    p {
        font-size: 1rem;
    }
}

/* --- 7) WELCOME BACK – kompakter --- */
@media (max-width: 600px) {
    .welcome-back {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}

/* --- 8) CTA BUTTONS BREITER AUF MOBILE --- */
@media (max-width: 600px) {
    .hero-button,
    .home-cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem !important;
        font-size: 1.1rem;
    }
}
/* ========================================================= */
/*     VERISA – COMPLETE MOBILE FIX PACKAGE (FINAL)          */
/* ========================================================= */
@media (max-width: 768px) {

    /* ------------------------------ */
    /* HEADER FIX – Logo links, Menü rechts */
    /* ------------------------------ */
    .header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.8rem 1rem !important;
        text-align: left !important;
    }

    .logo {
        margin-right: auto;
    }

    .nav {
        display: flex !important;
        flex-wrap: wrap;
        gap: 0.8rem !important;
        justify-content: flex-end;
    }

    .nav a {
        font-size: 0.9rem !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .nav-legal {
        margin-left: 0 !important;
    }


    /* ------------------------------ */
    /* NAV FIX – Schrift kleiner auf sehr kleinen Screens */
    /* ------------------------------ */
    @media (max-width: 420px) {
        .nav a {
            font-size: 0.85rem !important;
        }
    }


    /* ------------------------------ */
    /* HERO CLEANUP – keine Doppel-CTAs */
    /* ------------------------------ */

    /* Hero-Button auf Mobile entfernen */
    .home-hero .hero-button {
        display: none !important;
    }

    /* Typografie anpassen */
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }

    .hero-sub {
        font-size: 1rem !important;
        line-height: 1.45;
    }

    .hero-img {
        max-width: 240px !important;
    }

    .home-hero {
        padding: 1.8rem 1.2rem !important;
        text-align: center !important;
        flex-direction: column !important;
        gap: 1.4rem !important;
    }


    /* ------------------------------ */
    /* STICKY CTA FIX + Body Padding */
    /* ------------------------------ */
    .sticky-cta-mobile {
        display: block !important;
        bottom: 16px !important;
        width: 90% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 9999 !important;
        text-align: center !important;
    }

    /* Platz unten schaffen */
    body {
        padding-bottom: 120px !important;
    }

    /* ------------------------------ */
    /* GRID FIXES – alles einspaltig */
    /* ------------------------------ */
    .benefit-grid,
    .rec-grid,
    .usp-grid,
    .extra-grid,
    .wizard-step1-grid,
    .wizard-step2-grid,
    .wizard-step3-grid,
    .wizard-step4-main,
    .funnel-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }


    /* ------------------------------ */
    /* TEXT GLOBAL TUNING */
    /* ------------------------------ */
    h1, h2 {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
    }

    p {
        font-size: 1rem !important;
    }


    /* ------------------------------ */
    /* WELCOME BACK kompakter */
    /* ------------------------------ */
    .welcome-back {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
    }

}

/* -------------------------------------------- */
/* 2) MOBILE NAV */
/* -------------------------------------------- */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 99999;
}
.mobile-nav.open {
    display: flex;
}
.mobile-nav-inner {
    background: #fff;
    width: 80%;
    height: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.mobile-nav-inner a {
    font-size: 1.1rem;
    color: #111;
}
.mobile-nav-section {
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #6b7280;
}

/* -------------------------------------------- */
/* 3) COOKIE-BANNER – CLEAN */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 420px;
    background: #1e293b;
    color: white;
    padding: 16px 18px;
    border-radius: 14px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 999900;
}
.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.cookie-accept,
.cookie-decline {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.cookie-accept {
    background: #38bdf8;
    color: #fff;
}
.cookie-decline {
    background: #334155;
    color: #fff;
}

/* -------------------------------------------- */
/* 4) SINGLE MOBILE WIDGET (statt 5 Widgets) */
.mobile-widget {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    padding: 0.9rem 1.4rem;
    color: white;
    border-radius: 999px;
    font-size: 0.95rem;
    display: none;
    z-index: 99998;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* -------------------------------------------- */
/* 5) STICKY CTA – nur Startseite */
body {
    padding-bottom: 0 !important;
}
body.home .sticky-cta-mobile {
    display: block !important;
}
body.home.sticky-padding {
    padding-bottom: 120px !important;
}

.sticky-cta-mobile {
    bottom: 16px !important;
    width: 90% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999 !important;
}

/* -------------------------------------------- */
/* Footer fix */
.footer {
    margin-bottom: 0 !important;
    padding-bottom: 2rem !important;
}
/* FIX: Abstand vor der CTA-Kachel (Mobile-Überlappung) */
.home-cta {
    margin-top: 40px !important;
}

@media (max-width: 768px) {
    .home-cta {
        margin-top: 60px !important;
    }
}
@media (max-width: 768px) {
    .benefit-card {
        margin-bottom: 20px !important;
    }
}
body.sticky-padding {
    padding-bottom: 120px !important;
}

/* --------------------------------------------------------- */
/* GLOBAL BRANDING                                           */
/* --------------------------------------------------------- */

:root {
--primary: #2D6CCF;
--primary-light: #E7F0FF;
--accent: #00C896;
--text-dark: #1A1F2C;
--text-light: #4a5568;
--bg-light: #F5F7FB;
--border: #e2e8f0;
--radius: 12px;
}

body {
font-family: 'Inter', sans-serif;
background: var(--bg-light);
margin: 0;
padding: 0;
color: var(--text-dark);
line-height: 1.6;
}

a {
text-decoration: none;
color: var(--primary);
}

/* --------------------------------------------------------- */
/* HEADER + MOBILE NAV                                      */
/* --------------------------------------------------------- */

.header {
background: white;
border-bottom: 1px solid var(--border);
padding: 1rem 2rem;
display: flex;
align-items: center;
justify-content: space-between;
position: sticky;
top: 0;
z-index: 900;
}

.logo img {
height: 40px;
width: auto;
}

.desktop-nav {
display: flex;
gap: 1.5rem;
}

.desktop-nav a {
font-weight: 600;
color: var(--text-dark);
}
.desktop-nav a:hover {
color: var(--primary);
}

/* Burger */
.burger {
display: none;
flex-direction: column;
gap: 5px;
border: none;
background: none;
cursor: pointer;
}
.burger span {
width: 26px;
height: 3px;
background: #111;
border-radius: 3px;
}

/* Mobile Nav */
.mobile-nav {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.45);
display: none;
z-index: 9999;
}
.mobile-nav.open {
display: block;
}
.mobile-nav-inner {
width: 80%;
height: 100%;
background: #fff;
padding: 2rem 1.5rem;
animation: slideIn .25s ease;
box-shadow: 3px 0 15px rgba(0,0,0,0.15);
}
.mobile-close {
background: none;
border: none;
font-size: 2rem;
margin-bottom: 1.2rem;
}
.mobile-nav-inner a {
display: block;
padding: 12px 0;
font-size: 1.2rem;
color: #111;
}

@keyframes slideIn {
from { transform: translateX(-100%); }
to   { transform: translateX(0); }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
.desktop-nav { display: none; }
.burger { display: flex; }

```
.header {
    padding: 0.7rem 1rem;
}
```

}

/* --------------------------------------------------------- */
/* STICKY CTA (nur Startseite)                               */
/* --------------------------------------------------------- */

.sticky-cta-mobile {
display: none;
}

@media (max-width: 768px) {
body.home.sticky-padding {
padding-bottom: 120px !important;
}

```
.sticky-cta-mobile {
    display: block;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 1rem;
    background: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
```

}



/* --------------------------------------------------------- */
/* SECTIONS (Benefits + Recommendation + CTA)                 */
/* --------------------------------------------------------- */

.benefit-grid,
.rec-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
gap: 1.5rem;
}

.benefit-card,
.rec-card {
background: white;
padding: 1.8rem;
border-radius: 14px;
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
.benefit-grid, .rec-grid {
grid-template-columns: 1fr;
}
}

.home-cta {
background: white;
padding: 2.5rem;
border-radius: 16px;
margin-top: 3rem;
box-shadow: 0 10px 25px rgba(0,0,0,0.06);
text-align: center;
}

@media (max-width: 768px) {
.home-cta { margin-top: 60px; }
}

/* --------------------------------------------------------- */
/* FOOTER                                                     */
/* --------------------------------------------------------- */

.footer {
background: white;
border-top: 1px solid var(--border);
padding-top: 2rem;
padding-bottom: 2rem;
margin-top: 4rem;
}

.footer-inner {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
gap: 2rem;
}

/* --------------------------------------------------------- */
/* WHATSAPP PRO — Desktop & Mobile (Laura Weber)            */
/* --------------------------------------------------------- */

.wa-pro {
    position: fixed;
    bottom: 110px;         /* Desktop Standard */
    right: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 99999999 !important;
    pointer-events: auto;
}

/* Chat Button */
.wa-pro-btn {
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    height: 52px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    animation: waFloat 3s ease-in-out infinite;
}

.wa-pro-btn img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* Intro Bubble */
.wa-pro-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    max-width: 210px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;

    /* FIX: Position muss absolut relativ zur .wa-pro Box sein */
    position: absolute;
    bottom: 70px;          /* Desktop Abstand nach oben */
    right: 0;

    animation: fadeIn 0.8s ease-out forwards;
}

/* Floating Animation */
@keyframes waFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------- */
/* MOBILE FIXES — WhatsApp über CTA, Bubble höher           */
/* --------------------------------------------------------- */
@media (max-width: 768px) {

    .wa-pro {
        bottom: 105px !important;
        right: 16px !important;
    }

    .wa-pro-btn {
        height: 45px;
        font-size: 13px;
        padding: 6px 14px;
        border-radius: 40px !important;
    }

    .wa-pro-btn img {
        width: 24px;
        height: 24px;
    }

    /* FIX: Bubble jetzt korrekt oberhalb */
    .wa-pro-bubble {
        max-width: 230px;
        font-size: 13px;
        bottom: 60px !important;   /* sauber über dem Button */
    }

    /* Platz für CTA */
    body.sticky-padding {
        padding-bottom: 120px !important;
    }

    /* Alte WA Bubble deaktivieren */
    #waBubble {
        display: none !important;
    }
}

/* --------------------------------------------------------- */
/* Entfernt ALLE externen Chat-Widgets komplett             */
/* --------------------------------------------------------- */

iframe[src*="brevo"],
iframe[src*="tidio"],
iframe[src*="crisp"],
iframe[src*="userlike"],
iframe[src*="elfsight"],
div[id*="chat"],
div[class*="chat"],
iframe[title*="chat"],
widgetbot,
#chat-widget,
#launcher,
#hubspot-messages-iframe-container {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ---------------------------------------- */
/* MOBILE NAV FIX (Öffnen / Schließen)      */
/* ---------------------------------------- */

.mobile-nav {
    position: fixed;
    inset: 0;
    display: none;
    opacity: 0;
    background: rgba(0,0,0,0.55);
    transition: opacity .25s ease;
    z-index: 99990; /* unter CTA */
}

.mobile-nav.open {
    display: block;
    opacity: 1;
}

.mobile-nav-inner {
    background: #fff;
    width: 82%;
    max-width: 330px;
    height: 100%;
    padding: 2rem 1.6rem;
    transform: translateX(-100%);
    transition: transform .28s ease;
}

.mobile-nav.open .mobile-nav-inner {
    transform: translateX(0);
}

/* Close Button */
.mobile-nav-close {
    font-size: 2.4rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

/* Wenn Menü offen → Seite darf NICHT scrollen */
body.menu-open {
    overflow: hidden;
}

/* Desktop-Navigation ausblenden, wenn Menü offen */
body.menu-open .nav {
    opacity: 0;
    pointer-events: none;
}

/* WhatsApp Floating — auf Mobile komplett ausblenden */
@media (max-width: 768px) {
    .wa-floating-stack {
        display: none !important;
    }
}

/* Sticky CTA über EVERYTHING */
.sticky-cta-mobile {
    z-index: 99999 !important;
}
/* === MOBILE: Desktop-Navigation komplett ausblenden === */
@media (max-width: 768px) {
    .nav {
        display: none !important;
    }
}
/* === WhatsApp auf Mobile komplett ausblenden === */
@media (max-width: 768px) {
    .wa-floating-stack,
    .wa-pro {
        display: none !important;
    }
}
.mobile-wa-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    padding: 12px 0;
}
body.menu-open {
    overflow: hidden;
}

body.menu-open .header .nav {
    display: none !important;
}
/* ========================================= */
/* MOBILE WHATSAPP – nur kleines Icon unten */
/* ========================================= */

@media (max-width: 768px) {

    /* Große Desktop-Version ausblenden */
    .wa-floating-stack {
        display: none !important;
    }

    /* Kleine runde Mobile-Version */
    #waMobileIcon {
        position: fixed;
        right: 16px;
        bottom: 90px; /* oberhalb der Sticky CTA */
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #25D366;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 26px;
        z-index: 5000; 
        box-shadow: 0 5px 12px rgba(0,0,0,0.25);
    }
}
.sticky-cta-mobile {
    z-index: 99999 !important;
}
#waMobileIcon {
    z-index: 5000; /* darunter */
}
@media (max-width: 768px) {
    #waMobileIcon {
        bottom: 95px !important;
    }
}
body {
    padding-bottom: 95px;
}

@media (max-width:768px) {
    body {
        padding-bottom: 120px !important;
    }
}

body.sticky-padding {
    padding-bottom: 120px !important;
}
/* Nur Startseite + CTA aktiv */
body.home.sticky-padding {
    padding-bottom: 120px !important;
}

/* Alle anderen Seiten → KEIN Padding */
body:not(.home) {
    padding-bottom: 0 !important;
}
/* Nur Startseite + CTA aktiv */
body.home.sticky-padding {
    padding-bottom: 120px !important;
}

/* Alle anderen Seiten → KEIN Padding */
body:not(.home) {
    padding-bottom: 0 !important;
}
/* DESKTOP — altes WhatsApp Widget aktiv */
.wa-pro {
    display: flex;
}

/* MOBILE — altes Widget komplett aus */
@media (max-width: 768px) {
    .wa-pro {
        display: none !important;
    }
}

/* MOBILE — nur kleines Icon */
#waMobileIcon {
    display: none; /* Desktop verstecken */
}

@media (max-width: 768px) {
    #waMobileIcon {
        display: flex !important;
        position: fixed;
        right: 16px;
        bottom: 95px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #25D366;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 26px;
        z-index: 99990;
        box-shadow: 0 5px 12px rgba(0,0,0,0.25);
    }
}
/* MOBILE + TABLET – großes Widget aus */
@media (max-width: 1024px) {
    .wa-pro {
        display: none !important;
    }
}
/* Desktop: Icon aus */
#waMobileIcon {
    display: none;
}
@media (max-width: 1024px) {
    #waMobileIcon {
        display: flex !important;
        position: fixed;
        right: 18px;
        bottom: 95px; /* bleibt über CTA */
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #25D366;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 28px;
        z-index: 99990;
        box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    }
}
/* iPad Optimierung */
@media (min-width: 768px) and (max-width: 1024px) {
    #waMobileIcon {
        width: 46px;
        height: 46px;
        font-size: 24px;
        bottom: 85px;
        right: 20px;
    }
}
@media (max-width: 380px) {
    #waMobileIcon {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 90px;
        right: 14px;
    }
}
/* MOBILE LOGO FIX — größer & besser sichtbar */
@media (max-width: 768px) {
    .logo img {
        height: 58px !important;   /* vorher 40px → jetzt deutlich größer */
        width: auto !important;
    }
}








