/* ============================================
   Das ElektroWerk - 1:1 Design-Match
   Farben: Orange #FF873B, Beige #F8F4ED,
   Dunkelgrau #494949, Schwarz #000
   Font: Open Sans (lokal gehostet - DSGVO-konform)
   ============================================ */

/* Open Sans - Self-hosted Variable Font (DSGVO-konform, latin subset) */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('/Content/fonts/open-sans-latin-variable.woff2') format('woff2-variations');
}

:root {
    --orange: #FF873B;
    --orange-light: #F9A75B;
    --orange-dark: #E3924C;
    --orange-accessible: #C85A10;
    --black: #000000;
    --dark-gray: #494949;
    --beige: #F8F4ED;
    --white: #FFFFFF;
    --light-border: #f2f2f2;
    --gray-100: #f5f5f5;
    --accent: #FF873B;
    --font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1400px;
    --transition: 0.3s ease;
    --shadow-card: 0px 8px 40px 0px rgba(0,0,0,0.38);
    --shadow-soft: 0px 1px 4px rgba(17,17,26,0.05), 0px 0px 8px rgba(17,17,26,0.1);
    --radius: 8px;
}

/* Respect Betriebssystem-Praeferenz fuer reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--dark-gray);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--dark-gray); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
/* Sichtbarer, kontraststarker Fokus-Indikator (WCAG 2.1 AA) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid var(--orange-accessible);
    outline-offset: 3px;
    border-radius: 4px;
    box-shadow: 0 0 0 6px rgba(200, 90, 16, 0.18);
}
/* Scroll-Margin fuer Anker (Header ueberlappt sonst den Target) */
:target { scroll-margin-top: 100px; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--dark-gray);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 4.5vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3.6vw, 2rem); }
h3 { font-size: clamp(1.05rem, 2.4vw, 1.4rem); }
p { text-wrap: pretty; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Skip Link --- */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--orange); color: var(--white); padding: 0.75rem 1.5rem; z-index: 9999; font-weight: 600; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; color: var(--white); }

/* =============================================
   HEADER - Fixed, white, orange bottom border
   ============================================= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-width); margin: 0 auto; padding: 0.75rem 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--dark-gray); flex-shrink: 0; }
.logo-img { height: 45px; width: auto; object-fit: contain; display: block; }
.logo:hover { color: var(--dark-gray); }

/* Navigation */
.main-nav { display: flex; align-items: center; }
.mobile-nav-footer { display: none; }
.nav-list { display: flex; list-style: none; gap: 0; align-items: center; }
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: block; padding: 0.6rem 1rem;
    color: var(--dark-gray); font-weight: 400; font-size: 0.95rem;
    transition: color var(--transition); white-space: nowrap;
    position: relative;
}
.nav-list > li > a:hover { color: var(--orange); }
.nav-list > li > a.active { color: var(--orange); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
    content: ''; display: inline-block; width: 0; height: 0;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 4px solid currentColor; margin-left: 6px; vertical-align: middle;
}
.dropdown-menu {
    position: absolute; top: 100%; left: 0; background: var(--white);
    border: 1px solid var(--light-border); border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12); min-width: 260px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all var(--transition); list-style: none; padding: 0.5rem 0; z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { padding: 0.6rem 1.25rem; font-size: 0.9rem; display: block; }

/* Nav right: Phone + Kontakt */
.nav-right { display: flex; align-items: center; gap: 1rem; margin-left: 1.5rem; }
.nav-phone {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 2px solid #ddd; border-radius: 50px;
    padding: 0 1.4rem; font-size: 0.85rem; font-weight: 700;
    color: var(--dark-gray); text-decoration: none; white-space: nowrap;
    transition: all var(--transition);
    transform: skewX(-10deg);
    height: 44px;
}
.nav-phone > * { display: inline-block; transform: skewX(10deg); }
.nav-phone > span:last-child { line-height: 1.1; }
.nav-phone:hover { border-color: var(--orange); color: var(--orange); }
.nav-phone-icon { font-size: 0.95rem; color: var(--orange); }
.nav-phone small { font-weight: 400; font-size: 0.65rem; display: block; color: #999; line-height: 1.2; }
.nav-social { display: flex; gap: 1rem; align-items: center; }
.nav-social a { color: var(--dark-gray); font-size: 1.3rem; transition: color var(--transition); }
.nav-social a:hover { color: var(--orange); }

.nav-cta {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--orange); color: var(--white);
    font-weight: 700; border-radius: 50px;
    padding: 0 1.75rem; font-size: 0.9rem;
    border: 2px solid var(--orange); transition: all var(--transition);
    transform: skewX(-10deg);
    height: 44px;
}
.nav-cta:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }

/* Mobile Toggle (hidden on desktop, shown on tablet) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--dark-gray); z-index: 1003; position: relative; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: var(--transition); transform-origin: center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1000; opacity: 0; transition: opacity 0.35s ease; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.nav-overlay.active { display: block; opacity: 1; }

/* Mobile nav header (logo + close) - hidden on desktop */
.mobile-nav-header { display: none; }

/* Mobile nav footer - hidden on desktop */
.mobile-nav-footer { display: none; }

/* Nav icons - hidden on desktop */
.nav-icon { display: none; }

/* Bottom nav - hidden on desktop */
.bottom-nav { display: none; }

/* Body scroll lock */
body.nav-open { overflow: hidden; }

/* =============================================
   HERO - Dark overlay, image bg, white text, wave bottom
   ============================================= */
.hero {
    position: relative; display: flex; align-items: center;
    justify-content: flex-start;
    background: #333; color: var(--white); overflow: hidden;
    padding-top: 70px; padding-bottom: 6rem;
    min-height: 100vh; min-height: 100dvh;
    border-radius: 0 0 50% 50% / 0 0 5% 5%;
}
.hero .container { width: 100%; position: relative; z-index: 2; }
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative; z-index: 2; max-width: 800px;
    padding: 2rem 0; text-align: left;
    margin-left: 0; margin-right: auto;
}

.hero h1 { color: var(--white); margin-bottom: 1.5rem; font-size: clamp(2rem, 4.5vw, 2.75rem); line-height: 1.3; font-weight: 700; }
.hero h1 .highlight { color: var(--orange); }

.hero-subtitle { font-weight: 700; font-size: 0.95rem; margin-bottom: 1.25rem; }

/* Hero list with lightning bolts (Font Awesome) */
.hero-list { list-style: none; padding: 0; margin-bottom: 2rem; }
.hero-list li {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.35rem 0; font-size: 1rem; color: var(--white);
}
.hero-list li::before {
    content: "\f0e7"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--orange); font-size: 1.1rem;
}

/* Google review badge */
.google-badge {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
    padding: 0.5rem 0;
    clear: both;
}
.google-badge > span:first-child {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}
.google-badge > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    line-height: 1.2;
}
.google-stars {
    color: var(--orange);
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}
.google-text {
    font-size: 0.9rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
}
.google-text strong { font-weight: 700; }
.hero .google-badge { display: flex; width: fit-content; }
.hero .google-text { color: var(--white); opacity: 1; }

/* =============================================
   BUTTONS - Pill-shaped / slanted radius
   ============================================= */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 2rem; font-size: 0.95rem; font-weight: 600;
    border: none; border-radius: 50px; cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none; line-height: 1.4;
    font-family: var(--font);
    min-height: 44px;
}
/* Der Skew-Effekt nur ab Desktop, damit Touch-Ziele auf Mobile exakt stehen */
@media (min-width: 992px) {
    .btn { transform: skewX(-10deg); }
    .btn > * { display: inline-block; transform: skewX(10deg); }
}
.btn:disabled, .btn[disabled] { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); box-shadow: 0 4px 15px rgba(255,135,59,0.35); }
@media (min-width: 992px) {
    .btn-primary:hover { transform: skewX(-10deg) translateY(-1px); }
}
.btn-outline-dark {
    background: transparent; color: var(--dark-gray);
    border: 2px solid var(--dark-gray); border-radius: 50px;
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-white {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.5); border-radius: 50px;
}
.btn-outline-white:hover { border-color: var(--white); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--dark-gray); border: 2px solid var(--dark-gray); border-radius: 50px; }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-lg { padding: 0.9rem 2.5rem; font-size: 1rem; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 5rem 0; }
.section-beige { background: var(--beige); }
.section-black { background: var(--black); color: var(--white); }
.section-black h2, .section-black h3 { color: var(--white); }
.section-white { background: var(--white); }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; position: relative; }
.section-header h2 {
    font-style: italic;
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 0.85rem;
    position: relative;
    display: block;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 56px; height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 4px;
    margin: 0.85rem auto 0;
}
.section-header p { margin-top: 0.5rem; font-size: 1rem; color: var(--dark-gray); opacity: 0.85; }

/* Linksbuendige Section-Headlines auf Subseiten (Two-Col-Layouts) */
.section > .container > .two-col > div > h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.25;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.85rem;
}
.section > .container > .two-col > div > h2::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 56px; height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 4px;
}

/* =============================================
   ABOUT SECTION - Über Das ElektroWerk
   ============================================= */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center !important; }
.two-col > * { align-self: center; }
.two-col-img { border-radius: var(--radius); overflow: hidden; align-self: center; }
.two-col-img img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.section > .container > .two-col > .two-col-img img,
.section > .container > .two-col > div .two-col-img img { aspect-ratio: 4 / 3; height: auto; }

.about-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.95rem; font-weight: 600; margin-bottom: 1rem; color: var(--dark-gray);
}
.about-badge-icon { font-size: 1.5rem; }

.about-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.about-text strong { font-weight: 700; }
.about-link { color: var(--dark-gray); text-decoration: underline; font-weight: 600; }
.about-link:hover { color: var(--orange); }

/* Feature items with icons - orange outlined circles */
.feature-items { margin-top: 2.5rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; }
.feature-icon {
    min-width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: var(--orange);
    border: 2px solid var(--orange); border-radius: 50%;
    flex-shrink: 0;
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; font-weight: 700; }
.feature-item p { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.6; }

/* =============================================
   QUOTE + STATS (3-col)
   ============================================= */
.quote-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }

.quote-card {
    background: linear-gradient(135deg, var(--orange) 0%, #ef6c1f 100%);
    color: var(--white); border-radius: 20px;
    padding: 2.75rem 2.5rem; position: relative; display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 12px 40px rgba(255,135,59,0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; isolation: isolate;
}
.quote-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(255,135,59,0.38); }
.quote-card::before {
    content: '\201C'; position: absolute; right: 1.5rem; top: -0.75rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 11rem; line-height: 1; font-weight: 700;
    color: rgba(255,255,255,0.14); pointer-events: none; z-index: 0;
}
.quote-card > * { position: relative; z-index: 1; }
.quote-card blockquote {
    font-style: italic; font-size: 1rem; line-height: 1.7;
    padding-left: 1.25rem; border-left: 3px solid rgba(255,255,255,0.55);
    margin: 0 0 1.25rem 0;
}
.quote-card cite {
    font-style: normal; font-weight: 700; font-size: 0.95rem;
    padding-left: 1.25rem; display: block;
}

.stat-card {
    background: var(--white); border: 1px solid var(--light-border);
    border-radius: 20px; padding: 2.5rem 2rem; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 18, 30, 0.08); }
.stat-card h3 { font-size: 1rem; margin-bottom: 1rem; position: relative; padding-bottom: 1rem; color: var(--dark-gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.stat-card h3::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--orange); border-radius: 2px; }
.stat-number { font-size: 4rem; font-weight: 800; color: var(--orange); line-height: 1; margin: 0.5rem 0; }

/* =============================================
   SERVICE CARDS - Dark cards with bg images
   ============================================= */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }
.services-grid-3 > .service-card.service-card-wide { grid-column: 1 / -1; min-height: 240px; }
@media (max-width: 992px) {
    .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-grid-2 { grid-template-columns: 1fr !important; }
    .services-grid-3 { grid-template-columns: 1fr !important; }
    .services-grid-3 > .service-card.service-card-wide { min-height: 280px; }
}

.service-card {
    position: relative; border-radius: 16px; overflow: hidden;
    min-height: 380px; display: flex; flex-direction: column; justify-content: flex-start;
    padding: 2.5rem 2rem; text-decoration: none; color: var(--white);
    background-size: cover; background-position: center;
    background-clip: padding-box;
    border: 2px solid transparent;
    isolation: isolate;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}
.service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20, 25, 40, 0.55) 0%, rgba(20, 25, 40, 0.85) 100%);
    z-index: 1; transition: background 0.4s ease;
}
.service-card:hover::before {
    background: linear-gradient(180deg, rgba(20, 25, 40, 0.45) 0%, rgba(20, 25, 40, 0.9) 100%);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border-color: var(--orange);
}
.service-card > * { position: relative; z-index: 2; }

.service-card h3 {
    display: inline; background: var(--orange); color: var(--white);
    padding: 0.35rem 0.8rem; font-size: 1.1rem; font-weight: 700;
    box-decoration-break: clone; -webkit-box-decoration-break: clone;
    line-height: 2; border-radius: 4px;
}
.service-card p { color: rgba(255,255,255,0.95); font-size: 0.9rem; margin-top: 1.25rem; line-height: 1.6; }
.service-card .card-link {
    display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem;
    color: var(--orange); font-weight: 700; font-size: 0.9rem; text-decoration: none;
    padding: 0.5rem 0; border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, gap 0.3s ease;
}
.service-card:hover .card-link { border-color: var(--orange); gap: 0.75rem; }
.service-card .card-link::after {
    content: '\f061'; font-family: "Font Awesome 6 Free"; font-weight: 900;
    font-size: 0.8rem;
}
.service-card:hover .card-link { color: var(--orange-light); }
.service-card:hover { color: var(--white); }

