/* ============================================
   PKS Pflegekomfort Saar — Design System
   Senioren-freundlich: hohe Kontraste, große Typo,
   großzügige Touch-Targets, klare Hierarchie.
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Brand — abgeleitet aus Logo + Broschüre */
    --primary: #80CC2A;          /* Limettengrün vom PKS-Logo */
    --primary-dark: #6BAB1F;     /* Hover/active */
    --primary-light: #f1f9dd;    /* Sehr helles Grün für Backgrounds */
    --accent: #5C6266;           /* Anthrazit als Akzent (Broschüren-Grau) */
    --accent-dark: #3F4548;
    --accent-light: #f4f4f3;

    /* Neutrals — Anthrazit aus der Broschüre (helleres Mittelgrau, nicht zu schwarz) */
    --dark: #5C6266;             /* Broschüren-Anthrazit für dunkle Sections */
    --dark-deep: #3F4548;        /* tiefer für Footer und Kontrast-Akzente */
    --text: #3F4548;             /* Body-Text bleibt dunkler für gute Lesbarkeit */
    --text-muted: #686C6E;       /* Grauwert aus Logo */
    --light-bg: #FAFAF8;
    --section-bg: #F4F2ED;
    --white: #ffffff;
    --border: #E2E1DC;
    --shadow-sm: 0 2px 8px rgba(63, 69, 72, 0.06);
    --shadow: 0 4px 16px rgba(63, 69, 72, 0.10);
    --shadow-lg: 0 12px 32px rgba(63, 69, 72, 0.13);

    /* Status */
    --success: #5DA51E;
    --success-light: #eef7df;

    /* Spacing */
    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 1.5rem;
    --gap-lg: 2.5rem;
    --gap-xl: 4rem;

    /* Typo */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-base: 17px;          /* etwas größer als Standard für Senioren */
    --font-base-mobile: 16px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: var(--font-base);
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

@media (max-width: 600px) { body { font-size: var(--font-base-mobile); } }

/* ============= Typography ============= */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; max-width: 70ch; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); text-decoration: underline; }
strong { font-weight: 700; color: var(--dark); }

ul, ol { margin: 0.5rem 0 1rem 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ============= Layout ============= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 820px; }
.container--wide { max-width: 1400px; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--section-bg); }
.section--primary { background: var(--primary); color: var(--white); }
.section--primary h1, .section--primary h2, .section--primary h3 { color: var(--white); }
.section--primary p { color: rgba(255, 255, 255, 0.92); }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-header h2 { color: var(--dark); }
.section-header p { font-size: 1.1rem; color: var(--text-muted); margin: 1rem auto 0; }
.section-label {
    display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem;
}

/* ============= Top Bar (Telefonnummern) ============= */
.top-bar {
    background: var(--dark); color: var(--white);
    padding: 0.55rem 0; font-size: 0.92rem;
}
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-bar__phones { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar__phone { color: var(--white); display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; }
.top-bar__phone:hover { color: var(--primary); text-decoration: none; }
.top-bar__phone span.label { font-weight: 400; opacity: 0.7; }
.top-bar__notice { color: var(--primary); font-weight: 700; display: flex; align-items: center; gap: 0.4rem; }

@media (max-width: 700px) {
    .top-bar { font-size: 0.85rem; padding: 0.4rem 0; }
    .top-bar__notice { display: none; }
    .top-bar__phones { gap: 1rem; width: 100%; justify-content: space-around; }
}

/* ============= Header / Navbar ============= */
.site-header {
    background: var(--white); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm);
}
.header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0.9rem 1.5rem;
    display: flex; justify-content: space-between; align-items: center; gap: 2rem;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo:hover { text-decoration: none; opacity: 0.85; }
.logo img { height: 48px; width: auto; display: block; }
@media (max-width: 600px) { .logo img { height: 40px; } }

.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
    color: var(--text); font-weight: 600; font-size: 0.97rem;
    padding: 0.5rem 0; border-bottom: 2px solid transparent; transition: all 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }

.btn-cta-nav {
    background: var(--primary); color: var(--dark) !important;
    padding: 0.7rem 1.4rem !important; border-radius: 8px;
    border: 2px solid var(--primary) !important; font-weight: 700;
    transition: all 0.2s;
}
.btn-cta-nav:hover { background: var(--primary-dark); border-color: var(--primary-dark) !important; color: var(--white) !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 28px; height: 3px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

@media (max-width: 960px) {
    .menu-toggle { display: block; }
    .main-nav { position: fixed; top: 0; right: -100%; width: 320px; max-width: 85vw; height: 100vh; background: var(--white); flex-direction: column; align-items: stretch; padding: 5rem 1.5rem 2rem; gap: 0; box-shadow: -4px 0 24px rgba(0,0,0,0.1); transition: right 0.3s ease; overflow-y: auto; }
    .main-nav.open { right: 0; }
    .main-nav a { padding: 1rem 0; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
    .menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============= Buttons ============= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 1.75rem; font-family: var(--font-body); font-size: 1rem; font-weight: 700;
    border-radius: 10px; border: 2px solid transparent; text-decoration: none; cursor: pointer;
    transition: all 0.2s; min-height: 50px; line-height: 1.1;
}
.btn--primary { background: var(--primary); color: var(--dark); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--accent { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn--accent:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); text-decoration: none; }
.btn--white { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn--white:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); text-decoration: none; }
.btn--lg { padding: 1.25rem 2.25rem; font-size: 1.1rem; min-height: 60px; }

/* ============= Hero ============= */
.hero {
    position: relative; padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(128, 204, 42, 0.10), transparent 70%); border-radius: 50%; }
.hero__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero__badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--white); color: var(--dark); border: 2px solid var(--primary);
    padding: 0.5rem 1.1rem; border-radius: 30px; font-size: 0.88rem; font-weight: 700;
    margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.hero__badge svg { color: var(--primary); }
.hero__title { color: var(--dark); margin-bottom: 1.25rem; }
.hero__title span { color: var(--primary); display: block; }
.hero__subtitle { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text); margin-bottom: 2rem; max-width: 56ch; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__trust { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; font-size: 0.9rem; color: var(--text-muted); }
.hero__trust-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__trust-item svg { color: var(--success); flex-shrink: 0; }

.hero__image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--section-bg); display: flex; align-items: center; justify-content: center; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__image-placeholder { color: var(--primary); font-size: 5rem; opacity: 0.3; }

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero__image { max-width: 500px; margin: 0 auto; }
}

/* ============= Trust Bar ============= */
.trust-bar {
    background: var(--dark); color: var(--white); padding: 1.5rem 0;
}
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-bar__item { display: flex; align-items: center; gap: 0.8rem; }
.trust-bar__icon { color: var(--primary); flex-shrink: 0; }
.trust-bar__text strong { display: block; color: var(--white); font-size: 1.05rem; }
.trust-bar__text span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

@media (max-width: 800px) {
    .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 480px) {
    .trust-bar__grid { grid-template-columns: 1fr; }
}

/* ============= Process Steps ============= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step-counter; }
.step {
    background: var(--white); border: 1px solid var(--border); border-radius: 16px;
    padding: 2rem 1.5rem; text-align: center; position: relative; transition: all 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.step__number {
    width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
}
.step__icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* ============= Variant Cards (Variante 1 / 2) ============= */
.variants { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.variant-card {
    background: var(--white); border-radius: 16px; padding: 2.5rem 2rem;
    border: 2px solid var(--border); position: relative; transition: all 0.2s;
}
.variant-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); transform: translateY(-4px); }
.variant-card--featured { border-color: var(--primary); background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%); }
.variant-card__badge {
    position: absolute; top: -14px; right: 1.5rem;
    background: var(--primary); color: var(--dark); padding: 0.4rem 1.1rem; border-radius: 30px;
    font-size: 0.85rem; font-weight: 800; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.variant-card__label { color: var(--primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.variant-card h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.variant-card ul { list-style: none; margin: 1.25rem 0; padding: 0; }
.variant-card li { padding: 0.5rem 0 0.5rem 1.75rem; position: relative; }
.variant-card li::before {
    content: ''; position: absolute; left: 0; top: 0.6rem;
    width: 22px; height: 22px; background: var(--success-light); border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232D9D5F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat; background-position: center;
}
.variant-card__cta { margin-top: 1.5rem; }

@media (max-width: 800px) { .variants { grid-template-columns: 1fr; } }

/* ============= 10 Gründe Grid ============= */
.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.reason {
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    padding: 1.75rem 1.5rem; transition: all 0.2s; text-align: center;
}
.reason:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.reason__icon {
    width: 60px; height: 60px; border-radius: 16px; background: var(--primary-light);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
    color: var(--primary); font-size: 1.7rem;
}
.reason h4 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--dark); }
.reason p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ============= Förderung-Box ============= */
.foerderung-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-deep) 100%);
    color: var(--white); padding: 3rem; border-radius: 20px;
    display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
    box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.foerderung-box::before {
    content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px;
    background: var(--primary); opacity: 0.15; border-radius: 50%;
}
.foerderung-box__amount { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--primary); line-height: 1; position: relative; z-index: 1; }
.foerderung-box__text { position: relative; z-index: 1; }
.foerderung-box__text h3 { color: var(--white); margin-bottom: 0.4rem; }
.foerderung-box__text p { color: rgba(255,255,255,0.9); margin: 0; }
.foerderung-box .btn { white-space: nowrap; position: relative; z-index: 1; }

