/* ============================================================
   Herms Holzbau, WoodX-adaptierter heller Handwerker-Look
   Brand-Anker: Plus Jakarta Sans + Schwarz/Cremig-Weiss/Rot
   ============================================================ */

/* Lokale Plus-Jakarta-Sans-Fonts, DSGVO-konform ohne Google-Fonts-CDN.
   5 Weights (Latin-Subset), woff2-only (alle Browser ab 2014). */
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-display: swap; font-weight: 400; src: url(fonts/plus-jakarta-sans-400.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-display: swap; font-weight: 500; src: url(fonts/plus-jakarta-sans-500.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-display: swap; font-weight: 600; src: url(fonts/plus-jakarta-sans-600.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-display: swap; font-weight: 700; src: url(fonts/plus-jakarta-sans-700.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-display: swap; font-weight: 800; src: url(fonts/plus-jakarta-sans-800.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

:root {
    /* Farbpalette */
    --bg: #FFFFFF;
    --bg-warm: #F4F4F4;
    --bg-warm-2: #ECECEC;
    --bg-dark: #0F0F0F;
    --bg-darker: #050505;
    --text: #0A0A0A;
    --text-muted: #6B6B6B;
    --text-light: #B5B5B5;
    --red: #CF1C1E;
    --red-dark: #A8181A;
    --white: #FFFFFF;
    --border: #E8E0D0;
    --border-strong: #1A1A1A;

    /* Radien */
    --radius-card: 18px;
    --radius-btn: 12px;
    --radius-pill: 999px;

    /* Schrift */
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Container */
    --max-width: 1240px;
    --max-narrow: 880px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(15, 15, 15, 0.06);
    --shadow-floating: 0 8px 32px rgba(15, 15, 15, 0.12);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 800; line-height: 1.05; margin: 0 0 .4em; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
a { color: var(--text); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

/* ===== Container ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* ===== Topbar ===== */
.topbar {
    background: var(--bg-warm-2);
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.topbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.ti-icon { display: inline-flex; width: 28px; height: 28px; border-radius: 50%; background: var(--bg); align-items: center; justify-content: center; font-size: 14px; }
.topbar-phone { color: var(--text); }
.topbar-phone:hover { color: var(--red); }

/* ===== Header ===== */
.header {
    position: sticky; top: 0; z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark { height: 48px; width: auto; }
.logo-word { height: 28px; width: auto; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { font-weight: 600; font-size: 15px; padding: 8px 4px; position: relative; }
.nav a:hover { color: var(--red); }
.header-cta { margin-left: 8px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 15px;
    border: 0;
    transition: all .2s ease;
    text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(207, 28, 30, 0.25); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--text); }
.btn-outline:hover { background: var(--text); color: var(--white); }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-icon { display: inline-flex; font-size: 16px; }

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 22px 8px 8px;
    background: transparent;
    color: var(--text);
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all .2s ease;
}
.btn-call:hover { color: var(--red); }
.btn-call-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--red); color: var(--white);
    font-size: 18px;
}
.btn-call-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); }
.btn-call-number { display: block; font-size: 17px; font-weight: 800; line-height: 1.1; }

/* ===== Hero ===== */
.hero {
    position: relative;
    background: var(--bg);
    padding: 100px 32px 80px;
    overflow: hidden;
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.hero-eyebrow {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0 0 32px;
}
.hero-h1 {
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
    color: var(--text);
}
.hero-h1 .accent { color: var(--red); }
.hero-h1 .muted { color: var(--text-muted); font-weight: 700; }

.hero-sub {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-cta-row {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 12px 12px 12px 28px;
    background: var(--white);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-card);
    margin-bottom: 56px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Floating Badges */
.hero-badge {
    position: absolute;
    z-index: 5;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    padding: 18px 22px;
}
.hero-badge-left {
    top: 60px; left: 0;
    display: flex; flex-direction: column; gap: 6px;
    text-align: left;
}
.badge-stars { color: #F5A623; font-size: 16px; letter-spacing: 2px; }
.badge-text { font-size: 13px; line-height: 1.4; color: var(--text-muted); }
.badge-text strong { color: var(--text); font-size: 15px; }

.hero-badge-right {
    top: 50px; right: 0;
    width: 130px; height: 130px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 50%;
}
.stamp-circle {
    position: absolute; inset: 0; width: 100%; height: 100%;
    animation: rotate-stamp 22s linear infinite;
}
.stamp-text { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; fill: var(--text); }
.stamp-inner {
    position: absolute; inset: 18px;
    background: var(--red); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    transition: background .2s;
}
.stamp-inner:hover { background: var(--red-dark); color: var(--white); }
@keyframes rotate-stamp { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Hero-Foto */
.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-floating);
    max-height: 540px;
    margin-top: 24px;
}
.hero-image { width: 100%; height: 100%; object-fit: cover; max-height: 540px; }
.hero-image-badge {
    position: absolute;
    left: 28px; bottom: 28px;
    background: var(--bg);
    padding: 14px 20px;
    border-radius: var(--radius-card);
    display: flex; align-items: center; gap: 14px;
    box-shadow: var(--shadow-floating);
}
.hib-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-warm); font-size: 22px;
}
.hib-text { font-size: 13px; color: var(--text-muted); line-height: 1.3; }
.hib-text strong { display: block; color: var(--text); font-size: 17px; font-weight: 800; }

/* ===== Eyebrow ===== */
.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--red);
    font-weight: 700;
    margin: 0 0 20px;
}
.eb-line { display: inline-block; width: 32px; height: 2px; background: var(--red); }
.eyebrow-light { color: var(--white); }
.eyebrow-light .eb-line { background: var(--red); }

/* ===== Section base ===== */
.section { padding: 110px 0; }
.section .h2 {
    font-size: clamp(32px, 4.4vw, 56px);
    font-weight: 800;
    margin: 0 0 28px;
    letter-spacing: -0.025em;
}
.section .h2 .accent { color: var(--red); }
.section .h2-light { color: var(--white); }
.section .h2-light .accent-red { color: var(--red); }
.section .lead { font-size: 18px; color: var(--text-muted); max-width: 680px; margin: 0 0 56px; }
.section-contact .lead { max-width: none; }
.section .lead-light { color: var(--text-light); }

/* ===== Problem ===== */
.section-problem { background: var(--bg); }
.problem-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 48px;
}
.problem-header-text {
    grid-column: 1 / span 2;
    padding-right: 32px;
}
.problem-header-image {
    grid-column: 3 / span 1;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-warm);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    position: relative;
}
.problem-header-text .lead { margin-bottom: 0; }
.problem-header-image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.problem-header-image.is-placeholder::after {
    content: "Bild folgt";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}