/* =============================================
   FUNNEL - Dein Weg zu uns (timeline)
   ============================================= */
.funnel-section .two-col { align-items: start; }

.funnel-timeline { position: relative; padding-left: 5rem; }
.funnel-timeline::before {
    content: ''; position: absolute; left: 3.5rem; top: 0; bottom: 0;
    width: 3px; background: var(--orange);
}

.funnel-step { position: relative; margin-bottom: 2.5rem; padding-left: 1.5rem; }
.funnel-step-badge {
    display: inline-block; background: var(--orange); color: var(--white);
    padding: 0.3rem 1rem; border-radius: 4px; font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.funnel-step-icon {
    position: absolute; left: -5rem; top: 0.25rem;
    color: var(--dark-gray); font-size: 1.75rem; opacity: 0.5;
    width: 3rem; text-align: center;
}
.funnel-step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 700; }
.funnel-step p { font-size: 0.9rem; line-height: 1.6; color: var(--dark-gray); }

/* =============================================
   CTA BANNER - Black with orange button
   ============================================= */
.cta-banner {
    background: var(--black); color: var(--white); padding: 5rem 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner .cta-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0.25; filter: grayscale(100%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; font-style: italic; }
.cta-banner p { font-size: 1rem; opacity: 0.85; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-info-box {
    background: var(--beige); border-radius: var(--radius);
    padding: 2rem; border: 1px solid rgba(0,0,0,0.05);
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    color: var(--orange); font-size: 1.2rem;
}
.contact-info-text strong { display: block; color: var(--dark-gray); margin-bottom: 0.15rem; font-weight: 700; }
.contact-info-text a { color: var(--dark-gray); }
.contact-info-text a:hover { color: var(--orange); }

/* =============================================
   FOOTER - Beige/cream background
   ============================================= */
.site-footer {
    background: var(--beige); color: var(--dark-gray); padding: 4rem 0 0;
    border-top: 3px solid var(--orange);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1.5fr 1fr 1.5fr;
    gap: 3rem; margin-bottom: 2rem;
}
.footer-brand { }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .copyright { font-style: italic; font-size: 0.85rem; margin-top: 0.75rem; opacity: 0.7; }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { color: var(--dark-gray); font-size: 1.25rem; }
.footer-social a:hover { color: var(--orange); }

.footer-col h4 { display: none; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--dark-gray); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-links a.underlined { text-decoration: underline; color: var(--orange); }

.footer-contact-card { text-align: center; }
.footer-contact-avatar {
    width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 1rem;
    background: var(--orange-light);
    overflow: hidden; position: relative;
    box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--orange), 0 10px 25px rgba(255,135,59,0.25);
    transition: transform 0.3s ease;
}
.footer-contact-avatar:hover { transform: scale(1.03); }
.footer-contact-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    background: transparent;
}
.footer-contact-name { font-weight: 700; font-size: 1rem; }
.footer-contact-role { font-size: 0.85rem; opacity: 0.7; margin-bottom: 1rem; }
.footer-contact-btn {
    display: block; background: var(--orange); color: var(--white);
    padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600;
    text-align: center; transition: all var(--transition); font-size: 0.95rem;
    transform: skewX(-10deg);
}
.footer-contact-btn:hover { background: var(--orange-dark); color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.08); padding: 1.25rem 0;
    text-align: center; font-size: 0.8rem; opacity: 0.6;
}

/* =============================================
   PAGE HEADER - Subpages
   ============================================= */
.page-header {
    background: var(--black); color: var(--white);
    padding: 9rem 0 6rem; position: relative; overflow: hidden;
    min-height: 60vh; display: flex; align-items: center;
}
.page-header > .container { width: 100%; }
.page-header .hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.page-header .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(20,20,22,0.55) 0%, rgba(20,20,22,0.65) 100%),
        linear-gradient(to right, rgba(20,20,22,0.65) 0%, rgba(20,20,22,0.35) 60%, rgba(20,20,22,0.15) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: var(--orange); z-index: 3;
}
.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 920px;
}
.page-header p {
    margin-top: 0.5rem; font-size: clamp(1rem, 1.6vw, 1.15rem);
    opacity: 0.92; max-width: 640px; line-height: 1.6;
}
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.85rem; margin-bottom: 1rem; opacity: 0.6; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--orange); }

/* =============================================
   FEATURE LIST (checkmarks)
   ============================================= */
.feature-list { list-style: none; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.95rem; }
.feature-list li::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    min-width: 22px; height: 22px; background: var(--orange); color: var(--white);
    border-radius: 50%; font-size: 0.65rem; margin-top: 2px;
}

/* =============================================
   GALLERY / REFERENZEN
   ============================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-caption { padding: 1.25rem; background: var(--white); }
.gallery-caption h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.gallery-caption p { font-size: 0.85rem; opacity: 0.7; }

/* =============================================
   JOB CARDS
   ============================================= */
.job-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: stretch; }

/* =============================================
   KARRIERE: DARUM LOHNT SICH
   ============================================= */
.darum-section { padding: 5rem 0; }
.darum-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}
.darum-intro { position: sticky; top: 100px; }
.darum-intro h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 1rem; }
.darum-intro p { font-size: 1rem; line-height: 1.7; color: var(--dark-gray); }
.darum-cards { list-style: none; padding: 0; display: grid; gap: 1.25rem; }
.darum-card {
    background: var(--beige);
    border-radius: 20px;
    padding: 2rem 2rem 1.75rem;
    border: 1px solid var(--light-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.darum-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 18, 30, 0.08); border-color: rgba(255, 135, 59, 0.35); }
.darum-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--orange); color: var(--white);
    font-size: 1.35rem; margin-bottom: 1rem;
}
.darum-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.darum-card p { font-size: 0.95rem; line-height: 1.7; color: #555; margin: 0; }
@media (max-width: 860px) {
    .darum-grid { grid-template-columns: 1fr; }
    .darum-intro { position: static; }
}

/* =============================================
   KARRIERE: PASST ZU UNS - Orange Gradient Grid
   ============================================= */
.passt-zu-uns {
    background: linear-gradient(135deg, #FFA357 0%, #FF873B 55%, #F97316 100%);
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}
.passt-zu-uns::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.18), transparent 45%);
    pointer-events: none;
}
.passt-zu-uns > .container { position: relative; z-index: 1; }
.passt-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}
.passt-head h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: 0.75rem;
}
.passt-head p {
    color: rgba(255,255,255,0.95);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.65;
    margin: 0;
}
.passt-grid {
    list-style: none; padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.85rem, 2vw, 1.25rem);
    max-width: 1080px; margin: 0 auto;
}
@media (max-width: 860px) {
    .passt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .passt-grid { grid-template-columns: 1fr; max-width: 420px; }
}
.passt-card {
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: clamp(1.25rem, 2vw, 1.6rem);
    color: var(--white);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.passt-card:hover, .passt-card:focus-within {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.4);
}
.passt-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--white); color: var(--orange);
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.passt-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}
.passt-card p {
    color: rgba(255,255,255,0.94);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}
.passt-claim {
    margin: 2.5rem auto 0;
    max-width: 780px;
    text-align: center;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: var(--white);
    padding: 1.25rem 1.75rem;
    background: rgba(0,0,0,0.22);
    border-radius: 16px;
    line-height: 1.55;
    position: relative;
}
.passt-claim i { color: rgba(255,255,255,0.5); margin-right: 0.5rem; }
.passt-claim strong { color: var(--white); }

/* =============================================
   KARRIERE: OFFENE STELLEN - Clean Cards
   ============================================= */
.offene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
}
.offene-card {
    background: var(--white);
    border: 1px solid #eadfcf;
    border-radius: 16px;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.offene-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.1);
    border-color: var(--orange);
}
.offene-card h3 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 1.25rem;
    color: var(--dark-gray);
}
.offene-meta {
    display: flex; flex-direction: column; gap: 0.65rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem; color: #555;
}
.offene-meta span { display: flex; align-items: center; gap: 0.75rem; }
.offene-meta i { color: var(--orange); font-size: 1rem; width: 20px; text-align: center; }
.offene-card > p {
    font-size: 0.95rem; line-height: 1.65; color: #555; margin: 0 0 1.5rem;
    flex: 1;
}
.offene-btn {
    align-self: flex-start;
    min-width: 160px; justify-content: center;
    padding: 0.75rem 1.75rem;
}
@media (max-width: 480px) {
    .offene-grid { grid-template-columns: 1fr; }
    .offene-card h3 { font-size: 1.1rem; }
}

/* =============================================
   KARRIERE: DAS ERWARTET DICH - Split Layout
   ============================================= */
.erwartet-section { background: linear-gradient(180deg, var(--beige) 0%, #F4E6D4 100%); }
.erwartet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}
.erwartet-text h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 1rem; }
.erwartet-intro { font-size: 1rem; line-height: 1.7; color: #444; margin-bottom: 1.75rem; }
.erwartet-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.erwartet-list li {
    display: flex; align-items: flex-start; gap: 0.9rem;
    font-size: 1rem; color: var(--dark-gray); line-height: 1.5;
}
.erwartet-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid var(--orange); color: var(--orange);
    font-size: 0.8rem; flex-shrink: 0;
}
.erwartet-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    aspect-ratio: 4/3;
    background: var(--orange);
}
.erwartet-image::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, transparent 0%, transparent 72%, var(--orange) 72%);
    pointer-events: none; z-index: 2;
}
.erwartet-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
    .erwartet-grid { grid-template-columns: 1fr; }
    .erwartet-image { aspect-ratio: 16/10; }
}

/* =============================================
   KARRIERE: BEWERBUNGSPROZESS - Vertical Timeline
   ============================================= */
.prozess-heading {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 3rem;
}
.prozess-timeline {
    list-style: none;
    padding: 0;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}
.prozess-timeline::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--orange) 0 6px, transparent 6px 14px);
}
.prozess-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 2rem;
    min-height: 80px;
}
.prozess-step:last-child { margin-bottom: 0; }
.prozess-step-number {
    position: absolute;
    left: 14px;
    top: 0;
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(255,135,59,0.35);
    z-index: 1;
}
.prozess-step-card {
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prozess-step-card:hover { transform: translateX(4px); box-shadow: 0 10px 32px rgba(255,135,59,0.18); }
.prozess-step-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    font-size: 1.25rem; margin-bottom: 1rem;
}
.prozess-step-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.prozess-step-card p { font-size: 0.95rem; line-height: 1.65; color: #555; margin: 0; }

@media (max-width: 640px) {
    .prozess-timeline::before { left: 22px; }
    .prozess-step { padding-left: 66px; }
    .prozess-step-number { left: 0; width: 44px; height: 44px; font-size: 0.95rem; border-radius: 12px; }
    .prozess-step-card { padding: 1.25rem 1.25rem; }
}

/* =============================================
   REFERENZEN - Stats & Gallery
   ============================================= */
.referenzen-stats {
    background: var(--beige);
    padding: 2.5rem 0;
    border-bottom: 1px solid #eadfcf;
}
.referenzen-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.referenzen-stats-grid > div {
    display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
}
.referenzen-stats-grid strong {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--orange);
    font-weight: 800;
    line-height: 1;
}
.referenzen-stats-grid span {
    font-size: 0.92rem;
    color: #555;
    font-weight: 500;
}

.ref-category-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}
.ref-category-head h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin: 0.75rem 0 0.75rem;
}
.ref-category-head p {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
}
.ref-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 100px;
}
.ref-badge i { font-size: 0.85rem; }

.ref-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}
.ref-item {
    position: relative;
    grid-column: span 4;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    background: #000;
    aspect-ratio: 4/3;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ref-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}
.ref-item--lg { grid-column: span 8; aspect-ratio: 16/10; }
.ref-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.ref-item:hover img { transform: scale(1.06); }
.ref-item figcaption {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem;
    color: var(--white);
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.78) 100%);
    z-index: 1;
}
.ref-item-cat {
    align-self: flex-start;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}
.ref-item figcaption h3 {
    color: var(--white);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}
.ref-item figcaption p {
    color: rgba(255,255,255,0.94);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
    overflow: hidden;
}
.ref-item:hover figcaption p,
.ref-item:focus-within figcaption p {
    opacity: 1;
    max-height: 200px;
}

@media (max-width: 992px) {
    .ref-item { grid-column: span 6; }
    .ref-item--lg { grid-column: span 12; }
}
@media (max-width: 600px) {
    .ref-gallery { grid-template-columns: 1fr; }
    .ref-item, .ref-item--lg { grid-column: span 1; aspect-ratio: 4/3; }
    .ref-item figcaption p { opacity: 1; max-height: 200px; }
}

/* =============================================
   JOB-DETAIL (jd-*) - Stellenausschreibung Template
   ============================================= */
