/* ============================================================
   EA-Reinigung, shared subpage stylesheet (pages.css)
   Extracted from the homepage design system (index.html inline
   styles). Used by /leistungen/* and /gebiete/* pages.
   The homepage keeps its own inline styles and does NOT load
   this file.
   ============================================================ */

/* ============================================================
   Design tokens (identical to the homepage)
   ============================================================ */
:root {
    --navy: #0f2137;
    --navy-700: #16304f;
    --navy-600: #1e3a5f;
    --orange: #f97316;
    --orange-600: #ea6a0c;
    --orange-soft: #fff4ec;

    --ink: #14202e;
    --slate-700: #3b4a5a;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --line: #e7ebf0;
    --surface: #ffffff;
    --bg: #f6f8fb;
    --bg-tint: #eef2f7;

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;
    --radius-pill: 999px;

    --shadow-xs: 0 1px 2px rgba(15, 33, 55, .06);
    --shadow-sm: 0 4px 14px rgba(15, 33, 55, .07);
    --shadow-md: 0 16px 40px rgba(15, 33, 55, .10);
    --shadow-lg: 0 30px 70px rgba(15, 33, 55, .16);
    --shadow-orange: 0 14px 30px rgba(249, 115, 22, .32);

    --space-section: clamp(64px, 8vw, 110px);
    --container: 1200px;

    --ease: cubic-bezier(.22, .61, .36, 1);

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

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

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

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 48px);
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--navy);
    font-weight: 800;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-head {
    max-width: 720px;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-head.center .eyebrow::before {
    display: none;
}

.section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    margin-top: 18px;
    color: var(--navy);
}

.section-sub {
    margin-top: 18px;
    font-size: 1.075rem;
    color: var(--slate-500);
    max-width: 60ch;
}

.section-head.center .section-sub {
    margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
    --b: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    padding: 16px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(249, 115, 22, .42);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: rgba(15, 33, 55, .18);
}

.btn-secondary:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-ghost-light {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    backdrop-filter: blur(6px);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
    background: var(--navy);
    color: #cdd7e4;
    font-size: .85rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    height: 42px;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cdd7e4;
    transition: color .2s var(--ease);
}

.topbar a:hover {
    color: #fff;
}

.topbar svg {
    width: 15px;
    height: 15px;
    color: var(--orange);
}

/* ============================================================
   Header
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 33, 55, .92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(255, 255, 255, .1);
    background: var(--navy);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 74px;
}

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

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-desktop a {
    position: relative;
    font-weight: 600;
    font-size: .96rem;
    color: #cdd7e4;
    padding: 9px 14px;
    border-radius: var(--radius-pill);
    transition: color .2s var(--ease), background .2s var(--ease);
}

.nav-desktop a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.header-cta {
    padding: 12px 22px;
    font-size: .95rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--bg-tint);
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(82vw, 340px);
    background: #fff;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 92px 26px 32px;
}

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

.mobile-nav a {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    padding: 14px 14px;
    border-radius: 12px;
    border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
    border: none;
    margin-top: 16px;
    justify-content: center;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 33, 55, .5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    z-index: 150;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   Page hero (subpage variant of the homepage hero)
   ============================================================ */
.page-hero {
    position: relative;
    background: var(--navy);
    color: #fff;
    overflow: hidden;
    padding: clamp(44px, 6.5vw, 84px) 0 clamp(52px, 7vw, 92px);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(110% 90% at 85% -10%, rgba(249, 115, 22, .18), transparent 55%);
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 800px;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.07;
    margin-top: 20px;
}

.page-hero .grad {
    background: linear-gradient(100deg, #ffb267, var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero .lead {
    margin-top: 20px;
    font-size: 1.14rem;
    line-height: 1.62;
    color: #c6d2e0;
    max-width: 56ch;
}

/* ---- Breadcrumbs (inside the page hero) ---- */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: #8fa3bb;
    margin-bottom: 22px;
}