@media (max-width: 900px) {
    .problem-header { grid-template-columns: 1fr; gap: 32px; }
    .problem-header-text { grid-column: 1; padding-right: 0; }
    .problem-header-image { grid-column: 1; }
}
.problem-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}
.problem-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border-radius: 16px;
    background: var(--red);
    color: var(--white);
    margin-bottom: 20px;
}
.problem-icon svg { width: 28px; height: 28px; }
.problem-card h3 { font-size: 22px; font-weight: 800; margin: 0 0 12px; }
.problem-card p { color: var(--text-muted); margin: 0; font-size: 16px; }

/* ===== About ===== */
.section-about { background: var(--bg-warm); }
.about-header {
    max-width: 1100px;
    margin: 0 0 64px;
}
.about-header .h2 {
    font-size: clamp(36px, 4.8vw, 64px);
    margin: 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-image-col {
    position: relative;
    padding-top: 0;
}
.about-image-frame {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-floating);
    aspect-ratio: 1 / 1.05;
}
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-floating-mark {
    position: absolute;
    right: -28px; bottom: -28px;
    width: 130px;
    height: 130px;
    padding: 6px;
    background: var(--white);
    border: 3px solid var(--red);
    border-radius: 50%;
    box-shadow: var(--shadow-floating);
    object-fit: contain;
    box-sizing: border-box;
}
.about-text-col { padding-top: 0; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding: 28px 0 0;
    border-top: 1px solid var(--border-strong);
}
.stat { text-align: left; }
.stat-num { display: block; font-size: 40px; font-weight: 800; color: var(--red); line-height: 1; letter-spacing: -0.02em; }
.stat-label { display: block; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; font-weight: 600; }

