/* =========================================================
   Gartenparadies Heek – Problem-Löser
   ========================================================= */

.problemloeser-page {
    background: #f7faf5;
    color: #263325;
}

.problemloeser-hero {
    min-height: 300px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.38) 45%,
            rgba(0, 0, 0, 0.12) 100%
        ),
        url('/assets/images/problemloeser-header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.problemloeser-hero-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 25px;
}

.problemloeser-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.problemloeser-hero h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.problemloeser-hero p {
    margin: 0;
    max-width: 780px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.problemloeser-content {
    width: 100%;
    max-width: 1180px;
    margin: 55px auto 72px;
    padding: 0 25px;
}

.problemloeser-back-wrap {
    margin-bottom: 32px;
}

.problemloeser-back-btn,
.problemloeser-small-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #ffffff;
    color: #2f6b3a;
    border: 2px solid #2f6b3a;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(16, 38, 23, 0.08);
    transition: all .2s ease;
    text-decoration: none;
}

.problemloeser-back-btn:hover,
.problemloeser-small-back-btn:hover {
    background: #2f6b3a;
    color: #ffffff;
    transform: translateY(-2px);
}

.problemloeser-notice {
    border-radius: 16px;
    padding: 15px 18px;
    margin-bottom: 24px;
    font-weight: 800;
}

.problemloeser-notice.success {
    background: #e8f7ea;
    color: #1f6b2d;
    border: 1px solid #bfe7c5;
}

.problemloeser-notice.error {
    background: #fff1f1;
    color: #9b1c1c;
    border: 1px solid #ffcaca;
}

.problemloeser-intro-box {
    background: #ffffff;
    border-left: 7px solid #2f6b3a;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 10px 28px rgba(16, 38, 23, 0.08);
    margin-bottom: 34px;
}

.problemloeser-intro-box h2 {
    margin: 0 0 12px;
    color: #2f6b3a;
    font-family: Georgia, serif;
    font-size: 30px;
}

.problemloeser-intro-box p {
    margin: 0;
    color: #657064;
    line-height: 1.75;
    font-size: 17px;
}

.problemloeser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problemloeser-card {
    background: #ffffff;
    border: 1px solid #dbe8d6;
    border-radius: 22px;
    padding: 26px;
    min-height: 150px;
    box-shadow: 0 10px 28px rgba(16, 38, 23, 0.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    text-decoration: none;
}

.problemloeser-card:hover {
    transform: translateY(-5px);
    border-color: #bfd8b9;
    box-shadow: 0 15px 34px rgba(16, 38, 23, 0.13);
}

.problemloeser-card h2,
.problemloeser-card h3 {
    margin: 0 0 10px;
    color: #2f6b3a;
    font-size: 23px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problemloeser-card p {
    margin: 0;
    color: #657064;
    line-height: 1.6;
}

.problemloeser-nav-actions {
    margin-bottom: 26px;
}

.problemloeser-detail-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 26px;
    align-items: start;
}

.problemloeser-info-card,
.problemloeser-form-card {
    background: #ffffff;
    border: 1px solid #dbe8d6;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(16, 38, 23, 0.08);
}

.problemloeser-info-card h2,
.problemloeser-form-card h2 {
    margin: 0 0 14px;
    color: #2f6b3a;
    font-family: Georgia, serif;
    font-size: 30px;
}

.problemloeser-info-card h3,
.problemloeser-form-card h3 {
    margin: 26px 0 10px;
    color: #102617;
    font-size: 20px;
}

.problemloeser-info-card p {
    color: #263325;
    line-height: 1.75;
}

.problemloeser-text-box {
    border-radius: 16px;
    padding: 18px;
    line-height: 1.65;
    white-space: pre-line;
}

.problemloeser-text-box.light {
    background: #f8fbf6;
    border: 1px solid #dbe8d6;
}

.problemloeser-text-box.green {
    background: #edf5eb;
    border: 1px solid #dbe8d6;
}

.problemloeser-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    padding: 14px 22px;
    background: #2f6b3a;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(16, 38, 23, 0.08);
    transition: all .2s ease;
    text-decoration: none;
}

.problemloeser-download-btn:hover {
    background: #102617;
    transform: translateY(-2px);
}

.problemloeser-calc-result {
    background: #fffdf5;
    border: 1px solid #eadfae;
    border-radius: 16px;
    padding: 18px;
    margin: 18px 0 24px;
    line-height: 1.7;
}

.problemloeser-calc-result strong {
    color: #463900;
}

.problemloeser-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.problemloeser-field {
    margin-bottom: 15px;
}

.problemloeser-field label,
.problemloeser-label-field {
    display: block;
    font-weight: 800;
    margin-bottom: 7px;
    color: #102617;
}

.problemloeser-field input,
.problemloeser-field textarea {
    width: 100%;
    border: 1px solid #cfdccd;
    border-radius: 12px;
    padding: 12px 13px;
    font-size: 16px;
    background: #ffffff;
}

.problemloeser-field textarea {
    min-height: 115px;
    resize: vertical;
}

.problemloeser-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #263325;
    line-height: 1.45;
}

.problemloeser-check input {
    width: auto;
    margin-top: 4px;
}

.problemloeser-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 14px 22px;
    background: #2f6b3a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s ease;
}

.problemloeser-btn:hover {
    background: #102617;
    transform: translateY(-1px);
}

.problemloeser-btn:disabled {
    background: #a8afa6;
    color: #ffffff;
    cursor: not-allowed;
    opacity: .75;
}

.problemloeser-btn:disabled:hover {
    background: #a8afa6;
    transform: none;
}

.problemloeser-muted {
    color: #657064;
    font-size: 14px;
    line-height: 1.5;
}

.problemloeser-pflicht-hinweis {
    color: #657064;
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0 18px;
}

.problemloeser-empty {
    background: #ffffff;
    border: 1px dashed #dbe8d6;
    border-radius: 18px;
    padding: 25px;
    color: #657064;
    box-shadow: 0 10px 28px rgba(16, 38, 23, 0.08);
}

@media (max-width: 950px) {
    .problemloeser-grid,
    .problemloeser-detail-grid,
    .problemloeser-form-row {
        grid-template-columns: 1fr;
    }

    .problemloeser-hero h1 {
        font-size: 40px;
    }

    .problemloeser-hero p {
        font-size: 19px;
    }
}

@media (max-width: 680px) {
    .problemloeser-hero {
        min-height: 260px;
    }

    .problemloeser-hero-inner {
        padding: 40px 18px;
    }

    .problemloeser-content {
        margin: 35px auto 54px;
        padding: 0 18px;
    }

    .problemloeser-back-wrap {
        margin-bottom: 30px;
    }

    .problemloeser-intro-box,
    .problemloeser-info-card,
    .problemloeser-form-card,
    .problemloeser-card {
        padding: 22px;
    }

    .problemloeser-btn,
    .problemloeser-download-btn,
    .problemloeser-back-btn,
    .problemloeser-small-back-btn {
        width: 100%;
    }
}