/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

.wasserschaden-page {
    background: #ffffff;
    color: #1d2433;
    overflow-x: clip;
}

.service-shell,
.wasserschaden-shell {
    width: min(1360px, calc(100% - 120px));
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .service-shell,
    .wasserschaden-shell {
        width: calc(100% - 64px);
    }
}

@media (max-width: 640px) {
    .service-shell,
    .wasserschaden-shell {
        width: calc(100% - 32px);
    }
}

/* =========================================================
   HERO
========================================================= */

.wasserschaden-hero {
    position: relative;
    width: 100%;
    min-height: 860px;
    padding: 0;
    overflow: hidden;
    background: #071734;
}

.wasserschaden-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7, 23, 52, 0.88) 0%, rgba(7, 23, 52, 0.70) 30%, rgba(7, 23, 52, 0.38) 58%, rgba(7, 23, 52, 0.16) 100%),
        linear-gradient(180deg, rgba(7, 23, 52, 0.08) 0%, rgba(7, 23, 52, 0.18) 100%);
}

.wasserschaden-hero::after {
    display: none;
}

.wasserschaden-hero .wasserschaden-shell {
    position: relative;
    z-index: 4;
    min-height: 860px;
}

.wasserschaden-hero-grid {
    position: relative;
    min-height: 860px;
    display: flex;
    align-items: flex-end;
}

.wasserschaden-hero-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    z-index: 1;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.wasserschaden-hero-image img,
.wasserschaden-hero-image video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 860px;
    object-fit: cover;
    object-position: center center;
    transform: none;
}

.wasserschaden-hero-image video {
    pointer-events: none;
}

.wasserschaden-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(13, 20, 34, 0.70) 0%, rgba(13, 20, 34, 0.52) 34%, rgba(13, 20, 34, 0.24) 62%, rgba(13, 20, 34, 0.10) 100%),
        linear-gradient(180deg, rgba(13, 20, 34, 0.10) 0%, rgba(13, 20, 34, 0.06) 100%);
}

.wasserschaden-hero__inner {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 820px;
    padding: 220px 0 20px;
}

.wasserschaden-hero .subheadline {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.26);
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(18, 32, 60, 0.10);
}

.wasserschaden-hero h1 {
    margin: 0 0 18px;
    max-width: 13ch;
    font-size: clamp(42px, 4.2vw, 66px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-wrap: balance;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.wasserschaden-hero .intro {
    margin: 0;
    max-width: 800px;
    font-size: 17px;
    line-height: 1.72;
    color: rgba(255,255,255,0.93);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.wasserschaden-hero .intro strong {
    color: #ffffff;
    font-weight: 800;
}

.wasserschaden-hero .region {
    margin-top: 20px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.88);
}

.wasserschaden-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.wasserschaden-hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(18, 32, 60, 0.10);
}

.wasserschaden-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* =========================================================
   BUTTONS
========================================================= */

.wasserschaden-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.wasserschaden-page .btn:hover {
    transform: translateY(-1px);
}

.wasserschaden-page .btn-primary {
    background: #2f7cff;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(47, 124, 255, 0.20);
}

.wasserschaden-page .btn-primary:hover {
    box-shadow: 0 16px 30px rgba(47, 124, 255, 0.24);
}

.wasserschaden-page .btn-secondary {
    background: #ffffff;
    color: #1d2433;
    border: 1px solid #dfe6f2;
    box-shadow: 0 8px 20px rgba(18, 32, 60, 0.05);
}

.wasserschaden-hero .btn-primary {
    box-shadow: 0 16px 30px rgba(47, 124, 255, 0.26);
}

.wasserschaden-hero .btn-secondary {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.9);
}

.wasserschaden-page .btn-secondary:hover {
    border-color: #2f7cff;
    background: #f4f8ff;
}

/* =========================================================
   TOC / INHALTSVERZEICHNIS
========================================================= */

.service-overview-nav {
    position: relative;
    margin-top: 0;
    padding: 56px 0 24px;
    z-index: 5;
}

.service-overview-nav__box {
    position: relative;
    padding: 26px 26px 24px;
    border: 1px solid rgba(223, 230, 242, 0.96);
    border-radius: 28px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 28px 64px rgba(18, 32, 60, 0.12);
    overflow: hidden;
}

.service-overview-nav__box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(47,124,255,0.10), transparent 28%),
        linear-gradient(180deg, rgba(248,251,255,0.88) 0%, rgba(255,255,255,0.96) 100%);
}