/* ===== Loesung (dunkle Sektion) ===== */
.section-solution { background: var(--bg-dark); color: var(--white); }
.section-solution .lead { color: var(--text-light); }
.solution-header {
    margin-bottom: 0;
}
.solution-header-top {
    margin-bottom: 44px;
}
.solution-header-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: end;
}
.solution-header-text {
    align-self: start;
    padding-right: 24px;
}
.solution-header-detail {
    margin: 0;
}
.solution-header-detail-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 340px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.solution-header-detail-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.solution-header-detail figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 20px 16px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}
.solution-header-text .lead { margin-bottom: 0; }
.solution-header-image {
    border-radius: 24px;
    overflow: hidden;
    height: 340px;
    background: #1A1A1A;
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
    position: relative;
}
.solution-header-image.is-placeholder::after {
    content: "BILD FOLGT";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 24px;
}
.solution-header-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) {
    .solution-header-cols { grid-template-columns: 1fr; gap: 32px; }
    .solution-header-top { margin-bottom: 28px; }
    .solution-header-text { padding-right: 0; }
}
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 28px;
}
.solution-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    padding: 36px 32px;
}
.solution-num {
    font-size: 13px;
    color: var(--red);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.solution-card h3 { color: var(--white); font-size: 22px; margin: 0 0 14px; }
.solution-card p { color: var(--text-light); margin: 0; font-size: 16px; }

/* ===== Leistungen ===== */
.section-services { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-floating); }
.service-image-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.service-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-image-wrap img { transform: scale(1.05); }
.service-card h3 { font-size: 24px; margin: 28px 32px 14px; }
.service-card p { color: var(--text-muted); margin: 0 32px 32px; font-size: 16px; }

/* ===== Referenzen ===== */
.section-references { background: var(--bg-warm); }
.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.ref-card {
    margin: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--white);
}
.ref-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ref-card:hover img { transform: scale(1.05); }
.ref-card figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

/* ===== Social Proof ===== */
.section-social { background: var(--bg); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 56px 0 40px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 32px 28px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
}
.tc-stars {
    color: #F5A623;
    font-size: 16px;
    letter-spacing: 3px;
}
.testimonial-card blockquote {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--text);
    margin: 0;
    font-style: italic;
    flex: 1;
}
.testimonial-card figcaption {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.testimonial-card figcaption strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
}
.testimonial-card figcaption span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 3px;
}

.review-cta {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}
.g-stars { color: #F5A623; font-size: 20px; letter-spacing: 3px; }

.review-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px 12px 22px;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s;
}
.review-cta-btn:hover { background: var(--red-dark); color: var(--white); }
.rc-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
}

@media (max-width: 720px) {
    .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== FAQ ===== */
.section-faq { background: var(--bg-warm); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: stretch;
}
.faq-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
    min-height: 600px;
}
.faq-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq-content { display: flex; flex-direction: column; }
.faq-list { margin-top: 32px; }

/* FAQ Accordion, Grid-Row-Trick fuer smooth open+close in beide Richtungen */
.faq-list summary {
    transition: color .2s ease, padding-left .25s ease;
}
.faq-list summary:hover {
    color: var(--red);
    padding-left: 4px;
}
.faq-list summary::after { transition: color .2s ease, transform .3s ease; }
.faq-list details.is-open summary::after { color: var(--red); }
.faq-list details summary { cursor: pointer; user-select: none; }
.faq-list details {
    transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-list details.is-open {
    border-color: var(--red);
    box-shadow: 0 12px 32px rgba(207, 28, 30, 0.08);
}
.faq-list details > p {
    display: block;
    height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: height .45s cubic-bezier(.4, 0, .2, 1), opacity .3s ease, margin-top .45s ease;
}
.faq-list details.is-open > p {
    opacity: 1;
    margin-top: 16px;
}
@media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; gap: 28px; }
    .faq-image { min-height: 280px; }
}
.faq-list details {
    background: var(--white);
    border-radius: var(--radius-card);
    margin-bottom: 14px;
    border: 1px solid var(--border);
    padding: 24px 28px;
    transition: box-shadow .2s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-card); }
.faq-list summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    position: relative;
    padding-right: 40px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0; top: -4px;
    font-size: 28px;
    font-weight: 400;
    color: var(--red);
    transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ===== Kontakt ===== */
.section-contact { background: var(--bg); }
.contact-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: end;
    margin-bottom: 56px;
}
.contact-header-text .lead { margin-bottom: 0; max-width: none; }
.contact-header-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--bg-warm);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    position: relative;
}
.contact-header-image.is-placeholder::after {
    content: "BILD FOLGT";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    border: 2px dashed var(--border);
    border-radius: 24px;
}
.contact-header-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
    .contact-header { grid-template-columns: 1fr; gap: 24px; }
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    margin-top: 0;
    align-items: center;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: center;
}
.ci-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.ci-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.ci-icon svg { width: 24px; height: 24px; }
.ci-content { flex: 1; min-width: 0; }
.ci-block h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin: 0 0 6px;
    font-weight: 700;
}
.ci-block p, .ci-block a { font-size: 16px; color: var(--text); line-height: 1.5; }
.ci-big { display: block; font-size: 22px; font-weight: 800; color: var(--text); }
.ci-secondary { display: block; margin-top: 4px; color: var(--text-muted); font-size: 14px; }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid var(--border);
}