.jd-hero {
    position: relative;
    color: var(--white);
    padding: clamp(6rem, 12vw, 7.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    overflow: hidden;
    background: #1a1a1a;
}
.jd-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.5);
    z-index: 0;
}
.jd-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(255,135,59,0.35) 100%);
}
.jd-hero > .container { position: relative; z-index: 1; }
.jd-breadcrumb { color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; font-size: 0.88rem; }
.jd-breadcrumb a { color: rgba(255,255,255,0.9); }
.jd-breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.jd-hero-inner { max-width: 900px; }
.jd-hero-kicker {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--orange); color: var(--white);
    padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.jd-hero-inner h1 {
    color: var(--white);
    font-size: clamp(1.55rem, 4.5vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-wrap: balance;
}
.jd-hero-inner h1 span {
    display: inline-block;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 0.35rem;
    font-size: 0.8em;
}
.jd-hero-lead {
    color: rgba(255,255,255,0.95);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    max-width: 780px;
    margin-bottom: 1.5rem;
}
.jd-hero-chips {
    list-style: none; padding: 0; margin: 0 0 1.75rem;
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.jd-hero-chips li {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--white);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
}
.jd-hero-chips i { color: var(--orange); font-size: 0.8rem; }
.jd-hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.jd-body {
    background: linear-gradient(180deg, #fff 0%, var(--beige) 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}
.jd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

/* MAIN */
.jd-main { min-width: 0; }
.jd-intro {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-left: 5px solid var(--orange);
    border-radius: 14px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    font-size: clamp(0.98rem, 1.4vw, 1.05rem);
    line-height: 1.65;
    color: var(--dark-gray);
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.jd-intro p { margin: 0; }

.jd-section { margin-bottom: clamp(2rem, 4vw, 3rem); }
.jd-section:last-child { margin-bottom: 0; }
.jd-section-head {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1.25rem;
}
.jd-section-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--orange); color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.jd-section-head h2 {
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.25;
}

/* Aufgaben (nummerierte Liste) */
.jd-tasks {
    list-style: none;
    counter-reset: jd-counter;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.jd-tasks li {
    counter-increment: jd-counter;
    position: relative;
    padding: 0.95rem 1rem 0.95rem 3.25rem;
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--dark-gray);
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.jd-tasks li:hover { border-color: var(--orange); transform: translateX(2px); }
.jd-tasks li::before {
    content: counter(jd-counter, decimal-leading-zero);
    position: absolute;
    left: 1rem;
    top: 0.95rem;
    font-weight: 800;
    color: var(--orange);
    font-size: 1.05rem;
    font-feature-settings: 'tnum';
    letter-spacing: -0.02em;
    line-height: 1.6;
}

/* Checkliste */
.jd-checklist { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.jd-checklist li {
    position: relative;
    padding: 0.9rem 1rem 0.9rem 2.9rem;
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--dark-gray);
}
.jd-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0.9rem;
    top: 0.95rem;
    color: var(--white);
    background: var(--orange);
    width: 24px; height: 24px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.72rem;
}

/* Highlight-Banner (Gehalt) */
.jd-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
    align-items: center;
    background: linear-gradient(135deg, var(--orange) 0%, #E36A1E 100%);
    color: var(--white);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 18px;
    margin: clamp(2rem, 3vw, 2.5rem) 0;
    box-shadow: 0 16px 36px rgba(255,135,59,0.25);
}
.jd-highlight-icon {
    width: clamp(56px, 10vw, 68px); height: clamp(56px, 10vw, 68px);
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    flex-shrink: 0;
}
.jd-highlight-text { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.jd-highlight-label {
    font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    opacity: 0.92;
}
.jd-highlight-text strong {
    font-size: clamp(1.25rem, 3.2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    word-break: keep-all;
}
.jd-highlight-sub { font-size: clamp(0.82rem, 1.4vw, 0.92rem); opacity: 0.92; margin-top: 0.25rem; line-height: 1.5; }

/* Benefits Grid */
.jd-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}
.jd-benefit {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 14px;
    padding: 1.25rem 1.1rem 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.jd-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    border-color: var(--orange);
}
.jd-benefit-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,135,59,0.12); color: var(--orange);
    font-size: 1rem;
    margin-bottom: 0.7rem;
}
.jd-benefit h3 {
    font-size: 0.98rem; font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 0.35rem;
    line-height: 1.3;
}
.jd-benefit p {
    font-size: 0.87rem; line-height: 1.5;
    color: #555; margin: 0;
}

/* Closing-Zeile */
.jd-closing {
    margin-top: clamp(2rem, 4vw, 2.75rem);
    padding: clamp(1.25rem, 2.5vw, 1.75rem) 1.5rem;
    background: linear-gradient(135deg, rgba(255,135,59,0.12) 0%, rgba(255,135,59,0.04) 100%);
    border: 1px solid rgba(255,135,59,0.25);
    border-radius: 14px;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--dark-gray);
    text-align: center;
    font-weight: 500;
}
.jd-closing strong { color: var(--orange); font-weight: 800; letter-spacing: 0.03em; }

/* Tagesablauf-Liste */
.jd-daylist {
    list-style: none; padding: 0;
    display: grid; gap: 0.65rem;
    position: relative;
}
.jd-daylist li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.95rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--dark-gray);
}
.jd-daylist li > span {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--orange); color: var(--white);
    font-weight: 800; font-size: 0.82rem;
    padding: 0.3rem 0.55rem;
    border-radius: 8px;
    min-height: 28px;
    text-align: center;
    letter-spacing: 0.02em;
    word-break: keep-all;
}

/* ASIDE / STICKY */
.jd-aside { position: sticky; top: 100px; align-self: start; }
.jd-aside-card {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-top: 4px solid var(--orange);
    border-radius: 18px;
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}
.jd-aside-title {
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 1.1rem; margin: 0 0 0.5rem;
    color: var(--dark-gray);
}
.jd-aside-title i { color: var(--orange); }
.jd-aside-intro {
    font-size: 0.88rem; line-height: 1.6;
    color: #555; margin: 0 0 1rem;
}
.jd-aside-btn {
    display: flex !important; width: 100%; justify-content: center;
    margin-bottom: 0.65rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
}
.jd-aside-note {
    font-size: 0.78rem; color: #666;
    display: flex; align-items: center; gap: 0.4rem;
    margin: 0.5rem 0 0;
    line-height: 1.4;
}
.jd-aside-note i { color: var(--orange); }
.jd-aside-sep {
    border: 0;
    border-top: 1px dashed #e5e7eb;
    margin: 1.1rem 0;
}
.jd-aside-facts {
    display: grid; gap: 0.55rem; margin: 0;
}
.jd-aside-facts > div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 0.5rem;
    font-size: 0.85rem;
    align-items: baseline;
}
.jd-aside-facts dt {
    color: #777;
    font-weight: 500;
    font-size: 0.82rem;
}
.jd-aside-facts dd {
    color: var(--dark-gray);
    font-weight: 700;
    margin: 0;
}
.jd-aside-contact {
    display: flex; flex-direction: column; gap: 0.45rem;
    font-size: 0.88rem;
}
.jd-aside-contact strong {
    font-size: 0.88rem; color: var(--dark-gray);
    margin-bottom: 0.15rem;
}
.jd-aside-contact a {
    display: inline-flex; align-items: center; gap: 0.55rem;
    color: var(--dark-gray);
    transition: color 0.2s ease;
}
.jd-aside-contact a:hover { color: var(--orange); }
.jd-aside-contact i { color: var(--orange); width: 16px; text-align: center; }

/* Responsive: unter 960 -> aside unter main, sticky aus */
@media (max-width: 960px) {
    .jd-layout { grid-template-columns: 1fr; }
    .jd-aside { position: static; order: -1; }
    .jd-aside-card { border-top-width: 4px; }
    /* Mobile Apply-Card kompakter */
    .jd-aside-card { padding: 1.25rem 1.25rem 1.4rem; }
    .jd-aside-btn { font-size: 0.95rem; padding: 0.85rem 1rem; }
}
@media (max-width: 640px) {
    .jd-hero { padding-top: clamp(5rem, 14vw, 6rem); padding-bottom: 2.25rem; }
    .jd-hero-chips { gap: 0.4rem; }
    .jd-hero-chips li { font-size: 0.78rem; padding: 0.35rem 0.75rem; }
    .jd-hero-cta .btn { flex: 1 1 100%; justify-content: center; }
    .jd-intro { padding: 1.1rem 1.1rem; border-left-width: 4px; }
    .jd-section-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 10px; }
    .jd-tasks li { padding: 0.85rem 0.9rem 0.85rem 2.9rem; font-size: 0.92rem; }
    .jd-tasks li::before { font-size: 0.95rem; left: 0.85rem; top: 0.85rem; }
    .jd-checklist li { padding: 0.8rem 0.9rem 0.8rem 2.7rem; font-size: 0.92rem; }
    .jd-checklist li::before { left: 0.85rem; top: 0.85rem; }
    .jd-highlight { grid-template-columns: 1fr; text-align: center; padding: 1.4rem 1.25rem; }
    .jd-highlight-icon { margin: 0 auto; }
    .jd-highlight-text { align-items: center; }
    .jd-benefits { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
    .jd-benefit { padding: 1rem 0.9rem; }
    .jd-benefit h3 { font-size: 0.92rem; }
    .jd-benefit p { font-size: 0.82rem; }
    .jd-daylist li { grid-template-columns: 70px 1fr; gap: 0.75rem; padding: 0.85rem 0.9rem; font-size: 0.9rem; }
    .jd-daylist li > span { font-size: 0.78rem; padding: 0.25rem 0.5rem; }
    .jd-aside-facts > div { grid-template-columns: 1fr; gap: 0; padding-bottom: 0.5rem; border-bottom: 1px dashed #eee; }
    .jd-aside-facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
    .jd-aside-facts dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.1rem; }
}
@media (max-width: 380px) {
    .jd-benefits { grid-template-columns: 1fr; }
    .jd-hero-inner h1 span { display: block; margin-left: 0; margin-top: 0.25rem; }
}
.job-card {
    background: var(--white); border: 2px solid var(--light-border);
    border-radius: 20px; padding: 2rem 1.75rem 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    height: 100%;
}
.job-card .job-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}
.job-card .job-card-spacer { flex: 1 1 auto; }
.job-card p { margin-bottom: 0; font-size: 0.95rem; line-height: 1.6; opacity: 0.8; }
.job-card .btn {
    margin-top: 1.5rem;
    align-self: stretch;
    justify-content: center;
    width: 100%;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 18, 30, 0.08); border-color: rgba(255, 135, 59, 0.35); color: inherit; }
.job-badge { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--orange); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 0.4rem 0.85rem; border-radius: 50px; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.04em; width: fit-content; }
.job-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; line-height: 1.35; }
.job-card .job-icon { font-size: 1.75rem; color: var(--orange); margin-bottom: 0.5rem; }

/* =============================================
   LOCAL SEO / CITIES
   ============================================= */