@media (max-width: 800px) {
    .foerderung-box { grid-template-columns: 1fr; padding: 2rem; text-align: center; }
    .foerderung-box__amount { font-size: 3rem; }
}

/* ============= Download-Card ============= */
.download-card {
    background: var(--primary-light); border: 2px solid var(--primary);
    border-radius: 16px; padding: 1.75rem 2rem;
    display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center;
}
.download-card__icon {
    width: 56px; height: 56px; border-radius: 12px; background: var(--primary); color: var(--dark);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.download-card__body h3 { margin: 0 0 0.25rem; font-size: 1.2rem; color: var(--dark); }
.download-card__body p { margin: 0; color: var(--text); font-size: 0.95rem; }
.download-card__body p .meta { color: var(--text-muted); font-size: 0.85rem; }
.download-card .btn { white-space: nowrap; }

@media (max-width: 700px) {
    .download-card { grid-template-columns: 1fr; text-align: center; padding: 1.5rem; }
    .download-card__icon { margin: 0 auto; }
    .download-card .btn { width: 100%; }
}

/* ============= Standorte ============= */
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.location {
    background: var(--white); border: 1px solid var(--border); border-radius: 16px;
    padding: 2.5rem; text-align: center; transition: all 0.2s;
}
.location:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.location__city { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.location__address { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }
.location__phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.location__phone:hover { color: var(--primary-dark); text-decoration: none; }
.location__hours { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 700px) { .locations { grid-template-columns: 1fr; } }

/* ============= iframe Section ============= */
.iframe-section { background: var(--section-bg); padding: clamp(3rem, 6vw, 5rem) 0; }
.iframe-wrapper {
    background: var(--white); border-radius: 16px; padding: 1.5rem;
    box-shadow: var(--shadow-lg); max-width: 900px; margin: 0 auto;
}
.iframe-wrapper iframe { width: 100%; min-height: 580px; border: none; border-radius: 8px; }

/* ============= Team-Cards ============= */
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.75rem;
}
.team-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden; transition: all 0.2s; text-align: center;
    display: flex; flex-direction: column;
}
.team-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-3px); }
.team-card__img {
    width: 100%; aspect-ratio: 1/1; overflow: hidden; background: var(--section-bg);
    position: relative;
}
.team-card__img img {
    width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s;
}
.team-card__img--placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--section-bg) 100%);
    font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800;
    color: var(--primary-dark); letter-spacing: 0.05em;
}
.team-card:hover .team-card__img img { transform: scale(1.03); }
.team-card__body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; }
.team-card h4 { font-size: 1.1rem; margin-bottom: 0.35rem; color: var(--dark); }
.team-card__role {
    color: var(--primary); font-weight: 700; font-size: 0.88rem;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem;
}
.team-card__qualifications {
    font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin: 0;
    max-width: none;
}

/* ============= Kundenbilder: 3D-Plan + Vorher/Nachher-Slider ============= */
.kundenbild-row {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem;
    margin-bottom: 2.5rem; align-items: stretch;
}
.kundenbild-row:last-child { margin-bottom: 0; }
.kundenbild-3d, .kundenbild-slider {
    position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3; background: var(--section-bg);
    border: 1px solid var(--border);
}
.kundenbild-3d img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kundenbild-label {
    position: absolute; top: 1rem; left: 1rem; z-index: 3;
    background: var(--primary); color: var(--dark);
    padding: 0.45rem 1rem; border-radius: 30px;
    font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Comparison-Slider: zwei Bilder übereinander, oberes mit clip-path gesteuert */
.compare {
    position: relative; width: 100%; height: 100%; user-select: none;
    touch-action: pan-y; cursor: ew-resize;
}
.compare img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; pointer-events: none; display: block;
}
.compare__after { z-index: 1; }
.compare__before {
    z-index: 2;
    clip-path: polygon(0 0, var(--compare-pos, 50%) 0, var(--compare-pos, 50%) 100%, 0 100%);
}
.compare__label-before, .compare__label-after {
    position: absolute; top: 1rem; z-index: 4;
    background: rgba(31, 47, 50, 0.82); color: var(--white);
    padding: 0.4rem 0.9rem; border-radius: 30px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    pointer-events: none;
}
.compare__label-before { left: 1rem; }
.compare__label-after { right: 1rem; }
.compare__handle {
    position: absolute; top: 0; bottom: 0; left: var(--compare-pos, 50%); z-index: 5;
    width: 4px; background: var(--white); transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.compare__handle::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); transform: translate(-50%, -50%);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233F4548' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/><polyline points='9 18 15 12 9 6' transform='translate(6 0)'/></svg>");
    background-repeat: no-repeat; background-position: center;
    background-size: 20px;
}