/* Multi-Step Form */
.contact-form.multistep { gap: 0; }
.step-progress {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    gap: 8px;
    counter-reset: step;
}
.step-progress .step {
    flex: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-warm);
    transition: all .2s ease;
}
.step-progress .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
}
.step-progress .step.is-active {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}
.step-progress .step.is-active .step-num {
    background: var(--white);
    color: var(--red);
}
.step-progress .step.is-done {
    color: var(--text);
    background: var(--white);
    border-color: var(--red);
}
.step-progress .step.is-done .step-num {
    background: var(--red);
    color: var(--white);
}

.form-step {
    border: 0;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-step[hidden] { display: none; }
.step-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    padding: 0;
    color: var(--text);
}

.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}
.service-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 22px 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .15s ease;
    background: var(--white);
}
.service-option:hover { border-color: var(--red); transform: translateY(-1px); }
.service-option input[type=radio] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.service-option .so-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-warm);
    color: var(--text);
    transition: all .2s ease;
}
.service-option .so-icon svg { width: 24px; height: 24px; }
.service-option:has(input[type=radio]:checked) {
    border-color: var(--red);
    background: rgba(207, 28, 30, 0.04);
}
.service-option:has(input[type=radio]:checked) .so-icon {
    background: var(--red);
    color: var(--white);
}
.so-text { display: flex; flex-direction: column; line-height: 1.3; }
.so-text strong { font-size: 14px; font-weight: 800; color: var(--text); }
.so-text small { font-size: 11.5px; color: var(--text-muted); margin-top: 3px; line-height: 1.35; }

@media (max-width: 520px) {
    .service-options { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 360px) {
    .service-options { grid-template-columns: 1fr; }
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}
.step-actions-end { justify-content: flex-end; }
.step-hint {
    margin: 18px 0 0;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}
.btn-prev {
    padding: 13px 22px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: all .2s ease;
}
.btn-prev:hover { border-color: var(--text); }
.btn-next {
    padding: 14px 26px;
    background: var(--red);
    color: var(--white);
    border: 0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease;
}
.btn-next:hover { background: var(--red-dark); }
.btn-arrow-mini {
    display: inline-block;
    font-size: 16px;
    margin: 0 4px;
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form .lbl { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-form input, .contact-form textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    background: var(--bg);
    font-family: var(--font);
    color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: 2px solid var(--red);
    outline-offset: -1px;
    border-color: var(--red);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}
.contact-form .checkbox input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }

/* ===== Footer ===== */
.footer {
    background-color: var(--bg-dark);
    background-image: url('img/footer-bg.jpg');
    background-repeat: no-repeat;
    background-position: center 65%;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-light);
    padding-top: 240px;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,15,15,0.7) 0%, rgba(15,15,15,0.9) 55%, rgba(15,15,15,1) 100%);
    pointer-events: none;
}
.footer > * { position: relative; z-index: 2; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
}
.footer-brand { color: var(--white); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-mark { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-word { height: 26px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { color: var(--text-light); font-size: 14px; max-width: 360px; line-height: 1.55; }
.footer-col h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 16px; }
.footer-col p { color: var(--text-light); font-size: 15px; line-height: 1.8; }
.footer-col a { color: var(--text-light); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 13px; color: var(--text-light); }
.footer-fox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}
.footer-fox:hover { color: var(--red); }
.footer-fox-mark {
    height: 26px;
    width: auto;
    border-radius: 0;
    transition: transform .2s, opacity .2s;
    opacity: 0.9;
}
.footer-fox:hover .footer-fox-mark { transform: scale(1.08); opacity: 1; }
.footer-fox-name { font-weight: 700; }

/* ===== Responsive ===== */
/* ============================================================
   WoodX-Layout-Patches (Brand-Rot statt Sand/Tan)
   ============================================================ */

/* ----- Card-Arrow-Indicator (alle Cards bekommen oben rechts einen Pfeil) ----- */
.problem-card,
.service-card,
.ref-card,
.solution-card {
    position: relative;
}
.problem-card::after,
.service-card::after,
.solution-card::after,
.ref-card::after {
    content: none;
}

/* ----- Asymmetrische Bild-Rundungen (eine Ecke gerade fuer mehr Charakter) ----- */
.service-image-wrap {
    border-radius: 18px 18px 0 18px;
}
.service-card {
    border-radius: 18px;
}
.ref-card {
    border-radius: 0 18px 18px 18px;
}
/* alle ref-cards: alle 4 Ecken rund */
.about-image-frame {
    border-radius: 24px;
}

/* ----- Eyebrow Icon (kleines Hexagon-Punkt statt Linie) ----- */
.eyebrow .eb-line {
    width: 10px;
    height: 10px;
    background: var(--red);
    transform: rotate(45deg);
    margin-right: 4px;
}
.eyebrow-light .eb-line {
    background: var(--red);
}

/* ----- Verstaerkte Card-Hover ----- */
.problem-card {
    transition: transform .25s ease, box-shadow .25s ease;
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 15, 15, 0.10);
}
.solution-card {
    transition: all .25s ease;
}
.solution-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