/* Cities / Einsatzgebiet Grid - intrinsic responsive */
.cities-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem;
}
.city-card {
    position: relative; border-radius: 12px; overflow: hidden;
    text-decoration: none; color: var(--dark-gray); display: block;
    background: var(--white); box-shadow: var(--shadow-soft);
    transition: all var(--transition);
}
.city-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 18, 30, 0.10); color: var(--dark-gray); }
.city-card-img {
    width: 100%; height: 140px; background-size: cover; background-position: center;
    transition: transform 0.5s ease;
}
.city-card:hover .city-card-img { transform: scale(1.05); }
.city-card-body { padding: 0.9rem 1rem; }
.city-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--dark-gray); }
.city-badge {
    display: inline-block; background: var(--orange); color: var(--white);
    font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem;
    border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
}
.city-badge-time { background: var(--beige); color: var(--dark-gray); }

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--dark-gray); font-size: 0.9rem; }
.form-control {
    width: 100%; padding: 0.75rem 1rem;
    border: 2px solid var(--light-border); border-radius: var(--radius);
    font-size: 1rem; font-family: var(--font);
    transition: border-color var(--transition); background: var(--white);
}
.form-control:focus { border-color: var(--orange); outline: 2px solid rgba(255,135,59,0.2); outline-offset: 2px; }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-error { color: #ef4444; font-size: 0.85rem; margin-top: 0.3rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .nav-toggle { display: flex; flex-direction: column; justify-content: center; }
    .nav-right { display: none; }

    .main-nav {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px;
        height: 100vh; height: 100dvh; background: var(--white);
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
        padding: 0; margin: 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto; overflow-x: hidden;
        z-index: 1002;
        display: flex; flex-direction: column;
        border: none;
    }
    .main-nav.open { right: 0; }

    /* Mobile nav header: logo + close */
    .mobile-nav-header {
        display: flex; align-items: center; justify-content: space-between;
        padding: 1rem 1.5rem;
        margin: 0;
        border-bottom: 3px solid var(--orange);
        flex-shrink: 0; background: var(--white);
        box-sizing: border-box; width: 100%;
    }
    .mobile-nav-header .logo-img { height: 32px; }
    .mobile-nav-close {
        background: none; border: none; cursor: pointer;
        width: 36px; height: 36px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: var(--dark-gray); font-size: 1.1rem;
        transition: all var(--transition);
    }
    .mobile-nav-close:hover { background: var(--beige); color: var(--orange); }

    /* Hide the hamburger toggle from header when nav is open */
    body.nav-open .nav-toggle { opacity: 0; pointer-events: none; }

    /* Nav icons visible on mobile */
    .nav-icon { display: inline-block; width: 1.25rem; color: var(--orange); font-size: 0.9rem; }

    /* Nav list */
    .nav-list {
        flex-direction: column; gap: 0; width: 100%;
        padding: 1rem 0; flex: 0;
    }
    .nav-list > li { width: 100%; border: none; }
    .nav-list > li > a {
        padding: 0.85rem 1.75rem; font-size: 1rem; font-weight: 600;
        border: none; width: 100%;
        display: flex; align-items: center; gap: 0.85rem;
        border-left: 3px solid transparent;
    }
    .nav-list > li > a.active {
        background: rgba(255,135,59,0.08);
        border-left-color: var(--orange);
        color: var(--orange);
    }
    .nav-list > li > a:hover,
    .nav-list > li > a:active { background: var(--beige); color: var(--orange); }

    /* Mobile dropdown - collapsed by default */
    .nav-dropdown > a { justify-content: flex-start; }
    .nav-dropdown > a::after {
        content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900;
        display: inline-block; font-size: 0.65rem; border: none; width: auto; height: auto;
        margin-left: auto; transition: transform var(--transition);
        color: #aaa;
    }
    .nav-dropdown.open > a::after { transform: rotate(180deg); color: var(--orange); }
    .dropdown-menu {
        position: static; box-shadow: none; border: none; min-width: auto;
        opacity: 1; visibility: visible; transform: none;
        max-height: 0; overflow: hidden; padding: 0;
        transition: max-height 0.35s ease;
        background: var(--beige);
    }
    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
    }
    .dropdown-menu li { border-bottom: 1px solid rgba(0,0,0,0.05); }
    .dropdown-menu li:last-child { border-bottom: none; }
    .dropdown-menu a {
        padding: 0.7rem 1.5rem 0.7rem 3.5rem; font-size: 0.9rem;
        display: block; color: var(--dark-gray);
    }
    .dropdown-menu a:hover { color: var(--orange); background: rgba(255,135,59,0.08); }

    /* Mobile nav footer */
    .mobile-nav-footer {
        display: block; padding: 1.25rem 1.5rem; margin: 0;
        background: var(--beige); flex-shrink: 0;
        width: 100%; box-sizing: border-box;
        margin-top: auto;
    }
    .mobile-nav-cta {
        display: flex; align-items: center; justify-content: center; gap: 0.5rem;
        width: 100%; background: var(--orange); color: var(--white);
        font-weight: 700; border-radius: 50px; padding: 0.85rem 1.5rem;
        font-size: 1rem; transition: all var(--transition); margin-bottom: 1rem;
        transform: skewX(-10deg);
    }
    .mobile-nav-cta > * { display: inline-block; transform: skewX(10deg); }
    .mobile-nav-cta:hover { background: var(--orange-dark); color: var(--white); }

    .mobile-nav-contact {
        display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem;
    }
    .mobile-nav-phone,
    .mobile-nav-email {
        display: flex; align-items: center; gap: 0.6rem;
        font-size: 0.85rem; color: var(--dark-gray);
    }
    .mobile-nav-phone i,
    .mobile-nav-email i { color: var(--orange); width: 1rem; text-align: center; font-size: 0.85rem; }
    .mobile-nav-phone:hover,
    .mobile-nav-email:hover { color: var(--orange); }

    .mobile-nav-social {
        display: flex; gap: 1rem; padding-top: 0.5rem;
    }
    .mobile-nav-social a {
        width: 38px; height: 38px; border-radius: 50%;
        background: var(--white); display: flex; align-items: center; justify-content: center;
        color: var(--dark-gray); font-size: 1.1rem;
        transition: all var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    .mobile-nav-social a:hover { background: var(--orange); color: var(--white); }

    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .quote-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* =============================================
       BOTTOM NAVIGATION BAR
       ============================================= */

    .bottom-nav {
        display: flex; position: fixed; bottom: 0; left: 0; right: 0;
        z-index: 1000; background: var(--white);
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
        padding: 0.35rem 0; padding-bottom: calc(0.35rem + env(safe-area-inset-bottom, 0px));
        justify-content: space-around; align-items: center;
    }
    .bottom-nav-item {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 0.15rem; padding: 0.35rem 0.5rem; font-size: 0.65rem; font-weight: 600;
        color: #888; text-decoration: none; border: none; background: none;
        cursor: pointer; transition: color var(--transition); min-width: 0;
        -webkit-tap-highlight-color: transparent; font-family: var(--font);
    }
    .bottom-nav-item i { font-size: 1.15rem; transition: all var(--transition); }
    .bottom-nav-item:hover,
    .bottom-nav-item:active,
    .bottom-nav-item.active { color: var(--orange); }

    /* CTA item (Anrufen) - highlighted */
    .bottom-nav-cta {
        position: relative;
    }
    .bottom-nav-cta i {
        background: var(--orange); color: var(--white);
        width: 42px; height: 42px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.1rem; margin-top: -18px;
        box-shadow: 0 2px 10px rgba(255,135,59,0.4);
        transition: all var(--transition);
    }
    .bottom-nav-cta:hover i,
    .bottom-nav-cta:active i { background: var(--orange-dark); transform: scale(1.05); }
    .bottom-nav-cta span { color: var(--orange); font-weight: 700; }

    /* Mobile header: smaller, only logo + burger */
    .header-inner { padding: 0.5rem 1rem; }
    .logo-img { height: 36px; }

    /* Hero wave smaller on mobile */
    /* Offset body and footer for bottom nav */
    body { padding-bottom: 65px; }
    .site-footer { margin-bottom: 0; }
}

@media (max-width: 640px) {
    .section { padding: 3rem 0; }
    .hero {
        min-height: 100vh; height: auto;
        padding-top: 80px; padding-bottom: 5rem;
    }
    .hero-content { text-align: center; margin: 0 auto; padding: 1rem 0; max-width: 100%; }
    .hero-content h1 { font-size: 1.6rem; }
    .hero-list {
        text-align: center;
        display: block;
        margin: 0 auto 2rem;
        padding: 0;
    }
    .hero-list li {
        font-size: 0.9rem;
        justify-content: center;
        display: flex;
    }
    .hero .btn-group { justify-content: center; }
    .hero .btn, .hero-content .btn { width: auto; max-width: 280px; justify-content: center; margin: 0 auto; }
    .google-badge,
    .hero .google-badge,
    .hero-content .google-badge {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        margin: 2rem auto 0;
        gap: 0.75rem;
    }
    .google-text { font-size: 0.85rem; white-space: normal; }
    .btn-group { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-phone small { display: none; }
    .cities-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .city-card-img { height: 110px; }
    .city-card-body { padding: 0.65rem 0.75rem; }
    .city-card-body h3 { font-size: 0.9rem; }
    .quote-stats { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important; gap: 1rem !important; }
    #quiz-services { grid-template-columns: 1fr 1fr !important; gap: 0.5rem !important; }
    #quiz-container { padding: 1.5rem !important; }
    .quiz-option { padding: 0.7rem 0.75rem !important; font-size: 0.85rem !important; gap: 0.5rem !important; }

    /* ===== GLOBAL INLINE GRID OVERRIDES ===== */
    .feature-items[style*="repeat(5"] { grid-template-columns: 1fr !important; gap: 1rem !important; }
    [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; gap: 1rem !important; }
    [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: 1fr !important; gap: 1rem !important; }
    [style*="grid-template-columns: 1fr 1fr"]:not(#quiz-services) { grid-template-columns: 1fr !important; }

    /* Typography smaller */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }

    /* Container padding */
    .container { padding: 0 1rem; }

    /* Two-col stacks */
    .two-col { gap: 2rem; grid-template-columns: 1fr; }
    .two-col-img img { height: auto !important; }

    /* Services/Reviews/Funnel all 1 col */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 280px; padding: 2rem 1.5rem; }
    .reviews-slider { grid-template-columns: 1fr; }
    .funnel-steps { grid-template-columns: 1fr; }

    /* Form inputs don't zoom on iOS */
    input[type="text"], input[type="email"], input[type="tel"],
    textarea, select, .form-control { font-size: 16px; }

    /* Maps */
    iframe[src*="google.com/maps"] { min-height: 300px !important; }

    /* Section label smaller */
    .section-label { font-size: 0.7rem; padding: 0.25rem 0.7rem; }
}

@media (min-width: 641px) and (max-width: 992px) {
    /* Tablet overrides for inline grids */
    [style*="grid-template-columns: repeat(5, 1fr)"] { grid-template-columns: repeat(3, 1fr) !important; }
    [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
    [style*="grid-template-columns: repeat(3, 1fr)"]:not(.reviews-slider) { grid-template-columns: repeat(2, 1fr) !important; }
}

/* =============================================
   SECTION LABEL (small upper badge)
   ============================================= */
.section-label {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

/* =============================================
   SECTION ALT (light-beige alternate bg)
   ============================================= */
.section-alt { background: var(--beige); }

/* =============================================
   HERO BADGE (for local pages)
   ============================================= */
.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* =============================================
   BTN OUTLINE (generic outline button)
   ============================================= */
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 100px;
    transform: skewX(-10deg);
}
.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* =============================================
   SERVICE ICON (icon-based service cards)
   ============================================= */
.service-icon {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--orange);
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--orange); background: transparent;
    border-radius: 50%;
    transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

/* When service-card is used as non-image card */
.service-card:not([style*="background-image"]) {
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid var(--light-border);
    box-shadow: var(--shadow-soft);
    min-height: auto;
    padding: 2rem;
}
.service-card:not([style*="background-image"])::before {
    display: none;
}
.service-card:not([style*="background-image"]) h3 {
    background: none;
    color: var(--dark-gray);
    padding: 0;
    font-size: 1.15rem;
    display: block;
    line-height: 1.3;
}
.service-card:not([style*="background-image"]) p {
    color: var(--dark-gray);
    opacity: 0.8;
}
.service-card:not([style*="background-image"]):hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    color: var(--dark-gray);
}

/* =============================================
   FUNNEL STEPS (non-timeline variant)
   ============================================= */
.funnel-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    counter-reset: step;
    position: relative;
    margin-top: 2rem;
}
.funnel-steps .funnel-step {
    position: relative;
    padding: 2.25rem 1.75rem 2rem;
    background: var(--white);
    border: 1px solid rgba(15, 18, 30, 0.06);
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(15, 18, 30, 0.05);
    text-align: left;
    margin-bottom: 0;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
    overflow: hidden;
}
.funnel-steps .funnel-step::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s var(--ease-out);
}
.funnel-steps .funnel-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 18, 30, 0.08);
    border-color: rgba(255, 135, 59, 0.35);
}
.funnel-steps .funnel-step:hover::after { transform: scaleX(1); }
.funnel-steps .funnel-step::before {
    counter-increment: step;
    content: "0" counter(step);
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--orange);
    border-radius: 0;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 1.25rem 0;
    font-family: var(--font);
}
.funnel-steps .funnel-step h3 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}
.funnel-steps .funnel-step p {
    font-size: 0.93rem;
    color: #555;
    opacity: 1;
    line-height: 1.6;
    margin: 0;
}
.funnel-steps .funnel-step-icon { display: none; }
.funnel-steps .funnel-step-badge { display: none; }

/* =============================================
   QUOTE CARD EXTENSIONS
   ============================================= */
.cite-role {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.2rem;
}
.quote-social {
    display: flex;
    gap: 1.25rem;
    padding-left: 1.25rem;
    margin-top: 1.25rem;
}
.quote-social a {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    text-decoration: underline;
    transition: color var(--transition);
}
.quote-social a:hover { color: var(--white); }

.stat-desc {
    font-size: 0.85rem;
    color: var(--dark-gray);
    opacity: 0.7;
    margin-top: 1rem;
    line-height: 1.5;
}

/* =============================================
   REVIEWS / TESTIMONIALS
   ============================================= */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 18, 30, 0.08);
}
.review-stars {
    color: var(--orange);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 1.25rem;
}
.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-gray);
}
.review-author span {
    font-size: 0.8rem;
    color: var(--dark-gray);
    opacity: 0.6;
}

/* =============================================
   FAQ / ACCORDION
   ============================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--light-border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item[open] {
    border-color: var(--orange);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-gray);
    cursor: pointer;
    list-style: none;
    transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--orange);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] .faq-question::after {
    content: '\2212';
}
.faq-question:hover {
    background: rgba(255,135,59,0.05);
}
.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--dark-gray);
    opacity: 0.85;
}

/* Bare <details>/<summary> fallback inside faq-list */
.faq-list details.faq-item { background: var(--white); }
.faq-list details.faq-item > summary {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.75rem; padding: 1.1rem 1.5rem;
    font-weight: 600; font-size: 1rem; color: var(--dark-gray);
    cursor: pointer; list-style: none;
}
.faq-list details.faq-item > summary::-webkit-details-marker { display: none; }
.faq-list details.faq-item > summary i { color: var(--orange); transition: transform 0.25s ease; }
.faq-list details.faq-item[open] > summary i { transform: rotate(90deg); }
.faq-list details.faq-item > p {
    padding: 0 1.5rem 1.25rem; margin: 0;
    font-size: 0.92rem; line-height: 1.7; color: var(--dark-gray); opacity: 0.85;
}
.faq-list details.faq-item > summary:hover { background: rgba(255,135,59,0.05); }

/* =============================================
   STANDORT HOURS
   ============================================= */