.service-overview-nav__head {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin-bottom: 20px;
}

.service-overview-nav__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2f7cff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(47,124,255,0.06);
}

.service-overview-nav__head h2 {
    margin: 0 0 12px;
    max-width: 11ch;
    font-size: clamp(30px, 3.2vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #1d2433;
    text-wrap: balance;
}

.service-overview-nav__head p {
    margin: 0;
    max-width: 980px;
    font-size: 16px;
    line-height: 1.65;
    color: #5b6576;
}

.service-overview-nav__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-overview-nav__link {
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 16px 18px;
    border: 1px solid #dfe6f2;
    border-radius: 20px;
    background: #ffffff;
    color: #1d2433;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 10px 24px rgba(18, 32, 60, 0.05);
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.service-overview-nav__link:hover {
    transform: translateY(-2px);
    border-color: #c8d9fb;
    background: #f8fbff;
    box-shadow: 0 16px 28px rgba(18, 32, 60, 0.08);
}

.service-overview-nav__link::before {
    content: "↘";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 12px;
    border-radius: 50%;
    background: #edf4ff;
    color: #2f7cff;
    font-size: 13px;
    font-weight: 800;
}

/* =========================================================
   CONTENT
========================================================= */

.wasserschaden-content {
    padding: 96px 0 110px;
}

.wasserschaden-section {
    width: 100%;
    max-width: 100%;
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid #e8eef7;
}

.wasserschaden-section:last-child {
    margin-bottom: 0;
}

.wasserschaden-section--wide {
    border-bottom: 0;
    padding-bottom: 6px;
}

.wasserschaden-section h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #1d2433;
    max-width: 24ch;
    text-wrap: balance;
}

.wasserschaden-section h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.28;
    color: #1d2433;
}

.wasserschaden-section p {
    margin: 0 0 18px;
    max-width: 840px;
    color: #586375;
    font-size: 17px;
    line-height: 1.78;
}

.wasserschaden-section ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.wasserschaden-section li {
    position: relative;
    margin: 0 0 12px;
    padding: 14px 16px 14px 52px;
    border: 1px solid #dfe6f2;
    border-radius: 18px;
    background: #f8fbff;
    color: #1d2433;
    font-size: 16px;
    line-height: 1.65;
    box-shadow: 0 8px 20px rgba(18, 32, 60, 0.04);
}

.wasserschaden-section li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #edf4ff;
    color: #2f7cff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.wasserschaden-highlight-box {
    padding: 34px 34px;
    border: 1px solid #dfe6f2;
    border-radius: 28px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    box-shadow: 0 18px 38px rgba(18, 32, 60, 0.06);
}

.wasserschaden-highlight-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2f7cff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =========================================================
   MEDIA BLOCKS
========================================================= */

.wasserschaden-media-block {
    border-bottom: 0;
    padding-bottom: 8px;
}

.wasserschaden-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 34px;
    align-items: center;
}

.wasserschaden-media-grid--reverse {
    grid-template-columns: 520px minmax(0, 1fr);
}

.wasserschaden-media-grid--reverse .wasserschaden-media-text {
    order: 2;
}

.wasserschaden-media-grid--reverse .wasserschaden-media-image {
    order: 1;
}

.wasserschaden-media-text,
.wasserschaden-media-image {
    min-width: 0;
}

.wasserschaden-media-image img,
.wasserschaden-media-image video {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px;
    border: 1px solid #dfe6f2;
    box-shadow: 0 18px 38px rgba(18, 32, 60, 0.08);
    background: #eef4fb;
}

/* =========================================================
   STANDARD CARD GRIDS
========================================================= */

.wasserschaden-list-grid,
.wasserschaden-error-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.wasserschaden-list-card,
.wasserschaden-error-card {
    padding: 24px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.06);
    min-width: 0;
}

.wasserschaden-error-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.wasserschaden-list-card .wasserschaden-list {
    margin-top: 16px;
}

.wasserschaden-error-card p,
.wasserschaden-list-card p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
}

/* =========================================================
   EMERGENCY GRID
========================================================= */

.wasserschaden-emergency-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.wasserschaden-emergency-card {
    position: relative;
    padding: 26px 22px 22px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.06);
    overflow: hidden;
}

.wasserschaden-emergency-card::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #2f7cff 0%, #8eb8ff 100%);
}