/* ----- Hero-Foto mit versetztem Frame-Element dahinter ----- */
.hero-image-wrap {
    position: relative;
}
.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    background: var(--bg-warm-2);
    border-radius: 0 24px 24px 24px;
    z-index: -1;
}
.hero-image-wrap {
    z-index: 1;
    margin: 24px 0 48px;
}

/* ----- Service-Card Footer-Layout (Bild + Text + Arrow) ----- */
.service-card h3 {
    padding-right: 56px; /* Platz fuer Arrow */
}

/* ----- About: Sekundaer-Element rechts oben (entfernt) ----- */

/* ----- Big-Badge "Seit 1999" auf Hero-Foto (WoodX-Stempel-Stil) ----- */
.hero-image-badge {
    background: var(--white);
    padding: 18px 26px;
    border-radius: 16px;
}
.hero-image-badge .hib-icon {
    background: var(--red);
    color: var(--white);
}

/* ----- Stempel-Inner-Anpassung (etwas dezenter, weisses Inner + Pfeil) ----- */
.hero-badge-right {
    top: 30px; right: 0;
}

/* ----- Section background rhythm ----- */
.section-problem { background: var(--bg); }
.section-about { background: var(--bg-warm); }
.section-services { background: var(--bg); }
.section-references { background: var(--bg-warm-2); }
.section-social { background: var(--bg-warm); }
.section-faq { background: var(--bg); }
.section-contact { background: var(--bg-warm); }

/* ----- FAQ: mehr WoodX-Card-Look ----- */
.faq-list details {
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all .2s ease;
}
.faq-list details:hover {
    border-color: var(--red);
}
.faq-list details[open] {
    border-color: var(--red);
}

/* ----- Trust-Leiste im Hero ----- */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    justify-content: center;
    margin-top: 28px;
    font-size: 14px;
    color: var(--text-muted);
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-trust span::before {
    content: "✓";
    color: var(--red);
    font-weight: 800;
}

/* ============================================================
   WX (WoodX 1zu1) HERO REBUILD
   Pixel-genau nachgebaut, Sand-DNA + Brand-Rot fuer CTAs
   ============================================================ */

:root {
    --wx-cream: #FAF3E5;
    --wx-sand: #E8D4AB;
    --wx-sand-dark: #C8A872;
    --wx-ink: #1A1A1A;
    --wx-muted: #6E6B66;
    --wx-border-soft: rgba(26,26,26,0.08);
}

/* ----- TOP BAR ----- */
.wx-topbar {
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 14px 0;
}
.wx-topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.wx-tb-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.wx-tb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
}
.wx-tb-phone { color: var(--white); }
.wx-tb-phone:hover { color: var(--white); opacity: 0.85; }

/* ----- HEADER ----- */
.wx-header {
    background: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--wx-border-soft);
}
.wx-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.wx-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.wx-logo-mark {
    height: 48px;
    width: auto;
}
.wx-logo-word {
    height: 26px;
    width: auto;
}
.wx-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0 auto;
}
.wx-nav a {
    font-size: 18px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.015em;
    color: var(--wx-ink);
    padding: 8px 2px;
    position: relative;
    -webkit-text-stroke: 0.55px currentColor;
    text-shadow: 0 0 0.4px currentColor;
}
.wx-nav a::after {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 6px;
    height: 2.5px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}
.wx-nav a:hover::after { transform: scaleX(1); }
.wx-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 8px 24px;
    background: var(--red);
    color: var(--white);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
    flex-shrink: 0;
}
.wx-header-cta:hover { background: var(--red-dark); color: var(--white); }
.wx-header-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    transition: transform .2s ease;
}
.wx-header-cta:hover .wx-header-cta-arrow {
    transform: rotate(45deg);
}

/* ----- HERO SECTION ----- */
.wx-hero {
    background: var(--white);
    padding: 16px 0 64px;
    position: relative;
    overflow: hidden;
}