.standort-hours {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.standort-hours-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.standort-hours-icon {
    font-size: 1.3rem;
}

@media (max-width: 992px) {
    .reviews-slider { grid-template-columns: 1fr; }
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
    .fade-in-left.visible { opacity: 1; transform: translateX(0); }
    .fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
    .fade-in-right.visible { opacity: 1; transform: translateX(0); }
    .fade-in-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
    .fade-in-scale.visible { opacity: 1; transform: scale(1); }
    /* Stagger delays for child elements */
    .fade-in-stagger > *:nth-child(1) { transition-delay: 0s; }
    .fade-in-stagger > *:nth-child(2) { transition-delay: 0.1s; }
    .fade-in-stagger > *:nth-child(3) { transition-delay: 0.2s; }
    .fade-in-stagger > *:nth-child(4) { transition-delay: 0.3s; }
    .fade-in-stagger > *:nth-child(5) { transition-delay: 0.4s; }
    .fade-in-stagger > *:nth-child(6) { transition-delay: 0.5s; }
}

/* Hero staggered list animation */
.hero-list li {
    opacity: 0;
    transform: translateX(-20px);
    animation: heroListFade 0.5s ease forwards;
}
.hero-list li:nth-child(1) { animation-delay: 0.3s; }
.hero-list li:nth-child(2) { animation-delay: 0.5s; }
.hero-list li:nth-child(3) { animation-delay: 0.7s; }
.hero-list li:nth-child(4) { animation-delay: 0.9s; }
.hero-list li:nth-child(5) { animation-delay: 1.1s; }
.hero-list li:nth-child(6) { animation-delay: 1.3s; }

@keyframes heroListFade {
    to { opacity: 1; transform: translateX(0); }
}

/* Hero content fade in */
.hero-content h1 {
    opacity: 0;
    transform: translateY(-20px);
    animation: heroTitleFade 0.7s ease 0.1s forwards;
}
.hero-content .hero-subtitle {
    opacity: 0;
    animation: heroTitleFade 0.5s ease 0.2s forwards;
}
.hero-content .btn {
    opacity: 0;
    animation: heroBtnFade 0.5s ease 1.4s forwards;
}
@keyframes heroBtnFade {
    to { opacity: 1; transform: skewX(-10deg) translateY(0); }
}
.hero-content .google-badge {
    opacity: 0;
    margin-top: 2.5rem;
    animation: heroTitleFade 0.5s ease 1.6s forwards;
}

@keyframes heroTitleFade {
    to { opacity: 1; transform: translateY(0); }
}

/* Stat number counter animation */
.stat-number {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-number.animate-in {
    animation: statPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes statPop {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}
.stat-number.visible {
    opacity: 1;
    transform: scale(1);
}

/* Service card hover glow */
.service-card:hover {
    box-shadow: 0 0 30px rgba(255,135,59,0.2);
}

/* Review card subtle float animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
/* review-card Hover wird oben gesetzt - keine Animation */

/* Promo banner styles - refined, friendly card */
.promo-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15, 18, 30, 0.16), 0 4px 14px rgba(15, 18, 30, 0.06);
    padding: 1.25rem 1.4rem 1.4rem;
    width: min(340px, calc(100vw - 2rem));
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: opacity 0.45s var(--ease-out, ease), transform 0.45s var(--ease-out, ease);
    pointer-events: none;
    overflow: hidden;
}
.promo-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
}
.promo-banner.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.promo-banner-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: var(--beige);
    border: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s var(--ease-out, ease), color 0.25s var(--ease-out, ease);
}
.promo-banner-close:hover { background: var(--orange); color: var(--white); }
.promo-banner h3 {
    font-size: 1rem;
    margin: 0.25rem 1.75rem 0.5rem 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
}
.promo-banner h3 i {
    background: rgba(255, 135, 59, 0.14);
    width: 32px; height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.promo-banner p {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    color: #555;
}
.promo-banner .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.7rem 1.25rem;
    min-height: 42px;
}
@media (max-width: 768px) {
    .promo-banner {
        right: 0.75rem;
        left: 0.75rem;
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
        width: auto;
        padding: 1rem 1.1rem 1.15rem;
    }
}

/* =============================================
   SECTION VARIANTS
   ============================================= */
.section-alt { background: var(--beige); }

/* section-label defined above */

/* =============================================
   HERO BADGE (Local SEO pages)
   ============================================= */
.hero-badge {
    display: inline-block; background: var(--orange); color: var(--white);
    padding: 0.35rem 1rem; border-radius: 100px; font-size: 0.8rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* =============================================
   BUTTON OUTLINE (generic)
   ============================================= */
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.5); border-radius: 50px;
    transform: skewX(-10deg);
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* =============================================
   SIMPLE SERVICE CARDS (icon-based, for subpages)
   ============================================= */
.service-card .service-icon {
    font-size: 1.4rem; margin-bottom: 1.25rem; color: var(--orange);
    line-height: 1;
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--orange); background: transparent;
    border-radius: 50%;
    transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.service-card:hover .service-icon {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 135, 59, 0.32);
}

/* When service-card has no background-image (subpages), use simple card style */
.section-alt .service-card,
.service-card:not([style*="background-image"]) {
    background: var(--white); color: var(--dark-gray);
    border: 1px solid var(--light-border); box-shadow: var(--shadow-soft);
    min-height: auto; padding: 2rem; border-radius: var(--radius);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-start;
}
.section-alt .service-card::before,
.service-card:not([style*="background-image"])::before {
    display: none;
}
.section-alt .service-card h3,
.service-card:not([style*="background-image"]) h3 {
    display: block; background: none; color: var(--dark-gray);
    padding: 0; font-size: 1.1rem; font-weight: 700;
    box-decoration-break: initial; -webkit-box-decoration-break: initial;
    line-height: 1.3;
}
.section-alt .service-card p,
.service-card:not([style*="background-image"]) p {
    color: var(--dark-gray); opacity: 0.8; margin-top: 0.75rem;
}
.section-alt .service-card .card-link,
.service-card:not([style*="background-image"]) .card-link {
    color: var(--orange);
}
.section-alt .service-card:hover,
.service-card:not([style*="background-image"]):hover {
    transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    color: var(--dark-gray);
}

/* Funnel-Steps haben einen modernisierten Block weiter oben in dieser Datei */

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form { margin-top: 0; }

/* =============================================
   SERVICES GRID - 3 col for subpages
   ============================================= */
.section-alt .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 992px) {
    .funnel-steps { grid-template-columns: 1fr; }
    .section-alt .services-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 18, 30, 0.10);
}

.blog-card-img {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
}
.blog-card-body h3 {
    margin: 0.5rem 0 0.75rem;
    font-size: 1.15rem;
    line-height: 1.4;
}
.blog-card-body h3 a {
    color: var(--dark-gray);
}
.blog-card-body h3 a:hover {
    color: var(--orange);
}
.blog-card-body p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #888;
}
.blog-card-category {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.2rem 0.65rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Blog Article (Single Post) */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-border);
}
.blog-article-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.blog-article-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
}
.blog-article-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-gray);
}
.blog-article-author time {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

.blog-article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}
.blog-article-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}
.blog-article-content h3 {
    margin: 1.75rem 0 0.75rem;
    font-size: 1.2rem;
}
.blog-article-content p {
    margin-bottom: 1.25rem;
}
.blog-article-content ul,
.blog-article-content ol {
    margin: 1rem 0 1.25rem 1.5rem;
}
.blog-article-content li {
    margin-bottom: 0.5rem;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-border);
}
.blog-tag {
    display: inline-block;
    background: var(--beige);
    color: var(--dark-gray);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Blog Related Posts */
.blog-related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-related {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .blog-card-body {
        padding: 1rem;
    }
    .blog-article-content {
        font-size: 1rem;
    }
    .blog-article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================================
   TEAM CARDS
   ============================================= */
.team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    isolation: isolate;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(140deg, transparent 40%, rgba(255,135,59,0.0) 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    transition: background 0.35s ease;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 18, 30, 0.10);
    border-color: rgba(255, 135, 59, 0.35);
}
.team-card:hover::before {
    background: linear-gradient(140deg, rgba(255,135,59,0.55), rgba(255,135,59,0) 60%);
}
.team-card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center 18%;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    background-color: #ececec;
}
.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}
@supports not (aspect-ratio: 1) {
    .team-card-img { height: 380px; }
}
@media (max-width: 992px) {
    .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .feature-items[style*="repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .feature-items[style*="repeat(5"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
    .feature-items[style*="repeat(5"] { grid-template-columns: 1fr !important; }
}
.team-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.22) 100%);
    pointer-events: none;
}
.team-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 150px;
}
.team-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
    color: var(--dark-gray);
    font-weight: 800;
    letter-spacing: -0.01em;
}
.team-role {
    font-size: 0.85rem;
    color: var(--dark-gray);
    opacity: 0.6;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.team-spec {
    font-size: 0.72rem;
    color: var(--orange);
    font-weight: 800;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid var(--light-border);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}
.team-card-body h3, .team-role, .team-spec { max-width: 100%; }
.team-spec:empty { display: none; }
.team-spec i { margin-right: 0.35rem; }

/* =============================================
   SERVICE PAGE - QUICK CTA + STATS + CHECKLIST
   ============================================= */
.quick-cta { padding: 2.5rem 0; }
.quick-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, var(--orange) 0%, #ef6c1f 100%);
    border: none;
    border-radius: 22px;
    padding: 2.25rem 2.75rem;
    box-shadow: 0 14px 40px rgba(255,135,59,0.28);
    color: var(--white);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.quick-cta-box::before {
    content: '';
    position: absolute;
    right: -40px; top: -40px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}
.quick-cta-box > * { position: relative; z-index: 1; }
.quick-cta-box .quick-cta-text { flex: 1; min-width: 0; }
.quick-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: var(--white);
    font-weight: 700;
}
.quick-cta-box h3 i { color: var(--white); margin-right: 0.5rem; opacity: 0.9; }
.quick-cta-box p { margin: 0; font-size: 0.98rem; color: rgba(255,255,255,0.92); }
.quick-cta-box .btn-primary {
    background: var(--white); color: var(--orange);
}
.quick-cta-box .btn-primary:hover {
    background: var(--white); color: var(--orange-dark);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.quick-cta-box .btn-outline-dark {
    border-color: rgba(255,255,255,0.7); color: var(--white);
}
.quick-cta-box .btn-outline-dark:hover {
    background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white);
}
.quick-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}
@media (max-width: 768px) {
    .quick-cta-box { flex-direction: column; padding: 1.75rem; text-align: center; }
    .quick-cta-actions { width: 100%; justify-content: center; }
    .quick-cta-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* Service Stats Grid */
.service-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.service-stat-card {
    background: var(--white);
    border: 1px solid rgba(15, 18, 30, 0.06);
    border-radius: 22px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.service-stat-card::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s var(--ease-out);
}
.service-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 135, 59, 0.35);
    box-shadow: 0 18px 40px rgba(15, 18, 30, 0.08);
}
.service-stat-card:hover::before { transform: scaleX(1); }
.service-stat-num {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-stat-card p { font-size: 0.92rem; margin: 0; opacity: 1; color: #555; line-height: 1.55; }
@media (max-width: 992px) { .service-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-stats { grid-template-columns: 1fr; } }

/* Festpreis Check Grid - polierte Karten-Optik */
.check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem 1.5rem;
    margin-top: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.98rem;
    line-height: 1.5;
    padding: 1.1rem 1.35rem;
    background: var(--white);
    border: 1px solid rgba(15, 18, 30, 0.05);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(15, 18, 30, 0.03);
    transition: transform 0.25s var(--ease-out, ease),
                box-shadow 0.25s var(--ease-out, ease),
                border-color 0.25s var(--ease-out, ease),
                color 0.25s var(--ease-out, ease);
    color: var(--dark-gray);
    font-weight: 500;
}
.check-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 18, 30, 0.07);
    border-color: rgba(255, 135, 59, 0.35);
    color: var(--orange);
}
.check-item i {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.78rem;
    box-shadow: 0 4px 10px rgba(255, 135, 59, 0.32);
    transition: transform 0.3s var(--ease-out, ease);
}
.check-item:hover i { transform: scale(1.08); }
@media (max-width: 992px) {
    .check-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .check-grid { grid-template-columns: 1fr; gap: 0.65rem; }
    .check-item { padding: 0.85rem 1rem; }
}

/* =============================================
   QUIZ FUNNEL
   ============================================= */
.quiz-option {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.9rem 1rem; border: 2px solid var(--light-border);
    border-radius: 12px; cursor: pointer; font-size: 0.9rem;
    font-weight: 600; transition: all 0.2s ease;
    color: var(--dark-gray); user-select: none;
}
.quiz-option:hover { border-color: var(--orange); background: rgba(255,135,59,0.04); }
.quiz-option input[type="checkbox"] { display: none; }
.quiz-option input[type="checkbox"]:checked + i { color: var(--white); }
.quiz-option:has(input:checked) {
    border-color: var(--orange); background: var(--orange); color: var(--white);
}
.quiz-option:has(input:checked) i { color: var(--white); }
.quiz-option i { font-size: 1.1rem; color: var(--orange); width: 1.25rem; text-align: center; transition: color 0.2s; }
.quiz-step { animation: quizFadeIn 0.3s ease; }
@keyframes quizFadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@media (max-width: 640px) { .quiz-option { font-size: 0.85rem; padding: 0.75rem; } }

/* =============================================
   GLOBAL HOVER EFFECTS
   ============================================= */
.two-col-img img { transition: transform 0.5s ease, box-shadow 0.3s ease; }
.two-col-img:hover img { transform: scale(1.02); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.feature-item { transition: transform 0.3s ease; }
.feature-item:hover { transform: translateX(5px); }
.feature-icon { transition: transform 0.3s ease, background 0.3s ease; }
.feature-item:hover .feature-icon { transform: scale(1.1); background: var(--orange); color: var(--white); border-color: var(--orange); }
.footer-links a { transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-links a:hover { padding-left: 5px; }
.section-label { transition: transform 0.3s ease; }
.section-label:hover { transform: scale(1.05); }
.contact-info-item { transition: transform 0.3s ease; }
.contact-info-item:hover { transform: translateX(3px); }
.faq-item { transition: all 0.3s ease, box-shadow 0.3s ease; }
.faq-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.google-badge { transition: transform 0.3s ease; }
.google-badge:hover { transform: scale(1.03); }

/* --- Print --- */
/* =============================================
   COOKIE BANNER & MODAL
   ============================================= */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 1100; background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--orange);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: flex; align-items: center; gap: 2rem;
    flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text h3 {
    font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--dark-gray);
    display: flex; align-items: center; gap: 0.5rem;
}
.cookie-banner-text h3 i { color: var(--orange); }
.cookie-banner-text p { font-size: 0.85rem; line-height: 1.5; color: var(--dark-gray); opacity: 0.85; }
.cookie-banner-text p a { color: var(--orange); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner-actions .btn { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

@media (max-width: 768px) {
    .cookie-banner { padding: 1rem 1.25rem; padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px) + 65px); }
    .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 1rem; }
    .cookie-banner-actions { flex-direction: column; }
    .cookie-banner-actions .btn { width: 100%; justify-content: center; }
}