.wasserschaden-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: #edf4ff;
    color: #2f7cff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: inset 0 0 0 1px rgba(47,124,255,0.08);
}

.wasserschaden-emergency-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.24;
}

.wasserschaden-emergency-card p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
    color: #5b6576;
}

/* =========================================================
   PILLARS GRID
========================================================= */

.wasserschaden-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.wasserschaden-pillar-card {
    position: relative;
    padding: 28px 24px 24px;
    border: 1px solid #dfe6f2;
    border-radius: 26px;
    background: radial-gradient(circle at top right, rgba(47,124,255,0.08), transparent 34%), #ffffff;
    box-shadow: 0 16px 34px rgba(18, 32, 60, 0.06);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    min-width: 0;
}

.wasserschaden-pillar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(18, 32, 60, 0.09);
}

.wasserschaden-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #edf4ff;
    font-size: 24px;
    box-shadow: inset 0 0 0 1px rgba(47,124,255,0.08);
}

.wasserschaden-pillar-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.24;
}

.wasserschaden-pillar-card p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   METHOD GRID
========================================================= */

.wasserschaden-method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.wasserschaden-method-card {
    position: relative;
    padding: 24px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.05);
    min-height: 100%;
    min-width: 0;
}

.wasserschaden-method-card::before {
    content: "";
    display: block;
    width: 52px;
    height: 6px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f7cff 0%, #8ab6ff 100%);
}

.wasserschaden-method-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.24;
}

.wasserschaden-method-card p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
}

/* =========================================================
   COMPARISON
========================================================= */

.wasserschaden-comparison {
    margin-top: 26px;
    border: 1px solid #dfe6f2;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(18, 32, 60, 0.06);
}

.wasserschaden-comparison-row {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1.1fr;
    gap: 0;
}

.wasserschaden-comparison-row:not(:last-child) {
    border-bottom: 1px solid #e8eef7;
}

.wasserschaden-comparison-head {
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
}

.wasserschaden-comparison-col {
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #4f596b;
}

.wasserschaden-comparison-head .wasserschaden-comparison-col {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2f7cff;
}

.wasserschaden-comparison-row .wasserschaden-comparison-col:not(:last-child) {
    border-right: 1px solid #e8eef7;
}

/* =========================================================
   IMAGE GRID
========================================================= */

.wasserschaden-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.wasserschaden-image-item {
    margin: 0;
    border: 1px solid #dfe6f2;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.06);
    overflow: hidden;
}

.wasserschaden-image-item img,
.wasserschaden-image-item video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center center;
    background: #eef4fb;
}

.wasserschaden-image-item figcaption {
    padding: 16px 18px 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #5b6576;
}

/* =========================================================
   TECH GRID
========================================================= */

.wasserschaden-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.wasserschaden-tech-card {
    position: relative;
    padding: 24px 24px 24px 26px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.06);
    overflow: hidden;
    min-width: 0;
}

.wasserschaden-tech-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, #2f7cff 0%, #9ac0ff 100%);
}

.wasserschaden-tech-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.24;
}

.wasserschaden-tech-card p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
}

/* =========================================================
   PROCESS DIAGRAM
========================================================= */

.wasserschaden-process-diagram {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid #dfe6f2;
    border-radius: 28px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    box-shadow: 0 18px 38px rgba(18, 32, 60, 0.06);
}

.wasserschaden-process-step {
    flex: 1 1 220px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border: 1px solid #dfe6f2;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(18, 32, 60, 0.04);
    text-align: center;
}

.wasserschaden-process-step span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    color: #1d2433;
}

.wasserschaden-process-arrow {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #2f7cff;
    font-size: 22px;
    font-weight: 800;
}

/* =========================================================
   TRUST SECTION
========================================================= */

.wasserschaden-trust-section {
    border-bottom: 0;
    padding-bottom: 6px;
    margin-bottom: 54px;
}

.wasserschaden-trust-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 640px;
    gap: 0;
    align-items: stretch;
    padding: 42px 42px 0 42px;
    border: 1px solid #dfe6f2;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(47,124,255,0.07), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    box-shadow: 0 22px 46px rgba(18, 32, 60, 0.07);
    overflow: hidden;
}

.wasserschaden-trust-content {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 0 40px 42px 0;
}