.breadcrumbs a {
    color: #aebdd0;
    transition: color .2s var(--ease);
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs svg {
    width: 13px;
    height: 13px;
    color: #5c7290;
    flex: none;
}

.breadcrumbs [aria-current="page"] {
    color: #fff;
}

/* ---- Hero badge, actions, proof row (same look as the homepage) ---- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 26px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    color: #c6d2e0;
}

.hero-proof-item svg {
    width: 18px;
    height: 18px;
    color: #5ad19a;
    flex: none;
}

/* ============================================================
   Content sections
   ============================================================ */
.page-section {
    padding-block: var(--space-section);
}

.page-section.alt {
    background: var(--bg-tint);
}

.page-section.white {
    background: #fff;
}

.page-section.navy {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-section.navy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 90% 0%, rgba(249, 115, 22, .14), transparent 60%);
    pointer-events: none;
}

.page-section.navy .container {
    position: relative;
    z-index: 2;
}

.page-section.navy .section-title,
.page-section.navy .eyebrow {
    color: #fff;
}

.page-section.navy .section-sub {
    color: #b9c5d6;
}

.page-section.navy .prose p {
    color: #c6d2e0;
}

.page-section.navy .prose strong {
    color: #fff;
}

.page-section.navy .guarantee-box {
    border-color: rgba(249, 115, 22, .45);
    box-shadow: var(--shadow-lg);
}

.guarantee-box + .prose {
    margin-top: 36px;
}

/* ---- Long copy (prose) ---- */
.prose {
    max-width: 640px;
}

.prose p {
    font-size: 1.02rem;
    color: var(--slate-700);
    line-height: 1.78;
    margin-top: 16px;
}

.prose p:first-child {
    margin-top: 0;
}

.prose strong {
    color: var(--navy);
    font-weight: 700;
}

.prose a {
    color: var(--orange-600);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(249, 115, 22, .4);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}

.prose a:hover {
    color: var(--orange);
    text-decoration-color: var(--orange);
}

.prose ul {
    list-style: none;
    margin-top: 16px;
}

.prose ul li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.65;
    margin-top: 10px;
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .3em;
    width: 17px;
    height: 17px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235ad19a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---- Split layout (text + image) ---- */
.split-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}

.media-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.media-card .media-tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .92);
    color: var(--navy);
    font-size: .78rem;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
}

.media-card .media-tag svg {
    width: 14px;
    height: 14px;
    color: var(--orange);
}

/* ---- Numbered steps (light variant, no JS required) ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.step-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow-xs);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(249, 115, 22, .4);
}

.step-card .step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.step-card h3 {
    font-size: 1.02rem;
    margin-bottom: 7px;
    line-height: 1.25;
}

.step-card p {
    font-size: .88rem;
    color: var(--slate-500);
    line-height: 1.55;
}

/* ---- Scope cards (what is included) ---- */
.include-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.include-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: var(--shadow-xs);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.include-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.include-card .ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--orange-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.include-card .ic svg {
    width: 22px;
    height: 22px;
    color: var(--orange);
}

.include-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.include-card ul {
    list-style: none;
}

.include-card li {
    position: relative;
    padding-left: 24px;
    font-size: .92rem;
    color: var(--slate-700);
    line-height: 1.5;
    margin-top: 8px;
}

.include-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .32em;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235ad19a' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.include-note {
    margin-top: 26px;
    font-size: .96rem;
    color: var(--slate-500);
    max-width: 72ch;
}

/* ---- Guarantee highlight box ---- */
.guarantee-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(249, 115, 22, .35);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    max-width: 760px;
}

.guarantee-box .gb-ic {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--orange-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-box .gb-ic svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.guarantee-box h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.guarantee-box p {
    font-size: .98rem;
    color: var(--slate-700);
    line-height: 1.65;
}

/* ============================================================
   FAQ (identical to the homepage)
   ============================================================ */
.faq {
    padding-block: var(--space-section);
    background: #fff;
}

.faq-list {
    max-width: 820px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.faq-item[open] {
    border-color: rgba(249, 115, 22, .4);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    transition: color .2s var(--ease);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--orange-600);
}

.faq-item summary::after {
    content: "";
    flex: none;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform .3s var(--ease);
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    font-size: .98rem;
    color: var(--slate-700);
    line-height: 1.68;
    max-width: 64ch;
}

/* ============================================================
   Final CTA (identical to the homepage)
   ============================================================ */
.final-cta {
    padding-block: clamp(60px, 7vw, 96px);
    background: var(--navy);
}

.final-cta .inner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--navy-700), var(--navy));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
    text-align: center;
}