.cookie-modal { display: none; position: fixed; inset: 0; z-index: 1200; }
.cookie-modal.show { display: flex; align-items: center; justify-content: center; padding: 1rem; }
.cookie-modal-backdrop {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.cookie-modal-content {
    position: relative; background: var(--white);
    border-radius: 20px; max-width: 600px; width: 100%;
    max-height: 90vh; display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: cookieModalIn 0.3s ease;
}
@keyframes cookieModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 2rem; border-bottom: 1px solid var(--light-border);
}
.cookie-modal-header h2 {
    font-size: 1.25rem; margin: 0;
    display: flex; align-items: center; gap: 0.5rem;
}
.cookie-modal-header h2 i { color: var(--orange); }
.cookie-modal-close {
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    font-size: 1.5rem; color: var(--dark-gray);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease;
}
.cookie-modal-close:hover { background: var(--beige); color: var(--orange); }
.cookie-modal-body {
    padding: 1.5rem 2rem; overflow-y: auto; flex: 1;
}
.cookie-modal-body > p { font-size: 0.9rem; margin-bottom: 1.5rem; opacity: 0.8; }
.cookie-category {
    padding: 1.25rem 0; border-bottom: 1px solid var(--light-border);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category-header {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.cookie-category-header > div { flex: 1; }
.cookie-category-header h3 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--dark-gray); }
.cookie-category-header p { font-size: 0.8rem; line-height: 1.5; color: var(--dark-gray); opacity: 0.7; }
.cookie-modal-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--light-border);
    display: flex; gap: 0.75rem; justify-content: flex-end;
}
.cookie-modal-footer .btn { padding: 0.6rem 1.5rem; font-size: 0.85rem; }
@media (max-width: 640px) {
    .cookie-modal-header, .cookie-modal-body, .cookie-modal-footer { padding-left: 1.25rem; padding-right: 1.25rem; }
    .cookie-modal-footer { flex-direction: column; }
    .cookie-modal-footer .btn { width: 100%; justify-content: center; }
}

/* Cookie Switch */
.cookie-switch {
    position: relative; display: inline-block;
    width: 46px; height: 26px; flex-shrink: 0;
}
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
    position: absolute; cursor: pointer; inset: 0;
    background: #ccc; border-radius: 26px;
    transition: background 0.3s ease;
}
.cookie-slider::before {
    content: ''; position: absolute;
    width: 20px; height: 20px; left: 3px; bottom: 3px;
    background: var(--white); border-radius: 50%;
    transition: transform 0.3s ease;
}
.cookie-switch input:checked + .cookie-slider { background: var(--orange); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-switch input:disabled + .cookie-slider { opacity: 0.6; cursor: not-allowed; }

/* Form blocked overlay */
.form-cookie-block {
    background: rgba(255,135,59,0.08);
    border: 2px dashed var(--orange);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.form-cookie-block i { font-size: 1.5rem; color: var(--orange); margin-bottom: 0.5rem; display: block; }
.form-cookie-block p { font-size: 0.9rem; margin-bottom: 1rem; }

/* =============================================
   BLOG TEASER CARDS (Home-Seite)
   ============================================= */
.blog-teaser-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem; margin-top: 1rem;
}
.blog-teaser-card {
    display: flex; flex-direction: column;
    background: var(--white); border-radius: 18px;
    border: 1px solid var(--light-border); overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    color: var(--dark-gray);
}
.blog-teaser-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10,10,10,0.08);
    border-color: var(--orange-light); color: var(--dark-gray);
}
.blog-teaser-image {
    height: 200px; background-size: cover; background-position: center;
    position: relative;
}
.blog-teaser-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.15) 100%);
}
.blog-teaser-body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex; flex-direction: column; flex: 1;
}
.blog-teaser-category {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--orange);
    margin-bottom: 0.85rem;
}
.blog-teaser-body h3 {
    font-size: 1.2rem; line-height: 1.35; margin: 0 0 0.75rem;
    color: var(--dark-gray);
}
.blog-teaser-card:hover h3 { color: var(--orange); }
.blog-teaser-body p {
    font-size: 0.92rem; line-height: 1.6; color: #6b7280;
    margin: 0 0 1.25rem; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-teaser-meta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--light-border);
    font-size: 0.82rem; color: #9ca3af;
}
.blog-teaser-readmore {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-weight: 700; color: var(--orange); font-size: 0.88rem;
    transition: gap 0.25s ease;
}
.blog-teaser-card:hover .blog-teaser-readmore { gap: 0.7rem; }

/* =============================================
   STELLEN-DETAIL-META (Chips unter Hero)
   ============================================= */
.job-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.job-chip {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.85rem; border-radius: 999px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    color: var(--white); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.02em;
}
.job-chip i { color: var(--orange); font-size: 0.85rem; }
.job-intro {
    font-size: 1.05rem; line-height: 1.65; color: var(--dark-gray);
    border-left: 4px solid var(--orange); padding-left: 1rem;
    background: #fff7ed; padding: 1rem 1.25rem; border-radius: 0 12px 12px 0;
}

/* Job-Card Erweiterungen (Karriere-Index) */
.job-card-meta {
    display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.5rem 0 0.85rem;
}
.job-card-meta span {
    font-size: 0.72rem; font-weight: 600;
    padding: 0.25rem 0.6rem; border-radius: 999px;
    background: #fff7ed; color: var(--orange);
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.job-card-bullets {
    list-style: none; padding: 0; margin: 0.85rem 0 0;
    font-size: 0.88rem; color: #374151;
}
.job-card-bullets li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    padding: 0.28rem 0;
}
.job-card-bullets li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--orange); font-size: 0.78rem; margin-top: 0.2rem; flex-shrink: 0;
}

/* =============================================
   BEWERBUNGSFORMULAR (Stepper, Upload, Summary)
   ============================================= */
