/* ===== FONTS ===== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('./fonts/inter-var.woff2') format('woff2');
}

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

:root {
    --clr-primary: #C41E1E;
    --clr-primary-dark: #9B1818;
    --clr-primary-deeper: #6B1010;
    --clr-primary-light: #E03535;
    --clr-primary-pale: #FDF0F0;
    --clr-bg: #FAFAFA;
    --clr-bg-alt: #F3F3F3;
    --clr-bg-dark: #1A1A1A;
    --clr-text: #1A1A1A;
    --clr-text-muted: #3D3D3D;
    --clr-text-light: #8A8A8A;
    --clr-white: #ffffff;
    --clr-border: rgba(0,0,0,0.08);
    --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-dark); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.8rem calc((100% - 1200px) / 2 + 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 40px rgba(0,0,0,0.1);
}

.nav-logo-img { height: 80px; width: auto; }

.nav-menu {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    text-decoration: none;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    border-radius: 1px;
    transition: width var(--transition), left var(--transition);
}

.nav-link:hover { color: var(--clr-primary); }
.nav-link:hover::after { width: 60%; left: 20%; }

.nav-link.active {
    color: var(--clr-primary);
    font-weight: 600;
}

.nav-link.active::after { width: 60%; left: 20%; }

/* Dropdown */


.nav-cta {
    background: var(--clr-primary);
    color: var(--clr-white) !important;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
}

.nav-cta:hover { background: var(--clr-primary-dark); }

.nav-cta.active {
    background: var(--clr-primary-dark);
    color: var(--clr-white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/sauberdach-dachreinigung-dachbeschichtung-steiermark.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(10,0,0,0.92) 0%, rgba(196,30,30,0.2) 45%, rgba(20,20,20,0.55) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 40%, transparent 70%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 8rem 2rem 4rem 0;
    margin-left: calc((100% - 1200px) / 2 + 2rem);
}

.hero-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clr-primary-light);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--clr-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-sub strong { color: var(--clr-white); }

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition);
}

.hero-scroll:hover { color: rgba(255,255,255,0.9); }

.hero-scroll-arrow {
    width: 28px;
    height: 28px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    animation: scrollBounce 1.8s ease-in-out infinite;
}

.hero-scroll::before {
    content: '';
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    position: absolute;
    bottom: -4px;
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(-45deg) translate(0, 0); opacity: 0.5; }
    50% { transform: rotate(-45deg) translate(5px, 5px); opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.4); opacity: 0; }
}

/* ===== PAGE HERO (Subpages) ===== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero--small {
    min-height: 320px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--clr-white);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.page-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 600px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--transition);
}

.page-hero .breadcrumb a:hover {
    color: var(--clr-white);
}

.page-hero .breadcrumb span {
    color: rgba(255,255,255,0.9);
}

.page-hero .breadcrumb .breadcrumb-sep {
    color: rgba(255,255,255,0.4);
}

.legal-page .breadcrumb {
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.legal-page .breadcrumb a {
    color: var(--clr-text-muted);
}

.legal-page .breadcrumb a:hover {
    color: var(--clr-primary);
}

.legal-page .breadcrumb span {
    color: var(--clr-text);
}

.legal-page .breadcrumb .breadcrumb-sep {
    color: var(--clr-text-light);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    min-height: 48px;
}

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
    box-shadow: 0 4px 12px rgba(196,30,30,0.25);
}

.btn-primary:hover {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    color: var(--clr-white);
    box-shadow: 0 6px 20px rgba(196,30,30,0.35);
    transform: translateY(-1px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--clr-text);
    border-color: var(--clr-border);
}

.btn-outline-dark:hover {
    background: var(--clr-bg-alt);
    border-color: var(--clr-text-light);
    color: var(--clr-text);
}

/* Phone buttons */
.btn-phone-dark {
    background: var(--clr-white);
    color: var(--clr-primary);
    border-color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-phone-dark:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
    box-shadow: 0 4px 12px rgba(196,30,30,0.25);
}

.btn-phone-dark:hover svg {
    stroke: var(--clr-white);
}

.btn-phone-dark svg {
    flex-shrink: 0;
    stroke: var(--clr-primary);
}