/* Hero-Lade-Animation */
@keyframes wx-hero-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes wx-hero-fade-in {
    from { opacity: 0; transform: scale(0.85) rotate(-12deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes wx-hero-card-rise {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.wx-display-h1 {
    animation: wx-hero-fade-up .9s cubic-bezier(.2, .8, .25, 1) .05s both;
}
.wx-floating-right {
    animation: wx-hero-fade-in 1s cubic-bezier(.34, 1.56, .64, 1) .35s both;
}
.wx-stage {
    animation: wx-hero-card-rise 1s cubic-bezier(.2, .8, .25, 1) .25s both;
}
.wx-stage-card {
    animation: wx-hero-card-rise 1s cubic-bezier(.2, .8, .25, 1) .55s both;
}
.wx-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* ----- Floating LEFT (Star Rating Card) ----- */
.wx-floating-left {
    position: absolute;
    top: 40px;
    left: 40px;
    background: var(--white);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(26,26,26,0.10);
    z-index: 5;
    min-width: 200px;
}
.wx-star-row {
    display: flex;
    gap: 2px;
    color: #F5A623;
    font-size: 16px;
    margin-bottom: 6px;
}
.wx-rating-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
    color: var(--wx-muted);
}
.wx-rating-text strong {
    font-size: 16px;
    color: var(--wx-ink);
    font-weight: 800;
}

/* ----- Floating RIGHT (Sand Award Stamp with rotating text) ----- */
.wx-floating-right {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 150px;
    height: 150px;
    z-index: 5;
}
.wx-stamp-rotor {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: wx-rotate 25s linear infinite;
}
.wx-stamp-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.16em;
    fill: var(--wx-ink);
}
.wx-stamp-center {
    position: absolute;
    inset: 28px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
@keyframes wx-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ----- Display Headline ----- */
.wx-display-h1 {
    text-align: center;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--wx-ink);
    margin: 56px auto 48px;
    max-width: 840px;
}
.wx-display-accent {
    color: var(--red);
}

/* ----- Stage: Foto Vollflaechig mit Rundungen, Card OBEN-LINKS mit Offset, alle Ecken rund ----- */
.wx-stage {
    position: relative;
    width: 100%;
    height: 720px;
    border-radius: 32px;
    overflow: hidden;
    margin-top: 16px;
}
.wx-stage-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wx-stage-card {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 540px;
    background: var(--white);
    padding: 36px 36px 32px 36px;
    border-radius: 28px;
    box-shadow: 0 14px 36px rgba(26,26,26,0.18);
    z-index: 2;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s ease;
}
.wx-stage-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 32px 70px rgba(207, 28, 30, 0.22), 0 12px 24px rgba(26,26,26,0.18);
}

/* Anruf-Button Hover, ausgepraegt */
.wx-btn-call {
    transition: color .25s ease, transform .25s cubic-bezier(.4, 0, .2, 1);
}
.wx-btn-call:hover {
    color: var(--red);
    transform: translateX(4px);
}
.wx-btn-call-icon {
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease;
}
.wx-btn-call:hover .wx-btn-call-icon {
    transform: scale(1.15) rotate(-12deg);
    box-shadow: 0 8px 20px rgba(207, 28, 30, 0.45);
}
.wx-stage-sub {
    font-size: 15px;
    line-height: 1.65;
    color: var(--wx-muted);
    margin: 0 0 24px;
}
.wx-stage-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}
.wx-stage-card .wx-btn-pill {
    padding: 8px 6px 8px 22px;
    font-size: 14px;
}
.wx-stage-card .wx-btn-pill-arrow {
    width: 34px;
    height: 34px;
}
.wx-stage-card .wx-btn-call-icon {
    width: 44px;
    height: 44px;
}
.wx-stage-card .wx-btn-call-number {
    font-size: 15px;
}
.wx-stage-card .wx-btn-call-label {
    font-size: 11px;
}

.wx-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 28px;
    background: var(--red);
    color: var(--white);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, transform .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s ease;
}
.wx-btn-pill:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateX(4px);
    box-shadow: 0 12px 28px rgba(207, 28, 30, 0.35);
}
.wx-btn-pill-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}
.wx-btn-pill:hover .wx-btn-pill-arrow {
    transform: scale(1.15) rotate(45deg);
}

.wx-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--wx-ink);
    text-decoration: none;
}
.wx-btn-call:hover { color: var(--red); }
.wx-btn-call-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
}
.wx-btn-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.wx-btn-call-label {
    font-size: 12px;
    color: var(--wx-muted);
    font-weight: 500;
}
.wx-btn-call-number {
    font-size: 17px;
    font-weight: 800;
    color: var(--wx-ink);
}

/* ----- (legacy) Hero Photo wrapper, nicht mehr verwendet ----- */