.final-cta .inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 120% at 50% -20%, rgba(249, 115, 22, .28), transparent 60%);
    pointer-events: none;
}

.final-cta-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, .14);
    border: 1px solid rgba(249, 115, 22, .3);
    color: #ffb267;
    font-size: .82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 22px;
}

.final-cta-badge svg {
    width: 16px;
    height: 16px;
}

.final-cta h2 {
    position: relative;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.final-cta p {
    position: relative;
    color: #c6d2e0;
    font-size: 1.1rem;
    margin: 16px auto 0;
    max-width: 52ch;
}

.final-cta-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 34px;
}

/* ============================================================
   Footer (identical to the homepage)
   ============================================================ */
.footer {
    background: #0a1726;
    color: #9fb0c4;
    padding-block: clamp(56px, 6vw, 80px) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand img {
    height: 42px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: .94rem;
    line-height: 1.65;
    max-width: 34ch;
}

.footer h4 {
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: .02em;
}

.footer-col a {
    display: block;
    font-size: .94rem;
    padding: 6px 0;
    color: #9fb0c4;
    transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.footer-col a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .92rem;
    padding: 7px 0;
    line-height: 1.5;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex: none;
    margin-top: 2px;
}

.footer-contact-item a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-block: 26px;
    font-size: .86rem;
}

.footer-bottom .credit {
    color: #6b7d92;
}

/* ============================================================
   Motion preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .split-grid .media-card {
        max-width: 620px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .include-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 760px) {
    .topbar .container {
        justify-content: center;
        gap: 18px;
    }

    .topbar a:nth-child(2) span {
        display: none;
    }

    .nav-desktop,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .page-hero {
        padding: 34px 0 52px;
    }

    .page-hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
        margin-top: 18px;
    }

    .page-hero .lead {
        font-size: 1.05rem;
        margin-top: 16px;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .steps-grid,
    .include-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .guarantee-box {
        flex-direction: column;
        padding: 22px 22px;
    }

    .btn {
        padding: 15px 24px;
        min-height: 48px;
    }

    .nav-desktop a,
    .mobile-nav a {
        min-height: 44px;
    }
}

@media (max-width: 420px) {
    body {
        font-size: 16px;
    }

    .container {
        padding-inline: 18px;
    }

    .topbar {
        font-size: .78rem;
    }

    .topbar .container {
        gap: 14px;
    }

    .topbar a:first-child svg {
        display: none;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .btn {
        padding: 15px 20px;
    }

    .section-title {
        font-size: clamp(1.55rem, 7vw, 1.9rem);
    }

    .breadcrumbs {
        font-size: .8rem;
    }
}


/* ===== Vorher / Nachher ===== */
.vn{padding:72px 0;background:var(--bg);}
.vn .container{max-width:1120px;margin:0 auto;padding:0 24px;}
.vn-head{text-align:center;max-width:660px;margin:0 auto 42px;}
.vn-head h2{font-size:clamp(1.5rem,3vw,2rem);color:var(--ink);margin:0 0 12px;letter-spacing:-.01em;}
.vn-head p{color:var(--slate-500);margin:0;font-size:1.02rem;}
.vn-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;}
.vn-grid.two{grid-template-columns:repeat(2,minmax(0,1fr));max-width:760px;margin-left:auto;margin-right:auto;}
.vn-grid.one{grid-template-columns:minmax(0,520px);justify-content:center;}
.vn-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);}
.vn-imgs{display:grid;grid-template-columns:1fr 1fr;gap:3px;background:var(--line);}
.vn-fig{position:relative;margin:0;aspect-ratio:1/1;background:#fff;}
.vn-fig img{display:block;width:100%;height:100%;object-fit:cover;object-position:center;}
.vn-tag{position:absolute;bottom:9px;left:9px;font-size:.7rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#fff;padding:4px 9px;border-radius:var(--radius-pill);}
.vn-tag.v{background:rgba(15,33,55,.85);}
.vn-tag.n{background:var(--orange);}
.vn-cap{padding:14px 16px;font-weight:600;color:var(--ink);font-size:.95rem;text-align:center;}
@media(max-width:900px){.vn-grid,.vn-grid.two{grid-template-columns:1fr;max-width:440px;margin-left:auto;margin-right:auto;}}