.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

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

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

/* ===== LEISTUNGEN ===== */
.leistungen { background: var(--clr-white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--clr-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    box-shadow: 0 16px 48px rgba(196,30,30,0.12), 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    color: inherit;
}

.service-card-btn {
    margin-top: 1.5rem;
    display: inline-flex;
}

.service-card--wide {
    grid-column: 1 / -1;
}

.service-img-wrap {
    height: 260px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.05);
}

.service-body {
    padding: 2rem;
}

.service-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--clr-text);
}

.service-body p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

.service-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-body li {
    font-size: 1rem;
    color: var(--clr-text-muted);
    padding-left: 1.2rem;
    position: relative;
}

.service-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--clr-primary);
    border-radius: 50%;
}

.service-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.extra {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--clr-text);
}

.extra svg {
    width: 20px;
    height: 20px;
    color: var(--clr-primary);
    flex-shrink: 0;
}

/* ===== VORTEILE ===== */
.vorteile {
    background: linear-gradient(180deg, var(--clr-bg-alt) 0%, #eee 100%);
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.vorteil {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.vorteil:hover {
    box-shadow: 0 8px 32px rgba(196,30,30,0.1), 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.vorteil:hover .vorteil-icon {
    background: var(--clr-primary);
    transform: scale(1.05);
}

.vorteil:hover .vorteil-icon svg {
    color: var(--clr-white);
}

.vorteil-icon {
    transition: background var(--transition), transform var(--transition);
}

.vorteil-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-primary-pale);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.vorteil-icon svg {
    width: 24px;
    height: 24px;
    color: var(--clr-primary);
}

.vorteil h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-text);
}

.vorteil p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ===== REFERENZEN ===== */
.referenzen { background: var(--clr-white); }

.ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.ref-grid--full {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.ref-item { border-radius: var(--radius); overflow: hidden; }

.compare {
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    aspect-ratio: 3/2;
}

.compare > picture,
.compare > img {
    width: 100%;
    height: 100%;
    display: block;
}

.compare > picture img,
.compare > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.compare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
}

.compare-overlay picture {
    display: block;
    height: 100%;
}

.compare-overlay picture img,
.compare-overlay > img {
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: none;
}

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    z-index: 5;
}

.compare-line {
    width: 3px;
    height: 100%;
    background: var(--clr-white);
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.compare-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--clr-white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l3-3M4 8l3 3M12 8l-3-3M12 8l-3 3' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.compare-label {
    position: absolute;
    bottom: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-white);
    background: rgba(0,0,0,0.5);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    z-index: 3;
}

.compare-label--before { left: 0.75rem; }
.compare-label--after { right: 0.75rem; }

/* ===== UEBER UNS ===== */
.ueber-uns { background: var(--clr-bg-alt); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.about-img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
}

.about-text p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

.about-text blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--clr-text);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, var(--clr-primary-pale) 0%, var(--clr-white) 100%);
    border-left: 4px solid var(--clr-primary);
    border-radius: var(--radius-sm);
    position: relative;
}

.about-text blockquote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 12px;
    font-size: 3.5rem;
    font-family: Georgia, serif;
    color: var(--clr-primary);
    opacity: 0.2;
    line-height: 1;
}

.about-signature {
    font-weight: 600;
    color: var(--clr-text);
    font-size: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.stat { text-align: center; }

.stat-num {
    display: inline;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    margin-top: 0.3rem;
    letter-spacing: 0.02em;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--clr-bg-alt);
}

.cta-banner-inner {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
}

.cta-banner-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 0.75rem;
}

.cta-banner-text {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq { background: var(--clr-white); }

.faq-list {
    max-width: 750px;
    margin: 2rem auto 0;
}

.faq-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow); }
.faq-item[open] { border-color: var(--clr-primary); box-shadow: 0 4px 16px rgba(196,30,30,0.08); }

.faq-item summary {
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color var(--transition), background var(--transition);
}

.faq-item summary:hover { background: rgba(196,30,30,0.02); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--clr-primary);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(196,30,30,0.06);
    transition: transform var(--transition), background var(--transition);
}