.bewerbung-shell {
    background: var(--white); border-radius: 24px;
    box-shadow: 0 20px 60px rgba(10,10,10,0.08), 0 4px 20px rgba(10,10,10,0.04);
    padding: 3.5rem 3.5rem 2.75rem; border: 1px solid var(--light-border);
    position: relative; overflow: hidden;
}
.bewerbung-shell::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.bewerbung-steps {
    list-style: none; padding: 0; margin: 0 0 3rem;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem;
    counter-reset: step;
}
.bewerbung-steps li {
    display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
    font-size: 0.72rem; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 0.08em;
    position: relative; text-align: center;
}
.bewerbung-steps li span {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #f3f4f6; color: #9ca3af; font-weight: 700; font-size: 0.95rem;
    transition: all 0.3s ease;
}
.bewerbung-steps li.is-active { color: var(--orange); }
.bewerbung-steps li.is-active span {
    background: var(--orange); color: var(--white);
    box-shadow: 0 0 0 6px rgba(255,135,59,0.15), 0 6px 16px rgba(255,135,59,0.3);
    transform: scale(1.08);
}
.bewerbung-steps li.is-done { color: #1f2937; }
.bewerbung-steps li.is-done span {
    background: #1f2937; color: var(--white);
    font-size: 0;
}
.bewerbung-steps li.is-done span::after {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 0.9rem; line-height: 1;
}
.bewerbung-steps li:not(:last-child)::after {
    content: ''; position: absolute; top: 20px; right: -50%; width: 100%;
    height: 2px; background: #e5e7eb; z-index: -1;
}
.bewerbung-steps li.is-done:not(:last-child)::after { background: #1f2937; }

.bewerbung-step { display: none; animation: fadeInUp 0.4s ease; }
.bewerbung-step.is-active { display: block; }
.bewerbung-step-head { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--light-border); }
.bewerbung-step-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--orange); font-weight: 800;
    padding: 0.35rem 0.9rem; background: #fff7ed; border-radius: 999px;
}
.bewerbung-step-head h2 { font-size: 1.75rem; margin: 1rem 0 0.5rem; line-height: 1.25; }
.bewerbung-step-head p { color: #6b7280; font-size: 1rem; margin: 0; line-height: 1.55; }

.bewerbung-role-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem; margin-bottom: 1.5rem;
}
.bewerbung-role {
    position: relative;
    display: flex; flex-direction: column; gap: 0.45rem;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem; border: 2px solid var(--light-border);
    border-radius: 16px; cursor: pointer; background: var(--white);
    transition: all 0.25s ease;
}
.bewerbung-role::before {
    content: ''; position: absolute; top: 1.6rem; left: 1.25rem;
    width: 20px; height: 20px; border-radius: 50%;
    border: 2px solid #d1d5db; background: var(--white);
    transition: all 0.25s ease;
}
.bewerbung-role:hover { border-color: var(--orange-light); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(10,10,10,0.05); }
.bewerbung-role input { position: absolute; opacity: 0; pointer-events: none; }
.bewerbung-role.is-checked { border-color: var(--orange); background: #fff9f4; box-shadow: 0 8px 24px rgba(255,135,59,0.14); }
.bewerbung-role.is-checked::before { border-color: var(--orange); background: var(--orange); box-shadow: inset 0 0 0 4px var(--white); }
.bewerbung-role-title { font-weight: 700; color: var(--dark-gray); font-size: 1.02rem; line-height: 1.35; }
.bewerbung-role-sub { font-size: 0.85rem; color: #6b7280; }

.form-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.75rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field-full, .form-field-wide { grid-column: 1 / -1; }
.form-field-small { grid-column: auto; }
.form-field label {
    font-size: 0.82rem; font-weight: 700; color: var(--dark-gray);
    text-transform: uppercase; letter-spacing: 0.04em;
}
.form-field label small { font-weight: 500; color: #9ca3af; margin-left: 0.4rem; text-transform: none; letter-spacing: 0; }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field select,
.form-field textarea,
.form-field input[type="file"] {
    border: 1.5px solid #e5e7eb; border-radius: 12px;
    padding: 0.95rem 1.1rem;
    font-family: inherit; font-size: 0.98rem; color: var(--dark-gray);
    background: #fafbfc; transition: all 0.2s ease;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: #cbd5e1; background: var(--white); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none; border-color: var(--orange); background: var(--white);
    box-shadow: 0 0 0 4px rgba(255,135,59,0.12);
}
.form-field .is-invalid,
.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid { border-color: #ef4444; background: #fef2f2; box-shadow: 0 0 0 4px rgba(239,68,68,0.1); }
.form-field textarea { min-height: 170px; resize: vertical; line-height: 1.55; }
.form-field input[type="file"] {
    padding: 0.85rem 1.1rem; background: #f9fafb; cursor: pointer;
    border-style: dashed;
}
.form-field input[type="file"]:hover { background: #fff7ed; border-color: var(--orange-light); }
.form-field .checkbox-inline {
    flex-direction: row; align-items: center; gap: 0.7rem;
    font-size: 0.95rem; font-weight: 500; color: var(--dark-gray);
    text-transform: none; letter-spacing: 0;
    padding: 0.95rem 1.1rem; background: #f9fafb; border-radius: 12px;
    border: 1.5px solid #e5e7eb; cursor: pointer; transition: all 0.2s ease;
}
.form-field .checkbox-inline:hover { background: #fff7ed; border-color: var(--orange-light); }
.form-field .checkbox-inline input[type="checkbox"] {
    width: 20px; height: 20px; accent-color: var(--orange); flex-shrink: 0;
}
.form-hint { font-size: 0.82rem; color: #6b7280; line-height: 1.5; }

.bewerbung-nav {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; margin-top: 3rem; border-top: 1px solid var(--light-border);
    padding-top: 2rem;
}
.bewerbung-nav .btn { min-width: 140px; justify-content: center; padding: 0.85rem 1.75rem; }

.form-alert {
    border-radius: 12px; padding: 1rem 1.25rem; font-size: 0.92rem;
    background: #fef2f2; color: #991b1b; border: 1px solid #fecaca;
}
.form-alert-error strong { display: block; margin-bottom: 0.25rem; color: #991b1b; }

.bewerbung-summary {
    background: #f9fafb; border-radius: 12px; padding: 1.25rem 1.5rem;
    border: 1px solid var(--light-border);
}
.bewerbung-summary-row {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: 0.55rem 0; border-bottom: 1px dashed #e5e7eb;
    font-size: 0.92rem;
}
.bewerbung-summary-row:last-child { border-bottom: none; }
.bewerbung-summary-row span { color: #6b7280; min-width: 110px; }
.bewerbung-summary-row strong { color: var(--dark-gray); text-align: right; word-break: break-word; }

/* Danke-Seite */
.bewerbung-thanks {
    background: var(--white); border-radius: 20px; padding: 3rem 2.5rem;
    text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--light-border);
}
.bewerbung-thanks-icon {
    font-size: 3.25rem; color: var(--orange); margin-bottom: 1rem;
    animation: fadeInScale 0.5s ease 0.1s both;
}
.bewerbung-thanks-lead { font-size: 1.05rem; color: var(--dark-gray); margin-top: 0.5rem; }
.bewerbung-thanks-steps { background: #fff7ed; border-left: 4px solid var(--orange); border-radius: 12px; padding: 1.25rem 1.5rem; margin: 2rem auto 0; text-align: left; max-width: 520px; }
.bewerbung-thanks-steps h3 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--dark-gray); }
.bewerbung-thanks-steps ol { margin: 0; padding-left: 1.25rem; font-size: 0.95rem; line-height: 1.65; color: var(--dark-gray); }
.bewerbung-thanks-steps li { margin-bottom: 0.3rem; }
.bewerbung-thanks-privacy {
    display: flex; align-items: flex-start; gap: 0.75rem;
    background: #f9fafb; border-radius: 12px; padding: 1rem 1.25rem;
    margin-top: 1.5rem; text-align: left;
}
.bewerbung-thanks-privacy i { color: var(--orange); font-size: 1.4rem; margin-top: 0.1rem; }
.bewerbung-thanks-privacy p { font-size: 0.85rem; color: #6b7280; margin: 0; line-height: 1.55; }

/* Mobile Layout */
@media (max-width: 720px) {
    .bewerbung-shell { padding: 1.5rem 1.25rem; }
    .bewerbung-steps { gap: 0.25rem; }
    .bewerbung-steps li { font-size: 0; }
    .bewerbung-steps li span { font-size: 0.85rem; }
    .bewerbung-steps li::after { top: 15px; }
    .form-grid { grid-template-columns: 1fr; }
    .bewerbung-nav { flex-direction: column-reverse; align-items: stretch; }
    .bewerbung-nav .btn { width: 100%; }
    .bewerbung-thanks { padding: 2rem 1.5rem; }
}

/* --- Print --- */
@media print {
    .site-header, .site-footer, .nav-toggle, .cta-banner, .bottom-nav,
    .cookie-banner, .cookie-modal, .promo-banner, .map-consent-box { display: none !important; }
    body { color: #000; font-size: 12pt; padding-bottom: 0; background: #fff; }
    a { color: #000; text-decoration: underline; }
    .section, section { page-break-inside: avoid; padding: 1rem 0; }
    h1, h2, h3 { page-break-after: avoid; color: #000; }
}

/* =============================================
   MODERN POLISH & A11Y (2026)
   ============================================= */

/* 1) Scroll-Padding fuer Sticky-Header, verbesserte Fokus-Zielgenauigkeit */
html { scroll-padding-top: 100px; }

/* 2) Native Kontrast-/Forced-Colors-Support (High-Contrast auf Windows, Dark-Mode-Kontrast) */
@media (prefers-contrast: more) {
    :root {
        --dark-gray: #1a1a1a;
        --orange-accessible: #A84500;
    }
    a, button { text-decoration-thickness: 2px; }
}
@media (forced-colors: active) {
    .btn, .btn-primary, .btn-outline, .btn-outline-dark, .btn-outline-white, .btn-secondary {
        border: 2px solid ButtonText;
        forced-color-adjust: auto;
    }
    a:focus-visible, button:focus-visible {
        outline: 2px solid Highlight;
        outline-offset: 2px;
    }
}

/* 3) Selection und Caret in Markenfarbe */
::selection { background: var(--orange); color: var(--white); }
::-moz-selection { background: var(--orange); color: var(--white); }
input, textarea { caret-color: var(--orange); }

/* 4) Bessere Touch-Targets auf Mobile (WCAG 2.5.5) */
@media (pointer: coarse) {
    .nav-list a, .footer-links a, .bottom-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* 5) Bilder: moderner loading-Hint, asynchrones Dekodieren als CSS-Hint (im CSS nicht nativ, daher
   Styling-seitig: konsistente background-Dezimierung fuer image-Platzhalter) */
img { font-style: italic; } /* Alt-Text wird sichtbar, wenn Image fehlt - Signal fuer den Editor */

/* 6) Skeleton fuer Team-Cards waehrend Bild-Laden */
.team-card-img { background-color: #ececec; background-size: cover; background-position: center; }

/* 7) Consistent Fluid Container-Padding */
.container { padding-inline: clamp(1rem, 3vw, 2rem); }

/* 8) Bessere Linktextunterscheidung auf reinen Texten (WCAG 1.4.1) */
.about-text a, .contact-info-text a, footer a { text-decoration: underline; text-underline-offset: 2px; }
footer a, .footer-links a { text-decoration: none; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }

/* 9) Dezent modernisierte Card-Hover */
.service-card, .blog-card, .team-card, .city-card {
    will-change: transform;
}

/* 10) Smooth Scrollbar in WebKit/Blink (modernes Visual, kein Impact fuer andere Browser) */
@supports (scrollbar-color: auto) {
    :root { scrollbar-color: var(--orange) var(--beige); scrollbar-width: thin; }
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }

/* 11) Skip-Link deutlicher und im Tab-Flow */
.skip-link { opacity: 0; transition: opacity 0.2s ease, top 0.2s ease; }
.skip-link:focus { opacity: 1; outline: 3px solid var(--white); outline-offset: 2px; }

/* 12) Bessere Map-Consent-Box Visualisierung */
.map-consent-box:empty { min-height: 350px; background: var(--beige); display: flex; align-items: center; justify-content: center; }

/* 13) Feature-Items robuster, auch ohne feste Spaltenzahl */
.feature-items { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important; gap: clamp(1rem, 2vw, 1.75rem); }

/* 14) Team-Grid robust - weniger !important auf Mobile noetig */
.team-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1rem, 2vw, 1.75rem); }

/* 15) Reduziertere Opacity fuer bessere WCAG-Kontraste (war bisher oft 0.7) */
.section-header p,
.about-text,
p[style*="opacity: 0.7"],
p[style*="opacity:0.7"] { opacity: 0.95 !important; }

/* =============================================
   OVERFLOW & WCAG-KONTRAST FIXES
   (ehemals no-horizontal-scroll.css - 2026-04 in site.css zusammengefuehrt)
   ============================================= */
html, body { overflow-x: clip; }

@media (max-width: 992px) {
    .hero { border-radius: 0 0 50% 50% / 0 0 4% 4%; }
    .main-nav:not(.open) { visibility: hidden; }
}
@media (max-width: 640px) {
    .hero { border-radius: 0 0 50% 50% / 0 0 2.5% 2.5%; }
}
@media (max-width: 768px) {
    .funnel-timeline { padding-left: 0; }
    .funnel-timeline::before { display: none; }
    .funnel-step-icon { position: static; margin-bottom: 0.5rem; }
    .hero-list li, .hero-content .btn { transform: none; }
}

/* WCAG AA: opacity-basierte Farben durch feste Farbwerte ersetzen (4.5:1) */
.section-header p, .footer-bottom p, .footer-contact-role,
.footer-brand p, .stat-desc, .gallery-caption p,
.cookie-category-header p,
.service-stat-card p, .review-author span, .cite-role { opacity: 1; color: #666666; }
.quick-cta-box p { opacity: 1; color: rgba(255,255,255,0.95) !important; }
.footer-bottom { opacity: 1; }
.breadcrumb, .breadcrumb a, .breadcrumb span, .page-header p, .cta-banner p {
    opacity: 1; color: rgba(255,255,255,0.95);
}
.faq-answer, .job-card p, .google-text, .cookie-banner-text p, .cookie-modal-body > p { opacity: 1; color: #555555; }
.nav-phone small, .bottom-nav-item { color: #666666; }
.promo-banner-close { color: #555555; }
.form-control { border-color: #cccccc; }
.hero-img-text { opacity: 0.8; }

/* Inline-opacity-Overrides fuer bessere Kontraste */
[style*="opacity: 0.6"], [style*="opacity:0.6"],
[style*="opacity: 0.65"], [style*="opacity:0.65"] { opacity: 1 !important; color: #666666; }
[style*="opacity: 0.75"], [style*="opacity:0.75"],
[style*="opacity: 0.8"], [style*="opacity:0.8"] { opacity: 1 !important; color: #555555; }

/* Visually hidden label helper */
.sr-only-label {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =====================================================
   MODERN POLISH LAYER (2026-04 Update)
   Behutsame Modernisierung: feinere Schatten, ruhigere
   Bewegungen, bessere Icon-Ausrichtung, lesbarere Texte,
   smoothere Mobile-Erfahrung. KEIN Style-Bruch.
   ===================================================== */

/* --- Fluid spacing tokens (additiv, nicht ueberschreibend) --- */
:root {
    --shadow-sm: 0 1px 2px rgba(15, 18, 30, 0.05);
    --shadow-md: 0 6px 18px rgba(15, 18, 30, 0.08);
    --shadow-lg: 0 18px 40px rgba(15, 18, 30, 0.10);
    --ring-orange: 0 0 0 4px rgba(255, 135, 59, 0.18);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Body Typo: ruhigere Lesbarkeit --- */
body { line-height: 1.65; }
/* Lange Lese-Texte begrenzen, ABER zentrierbar lassen.
   margin-inline: auto sorgt dafuer, dass <p> in zentrierten Kontexten
   weiterhin optisch mittig sitzt. */
.about-text,
.review-text,
.faq-answer p,
.blog-article-content p,
.blog-teaser-body p,
.feature-item p,
.jd-intro p,
.darum-card p,
.offene-card > p,
.passt-card p {
    max-width: 72ch;
}
/* Reine zentrierte Kontexte: Texte echt zentrieren */
.section-header p,
.cta-banner p,
.passt-head p,
.footer-bottom p {
    margin-inline: auto;
}

/* --- Headings: balance + tracking --- */
h1, h2 { text-wrap: balance; letter-spacing: -0.01em; }
h3, h4 { letter-spacing: -0.005em; }

/* --- Buttons: smoother, refined hover --- */
.btn {
    transition: background-color 0.25s var(--ease-out),
                color 0.25s var(--ease-out),
                border-color 0.25s var(--ease-out),
                transform 0.25s var(--ease-out),
                box-shadow 0.25s var(--ease-out);
}
.btn-primary {
    box-shadow: 0 4px 14px rgba(255, 135, 59, 0.22);
}
.btn-primary:hover {
    box-shadow: 0 8px 22px rgba(255, 135, 59, 0.32);
}
.btn:active { transform: translateY(0) skewX(0deg); }
@media (min-width: 992px) {
    .btn:active { transform: skewX(-10deg) translateY(0); }
}

/* --- Better section header spacing --- */
.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-header h2 { margin-top: 0.5rem; }
.section-header p { margin-top: 0.85rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* --- Section label badge: subtler, modern --- */
.section-label {
    background: rgba(255, 135, 59, 0.12);
    color: var(--orange-accessible);
    border: 1px solid rgba(255, 135, 59, 0.28);
    padding: 0.32rem 0.85rem;
    font-size: 0.72rem;
    border-radius: 100px;
}
.section-label:hover { transform: none; background: rgba(255, 135, 59, 0.18); }
.section-black .section-label,
.cta-banner .section-label,
.hero .section-label,
.page-header .section-label {
    background: rgba(255, 135, 59, 0.22);
    color: var(--white);
    border-color: rgba(255, 135, 59, 0.5);
}

/* --- Hero: modernere Gradient-Schicht (kein Stilbruch, nur sauberer) --- */
.hero-bg::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 100%);
}
.hero-content h1 { letter-spacing: -0.015em; }
.hero-list li { font-size: clamp(0.95rem, 1.6vw, 1.05rem); }

/* --- Service cards: bessere Lesbarkeit, ruhigere Hover-Effekte --- */
.service-card { min-height: 360px; }
.service-card::before {
    background: linear-gradient(180deg, rgba(15, 18, 28, 0.45) 0%, rgba(15, 18, 28, 0.88) 100%);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}
/* Saubere Title-Pill statt aufgeblaehter Inline-Streifen.
   Greift NUR fuer Service-Cards mit background-image (Index-Kacheln).
   Icon-Cards (ohne background-image) bleiben durch Reset oben unveraendert
   - kein orange "Glow" mehr unter Titeln wie "Keine Leerrohre". */
.service-card[style*="background-image"] h3 {
    display: inline-block;
    align-self: flex-start;        /* nicht durch Flex-Container ueberbreit gezogen */
    width: fit-content;
    max-width: 100%;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 0.95rem;
    font-size: clamp(1.02rem, 1.7vw, 1.18rem);
    font-weight: 700;
    line-height: 1.35;
    border-radius: 8px;
    box-decoration-break: initial;
    -webkit-box-decoration-break: initial;
    box-shadow: 0 6px 16px rgba(255, 135, 59, 0.32);
    margin-bottom: 0.25rem;
    word-break: normal;
    overflow-wrap: break-word;
}
.service-card p {
    font-size: clamp(0.88rem, 1.4vw, 0.95rem);
    line-height: 1.65;
}

/* --- Service card: kleines Icon-Kreis-Element fuer "Mehr" CTA --- */
.service-card .card-link {
    margin-top: auto;
    padding-top: 1.25rem;
}

/* --- Stat cards: feinere Hover --- */
.stat-card { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stat-number { letter-spacing: -0.02em; }

/* --- Quote card: bessere Typo --- */
.quote-card blockquote { font-size: clamp(0.95rem, 1.6vw, 1.02rem); }

/* --- Review cards: deaktiviere die Float-Animation (irritierend bei Hover) --- */
.review-card:hover { animation: none; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.review-card { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }

/* --- Feature items: smoothere Icon-Hover --- */
.feature-icon { transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out); }
.feature-item:hover .feature-icon {
    box-shadow: 0 6px 18px rgba(255, 135, 59, 0.28);
}

/* --- Karriere "Du passt zu uns wenn ...": auf Site-Stil ausgerichtet
   (vorher voller Orange-Gradient mit Glasmorphismus-Cards - hat aus dem
   Restdesign herausgestochen). Jetzt: beige Section, weisse Cards mit
   orangenem Icon-Pill - matched mit darum-card / kunden-card. */
.passt-zu-uns {
    background: var(--beige);
    color: var(--dark-gray);
}
.passt-zu-uns::before {
    background: radial-gradient(circle at 88% 12%, rgba(255, 135, 59, 0.08), transparent 55%);
}
.passt-head h2 { color: var(--dark-gray); }
.passt-head p { color: #555; }

.passt-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 16px;
    color: var(--dark-gray);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease-out, ease),
                box-shadow 0.25s var(--ease-out, ease),
                border-color 0.25s var(--ease-out, ease);
}
.passt-card:hover, .passt-card:focus-within {
    transform: translateY(-3px);
    background: var(--white);
    border-color: rgba(255, 135, 59, 0.35);
    box-shadow: var(--shadow-lg);
}
.passt-card-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(255, 135, 59, 0.28);
    border-radius: 14px;
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
}
.passt-card h3 { color: var(--dark-gray); }
.passt-card p { color: #555; }

.passt-claim {
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid rgba(255, 135, 59, 0.28);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 1.25rem 1.75rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}
.passt-claim::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-light) 100%);
}
.passt-claim i { color: var(--orange); margin-right: 0.6rem; }
.passt-claim strong { color: var(--dark-gray); font-weight: 800; }

/* --- Kunden-Cards (Privatkunden / Gewerbekunden auf About) --- */
.kunden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 2.5vw, 2rem);
}
.kunden-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.kunden-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 135, 59, 0.32);
}
.kunden-card-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ececec;
}
.kunden-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.kunden-card:hover .kunden-card-img img { transform: scale(1.04); }
.kunden-card-body {
    padding: clamp(1.5rem, 3vw, 2rem);
    position: relative;
}
.kunden-card-icon {
    position: absolute;
    top: -28px; right: 1.5rem;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 24px rgba(255, 135, 59, 0.32);
}
.kunden-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}
.kunden-card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}
@media (max-width: 720px) {
    .kunden-grid { grid-template-columns: 1fr; }
    .kunden-card-icon { right: 1.25rem; top: -24px; width: 48px; height: 48px; font-size: 1.2rem; }
}

/* --- Unsere Werte: polierte vertikale Karten-Optik (5er-Grid auf About) --- */
.section-beige .feature-items > .feature-item,
.feature-items[style*="repeat(5"] > .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1.75rem;
    background: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    margin-bottom: 0;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
    box-shadow: 0 2px 12px rgba(15, 18, 30, 0.04);
}
.section-beige .feature-items > .feature-item:hover,
.feature-items[style*="repeat(5"] > .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 18, 30, 0.08);
    border-color: rgba(255, 135, 59, 0.35);
}
.section-beige .feature-items > .feature-item .feature-icon,
.feature-items[style*="repeat(5"] > .feature-item .feature-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    border: 2px solid var(--orange);
    background: transparent;
    color: var(--orange);
    font-size: 1.4rem;
    border-radius: 50%;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.section-beige .feature-items > .feature-item:hover .feature-icon,
.feature-items[style*="repeat(5"] > .feature-item:hover .feature-icon {
    transform: none;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 135, 59, 0.32);
}
.section-beige .feature-items > .feature-item h3,
.feature-items[style*="repeat(5"] > .feature-item h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    font-weight: 700;
}
.section-beige .feature-items > .feature-item p,
.feature-items[style*="repeat(5"] > .feature-item p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
/* Hover-Translate-X auf vertikalen Karten ausschalten */
.section-beige .feature-items > .feature-item:hover,
.feature-items[style*="repeat(5"] > .feature-item:hover { transform: translateY(-4px); }

/* --- City cards: feiner Rahmen + bessere Hover --- */
.city-card { border: 1px solid var(--light-border); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.city-card:hover { border-color: rgba(255, 135, 59, 0.45); }
.city-card-body { padding: 0.95rem 1.05rem; display: flex; flex-direction: column; gap: 0.4rem; }
.city-card-body h3 { line-height: 1.25; }

/* --- Contact info icons: konsistente Box-Groesse --- */
.contact-info-icon {
    background: rgba(255, 135, 59, 0.12);
    border-radius: 12px;
    width: 44px; height: 44px; min-width: 44px;
}

/* --- Standort-Box: einheitliche, dezent gestylte Inline-Icons --- */
.contact-info-box > div > i.fas:first-child,
.contact-info-box > div > i.fab:first-child {
    background: rgba(255, 135, 59, 0.12);
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0 !important;
    font-size: 1rem !important;
}

/* --- FAQ: feiner, leichter Schatten und smoothere Animation --- */
.faq-item { background: var(--white); transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out); }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-list details.faq-item > summary { padding: 1.15rem 1.5rem; }
.faq-list details.faq-item > summary::after {
    content: '+';
    margin-left: auto;
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s var(--ease-out);
}
.faq-list details.faq-item[open] > summary::after { content: '\2212'; transform: rotate(180deg); }

/* --- Form Controls: harmonisierte Radius, bessere Fokus-Ringe --- */
.form-control {
    border-radius: 12px;
    border-color: #d4d4d8;
    transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.form-control:focus {
    border-color: var(--orange);
    box-shadow: var(--ring-orange);
    outline: none;
}
.form-control:hover:not(:focus) { border-color: #b4b4b8; }

/* --- Quiz Options: feinere Tiles, bessere Mobile-Touch-Ziele --- */
.quiz-option {
    border-radius: 14px;
    padding: 1rem 1.1rem;
    min-height: 52px;
    background: var(--white);
}
.quiz-option:hover { box-shadow: var(--shadow-sm); }

/* --- Quiz progress bars: smoother --- */
#quiz-bar-1, #quiz-bar-2, #quiz-bar-3 { height: 6px !important; border-radius: 100px !important; }

/* --- Cookie banner buttons: kompakter Mobile, klarer Hierarchie --- */
.cookie-banner-actions .btn { min-height: 40px; }
.cookie-banner-text h3 i { font-size: 1.05rem; }

/* --- Footer: refinement --- */
.site-footer { padding-top: clamp(2.5rem, 5vw, 4rem); }
.footer-grid { gap: clamp(1.5rem, 4vw, 3rem); margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.footer-brand p { font-size: 0.9rem !important; max-width: 320px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 135, 59, 0.08); transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    font-size: 1.1rem;
}
.footer-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-bottom p { color: #6b7280; }
.footer-bottom a { color: #555; }
.footer-bottom a:hover { color: var(--orange); }

/* --- Header: harmonische Hoehe + smoothere Scroll-Schatten --- */
.site-header { transition: box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out); }
.site-header.scrolled { box-shadow: 0 4px 20px rgba(15, 18, 30, 0.08); }
.nav-list > li > a { transition: color 0.2s var(--ease-out); }
.dropdown-menu a:hover { background: rgba(255, 135, 59, 0.07); color: var(--orange); }

/* --- Bottom Nav: feinere Active-States, sauberer Touch-Hit --- */
@media (max-width: 768px) {
    .bottom-nav { box-shadow: 0 -4px 20px rgba(15, 18, 30, 0.06); }
    .bottom-nav-item {
        min-height: 56px;
        gap: 0.2rem;
        font-size: 0.7rem;
    }
    .bottom-nav-item i { font-size: 1.2rem; }
}

/* --- Promo Banner: Styling jetzt in Haupt-Definition oberhalb --- */

/* --- Back-to-top Button --- */
.back-to-top {
    position: fixed;
    right: clamp(1rem, 2vw, 1.5rem);
    bottom: clamp(1rem, 2vw, 1.5rem);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(255, 135, 59, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.25s var(--ease-out), visibility 0s linear 0.3s;
    z-index: 998;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.25s var(--ease-out);
}
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-2px); }
.back-to-top:focus-visible {
    outline: 3px solid var(--orange-accessible);
    outline-offset: 3px;
}
@media (max-width: 768px) {
    /* nicht ueber der Bottom-Nav schweben */
    .back-to-top { bottom: calc(72px + env(safe-area-inset-bottom, 0px)); right: 1rem; width: 44px; height: 44px; }
}

/* --- Card Polish: weniger laute Shadows, einheitliche Rundungen --- */
.stat-card, .review-card, .blog-teaser-card, .blog-card,
.darum-card, .offene-card, .service-stat-card,
.gallery-item, .quote-card {
    box-shadow: var(--shadow-sm);
}
.stat-card:hover, .review-card:hover, .blog-teaser-card:hover,
.blog-card:hover, .darum-card:hover, .offene-card:hover,
.service-stat-card:hover, .quote-card:hover {
    box-shadow: var(--shadow-lg);
}

/* --- Image base: smoother fades + decoding hint --- */
img {
    transition: transform 0.5s var(--ease-out);
}

/* --- Team-Cards: garantiert identische Bild-Hoehe und Card-Hoehe --- */
.team-grid { align-items: stretch; }
.team-card { height: 100%; }
.team-card-img {
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
    flex-shrink: 0;
}
.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Body fuellt den Rest, sodass alle Cards einheitlich enden */
.team-card-body { flex: 1 1 auto; }

/* --- Better link underline default for content links --- */
.about-text a, .blog-article-content a, .faq-answer a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(255, 135, 59, 0.5);
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.about-text a:hover, .blog-article-content a:hover, .faq-answer a:hover {
    text-decoration-color: var(--orange);
    color: var(--orange);
}

/* --- Improved Focus Style globally (nur fuer Tastatur-Nutzer) --- */
:focus-visible {
    outline-offset: 3px;
}
.btn:focus-visible {
    outline: 3px solid var(--orange-accessible);
    outline-offset: 4px;
}
.service-card:focus-visible,
.city-card:focus-visible,
.blog-teaser-card:focus-visible,
.team-card:focus-visible {
    outline: 3px solid var(--orange-accessible);
    outline-offset: 4px;
    border-radius: 16px;
}

/* --- Quick CTA Box: bessere Mobile Polsterung --- */
@media (max-width: 540px) {
    .quick-cta-box { padding: 1.5rem 1.25rem; gap: 1.25rem; }
    .quick-cta-box h3 { font-size: 1.15rem; }
    .quick-cta-box p { font-size: 0.9rem; }
}

/* --- Two-column auf Mobile: bessere Bild-Polsterung --- */
@media (max-width: 640px) {
    .two-col-img { margin-top: 1rem; }
    .two-col-img img { border-radius: 16px; aspect-ratio: 16 / 11; }
}

/* --- Hero Buttons: konsistente Mobile Hoehe --- */
@media (max-width: 640px) {
    .hero .btn-lg { width: 100%; max-width: 360px; padding: 0.95rem 1.5rem; }
}

/* --- Blog Teaser Cards: bessere Hover-Konsistenz --- */
.blog-teaser-card { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.blog-teaser-card:hover { transform: translateY(-4px); }

/* --- Header Logo: smoother Hover --- */
.logo { transition: opacity 0.2s var(--ease-out); }
.logo:hover { opacity: 0.85; }

/* --- Konsistenz: alle .fas und .fab in farbigen Buttons leicht heben --- */
.btn .fas, .btn .fab { line-height: 1; }

/* --- Footer Contact Card: feinere Schatten + bessere Mobile Spacing --- */
.footer-contact-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow-sm);
}
.footer-contact-avatar {
    width: 96px; height: 96px;
    box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--orange), 0 8px 22px rgba(255, 135, 59, 0.22);
}
.footer-contact-btn {
    box-shadow: 0 4px 14px rgba(255, 135, 59, 0.22);
}
.footer-contact-btn:hover {
    box-shadow: 0 8px 22px rgba(255, 135, 59, 0.32);
}

/* --- High-DPI / Retina: Bilder ohne Schaerfeverlust --- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .city-card-img, .blog-teaser-image, .service-card { background-size: cover; image-rendering: -webkit-optimize-contrast; }
}

/* --- Mobile: ruhigere Viewport-Angaben --- */
@media (max-width: 480px) {
    .container { padding-inline: 1rem; }
    .section { padding: clamp(2.25rem, 6vw, 3rem) 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
    .footer-contact-card { text-align: center; }
    #quiz-services { grid-template-columns: 1fr !important; }
    #quiz-container { padding: 1.25rem !important; border-radius: 14px !important; }
    .quiz-option { padding: 0.85rem 0.85rem !important; font-size: 0.9rem !important; }
}

/* --- Reduzierte Bewegung: konsistente Defaults --- */
@media (prefers-reduced-motion: reduce) {
    .hero-content h1, .hero-content .hero-subtitle,
    .hero-content .btn, .hero-content .google-badge,
    .hero-list li { animation: none !important; opacity: 1 !important; transform: none !important; }
    .review-card:hover, .stat-card:hover, .blog-teaser-card:hover,
    .city-card:hover, .service-card:hover, .feature-item:hover,
    .quote-card:hover, .stat-card:hover, .back-to-top:hover { transform: none !important; }
}

/* --- Schoeneres rendering der Quote-Marks --- */
.quote-card blockquote::before { content: none; }

/* --- Map-Consent-Box: zentriere Inhalt korrekt --- */
.map-consent-box { display: flex; align-items: center; justify-content: center; min-height: 450px; background: var(--beige); border-radius: 16px; }
.map-consent-box iframe { display: block; }

/* --- Hero-Bg pseudo-Element greift jetzt auch fuer page-header --- */
.page-header h1 { letter-spacing: -0.015em; }
.page-header p { color: rgba(255, 255, 255, 0.92); max-width: 640px; }

/* --- Inline-Style "opacity: 0.6/0.7" Saeuberung (a11y) --- */
.section-header p[style*="opacity"],
[class*="hero"] p[style*="opacity: 0.7"] { color: inherit !important; }

/* --- Schliesst horizontalen Scroll auf alten Browsern (overflow-x:clip Fallback) --- */
@supports not (overflow: clip) {
    html, body { overflow-x: hidden; }
}

/* =====================================================
   END MODERN POLISH LAYER
   ===================================================== */