@media (max-width: 800px) {
    .kundenbild-row { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
}

/* ============= Footer ============= */
.footer { background: var(--dark-deep); color: rgba(255,255,255,0.85); padding: 3.5rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer__brand .logo__text strong { color: var(--white); }
.footer__brand .logo__text small { color: rgba(255,255,255,0.6); }
.footer__brand p { font-size: 0.92rem; color: rgba(255,255,255,0.7); max-width: 320px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a { color: rgba(255,255,255,0.8); font-size: 0.93rem; }
.footer__links a:hover { color: var(--primary); text-decoration: none; }
.footer__contact { font-size: 0.92rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.7rem; line-height: 1.5; }
.footer__contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item a { color: rgba(255,255,255,0.85); }
.footer__contact-item a:hover { color: var(--primary); text-decoration: none; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; gap: 1rem; }
.footer__bottom a { color: rgba(255,255,255,0.7); margin-left: 1rem; }
.footer__bottom a:first-child { margin-left: 0; }
.footer__bottom a:hover { color: var(--primary); text-decoration: none; }

@media (max-width: 800px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer__brand { grid-column: span 2; }
}
@media (max-width: 500px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }
}

/* ============= Mobile Sticky CTA ============= */
.mobile-sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--white); padding: 0.75rem 1rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12); border-top: 1px solid var(--border);
}
.mobile-sticky-cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; max-width: 600px; margin: 0 auto; }
.mobile-sticky-cta .btn { padding: 0.85rem 0.5rem; font-size: 0.9rem; min-height: 48px; gap: 0.3rem; }
@media (max-width: 760px) { .mobile-sticky-cta { display: block; } body { padding-bottom: 75px; } }

/* ============= Consent Banner ============= */
.consent-banner {
    display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--dark); color: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    font-size: 0.88rem;
}
.consent-banner--visible { display: block; }
.consent-banner__inner {
    display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
    max-width: 1200px; margin: 0 auto; padding: 0.55rem 1rem;
}
.consent-banner__text { flex: 1 1 320px; line-height: 1.4; color: rgba(255,255,255,0.92); }
.consent-banner__text a { color: var(--primary); text-decoration: underline; }
.consent-banner__actions { display: flex; gap: 0.4rem; flex-shrink: 0; }
.consent-banner__actions button {
    border: 1px solid transparent; border-radius: 6px;
    padding: 0.4rem 0.9rem; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; font-family: inherit;
}
.consent-banner__accept { background: var(--primary); color: var(--dark); border-color: var(--primary); }
.consent-banner__accept:hover { background: var(--primary-dark); color: var(--white); }
.consent-banner__decline { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.consent-banner__decline:hover { color: var(--white); border-color: var(--white); }
@media (max-width: 600px) {
    .consent-banner__inner { padding: 0.5rem 0.75rem; gap: 0.6rem; }
    .consent-banner__text { flex-basis: 100%; font-size: 0.82rem; }
    .consent-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ============= Footer social ============= */
.footer__social { display: flex; gap: 0.75rem; align-items: center; }
.footer__social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
    transition: all 0.2s;
}
.footer__social a:hover { background: var(--primary); color: var(--dark); }

/* ============= Helpers ============= */
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Fade-in only animates when JS runs; defaults to visible to avoid hidden-content fallback */
.has-js .fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.has-js .fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .has-js .fade-in { opacity: 1; transform: none; transition: none; }
}

.breadcrumb { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span.sep { margin: 0 0.4rem; opacity: 0.5; }

.intro-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.intro-row__img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--section-bg); }
.intro-row__img img { width: 100%; height: 100%; object-fit: cover; }
.intro-row--reverse .intro-row__img { order: 1; }
.intro-row--reverse .intro-row__content { order: 2; }
@media (max-width: 800px) {
    .intro-row { grid-template-columns: 1fr; gap: 2rem; }
    .intro-row--reverse .intro-row__img { order: 0; }
    .intro-row--reverse .intro-row__content { order: 0; }
}

.cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-deep) 100%);
    color: var(--white); border-radius: 20px; padding: 3rem 2rem; text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -80px; left: -80px; width: 250px; height: 250px;
    background: var(--primary); opacity: 0.12; border-radius: 50%;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.92); max-width: 600px; margin: 1rem auto 2rem; }
.cta-banner__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Contact form */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-form h3 { margin-top: 0; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); font-size: 0.95rem; }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group select, .form-group textarea {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border); border-radius: 10px;
    font-family: inherit; font-size: 1rem; background: var(--white); color: var(--text); transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
.checkbox-label input[type="checkbox"] { margin-top: 0.25rem; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--primary); }
.form-alert { background: #fee; border: 1px solid #fcc; color: #900; padding: 1rem; border-radius: 10px; margin-bottom: 1.5rem; }
.contact-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .contact-columns { grid-template-columns: 1fr; } }