.faq-item[open] summary::after {
    content: '\2212';
    transform: translateY(-50%);
    background: var(--clr-primary);
    color: #fff;
}

.faq-item[open] summary {
    color: var(--clr-primary);
    border-bottom: 1px solid var(--clr-border);
}

.faq-item .faq-answer {
    overflow: hidden;
    animation: faqOpen 0.3s ease;
}

@keyframes faqOpen {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 300px; }
}

.faq-item p {
    padding: 1rem 1.5rem 1.2rem;
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

/* ===== KONTAKT ===== */
.kontakt { background: var(--clr-bg-alt); }

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.kontakt-form {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--clr-text);
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(196,30,30,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.form-check input { margin-top: 0.2rem; accent-color: var(--clr-primary); }

.info-card {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.info-role {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

.info-line {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--clr-text-muted);
}

.info-line svg {
    width: 18px;
    height: 18px;
    color: var(--clr-primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.info-link {
    text-decoration: none;
    color: var(--clr-text);
    transition: color var(--transition);
}

.info-link:hover { color: var(--clr-primary); }

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    color: var(--clr-text-muted);
    font-size: 1rem;
    transition: all var(--transition);
    text-decoration: none;
    min-height: 120px;
}

.map-placeholder:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.map-placeholder svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

/* ===== HOURS ===== */
.hours-list {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--clr-text-muted);
    border-bottom: 1px solid var(--clr-border);
}

.hours-row:last-child {
    border-bottom: none;
}

/* ===== CONTENT GRID (Service Detail Pages) ===== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.content-main h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
    font-size: 1.4rem;
}

.content-main h2:first-child,
.content-main > p:first-child + h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content-main h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--clr-text);
}

.content-main p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-primary-pale);
    border-radius: 10px;
    margin-top: 0.15rem;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--clr-primary);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== SIDEBAR ===== */
.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--clr-text);
}

.sidebar-card p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.sidebar-card--highlight {
    background: var(--clr-primary-pale);
    border-color: rgba(196,30,30,0.15);
}

.sidebar-card--cta {
    background: var(--clr-bg-dark);
    border-color: transparent;
    text-align: center;
}

.sidebar-card--cta h3 {
    color: var(--clr-white);
}

.sidebar-card--cta p {
    color: rgba(255,255,255,0.7);
}

.sidebar-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
}

.sidebar-phone svg {
    flex-shrink: 0;
}

.sidebar-phone:hover {
    color: var(--clr-white) !important;
}

/* ===== CHECKLIST ===== */
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checklist li {
    font-size: 1rem;
    color: var(--clr-text-muted);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 8px;
    height: 8px;
    background: var(--clr-primary);
    border-radius: 50%;
}

/* ===== ADVANTAGES LIST ===== */
.advantages-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.advantages-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.advantage-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-white);
    border-radius: 8px;
}

.advantage-icon svg {
    width: 18px;
    height: 18px;
    color: var(--clr-primary);
}

.advantages-list strong {
    font-size: 1rem;
    color: var(--clr-text);
    display: block;
}

.advantages-list p {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding-top: 7rem;
}

.legal-content {
    max-width: 800px;
}

.legal-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--clr-border);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    list-style: none;
    margin: 0.75rem 0;
    padding: 0;
}

.legal-content li {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 5px;
    height: 5px;
    background: var(--clr-primary);
    border-radius: 50%;
}

.legal-content a {
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--clr-primary-dark);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--clr-bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.footer-brand p { font-size: 1rem; line-height: 1.7; }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    transition: background var(--transition), transform var(--transition);
}

.footer-social-link:hover {
    transform: scale(1.1);
}

.footer-social-link:first-child:hover { background: #1877F2; }
.footer-social-link:last-child:hover { background: #4285F4; }

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.6);
    transition: fill var(--transition);
}

.footer-social-link:hover svg { fill: #fff; }

.footer h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 0.3rem; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
    text-decoration: none;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--clr-primary);
    border-radius: 1px;
    transition: width var(--transition), left var(--transition);
}

