/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 8px 16px;
    background: #B22222;
    color: #fff;
    border-radius: 0 0 4px 4px;
    font-weight: 600;
    text-decoration: none;
    transition: top .2s;
}
.skip-link:focus {
    top: 0;
}

/* ===== LOCAL FONTS (DSGVO — keine externen Requests) ===== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600 900;
    font-display: swap;
    src: url('assets/fonts/montserrat-latin.woff2') format('woff2');
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; color-scheme: light only; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    background: #1f1215;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
    --primary: #1f1215;
    --accent: #B22222;
    --accent-hover: #8B1A1A;
    --accent-glow: rgba(178, 34, 34, 0.3);
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6b7280;
    --dark: #1a1011;
    --gold: #f5a623;
    --whatsapp: #25d366;
    --whatsapp-hover: #1ebe57;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--accent); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    will-change: transform, opacity;
    contain: layout style;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
    transition-delay: var(--delay, 0s);
}
/* Fallback: if JS fails, show content after 2s */
@media (scripting: none) {
    .reveal { opacity: 1; transform: none; }
}
noscript ~ * .reveal,
html:not(.js-ready) .reveal {
    animation: reveal-fallback 0s 2s forwards;
}
@keyframes reveal-fallback {
    to { opacity: 1; transform: translateY(0); }
}
html.js-ready .reveal:not(.visible) {
    animation: none;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 16px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(31, 18, 21, 0.97);
    
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img { height: 72px; width: auto; }
.navbar.scrolled .nav-logo img { height: 56px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--accent); }
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: #2563eb !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform 0.3s ease, background 0.3s ease !important;
}
.nav-cta:hover { background: #1d4ed8 !important; transform: scale(1.05); }
a.nav-cta.nav-cta-wa { background: #25D366 !important; }
a.nav-cta.nav-cta-wa:hover { background: #1da851 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f1215;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}
.hero-overlay, .hero-content, .hero-scroll-indicator {
    z-index: 1;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31,18,21,0.92) 0%, rgba(31,18,21,0.75) 50%, rgba(31,18,21,0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-hours {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.badge {
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.btn-lg { padding: 12px 24px; font-size: 0.85rem; }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 20px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-hover); transform: translateY(-2px); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.3); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    margin: 8px auto 0;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
    border-bottom: 3px solid var(--accent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.stat-label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ===== SECTION HEADERS ===== */
.section-tag {
    display: inline-block;
    background: rgba(233, 77, 26, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.section-tag-light { background: rgba(255,255,255,0.1); color: var(--gold); }
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--light); color: var(--dark); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.services-grid .service-card {
    display: flex;
    flex-direction: column;
}
.services-grid .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.services-grid .service-content p {
    flex: 1;
}
.service-card {
    position: relative;
    background: var(--white);
    color: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.08); }
.service-title-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 10px;
}
.service-title-row h3 {
    margin-bottom: 0;
}
.service-badge {
    display: inline-block;
    margin-left: auto;
    background: var(--accent);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    position: relative;
    top: -4px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.03em;
}
.service-content { padding: 24px; }
.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.service-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}
.service-price {
    display: inline-block;
    background: rgba(233, 77, 26, 0.08);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tip-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    color: var(--dark);
    border-left: 4px solid var(--accent);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 48px auto 0;
}
.tip-icon { font-size: 1.5rem; flex-shrink: 0; }
.tip-box p { color: var(--gray); font-size: 0.95rem; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); color: var(--dark); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-wrapper img { width: 100%; height: 500px; object-fit: cover; object-position: center 5%; }
.experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
}
.exp-years { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; }
.exp-text { font-size: 0.8rem; opacity: 0.9; }
.about-text { color: var(--gray); font-size: 1.05rem; margin-bottom: 16px; line-height: 1.8; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
    background: rgba(178, 34, 34, 0.08);
    border: 1px solid rgba(178, 34, 34, 0.16);
}
.feature-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}
.about-feature strong { display: block; color: var(--dark); font-size: 1rem; }
.about-feature p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ===== REVIEWS ===== */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f0f23 100%);
}
.review-stars {
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 8px;
}
.review-count { color: rgba(255,255,255,0.6); font-size: 1rem; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    align-items: stretch;
}
.reviews-grid .review-card {
    display: flex;
    flex-direction: column;
}
.reviews-grid .review-text {
    flex: 1;
}
.review-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.3);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.review-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.review-date { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.review-stars-small { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }
.reviews-cta { text-align: center; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--light); color: var(--dark); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    color: var(--dark);
    border-radius: var(--radius);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}