.wasserschaden-trust-content h2 {
    margin: 0 0 30px;
    font-size: clamp(32px, 3vw, 50px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #1d2433;
    max-width: 16ch;
    text-wrap: balance;
}

.wasserschaden-trust-content p {
    margin: 0 0 18px;
    max-width: 760px;
    color: #586375;
    font-size: 17px;
    line-height: 1.82;
}

.wasserschaden-trust-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-width: 0;
    min-height: 100%;
    z-index: 1;
}

.wasserschaden-team-image {
    display: block;
    width: 840px;
    max-width: none;
    height: auto;
    margin-right: -50px;
    margin-bottom: -18px;
    pointer-events: none;
}

/* =========================================================
   TRADES / CHECK / DOC
========================================================= */

.wasserschaden-trades-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.wasserschaden-trade-card {
    position: relative;
    padding: 26px 22px 22px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 14px 30px rgba(18, 32, 60, 0.06);
    min-width: 0;
}

.wasserschaden-trade-card::before {
    content: "";
    display: block;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #edf4ff 0%, #dce9ff 100%);
    box-shadow: inset 0 0 0 1px rgba(47,124,255,0.08);
}

.wasserschaden-trade-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.26;
}

.wasserschaden-trade-card p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
}

.wasserschaden-check-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.wasserschaden-check-card {
    padding: 24px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.06);
    min-width: 0;
}

.wasserschaden-check-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.wasserschaden-check-card p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
}

.wasserschaden-doc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.wasserschaden-doc-card {
    position: relative;
    padding: 24px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.06);
    overflow: hidden;
    min-width: 0;
}

.wasserschaden-doc-card::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47,124,255,0.10) 0%, rgba(47,124,255,0) 72%);
    pointer-events: none;
}

.wasserschaden-doc-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.28;
}

.wasserschaden-doc-card p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
}

/* =========================================================
   TIMELINE
========================================================= */

.wasserschaden-timeline {
    position: relative;
    margin-top: 30px;
    padding-left: 38px;
}

.wasserschaden-timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2f7cff 0%, #a8c8ff 100%);
}

.wasserschaden-timeline-item {
    position: relative;
    padding: 0 0 18px 24px;
}

.wasserschaden-timeline-item:last-child {
    padding-bottom: 0;
}

.wasserschaden-timeline-dot {
    position: absolute;
    left: -38px;
    top: 22px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    border: 6px solid #2f7cff;
    box-shadow: 0 10px 20px rgba(47,124,255,0.20);
}

.wasserschaden-timeline-content {
    padding: 22px 22px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 32px rgba(18, 32, 60, 0.06);
}

.wasserschaden-timeline-content h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.28;
}

.wasserschaden-timeline-content p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
}

/* =========================================================
   FAQ
========================================================= */

.wasserschaden-faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

.wasserschaden-faq-item {
    position: relative;
    padding: 24px 24px 22px 76px;
    border: 1px solid #dfe6f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(18, 32, 60, 0.05);
}

.wasserschaden-faq-item::before {
    content: "?";
    position: absolute;
    left: 22px;
    top: 22px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #edf4ff;
    color: #2f7cff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.wasserschaden-faq-item h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.32;
}

.wasserschaden-faq-item p {
    margin: 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
}

/* =========================================================
   CTA
========================================================= */

.wasserschaden-contact-box {
    border-bottom: 0;
    padding-bottom: 4px;
}