.footer-links a:hover::after {
    width: 100%;
    left: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover { color: rgba(255,255,255,1); }

.footer-contact a {
    position: relative;
    display: inline-block;
}

.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--clr-primary);
    border-radius: 1px;
    transition: width var(--transition), left var(--transition);
}

.footer-contact a:hover::after {
    width: 100%;
    left: 0;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact p:first-of-type {
    align-items: flex-start;
}

.footer-contact p:first-of-type svg {
    margin-top: 0.3rem;
}

.footer-contact p svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--clr-primary);
}

.footer-credit {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.18);
    margin: 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-credit a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-credit a:hover {
    color: rgba(255,255,255,0.5);
}

/* ===== VIDEO ===== */
.video-section { background: var(--clr-bg-alt); }

.video-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
}

.video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* ===== BEWERTUNGEN ===== */
.bewertungen { background: var(--clr-white); }

.bewertungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.bewertung {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem 1.5rem;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.bewertung::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--clr-primary);
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
}

.bewertung:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.bewertung-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.bewertung-text {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.bewertung-author strong {
    display: block;
    font-size: 1rem;
    color: var(--clr-text);
}

.bewertung-author span {
    font-size: 0.78rem;
    color: var(--clr-text-light);
}

/* ===== PREISVERGLEICH ===== */
.preise { background: var(--clr-bg-alt); }

.preis-vergleich {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.preis-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-white);
    position: relative;
    display: flex;
    flex-direction: column;
}

.preis-card--highlight {
    border: 2px solid var(--clr-primary);
    box-shadow: 0 16px 48px rgba(196,30,30,0.18), 0 8px 24px rgba(0,0,0,0.08);
    transform: scale(1.05);
    z-index: 1;
}

.preis-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 0 var(--radius) 0 var(--radius);
}

.preis-card-header {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
}

.preis-card--highlight .preis-card-header {
    padding-top: 2.5rem;
}

.preis-card--alt .preis-card-header {
    color: var(--clr-text-muted);
}

.preis-card-body {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preis-range {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--clr-text);
    line-height: 1;
}

.preis-card--highlight .preis-range { color: var(--clr-primary); }

.preis-unit {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

.preis-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.preis-features li {
    font-size: 1rem;
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border);
}

.preis-features li:last-child { border-bottom: none; }

.preis-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.preis-feature--neg { color: var(--clr-text-muted) !important; }

.preis-feature--neg::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2.5'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") !important;
}