/* ----- Responsive ----- */
/* Burger Menu Defaults (vor Media Queries fuer korrekte Cascade) */
.wx-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin-left: auto;
}
.wx-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wx-ink);
    transition: transform .25s ease, opacity .2s ease;
    border-radius: 2px;
}
.wx-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wx-burger.is-active span:nth-child(2) { opacity: 0; }
.wx-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.wx-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px 24px;
    background: var(--white);
    border-top: 1px solid var(--wx-border-soft);
}
.wx-mobile-nav a {
    padding: 14px 8px;
    color: var(--wx-ink);
    font-weight: 800;
    font-style: italic;
    text-decoration: none;
    border-bottom: 1px solid var(--wx-border-soft);
}
.wx-mobile-nav a:last-child { border-bottom: 0; }
.wx-mobile-nav .wx-mobile-phone {
    margin-top: 8px;
    background: var(--red);
    color: var(--white);
    border-radius: 12px;
    text-align: center;
    border-bottom: 0;
    font-style: normal;
}
.wx-mobile-nav.is-open { display: flex; }

@media (max-width: 1024px) {
    .wx-floating-left, .wx-floating-right { display: none; }
    .wx-display-h1 { margin: 32px auto 40px; }
    .wx-hero-photo img { height: 420px; }
}
@media (max-width: 768px) {
    .wx-topbar-inner { gap: 12px; }
    .wx-tb-item:not(.wx-tb-phone) { display: none; }
    .wx-nav { display: none; }
    .wx-header-cta { display: none; }
    .wx-burger { display: inline-flex; }
    .wx-hero { padding: 24px 0 48px; }
    .wx-topbar-inner, .wx-header-inner, .wx-hero-container { padding: 0 20px; }
    .wx-hero-photo img { height: 280px; }
    .wx-hero-cta-row { width: 100%; }
    .wx-btn-pill { width: 100%; justify-content: space-between; }

    /* Hero Stage Mobile */
    .wx-stage { height: auto; min-height: 480px; display: flex; flex-direction: column; }
    .wx-stage-card {
        position: static;
        width: auto;
        margin: 16px;
        padding: 24px;
        border-radius: 20px;
    }
    .wx-stage-card .wx-stage-cta { flex-direction: column; align-items: stretch; gap: 14px; }
    .wx-stage-card .wx-btn-pill { width: 100%; justify-content: space-between; }
    .wx-stage-photo { height: 320px; }

    /* Display Headline */
    .wx-display-h1 { font-size: clamp(32px, 9vw, 48px); margin: 24px auto 32px; }

    /* Floating-Stempel auf Mobile aus */
    .wx-floating-right { display: none; }

    /* Sektion-Padding */
    .section { padding: 56px 0; }
    .container { padding: 0 20px; }
    .section .h2 { font-size: clamp(28px, 7vw, 40px); }
    .section .lead { font-size: 16px; margin-bottom: 32px; }

    /* Problem-Header */
    .problem-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
    .problem-header-text { grid-column: 1; padding-right: 0; }
    .problem-header-image { grid-column: 1; }

    /* About */
    .about-header { margin: 0 0 32px; }
    .about-floating-mark { right: -16px; bottom: -16px; width: 90px; height: 90px; padding: 4px; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-num { font-size: 30px; }

    /* Loesung */
    .solution-header { margin-bottom: 32px; }
    .solution-header-cols { grid-template-columns: 1fr; gap: 24px; }
    .solution-header-top { margin-bottom: 24px; }
    .solution-header-text { padding-right: 0; }

    /* Leistungen */
    .service-card h3 { margin: 20px 24px 10px; font-size: 20px; }
    .service-card p { margin: 0 24px 24px; font-size: 15px; }

    /* Referenzen */
    .references-grid { gap: 12px; margin-top: 32px; }
    .ref-card figcaption { font-size: 13px; padding: 10px 14px; }

    /* Testimonials */
    .testimonial-card { padding: 24px 22px; }
    .testimonial-card blockquote { font-size: 15px; }

    /* FAQ */
    .faq-grid { grid-template-columns: 1fr; gap: 24px; }
    .faq-image { min-height: 240px; }
    .faq-list summary { font-size: 16px; padding-right: 32px; }

    /* Kontakt */
    .contact-header { grid-template-columns: 1fr; margin-bottom: 32px; }
    .contact-grid { grid-template-columns: 1fr; gap: 28px; align-items: stretch; }
    .contact-form { padding: 24px; }
    .ci-icon { width: 48px; height: 48px; }

    /* Service-Options */
    .service-options { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    /* Step Progress */
    .step-progress { gap: 4px; }
    .step-progress .step { font-size: 11px; padding: 8px 10px; gap: 6px; }
    .step-progress .step-num { width: 20px; height: 20px; font-size: 11px; }

    /* Footer */
    .footer { padding-top: 80px; background-attachment: scroll; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
    .footer-logo { justify-content: center; }
    .footer-tagline { max-width: none; }
    .footer-bottom-row { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
}

/* (Burger-Menu CSS verschoben oberhalb der Mobile-Media-Query) */

/* Mobile: fixed background fallback (iOS Safari support) */
@media (max-width: 900px) {
    .footer { background-attachment: scroll; }
}

/* ----- Legal Pages (Impressum, Datenschutz) ----- */
.legal-page {
    background: var(--bg);
    padding: 64px 0 96px;
    color: var(--text);
}
.legal-page h1 {
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 32px;
    color: var(--text);
}
.legal-page h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 40px 0 12px;
    color: var(--text);
}
.legal-page p, .legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}
.legal-page ul {
    padding-left: 22px;
    margin: 0 0 16px;
}
.legal-page a { color: var(--red); }
.legal-page a:hover { text-decoration: underline; }
.legal-page .eyebrow { margin-bottom: 14px; }
.legal-meta {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}
.legal-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 56px 0 40px;
}
.fox-credit {
    margin-bottom: 56px;
}
.fox-credit-logo {
    width: 120px;
    height: auto;
    margin: 0 0 24px;
    border-radius: 8px;
    display: block;
}
.fox-credit h2 { margin: 0 0 12px; }
.fox-credit-name {
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
}
.fox-credit-name:hover { text-decoration: underline; }
.fox-credit-seo {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 760px;
}
.fox-credit-seo strong { color: var(--text); }
.legal-back {
    margin-top: 32px;
}
.legal-back a {
    color: var(--red);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-badge-left, .hero-badge-right { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .topbar-item:not(.topbar-phone) { display: none; }
    .nav { display: none; }
    .section { padding: 72px 0; }
    .hero { padding: 56px 16px 48px; }
    .container, .container-narrow { padding: 0 16px; }
    .hero-cta-row { padding: 8px; flex-direction: column; gap: 12px; width: 100%; }
    .hero-cta-row .btn { width: 100%; justify-content: center; }
    .problem-grid, .solution-grid, .services-grid, .references-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .testimonial { padding: 32px 24px 28px; }
    .testimonial blockquote { font-size: 18px; }
}

/* ============================================================
   TCW-ENGINE ADD-ONS, v1 18.05.2026
   Honeypot, Form-Status, Cookie-Banner, Leaflet-Map, Field-Error
   ============================================================ */

/* Honeypot, off-screen */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Form-Status */
.form__status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}
.form__status.is-success {
    background: #e8f7ec;
    color: #198754;
    border-left: 3px solid #198754;
    display: block;
}
.form__status.is-error {
    background: #fde7e7;
    color: #b91c1c;
    border-left: 3px solid #b91c1c;
    display: block;
}

/* Field Error State (rot eingerahmt) */
.contact-form input.field--error,
.contact-form textarea.field--error {
    border-color: #b91c1c !important;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

/* Leaflet-Map Consent + Container */
.contact-map-wrap {
    margin-top: 32px;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f5f5f5;
    position: relative;
    min-height: 360px;
}
.contact-map-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 14px;
}
.contact-map-consent p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 480px; }
.contact-map-consent button {
    background: var(--red);
    color: #fff;
    border: 0;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: background 150ms ease;
}
.contact-map-consent button:hover { background: var(--red-dark); }
.contact-map-wrap.contact__map--loaded { min-height: 360px; }
.contact-map-wrap.contact__map--loaded .contact-map-consent { display: none; }
.herms-marker { background: transparent !important; border: 0 !important; }

/* Cookie-Banner */
#cookieBanner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-darker);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 280ms ease, transform 280ms ease;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
#cookieBanner.is-visible { opacity: 1; transform: translateY(0); }
#cookieBanner p { margin: 0; font-size: 13px; line-height: 1.5; flex: 1; min-width: 220px; }
#cookieBanner p a { color: var(--white); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
#cookieBanner button {
    background: var(--red);
    color: var(--white);
    border: 0;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.02em;
    transition: background 150ms ease, border-color 150ms ease;
    white-space: nowrap;
}
#cookieBanner button:hover { background: var(--red-dark); }
#cookieBanner button.cookie-banner-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 500;
}
#cookieBanner button.cookie-banner-decline:hover {
    background: transparent;
    border-color: var(--white);
}
@media (max-width: 540px) {
    #cookieBanner { padding: 14px 16px; }
    .cookie-banner-actions { width: 100%; }
    #cookieBanner button { flex: 1; }
}