.wasserschaden-contact-box .wasserschaden-highlight-box {
    padding: 38px 38px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(47,124,255,0.08), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.wasserschaden-contact-box .wasserschaden-actions {
    margin-top: 26px;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {
    .service-overview-nav__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* =========================================================
   LAPTOP / COMPACT
========================================================= */

@media (min-width: 992px) and (max-height: 900px) {
    .service-shell,
    .wasserschaden-shell {
        width: min(1280px, calc(100% - 96px));
    }

    .wasserschaden-hero,
    .wasserschaden-hero .wasserschaden-shell,
    .wasserschaden-hero-grid,
    .wasserschaden-hero-image img,
    .wasserschaden-hero-image video {
        min-height: 760px;
    }

    .wasserschaden-hero__inner {
        max-width: 760px;
        padding: 180px 0 18px;
    }

    .wasserschaden-hero .subheadline {
        min-height: 32px;
        padding: 0 12px;
        margin-bottom: 14px;
        font-size: 10px;
    }

    .wasserschaden-hero h1 {
        margin: 0 0 14px;
        max-width: 14ch;
        font-size: clamp(34px, 3.3vw, 52px);
        line-height: 0.98;
    }

    .wasserschaden-hero .intro {
        max-width: 720px;
        font-size: 15px;
        line-height: 1.58;
    }

    .wasserschaden-hero .region {
        margin-top: 14px;
        font-size: 13px;
    }

    .wasserschaden-hero-badges {
        gap: 8px;
        margin-top: 16px;
    }

    .wasserschaden-hero-badges span {
        min-height: 32px;
        padding: 0 12px;
        font-size: 11px;
    }

    .wasserschaden-actions {
        gap: 10px;
        margin-top: 18px;
    }

    .wasserschaden-page .btn {
        min-height: 42px;
        padding: 0 16px;
        border-radius: 14px;
        font-size: 13px;
    }

    .service-overview-nav {
        padding-top: 100px;
        padding-bottom: 24px;
    }

    .service-overview-nav__box {
        padding: 22px 22px 20px;
        border-radius: 24px;
    }

    .service-overview-nav__box::before {
        border-radius: 24px;
    }

    .service-overview-nav__head {
        margin-bottom: 16px;
    }

    .service-overview-nav__kicker {
        min-height: 34px;
        padding: 0 12px;
        margin-bottom: 14px;
        font-size: 11px;
    }

    .service-overview-nav__head h2 {
        font-size: clamp(22px, 2vw, 30px);
        margin-bottom: 8px;
        max-width: 12ch;
    }

    .service-overview-nav__head p {
        font-size: 14px;
        line-height: 1.56;
    }

    .service-overview-nav__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .service-overview-nav__link {
        min-height: 52px;
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 13px;
    }

    .service-overview-nav__link::before {
        width: 22px;
        height: 22px;
        margin-right: 10px;
        font-size: 11px;
    }

    .wasserschaden-content {
        padding: 58px 0 70px;
    }

    .wasserschaden-section {
        padding: 0 0 28px;
        margin-bottom: 28px;
    }

    .wasserschaden-section h2 {
        margin: 0 0 12px;
        font-size: clamp(24px, 2vw, 34px);
        line-height: 1.08;
        max-width: 26ch;
    }

    .wasserschaden-section h3 {
        margin: 0 0 10px;
        font-size: 19px;
        line-height: 1.25;
    }

    .wasserschaden-section p {
        margin: 0 0 12px;
        max-width: 820px;
        font-size: 15px;
        line-height: 1.58;
    }

    .wasserschaden-section ul {
        margin-top: 14px;
    }

    .wasserschaden-section li {
        margin: 0 0 10px;
        padding: 12px 14px 12px 44px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 1.5;
    }

    .wasserschaden-section li::before {
        left: 14px;
        top: 12px;
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .wasserschaden-highlight-box {
        padding: 24px 22px;
        border-radius: 22px;
    }

    .wasserschaden-highlight-kicker {
        min-height: 32px;
        padding: 0 12px;
        margin-bottom: 12px;
        font-size: 11px;
    }

    .wasserschaden-media-grid {
        grid-template-columns: minmax(0, 1fr) 440px;
        gap: 24px;
    }

    .wasserschaden-media-grid--reverse {
        grid-template-columns: 440px minmax(0, 1fr);
    }

    .wasserschaden-media-image img,
    .wasserschaden-media-image video {
        height: 340px;
        border-radius: 22px;
    }

    .wasserschaden-list-grid,
    .wasserschaden-error-grid,
    .wasserschaden-emergency-grid,
    .wasserschaden-pillars-grid,
    .wasserschaden-method-grid,
    .wasserschaden-image-placeholder-grid,
    .wasserschaden-tech-grid,
    .wasserschaden-trades-grid,
    .wasserschaden-check-grid,
    .wasserschaden-doc-grid {
        gap: 14px;
        margin-top: 18px;
    }

    .wasserschaden-list-card,
    .wasserschaden-error-card,
    .wasserschaden-emergency-card,
    .wasserschaden-pillar-card,
    .wasserschaden-method-card,
    .wasserschaden-tech-card,
    .wasserschaden-trade-card,
    .wasserschaden-check-card,
    .wasserschaden-doc-card {
        padding: 18px;
        border-radius: 20px;
    }

    .wasserschaden-step-number,
    .wasserschaden-pillar-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        margin-bottom: 14px;
        font-size: 18px;
    }

    .wasserschaden-comparison {
        margin-top: 20px;
        border-radius: 22px;
    }

    .wasserschaden-comparison-col {
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.5;
    }

    .wasserschaden-comparison-head .wasserschaden-comparison-col {
        font-size: 11px;
    }

    .wasserschaden-image-placeholder {
        min-height: 220px;
        padding: 18px;
        border-radius: 22px;
    }

    .wasserschaden-image-placeholder span {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .wasserschaden-image-placeholder p {
        font-size: 14px;
        line-height: 1.56;
    }

    .wasserschaden-process-diagram {
        gap: 10px;
        margin-top: 20px;
        padding: 12px;
        border-radius: 22px;
    }

    .wasserschaden-process-step {
        min-height: 82px;
        padding: 14px;
        border-radius: 18px;
        flex: 1 1 180px;
    }

    .wasserschaden-process-step span {
        font-size: 14px;
        line-height: 1.42;
    }

    .wasserschaden-process-arrow {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .wasserschaden-trust-section {
        margin-bottom: 34px;
    }

    .wasserschaden-trust-grid {
        grid-template-columns: minmax(0, 1fr) 540px;
        padding: 28px 28px 0 28px;
        border-radius: 26px;
    }

    .wasserschaden-trust-content {
        padding: 0 26px 28px 0;
    }

    .wasserschaden-trust-content h2 {
        margin: 0 0 18px;
        font-size: clamp(26px, 2.3vw, 38px);
        max-width: 18ch;
    }

    .wasserschaden-trust-content p {
        margin: 0 0 12px;
        font-size: 15px;
        line-height: 1.62;
    }

    .wasserschaden-team-image {
        width: 700px;
        margin-right: -36px;
        margin-bottom: -12px;
    }

    .wasserschaden-timeline {
        margin-top: 20px;
        padding-left: 28px;
    }

    .wasserschaden-timeline::before {
        left: 9px;
        width: 2px;
    }

    .wasserschaden-timeline-dot {
        left: -28px;
        top: 20px;
        width: 20px;
        height: 20px;
        border-width: 5px;
    }

    .wasserschaden-timeline-content {
        padding: 18px;
        border-radius: 20px;
    }

    .wasserschaden-faq-list {
        gap: 12px;
        margin-top: 18px;
    }

    .wasserschaden-faq-item {
        padding: 18px 18px 16px 62px;
        border-radius: 20px;
    }

    .wasserschaden-faq-item::before {
        left: 18px;
        top: 18px;
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 16px;
    }

    .wasserschaden-contact-box .wasserschaden-highlight-box {
        padding: 28px 24px;
        border-radius: 24px;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
    .wasserschaden-section h2 {
        max-width: 100%;
        font-size: clamp(25px, 5.3vw, 36px);
        line-height: 1.08;
    }

    .wasserschaden-hero {
        min-height: 720px;
    }

    .wasserschaden-hero .wasserschaden-shell,
    .wasserschaden-hero-grid {
        min-height: 720px;
    }

    .wasserschaden-hero-image {
        min-height: 720px;
    }

    .wasserschaden-hero-image img,
    .wasserschaden-hero-image video {
        min-height: 720px;
    }

    .wasserschaden-hero__inner {
        max-width: 100%;
        padding: 150px 0 48px;
    }

    .wasserschaden-hero .subheadline {
        min-height: 34px;
        padding: 0 12px;
        margin-bottom: 14px;
        font-size: 10px;
    }

    .wasserschaden-hero h1 {
        max-width: 14ch;
        margin: 0 0 16px;
        font-size: clamp(34px, 6vw, 46px);
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .wasserschaden-hero .intro {
        max-width: 720px;
        font-size: 15px;
        line-height: 1.62;
    }

    .wasserschaden-hero .region {
        margin-top: 16px;
        max-width: 100%;
        font-size: 13px;
        line-height: 1.55;
    }

    .wasserschaden-hero-badges {
        gap: 8px;
        margin-top: 18px;
    }

    .wasserschaden-hero-badges span {
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
    }

    .wasserschaden-actions {
        gap: 10px;
        margin-top: 18px;
    }

    .wasserschaden-page .btn {
        min-height: 44px;
        padding: 0 16px;
        border-radius: 14px;
        font-size: 13px;
    }

    .service-overview-nav {
        padding-top: 38px;
        padding-bottom: 20px;
    }

    .service-overview-nav__box {
        padding: 22px 22px 20px;
        border-radius: 24px;
    }

    .service-overview-nav__box::before {
        border-radius: 24px;
    }

    .service-overview-nav__head {
        margin-bottom: 18px;
    }

    .service-overview-nav__kicker {
        min-height: 34px;
        padding: 0 12px;
        margin-bottom: 14px;
        font-size: 11px;
    }

    .service-overview-nav__head h2 {
        max-width: 12ch;
        font-size: clamp(24px, 4.8vw, 34px);
        line-height: 1.04;
    }

    .service-overview-nav__head p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.58;
    }

    .service-overview-nav__grid,
    .wasserschaden-method-grid,
    .wasserschaden-trades-grid,
    .wasserschaden-doc-grid,
    .wasserschaden-pillars-grid,
    .wasserschaden-emergency-grid,
    .wasserschaden-check-grid,
    .wasserschaden-list-grid,
    .wasserschaden-error-grid,
    .wasserschaden-tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wasserschaden-image-placeholder-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wasserschaden-comparison-row {
        grid-template-columns: 1fr;
    }

    .wasserschaden-comparison-row .wasserschaden-comparison-col:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid #e8eef7;
    }

    .wasserschaden-media-grid,
    .wasserschaden-media-grid--reverse,
    .wasserschaden-trust-grid {
        grid-template-columns: 1fr;
    }

    .wasserschaden-media-grid--reverse .wasserschaden-media-text,
    .wasserschaden-media-grid--reverse .wasserschaden-media-image {
        order: initial;
    }

    .wasserschaden-trust-grid {
        gap: 26px;
        padding: 28px 28px 0 28px;
        border-radius: 26px;
    }

    .wasserschaden-trust-content {
        padding: 0;
    }

    .wasserschaden-trust-content h2 {
        max-width: 100%;
        font-size: clamp(28px, 4.6vw, 38px);
        line-height: 1.06;
    }

    .wasserschaden-trust-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .wasserschaden-trust-visual {
        justify-content: flex-end;
        align-items: flex-end;
    }

    .wasserschaden-team-image {
        width: 100%;
        max-width: 580px;
        margin-right: -10px;
        margin-bottom: -8px;
        border-radius: 0;
    }

    .wasserschaden-process-diagram {
        justify-content: center;
    }

    .wasserschaden-process-arrow {
        display: none;
    }

    .wasserschaden-timeline {
        padding-left: 28px;
    }

    .wasserschaden-timeline::before {
        left: 9px;
    }

    .wasserschaden-timeline-dot {
        left: -28px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {
    .wasserschaden-page .btn {
        width: 100%;
    }

    .wasserschaden-hero {
        min-height: 640px;
    }

    .wasserschaden-hero .wasserschaden-shell,
    .wasserschaden-hero-grid {
        min-height: 640px;
    }

    .wasserschaden-hero-image {
        min-height: 640px;
    }

    .wasserschaden-hero-image img,
    .wasserschaden-hero-image video {
        min-height: 640px;
    }

    .wasserschaden-hero__inner {
        max-width: 100%;
        padding: 124px 0 42px;
    }

    .wasserschaden-hero h1 {
        max-width: 100%;
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.03;
        letter-spacing: -0.035em;
        margin-bottom: 14px;
    }

    .wasserschaden-hero .intro {
        font-size: 15px;
        line-height: 1.62;
        max-width: 100%;
    }

    .wasserschaden-hero .subheadline {
        min-height: 34px;
        padding: 0 12px;
        margin-bottom: 14px;
        font-size: 10px;
    }

    .wasserschaden-hero .region {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.55;
        max-width: 100%;
    }

    .wasserschaden-hero-badges {
        display: none;
    }

    .wasserschaden-actions {
        flex-direction: column;
        margin-top: 18px;
    }

    .service-overview-nav {
        padding: 28px 0 18px;
    }

    .service-overview-nav__box {
        padding: 20px;
        border-radius: 22px;
    }

    .service-overview-nav__box::before {
        border-radius: 22px;
    }

    .service-overview-nav__kicker {
        min-height: 32px;
        padding: 0 11px;
        margin-bottom: 12px;
        font-size: 10px;
    }

    .service-overview-nav__head {
        margin-bottom: 16px;
    }

    .service-overview-nav__head h2 {
        max-width: 100%;
        font-size: clamp(22px, 8vw, 30px);
        line-height: 1.05;
    }

    .service-overview-nav__head p {
        font-size: 14px;
        line-height: 1.58;
    }

    .service-overview-nav__grid,
    .wasserschaden-emergency-grid,
    .wasserschaden-pillars-grid,
    .wasserschaden-method-grid,
    .wasserschaden-image-placeholder-grid,
    .wasserschaden-tech-grid,
    .wasserschaden-trades-grid,
    .wasserschaden-check-grid,
    .wasserschaden-doc-grid,
    .wasserschaden-list-grid,
    .wasserschaden-error-grid {
        grid-template-columns: 1fr;
    }

    .service-overview-nav__link {
        min-height: 54px;
        padding: 12px 14px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 1.35;
    }

    .service-overview-nav__link::before {
        width: 24px;
        height: 24px;
        margin-right: 10px;
        font-size: 12px;
    }

    .wasserschaden-section h2 {
        max-width: 100%;
        font-size: clamp(24px, 7.5vw, 32px);
        line-height: 1.08;
    }

    .wasserschaden-section p,
    .wasserschaden-error-card p,
    .wasserschaden-list-card p,
    .wasserschaden-emergency-card p,
    .wasserschaden-pillar-card p,
    .wasserschaden-method-card p,
    .wasserschaden-tech-card p,
    .wasserschaden-trade-card p,
    .wasserschaden-check-card p,
    .wasserschaden-doc-card p,
    .wasserschaden-timeline-content p,
    .wasserschaden-faq-item p {
        font-size: 15px;
        line-height: 1.72;
    }

    .wasserschaden-section li {
        font-size: 15px;
        padding: 13px 14px 13px 48px;
    }

    .wasserschaden-highlight-box,
    .wasserschaden-list-card,
    .wasserschaden-error-card,
    .wasserschaden-emergency-card,
    .wasserschaden-pillar-card,
    .wasserschaden-method-card,
    .wasserschaden-tech-card,
    .wasserschaden-trade-card,
    .wasserschaden-check-card,
    .wasserschaden-doc-card,
    .wasserschaden-faq-item,
    .wasserschaden-timeline-content {
        padding: 20px;
        border-radius: 20px;
    }

    .wasserschaden-media-image img,
    .wasserschaden-media-image video {
        height: 280px;
        border-radius: 20px;
    }

    .wasserschaden-step-number,
    .wasserschaden-pillar-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        margin-bottom: 14px;
        font-size: 18px;
    }

    .wasserschaden-trust-section {
        margin-bottom: 40px;
    }

    .wasserschaden-trust-grid {
        gap: 18px;
        padding: 20px 20px 0 20px;
        border-radius: 20px;
    }

    .wasserschaden-trust-content h2 {
        font-size: clamp(26px, 8vw, 34px);
        max-width: 100%;
        line-height: 1.08;
    }

    .wasserschaden-trust-content p {
        font-size: 15px;
        line-height: 1.72;
    }

    .wasserschaden-team-image {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: -6px;
    }

    .wasserschaden-comparison {
        border-radius: 20px;
    }

    .wasserschaden-comparison-col {
        padding: 14px 14px;
        font-size: 14px;
    }

    .wasserschaden-image-placeholder {
        min-height: 220px;
        border-radius: 20px;
    }

    .wasserschaden-image-placeholder::before {
        inset: 16px;
        border-radius: 14px;
    }

    .wasserschaden-image-placeholder span {
        font-size: 18px;
    }

    .wasserschaden-image-placeholder p {
        font-size: 14px;
        line-height: 1.62;
    }

    .wasserschaden-process-diagram {
        flex-direction: column;
        align-items: stretch;
    }

    .wasserschaden-process-step {
        min-height: 84px;
        border-radius: 18px;
        flex: 1 1 auto;
    }

    .wasserschaden-process-step span {
        font-size: 14px;
    }

    .wasserschaden-process-arrow {
        display: none;
    }

    .wasserschaden-timeline {
        padding-left: 22px;
    }

    .wasserschaden-timeline::before {
        left: 6px;
    }

    .wasserschaden-timeline-item {
        padding-left: 18px;
    }

    .wasserschaden-timeline-dot {
        left: -22px;
        top: 18px;
        width: 18px;
        height: 18px;
        border-width: 4px;
    }

    .wasserschaden-faq-item {
        padding: 20px 20px 18px 62px;
    }

    .wasserschaden-faq-item::before {
        left: 18px;
        top: 18px;
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 16px;
    }

    .wasserschaden-contact-box .wasserschaden-highlight-box {
        padding: 22px 20px;
        border-radius: 20px;
    }
}