.preis-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--clr-text-light);
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 100;
    transition: all var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #1DA851;
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-bg-dark);
    color: var(--clr-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===== FORM SUCCESS/ERROR ===== */
.form-message {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: none;
}

.form-message--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.form-message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* ===== HONEYPOT ===== */
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--clr-primary);
    color: var(--clr-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(196,30,30,0.3);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover { background: var(--clr-primary-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 0.5rem;
    gap: 0.5rem;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.mobile-cta-phone {
    background: var(--clr-primary);
    color: #fff;
}

.mobile-cta-phone:hover { background: var(--clr-primary-dark); }

.mobile-cta-whatsapp {
    background: #25D366;
    color: #fff;
}

.mobile-cta-whatsapp:hover { background: #1DA851; }

@media (max-width: 768px) {
    .mobile-cta-bar { display: flex; }
    .whatsapp-btn { display: none; }
    .back-to-top { bottom: 5rem; }
    .footer { padding-bottom: 4rem; }
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
}

/* ===== FORM VALIDATION ===== */
.form-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.form-valid {
    border-color: #22c55e !important;
}

.field-error {
    display: block;
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* ===== PRINT ===== */
@media print {
    .nav, .footer, .back-to-top, .whatsapp-btn, .hero-scroll,
    .cta-banner, .btn, form, .compare-handle, .compare-label { display: none !important; }
    body { background: #fff; color: #000; font-size: 11pt; }
    .section { padding: 1.5rem 0; }
    .hero { min-height: auto; background: none !important; }
    .hero-overlay { display: none; }
    .hero-content { color: #000; padding: 2rem 0; margin: 0; }
    .hero-title, .hero-sub, .hero-label { color: #000 !important; }
    .page-hero { min-height: auto; background: none !important; }
    .page-hero-overlay { display: none; }
    .page-hero-content { padding: 1rem 0; }
    .page-hero-title, .page-hero-sub { color: #000 !important; }
    img { max-width: 100%; }
    a { color: #000; text-decoration: underline; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.7em; color: #666; }
    a[href^="#"]::after, a[href^="tel:"]::after, a[href^="mailto:"]::after { content: none; }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-grid--full { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-img { text-align: center; }
    .about-img img { max-width: 300px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .content-sidebar { position: static; }
    .service-extras-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { padding: 0.6rem 1rem; justify-content: space-between; }
    .nav-logo-img { height: 48px; }
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        background: var(--clr-white);
        padding: 4.5rem 1.5rem 2rem;
        box-shadow: -8px 0 30px rgba(0,0,0,0.15);
        transition: right var(--transition);
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.open { right: 0; }

    /* Overlay when menu open */
    .nav-menu.open::before {
        content: '';
        position: fixed;
        top: 0; left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.3);
        z-index: -1;
    }

    .nav-menu li { width: 100%; }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.05rem;
        width: 100%;
        border-bottom: 1px solid var(--clr-border);
        text-align: center;
    }

    .nav-link::after { display: none; }

    .nav-cta {
        margin-left: 0;
        margin-top: 1.5rem;
        text-align: center;
        padding: 0.85rem;
        border-bottom: none;
        display: block;
    }

    /* Hero mobile */
    .hero { min-height: 85vh; }
    .hero-content {
        margin-left: 0;
        padding: 6.5rem 1.5rem 3rem;
    }

    .hero-scroll { display: none; }

    .page-hero { min-height: 280px; }
    .page-hero-content { padding: 5rem 1.5rem 2rem; }
    .page-hero-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }

    /* Sections */
    .section { padding: 3rem 0; }
    .container { padding: 0 1.2rem; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

    /* Grids to single column */
    .services-grid { gap: 1.5rem; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .vorteile-grid { grid-template-columns: 1fr; }
    .ref-grid { grid-template-columns: 1fr; }
    .ref-grid--full { grid-template-columns: 1fr; }
    .service-extras { grid-template-columns: 1fr; }
    .service-extras-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }

    /* About section */
    .about-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .stat-num { font-size: 1.8rem; }

    /* Bewertungen */
    .bewertungen-grid { grid-template-columns: 1fr; }
    .bewertung { padding: 1.5rem 1.2rem; }

    /* Preisvergleich */
    .preis-vergleich { grid-template-columns: 1fr; gap: 1.5rem; }
    .preis-card--highlight { transform: none; }
    .preis-range { font-size: 1.8rem; }

    /* CTA Banner */
    .cta-banner-inner { padding: 2rem 1.5rem; }

    /* Video */
    .video-wrap { border-radius: var(--radius-sm); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer { padding: 3rem 0 0; }

    /* Legal pages */
    .legal-page { padding-top: 5rem; }

    /* WhatsApp button smaller on mobile */
    .whatsapp-btn { width: 46px; height: 46px; bottom: 5rem; right: 1.5rem; }
    .whatsapp-tooltip { display: none; }

    /* Back to top */
    .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .hero { min-height: 80vh; }
    .hero-title { font-size: 1.7rem; }
    .hero-sub { font-size: 1rem; }
    .hero-content { padding: 6rem 1rem 2.5rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .cta-banner-actions { flex-direction: column; }

    .container { padding: 0 1rem; }
    .section { padding: 2.5rem 0; }

    .nav-menu { width: 100%; max-width: 100vw; }

    .about-stats { flex-direction: row; }
    .stat { flex: 1; }

    .preis-card-body { padding: 1.2rem; }
    .preis-features li { font-size: 0.9rem; }

    .bewertung-text { font-size: 1rem; }

    .info-map iframe { height: 200px; }

    .page-hero-content { padding: 4.5rem 1rem 1.5rem; }

    .breadcrumb { font-size: 0.82rem; flex-wrap: wrap; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 0.82rem; }
    .hero-label { font-size: 0.82rem; }
    .nav-logo-img { height: 40px; }
    .about-stats { gap: 0.75rem; }
    .stat-num { font-size: 0.78rem; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}