.contact-item:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; width: 40px; min-width: 40px; text-align: center; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 28px; height: 28px; }
.contact-item strong { display: block; color: var(--dark); font-size: 0.95rem; }
.contact-item span { color: var(--gray); font-size: 0.9rem; }

.hours-table { margin-top: 32px; }
.hours-table h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}
.hours-table table { width: 100%; }
.hours-table td { padding: 8px 0; color: var(--gray); font-size: 0.95rem; }
.hours-table tr td:first-child { font-weight: 600; color: var(--dark); width: 55%; }

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}
.contact-form {
    background: var(--white);
    color: var(--dark);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
    margin-bottom: 12px;
    background: var(--white);
    color: var(--dark);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-form textarea { resize: vertical; }
.form-note { text-align: center; color: var(--gray); font-size: 0.85rem; margin-top: 12px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo { height: 64px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; }
.footer-links h4 { color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); transition: color var(--transition); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* Agency Signature */
.footer-agency {
    padding: 16px 0 0;
    margin-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.agency-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-decoration: none;
    padding: 6px 0;
    transition: opacity 0.3s ease;
    opacity: 0.85;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.agency-badge-row {
    display: flex;
    align-items: center;
    gap: 7.22px;
}
@media (min-width: 640px) {
    .agency-badge-row { gap: 9.6px; }
}
.agency-badge:hover {
    opacity: 1;
}
.agency-badge .agency-label,
.agency-badge .agency-logo,
.agency-badge .agency-gt,
.agency-badge .agency-separator,
.agency-badge .agency-tagline {
    transition: color 0.3s ease;
}
.agency-badge:hover .agency-label {
    color: rgba(240,125,26,0.7);
}
.agency-badge:hover .agency-tagline {
    color: rgba(240,125,26,0.7);
}
.agency-label {
    color: rgba(255,255,255,0.78);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12.09px;
    letter-spacing: 0.03em;
    text-transform: none;
    font-weight: 600;
}
@media (min-width: 640px) {
    .agency-label { font-size: 12.09px; }
}
.agency-logo {
    font-size: 1.3205rem;
    font-weight: 700;
    color: white;
}
@media (min-width: 640px) {
    .agency-logo { font-size: 1.558rem; }
}
.agency-gt {
    color: #F07D1A;
}
.agency-separator {
    color: rgba(255,255,255,0.2);
}
.agency-tagline {
    color: rgba(255,255,255,0.4);
    font-size: 10.773px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}
@media (min-width: 640px) {
    .agency-tagline { font-size: 13.167px; }
}


/* ===== DESKTOP FLOATING WHATSAPP BUTTON ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .wa-float { display: none !important; visibility: hidden !important; } /* Auf Mobile: sticky CTA bar stattdessen */
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary);
    padding: 8px 10px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}
.mobile-cta-call { background: #2563eb; }
.mobile-cta-call:hover { background: #1d4ed8; }
.mobile-cta-wa { background: var(--whatsapp); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid .review-card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        z-index: 1000;
        background: #1f1215;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        padding-top: 80px;
        padding-bottom: 100px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.3rem; color: var(--white); }
    .nav-toggle { display: block; z-index: 1002; position: relative; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    .hero { background-attachment: scroll; }
    .services, .about, .contact { padding: 64px 0; }
    .faq { padding: 56px 0; }
    .section-header { margin-bottom: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper img { height: 350px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-grid .review-card:nth-child(5) { grid-column: span 1; }
    .reviews-grid .review-card:nth-child(4),
    .reviews-grid .review-card:nth-child(5) { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }

    .mobile-cta { display: flex; }
    body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 1.6rem; }
}

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--light); color: var(--dark); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #e5e5e5;
    background: var(--white);
    color: var(--dark);
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--accent); }
.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-answer p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-bottom: 20px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== MAP CONSENT (DSGVO 2-Klick) ===== */
.map-consent {
    width: 100%;
    height: 450px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}
.map-consent-inner {
    text-align: center;
    padding: 32px;
    max-width: 360px;
}
.map-consent-inner h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin: 12px 0 8px;
    color: var(--dark);
}
.map-consent-inner p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== CONTACT FORM CONSENT CHECKBOX ===== */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
}
.form-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: auto;
    min-width: 16px;
}
