:root {
    --primary: #e64e4e;
    --primary-dark: #c93b3b;
    --primary-light: #ff6b6b;
    --ink: #1c2333;
    --ink-soft: #5a6478;
    --bg: #ffffff;
    --bg-soft: #f6f8fb;
    --bg-dark: #141b2d;
    --border: #e6eaf0;
    --shadow-sm: 0 4px 14px rgba(20, 27, 45, 0.06);
    --shadow-md: 0 12px 30px rgba(20, 27, 45, 0.10);
    --shadow-lg: 0 24px 60px rgba(20, 27, 45, 0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1180px;
    --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: 999px; font-weight: 600;
    font-size: 15px; border: 2px solid transparent; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    font-family: var(--font);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(230, 78, 78, .35); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-light { background: #fff; color: var(--primary); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center; color: #fff; font-size: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 6px 16px rgba(230,78,78,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 18px; font-weight: 800; letter-spacing: -.3px; }
.brand-text small { font-size: 12px; color: var(--ink-soft); }
.brand-light .brand-text strong, .brand-light .brand-text small { color: #fff; }
.brand-light .brand-text small { color: rgba(255,255,255,.7); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a, .nav-trigger {
    padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: 15px;
    color: var(--ink); background: none; border: none; cursor: pointer;
    font-family: var(--font); display: inline-flex; align-items: center; gap: 6px;
    transition: background .15s ease, color .15s ease;
}
.main-nav > a:hover, .nav-trigger:hover { background: var(--bg-soft); color: var(--primary); }
.nav-cta { background: var(--primary) !important; color: #fff !important; box-shadow: 0 8px 20px rgba(230, 78, 78, .35); }
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }

/* Mega menu */
.nav-dropdown { position: relative; }
.mega-menu {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
    width: min(880px, 92vw); background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 28px;
    opacity: 0; visibility: hidden; transition: all .2s ease; z-index: 200;
}
.nav-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-title { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--primary); margin-bottom: 10px; }
.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mega-col a { display: block; padding: 6px 8px; border-radius: 8px; font-size: 14px; color: var(--ink-soft); transition: all .12s ease; }
.mega-col a:hover { background: var(--bg-soft); color: var(--primary); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; padding: 90px 0 100px; }
.hero-bg {
    position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(1000px 500px at 80% -10%, rgba(255,107,107,.5), transparent 60%),
                linear-gradient(135deg, #1c2333 0%, #2a1c2e 55%, #3d1f28 100%);
}
.hero-content { max-width: 680px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; color: #ffd7d7;
}
.hero h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1.1; font-weight: 800; letter-spacing: -1px; }
.hero .highlight { color: var(--primary-light); }
.hero p { font-size: 18px; color: rgba(255,255,255,.82); margin: 20px 0 30px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 40px; margin-top: 46px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 30px; font-weight: 800; }
.hero-stats span { font-size: 14px; color: rgba(255,255,255,.7); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -.5px; }
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 17px; }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card {
    position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    overflow: hidden;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-icon {
    width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
    font-size: 22px; color: var(--primary); background: rgba(230,78,78,.1); margin-bottom: 18px;
}
.category-card h3 { font-size: 19px; font-weight: 700; }
.category-card p { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }
.cat-arrow { position: absolute; right: 24px; bottom: 24px; color: var(--primary); opacity: 0; transform: translateX(-6px); transition: .2s; }
.category-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card {
    display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px; transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-icon { flex: none; width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.feature-card h3 { font-size: 17px; font-weight: 700; }
.feature-card p { color: var(--ink-soft); font-size: 14px; margin-top: 3px; }
.feat-arrow { margin-left: auto; color: var(--primary); flex: none; }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit { text-align: center; padding: 20px; }
.benefit-icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; font-size: 24px; color: var(--primary); background: rgba(230,78,78,.1); }
.benefit h3 { font-size: 19px; font-weight: 700; }
.benefit p { color: var(--ink-soft); margin-top: 8px; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { font-size: 28px; font-weight: 800; }
.cta-inner p { color: rgba(255,255,255,.85); margin-top: 6px; }

/* ---------- Page hero ---------- */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 48px 0; }
.page-hero-sm { padding: 40px 0; }
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.5px; }
.page-hero > .container > p { color: var(--ink-soft); margin-top: 10px; font-size: 17px; }
.breadcrumb { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { opacity: .5; }
.page-hero-head { display: flex; align-items: center; gap: 20px; }
.page-hero-icon { flex: none; width: 66px; height: 66px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-light)); box-shadow: 0 10px 24px rgba(230,78,78,.35); }
.page-hero-head p { color: var(--ink-soft); margin-top: 6px; }

/* Page layout */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.widget-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.widget-card-head { display: flex; align-items: center; gap: 10px; padding: 18px 24px; border-bottom: 1px solid var(--border); font-weight: 700; color: var(--ink); background: var(--bg-soft); }
.widget-card-head i { color: var(--primary); }
.widget-embed { padding: 24px; min-height: 200px; }
.widget-note { display: flex; align-items: center; gap: 8px; padding: 14px 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--ink-soft); background: var(--bg-soft); }
.widget-note i { color: #35b36b; }

.page-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.aside-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.aside-cta { background: linear-gradient(160deg, #fff, #fff5f5); border-color: rgba(230,78,78,.2); }
.aside-cta p { color: var(--ink-soft); font-size: 14px; margin-bottom: 16px; }
.aside-phone { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-weight: 600; font-size: 14px; color: var(--primary); }
.aside-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.aside-list a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; font-size: 14px; color: var(--ink-soft); transition: .12s; }
.aside-list a:hover { background: var(--bg-soft); color: var(--primary); }
.aside-list i { color: var(--primary); width: 16px; text-align: center; }

/* Category blocks (Übersicht) */
.cat-block { margin-bottom: 56px; scroll-margin-top: 100px; }
.cat-block-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.cat-block-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; color: var(--primary); background: rgba(230,78,78,.1); }
.cat-block-head h2 { font-size: 26px; font-weight: 800; }
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform .18s ease, box-shadow .18s ease; display: flex; flex-direction: column; }
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tile-icon { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; color: var(--primary); background: rgba(230,78,78,.1); margin-bottom: 16px; }
.tile h3 { font-size: 18px; font-weight: 700; }
.tile p { color: var(--ink-soft); font-size: 14px; margin-top: 6px; flex: 1; }
.tile-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--primary); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-info h2 { font-size: 24px; font-weight: 800; }
.contact-info > p { color: var(--ink-soft); margin-top: 6px; }
.contact-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 12px; }
.contact-list i { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: var(--primary); background: rgba(230,78,78,.1); flex: none; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.contact-card:hover { transform: translateY(-2px); border-color: var(--primary); box-shadow: var(--shadow-md, 0 8px 24px rgba(0,0,0,.08)); }
.contact-card-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: var(--primary); font-size: 18px; flex: none; }
.contact-card-body { display: flex; flex-direction: column; gap: 2px; }
.contact-card-body strong { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.contact-card-body span:last-child { font-size: 16px; font-weight: 600; color: var(--ink, #1a1a1a); }
.contact-hours { margin-top: 24px; padding: 20px 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-hours h3 { font-size: 17px; font-weight: 800; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.contact-hours h3 i { color: var(--primary); }
.contact-hours ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.contact-hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; padding-bottom: 8px; border-bottom: 1px dashed var(--border); }
.contact-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours li span:first-child { color: var(--ink-soft); }
.contact-hours li span:last-child { font-weight: 600; }
.contact-map { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-map iframe { display: block; width: 100%; height: 260px; border: 0; }
.map-consent { height: 260px; display: grid; place-items: center; text-align: center; padding: 24px; background: linear-gradient(135deg, #eef1f6, #f7f9fc); }
.map-consent-box { max-width: 340px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.map-consent-box > i { font-size: 30px; color: var(--primary); }
.map-consent-box p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.map-consent-box small { color: var(--ink-soft); font-size: 12px; }
.map-consent-box small a { color: var(--primary); }

/* ---------- Cookie-Banner ---------- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,.2); max-width: 640px; margin: 0 auto; }
.cookie-banner[hidden] { display: none; }
.cookie-inner { padding: 22px 24px; display: flex; flex-direction: column; gap: 16px; }
.cookie-text h3 { margin: 0 0 8px; font-size: 17px; display: flex; align-items: center; gap: 8px; }
.cookie-text h3 i { color: var(--primary); }
.cookie-text p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1 1 auto; justify-content: center; }
@media (min-width: 560px) { .cookie-actions .btn { flex: 0 0 auto; } }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 600; font-size: 14px; }
.contact-form input, .contact-form textarea {
    font-family: var(--font); font-size: 15px; padding: 12px 14px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); background: var(--bg-soft); transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,78,78,.15); background: #fff; }
.contact-form .form-consent { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; font-size: 13px; line-height: 1.5; color: var(--text-muted, #555); }
.contact-form .form-consent input[type="checkbox"] { width: auto; margin-top: 2px; flex: 0 0 auto; }
.contact-form .form-consent a { color: var(--primary); text-decoration: underline; }

/* Flash */
.flash { display: flex; align-items: center; gap: 10px; margin: 20px 0 -10px; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 500; font-size: 15px; }
.flash-success { background: #e7f7ee; color: #1c7a48; border: 1px solid #b7e6cb; }
.flash-error { background: #fdeaea; color: #b3352f; border: 1px solid #f4c2c0; }

/* Prose */
.prose { max-width: 760px; }
.prose h2 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.prose h3 { font-size: 19px; font-weight: 700; margin: 26px 0 8px; }
.prose p { color: var(--ink-soft); margin-bottom: 12px; }
.prose a { color: var(--primary); font-weight: 600; }

/* Error */
.error-section { text-align: center; padding: 110px 0; }
.error-code { font-size: 96px; font-weight: 800; color: var(--primary); line-height: 1; }
.error-section h1 { font-size: 30px; font-weight: 800; margin: 10px 0; }
.error-section p { color: var(--ink-soft); margin-bottom: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.75); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color .12s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: #fff; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; font-size: 20px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-light)); box-shadow: 0 8px 18px rgba(230,78,78,.35); margin-bottom: 18px; }
.step h3 { font-size: 19px; font-weight: 700; }
.step p { color: var(--ink-soft); margin-top: 8px; font-size: 15px; }

/* ---------- Testimonials ---------- */
.testimonial-carousel { position: relative; }
.testimonials { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 16px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.testimonials::-webkit-scrollbar { height: 8px; }
.testimonials::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.testimonial { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; position: relative; }
.testimonial::after { content: "\f1a0"; font-family: "Font Awesome 6 Brands"; font-weight: 400; position: absolute; top: 24px; right: 24px; font-size: 18px; color: #4285F4; opacity: .9; }
.google-badge { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; padding: 10px 20px; background: #fff; border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow-sm); }
.google-badge .google-logo { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.google-badge-stars { color: #f5b301; display: flex; gap: 2px; font-size: 14px; }
.google-badge-text { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--ink); box-shadow: var(--shadow-md, 0 10px 24px rgba(0,0,0,.12)); cursor: pointer; display: grid; place-items: center; font-size: 15px; transition: background .2s ease, color .2s ease; }
.carousel-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.carousel-prev { left: -18px; }
.carousel-next { right: -18px; }
.testimonial .stars { color: #f5b301; display: flex; gap: 3px; font-size: 14px; }
.testimonial blockquote { font-size: 15px; color: var(--ink); line-height: 1.7; flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; }
.testimonial .avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.badge-guide { font-size: 11px; font-weight: 700; color: var(--ink-soft); background: var(--bg-soft, #f1f3f7); border: 1px solid var(--border); padding: 2px 8px; border-radius: 999px; margin-left: 4px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 16px; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "\f067"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--primary); font-size: 14px; transition: transform .2s ease; }
.faq-item[open] summary::after { content: "\f068"; }
.faq-item p { color: var(--ink-soft); padding: 0 0 20px; margin: 0; line-height: 1.7; }

/* ---------- Image band ---------- */
.image-band { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.image-band-media img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md, 0 20px 40px rgba(0,0,0,.12)); display: block; }
.image-band-text h2 { margin: 8px 0 14px; }
.image-band-text p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 18px; }
.check-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.check-list li i { color: #1a9d55; background: #e5f7ec; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; flex: none; }

/* ---------- Photo cards ---------- */
.photo-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.photo-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md, 0 20px 40px rgba(0,0,0,.12)); }
.photo-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.photo-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.photo-card:hover .photo-card-img img { transform: scale(1.06); }
.photo-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; }
.photo-card-body h3 { margin: 0; font-size: 19px; }
.photo-card-body p { margin: 0; color: var(--ink-soft); line-height: 1.6; font-size: 15px; }
.photo-card-link { margin-top: 6px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; font-size: 15px; }

/* ---------- Google reviews ---------- */
.google-reviews { display: flex; justify-content: center; }
.google-rating { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 40px 44px; text-align: center; max-width: 520px; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.google-logo { font-size: 34px; font-weight: 800; letter-spacing: -1px; }
.stars-lg { font-size: 26px !important; }
.stars { color: #f5b301; display: flex; gap: 4px; }
.google-rating-text { color: var(--ink-soft); margin: 0 0 6px; }
.google-write-link { color: var(--ink-soft); font-size: 14px; text-decoration: underline; }
.google-write-link:hover { color: var(--primary); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .category-grid, .tile-grid, .benefits { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: 1fr; }
    .page-layout { grid-template-columns: 1fr; }
    .page-aside { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 60px 0; }
    .hero { padding: 64px 0 72px; }
    .hero-stats { gap: 30px; }
    .steps { grid-template-columns: 1fr; }
    .testimonial { flex-basis: calc((100% - 24px) / 2); }
    .photo-cards { grid-template-columns: repeat(2, 1fr); }
    .image-band { grid-template-columns: 1fr; gap: 28px; }
    .image-band-media { order: -1; }
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 72px; right: 0; width: min(320px, 85vw);
        height: calc(100vh - 72px); height: calc(100dvh - 72px);
        flex-direction: column; align-items: stretch; gap: 4px; background: #fff;
        padding: 20px; box-shadow: var(--shadow-lg); transform: translateX(105%);
        transition: transform .25s ease; overflow-y: auto;
    }
    .main-nav.open { transform: translateX(0); }
    .nav-dropdown { width: 100%; }
    .nav-trigger { width: 100%; justify-content: space-between; }
    .mega-menu {
        position: static; inset: auto; left: auto; right: auto; top: auto;
        transform: none; width: 100%; max-width: 100%; margin: 0;
        opacity: 1; visibility: visible; box-shadow: none; border: none;
        padding: 4px 0 8px 8px; grid-template-columns: 1fr; gap: 10px; display: none;
    }
    .nav-dropdown.open .mega-menu { display: grid; }
    .nav-dropdown:hover .mega-menu { transform: none; left: auto; }
    .mega-col a { padding: 8px 8px; font-size: 15px; }
    .mega-title { margin-bottom: 6px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .category-grid, .tile-grid, .benefits { grid-template-columns: 1fr; }
    .photo-cards { grid-template-columns: 1fr; }
    .testimonial { flex-basis: 100%; }
    .carousel-prev { left: 4px; }
    .carousel-next { right: 4px; }
    .google-rating { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .cta-inner { text-align: center; justify-content: center; }
    .section { padding: 48px 0; }
    .container { padding: 0 18px; }
    .hero p { font-size: 16px; }
    .page-hero-head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .section { padding: 40px 0; }
    .hero { padding: 48px 0 56px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 18px; }
    .hero-stats strong { font-size: 24px; }
    .brand-text strong { font-size: 16px; }
    .cta-inner .btn, .cta-band .btn { width: 100%; justify-content: center; }
    .contact-form { padding: 22px 18px; }
    .contact-map iframe { height: 220px; }
    .btn-lg { padding: 13px 22px; font-size: 15px; }
    .error-code { font-size: 72px; }
    .footer-links { flex-wrap: wrap; gap: 14px; }
}

/* ---------- Ratgeber / Blog ---------- */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}
.article-card {
    display: flex; flex-direction: column;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-card-media {
    display: flex; align-items: center; justify-content: center;
    height: 140px; font-size: 44px; color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.article-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card-body h2 { font-size: 20px; line-height: 1.3; margin: 0; }
.article-card-body p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.article-meta {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    font-size: 13px; color: var(--ink-soft);
}
.article-tag {
    display: inline-block; background: rgba(230, 78, 78, .1); color: var(--primary);
    font-weight: 700; font-size: 12px; padding: 4px 12px; border-radius: 999px;
}
.article-link { margin-top: auto; color: var(--primary); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }

.article-meta-hero { margin-bottom: 16px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; align-items: start; }
.article-content { max-width: 760px; }
.article-content p { color: var(--ink-soft); line-height: 1.8; margin: 0 0 18px; font-size: 17px; }
.article-content h2 { font-size: 24px; margin: 34px 0 14px; }
.article-content ul, .article-content ol { color: var(--ink-soft); line-height: 1.8; margin: 0 0 18px; padding-left: 22px; font-size: 17px; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--ink); }
.article-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap; margin-top: 32px; padding: 26px 28px;
    background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
}
.article-cta strong { font-size: 18px; }
.article-cta p { margin: 6px 0 0; color: var(--ink-soft); font-size: 15px; }
.article-aside { position: sticky; top: 100px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.article-aside h3 { margin: 0 0 16px; font-size: 18px; }
.article-more { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.article-more a { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-sm); text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; transition: background .2s ease; }
.article-more a:hover { background: var(--bg); color: var(--primary); }
.article-more-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(230, 78, 78, .1); color: var(--primary); flex-shrink: 0; }

@media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-aside { position: static; }
}

