/* ═══════════════════════════════════════════════════════════════════
   DAP Krankenbeförderung & Patientenfahrdienst Düsseldorf
   Original DAP Healthcare Design System (Authentic Onest Typography,
   Asymmetric Curvatures & Premium Warm Palette)
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. SELF-HOSTED FONTS ("Onest") ────────────────────────────── */
@font-face {
    font-family: 'Onest';
    src: url('assets/fonts/Onest-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Onest';
    src: url('assets/fonts/Onest-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Onest';
    src: url('assets/fonts/Onest-Medium.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Onest';
    src: url('assets/fonts/Onest-Medium.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── 2. KOMPASS MOBIL BRAND DESIGN TOKENS ─────────────────────── */
:root {
    /* Brand Colors: Deep Navy (Navigation/Safety) + Trust Blue (Primary) */
    --brand-navy:         #004364;
    --brand-navy-light:   #006DA4;
    --brand-navy-dark:    #002C42;
    --brand-navy-bg:      #F0F7FB;
    --brand-cyan-accent:  #0284C7;
    --brand-sky-light:    #E0F2FE;

    /* Transitioning legacy aliases to Trust Blue */
    --brand-green:        #006DA4;
    --brand-green-accent: #0284C7;
    --brand-green-light:  #E0F2FE;
    --brand-green-dark:   #004364;

    /* Backward compatibility aliases */
    --dap-green:          var(--brand-navy-light);
    --dap-green-accent:   var(--brand-cyan-accent);
    --dap-green-dark:     var(--brand-navy);
    --dap-green-light:    var(--brand-sky-light);
    --dap-green-bg:       #F0F7FB;
    --dap-mint-bg:        #F0F7FB;
    
    --dap-blue:           var(--brand-navy-light);
    --dap-blue-dark:      var(--brand-navy);
    --dap-blue-bg:        var(--brand-navy-bg);
    --dap-blue-light:     #5296BC;

    /* Text & Neutrals (Crisp, High Contrast, Modern Medical Slate) */
    --dap-text-dark:      #0F172A;
    --dap-text-body:      #334155;
    --dap-text-muted:     #64748B;
    --dap-white:          #FFFFFF;
    --dap-bg-page:        #F8FAFC;
    --dap-card-bg:        #FFFFFF;
    --border-subtle:      #E2E8F0;

    /* Gradients */
    --grad-green-btn:     linear-gradient(135deg, #006DA4 0%, #0284c7 40%, #004364 100%);
    --grad-green-hover:   linear-gradient(135deg, #0284c7 0%, #006DA4 100%);
    --grad-blue-btn:      linear-gradient(135deg, #006DA4 0%, #004364 100%);
    --grad-hero-overlay:  linear-gradient(175deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    --grad-faq-overlay:   linear-gradient(175deg, rgba(0, 44, 66, 0.95) 12%, rgba(0, 109, 164, 0.92) 100%);

    /* Typography */
    --font-onest:         'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Modern Refined Radii (Clean, Bespoke Architecture) */
    --radius-card:        20px;
    --radius-lg:          24px;
    --radius-sm:          12px;
    --radius-pill:        500px;
    --radius-circle:      50%;
    
    --radius-asym-hero:   20px;
    --radius-asym-card:   20px;
    --radius-asym-blue:   20px;

    /* Shadows */
    --shadow-card:        0 10px 30px rgba(0, 67, 100, 0.07);
    --shadow-hover:       0 16px 40px rgba(0, 67, 100, 0.14);
    --shadow-btn:         0 8px 20px rgba(0, 109, 164, 0.28);
    --shadow-blue-btn:    0 8px 20px rgba(0, 109, 164, 0.28);

    --container-width:    1200px;
}

/* ── 3. BASE RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-family: var(--font-onest);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dap-text-body);
    background-color: var(--dap-bg-page);
    scroll-behavior: smooth;
    scroll-padding-top: 115px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
    background-color: var(--dap-bg-page);
    color: var(--dap-text-body);
    font-family: var(--font-onest);
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

button, input, select, textarea {
    font-family: var(--font-onest);
    color: inherit;
    background: transparent;
    border: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 105px 0 85px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 75px 0 55px 0;
    }
}

/* ── 4. TYPOGRAPHY & SECTION HEADERS ───────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-onest);
    color: var(--dap-text-dark);
    font-weight: 500;
    line-height: 1.25;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.section-header.text-left {
    text-align: left;
    margin-left: 0;
}

.section-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 109, 164, 0.22);
    border-radius: var(--radius-pill);
    color: var(--brand-navy-light);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0, 67, 100, 0.04);
    max-width: 90vw;
}

.section-pill-tag.blue {
    border-color: rgba(0, 109, 164, 0.25);
    color: var(--brand-navy-light);
    background: #FFFFFF;
}

.section-title {
    font-size: clamp(2.1rem, 3.2vw, 2.75rem);
    font-weight: 600;
    color: var(--dap-text-dark);
    margin-bottom: 16px;
    line-height: 1.22;
    letter-spacing: -0.015em;
}

.section-title span.green {
    color: var(--brand-navy-light);
}

.section-title span.blue {
    color: var(--brand-navy-light);
}

/* ── HIGHLIGHT PILL BADGES (Webflow Silky Smooth Sweep Physics) ── */
.highlight-pill {
    position: relative;
    display: inline-block;
    padding: 2px 14px;
    border-radius: 12px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 2px 0 0;
    vertical-align: baseline;
    z-index: 1;
    color: var(--dap-text-dark);
}

.highlight-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 14px;
    z-index: -1;
    will-change: width;
    transition: width 1.05s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

/* Active State (Triggered on page load or on scroll) */
.highlight-pill.highlight-active::before,
.hero-title .highlight-pill::before {
    width: 100%;
}

.hero-title .highlight-pill::before {
    animation: heroPillSweep 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

@keyframes heroPillSweep {
    0% { width: 0%; }
    100% { width: 100%; }
}

.highlight-pill-mint::before {
    background: linear-gradient(90deg, #34d399 0%, #10b981 70%, #059669 100%);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.32);
}

.highlight-pill-cyan::before {
    background: linear-gradient(90deg, #7dd3fc 0%, #38bdf8 80%, #0284c7 100%);
    box-shadow: 0 6px 16px rgba(56, 189, 248, 0.28);
}

.highlight-pill-lightgreen::before {
    background: #6ee7b7;
}

/* Pulsing Green Status Indicator */
.pulse-dot-green {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseGreen 2s infinite cubic-bezier(0.66, 0, 0, 1);
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ── PLEEG CIRCULAR CHECKMARK BADGES ───────────────────────────── */
.pleeg-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.pleeg-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16.5px;
    font-weight: 500;
    line-height: 1.4;
}

.pleeg-check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #34d399;
    background: rgba(52, 211, 153, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #34d399;
    transition: background 0.2s ease;
}

.pleeg-check-icon svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Light Mode Variant for white/cream backgrounds */
.pleeg-check-icon.light-mode {
    border-color: #10b981;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.pleeg-check-item.light-mode {
    color: var(--dap-text-dark);
}

/* ── OVERLAPPING IMAGE & TESTIMONIAL CARD (Pleeg / IBS Style) ──── */
.overlap-showcase-container {
    position: relative;
    border-radius: 28px;
    margin-top: 30px;
}

.overlap-showcase-bg {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.overlap-card-content {
    position: absolute;
    bottom: -36px;
    left: 36px;
    max-width: 580px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 20px 48px rgba(0, 67, 100, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 5;
}

.overlap-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dap-text-dark);
}

.overlap-card-content p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--dap-text-body);
    margin-bottom: 18px;
}

.overlap-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    border-top: none;
}

.overlap-author-info {
    font-size: 14px;
    font-weight: 700;
    color: var(--dap-text-dark);
}

.overlap-author-info span {
    display: block;
    font-size: 13px;
    color: var(--dap-text-muted);
    font-weight: 500;
}

.overlap-stars {
    color: #006DA4;
    font-size: 18px;
    letter-spacing: 2px;
}

.overlap-accent-circles {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
}

.accent-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.accent-circle-green {
    background: #0284c7;
    margin-bottom: -20px;
    z-index: 2;
}

.accent-circle-cyan {
    background: #7dd3fc;
    z-index: 1;
}

@media (max-width: 900px) {
    .overlap-showcase-bg {
        height: 320px;
    }
    .overlap-card-content {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        margin-top: -40px;
        margin-left: 16px;
        margin-right: 16px;
    }
    .overlap-accent-circles {
        display: none;
    }
}

.section-desc {
    color: var(--dap-text-body);
    font-size: 17px;
    line-height: 1.65;
    max-width: 65ch;
    margin: 0 auto;
}

/* ── 5. BUTTONS (Smooth Continuous Gradient & No Jumpy Transform) ─ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: var(--radius-pill);
    font-family: var(--font-onest);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: -webkit-radial-gradient(white, black);
    clip-path: inset(0 round 500px);
    contain: paint;
    isolation: isolate;
    user-select: none;
    cursor: pointer;
    transform: none !important;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.btn > * {
    position: relative;
    z-index: 2;
}

/* ── Glänzender Shine / Glossy Lichtstreif-Hover-Effekt (100% gekapselt) ── */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 3;
    transition: none;
}

.btn:hover::after {
    left: 130%;
    transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}



.btn svg {
    display: inline-block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    vertical-align: middle;
}

.btn-primary {
    background: linear-gradient(135deg, #0284c7 0%, #006DA4 50%, #004364 100%);
    color: #FFFFFF;
    box-shadow: inset 0 1px 1.5px rgba(255, 255, 255, 0.35), 0 6px 20px rgba(0, 109, 164, 0.3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #006DA4 0%, #004364 65%, #022b42 100%);
    box-shadow: inset 0 1px 1.5px rgba(255, 255, 255, 0.45), 0 10px 28px rgba(0, 109, 164, 0.45);
    color: #FFFFFF;
}

.btn-emerald,
.btn-green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 45%, #059669 100%);
    color: #FFFFFF;
    box-shadow: inset 0 1px 1.5px rgba(255, 255, 255, 0.45), 0 6px 20px rgba(16, 185, 129, 0.32);
    border: none;
}

.btn-emerald:hover,
.btn-green:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 65%, #047857 100%);
    box-shadow: inset 0 1px 1.5px rgba(255, 255, 255, 0.55), 0 10px 28px rgba(16, 185, 129, 0.5);
    color: #FFFFFF;
}

.btn-blue {
    background: linear-gradient(135deg, #0284c7 0%, #006DA4 50%, #004364 100%);
    color: #FFFFFF;
    box-shadow: inset 0 1px 1.5px rgba(255, 255, 255, 0.35), 0 6px 20px rgba(0, 67, 100, 0.28);
    border: none;
}

.btn-blue:hover {
    background: linear-gradient(135deg, #006DA4 0%, #004364 65%, #022b42 100%);
    box-shadow: inset 0 1px 1.5px rgba(255, 255, 255, 0.45), 0 10px 28px rgba(0, 67, 100, 0.42);
    color: #FFFFFF;
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--dap-text-dark);
    border: 1px solid rgba(0, 67, 100, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--brand-navy-light);
    color: var(--brand-navy-light);
    box-shadow: 0 6px 16px rgba(0, 109, 164, 0.15);
}

.header-back-btn {
    padding: 8px 18px;
    font-size: 14px;
    white-space: nowrap;
}

.header-back-btn .mobile-text {
    display: none;
}

@media (max-width: 600px) {
    .header-back-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    .header-back-btn .desktop-text {
        display: none;
    }
    .header-back-btn .mobile-text {
        display: inline;
    }
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #2bdc6e 50%, #1ebd5b 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    border: none;
    transition: box-shadow 0.4s ease, opacity 0.2s ease;
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
    color: #FFFFFF;
}

/* ── 6. HEADER (Floating Island Pill Design) ───────────────────── */
.header {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.header .container {
    pointer-events: auto;
    max-width: 1220px;
    padding: 0 16px;
    box-sizing: border-box;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 72px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 109, 164, 0.16);
    border-radius: var(--radius-pill);
    padding: 8px 16px 8px 24px;
    box-shadow: 0 12px 36px rgba(0, 67, 100, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.mobile-nav-bottom {
    display: none;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--dap-text-body);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--brand-navy-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.header-phone-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-navy-light);
    white-space: nowrap;
    padding: 7px 12px;
    border-radius: 500px;
    transition: all 0.2s ease;
}

.header-phone-box:hover {
    background: rgba(0, 109, 164, 0.08);
}

.mobile-header-call-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-navy-light);
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 109, 164, 0.32);
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mobile-header-call-btn:hover {
    background: var(--brand-navy);
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F1F5EA;
    color: var(--dap-text-dark);
    align-items: center;
    justify-content: center;
}

@media (max-width: 960px) {
    .header {
        top: 10px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .header .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .header-inner {
        border-radius: 500px;
        padding: 6px 14px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
    }
    .logo-img {
        height: 44px;
    }
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 2px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-link {
        font-size: 16px;
        font-weight: 600;
        color: var(--dap-text-dark);
        padding: 12px 16px;
        border-radius: 12px;
        transition: background 0.15s ease, color 0.15s ease;
        display: flex;
        align-items: center;
        width: 100%;
        text-decoration: none;
    }
    .nav-link:hover,
    .nav-link:active {
        background: #F1F5EA;
        color: var(--dap-green);
    }
    .mobile-nav-bottom {
        display: block;
        margin-top: 6px;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .mobile-nav-phone-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px;
        border-radius: 500px;
        background: #F1F5EA;
        color: var(--dap-green);
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .mobile-nav-phone-btn:hover {
        background: var(--dap-green);
        color: #FFFFFF;
    }
    .mobile-header-call-btn {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--brand-navy-light);
        color: #FFFFFF;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(0, 109, 164, 0.32);
        flex-shrink: 0;
        text-decoration: none;
    }
    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #F0F7FB;
        border: 1px solid rgba(0, 109, 164, 0.2);
        color: var(--dap-text-dark);
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .header-phone-box {
        display: none;
    }
    .header-cta-btn {
        display: none;
    }
}

/* ── 7. HERO SECTION (Subtiler & moderner Hintergrund) ────────────── */
.hero-section {
    position: relative;
    padding-top: 145px;
    padding-bottom: 160px;
    background-color: #F8FAFC;
    background-image: url('assets/images/driver-patient.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F8FAFC 0%, rgba(248, 250, 252, 0.98) 50%, rgba(248, 250, 252, 0.88) 75%, rgba(248, 250, 252, 0.40) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.92) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1040px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.1rem, 3.6vw, 3.35rem);
    font-weight: 600;
    color: var(--dap-text-dark);
    line-height: 1.25;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.hero-title .highlight-pill {
    color: var(--dap-text-dark) !important;
}

.hero-subtext {
    font-size: clamp(1.1rem, 1.35vw, 1.28rem);
    font-weight: 500;
    color: var(--dap-text-body);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 68ch;
    margin-left: auto;
    margin-right: auto;
}

/* Original DAP Hero Curve Wave */
.hero-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 120px;
}

/* ── 8. WEBFLOW / ATOS-STYLE STAT CARDS GRID ───────────────────── */
.stat-cards-section {
    position: relative;
    z-index: 10;
}

.hero-stat-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hero-stat-card {
    display: flex;
    flex-direction: column;
    padding: 30px 26px;
    border-radius: 22px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.stat-card-green {
    background: linear-gradient(135deg, #0d7a36 0%, #15803d 100%);
    color: #FFFFFF;
    box-shadow: 0 16px 36px rgba(21, 128, 61, 0.28);
}

.stat-card-blue {
    background: linear-gradient(135deg, #006DA4 0%, #004364 100%);
    color: #FFFFFF;
    box-shadow: 0 16px 36px rgba(0, 67, 100, 0.24);
}

.stat-card-white {
    background: #FFFFFF;
    color: var(--dap-text-dark);
    border: 1px solid rgba(0, 67, 100, 0.08);
    box-shadow: 0 16px 40px rgba(0, 67, 100, 0.06);
}

.stat-card-dark {
    background: linear-gradient(135deg, #004364 0%, #002b40 100%);
    color: #FFFFFF;
    box-shadow: 0 16px 36px rgba(0, 67, 100, 0.24);
}

.stat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.stat-badge-rating {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 500px;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-badge-sub {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 500px;
    background: rgba(0, 109, 164, 0.1);
    color: var(--brand-navy-light);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.stat-card-white .stat-arrow-btn {
    background: #F0F7FB;
    color: var(--brand-navy-light);
}

.stat-number {
    font-size: clamp(1.85rem, 2.3vw, 2.3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.stat-card-white .stat-label {
    color: var(--dap-text-muted);
}

.trust-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
}

.trust-card-text h4 {
    color: #FFFFFF;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-card-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14.5px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hero-stat-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── 9. SERVICES GRID (Unsere Leistungen auf einen Blick) ──────── */
.services-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 32px;
    align-items: stretch;
}

/* Left Large Featured Card */
.service-big-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 5px solid #FFFFFF;
}

.service-big-img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.service-big-body {
    padding: 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-big-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-big-body p {
    color: var(--dap-text-body);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dap-green);
    font-size: 15px;
    font-weight: 700;
}

.service-more-link:hover {
    color: var(--dap-green-dark);
}

/* Right 3 Stacked Horizontal Cards */
.services-mini-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-row-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 20px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: center;
    border: 4px solid #FFFFFF;
}

.service-row-img {
    width: 140px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}

.service-row-body h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-row-body p {
    color: var(--dap-text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .services-main-grid {
        grid-template-columns: 1fr;
    }
    .service-row-card {
        grid-template-columns: 1fr;
    }
    .service-row-img {
        width: 100%;
        height: 180px;
    }
}

/* ── 10. ROUND ICONS HIGHLIGHTS ────────────────────────────────── */
.features-round-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0 36px 0;
}

.feature-round-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 4px solid #FFFFFF;
}

.feature-icon-bubble {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.28);
}

.feature-text-content {
    flex: 1;
    min-width: 0;
}

.feature-round-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-round-card p {
    font-size: 14px;
    color: var(--dap-text-muted);
}

@media (max-width: 800px) {
    .features-round-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── 11. HIER SIND WIR FÜR SIE VOR ORT (Standorte & Formular) ──── */
.location-section-wrap {
    background: #FFFFFF;
    border-top: 5px solid #FFFFFF;
    border-bottom: 5px solid #FFFFFF;
}

.location-inner-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

.form-clean-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: 0 16px 48px rgba(49, 114, 70, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-clean-card .form-input-field {
    width: 100%;
    height: 52px;
    background: #FFFFFF;
    border: 1.5px solid rgba(0, 109, 164, 0.18);
    border-radius: 12px;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dap-text-dark);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-clean-card .form-input-field::placeholder {
    color: #8E9FA5;
    font-weight: 400;
}

.form-clean-card .form-input-field:focus {
    background: #FFFFFF;
    border-color: var(--brand-navy-light);
    box-shadow: 0 0 0 3.5px rgba(0, 109, 164, 0.14);
    outline: none;
}

.form-input-field {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border: 1.5px solid rgba(0, 109, 164, 0.18);
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dap-text-dark);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input-field:focus {
    background: #FFFFFF;
    border-color: var(--brand-navy-light);
    box-shadow: 0 0 0 3.5px rgba(0, 109, 164, 0.14);
    outline: none;
}

.form-input-field::placeholder {
    color: #8E9FA5;
    font-weight: 400;
}

.districts-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-top: 20px;
}

.district-check-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dap-text-dark);
    font-weight: 600;
}

.district-check-row .pleeg-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #10b981;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
}

.district-check-row .pleeg-check-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
}

@media (max-width: 900px) {
    .location-inner-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 12. STORY / MISSION BOX (Original DAP Asymmetric Signature Design) ── */
.story-split-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    border: none;
    position: relative;
}

.story-blue-container {
    background: linear-gradient(145deg, #006DA4 0%, #004364 100%);
    color: #FFFFFF;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px 20px 20px 100px;
    box-shadow: 0 16px 40px rgba(0, 67, 100, 0.2);
    position: relative;
    z-index: 2;
}

.story-blue-container h2 {
    color: #FFFFFF;
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    font-weight: 600;
    margin-bottom: 18px;
}

.story-blue-container p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.story-photo-wrapper {
    position: relative;
    min-height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    margin-left: -16px;
    z-index: 1;
}

.story-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.story-round-quote-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #81C913;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.partners-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px 0 10px 0;
    flex-wrap: wrap;
}

.partners-strip img {
    height: 38px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.2s ease;
}

.partners-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 900px) {
    .story-split-card {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: var(--shadow-card);
    }
    .story-blue-container {
        padding: 40px 24px;
        border-radius: 20px 20px 0 0;
        width: 100%;
        box-sizing: border-box;
    }
    .story-blue-container .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 15px 20px;
        box-sizing: border-box;
    }
    .story-photo-wrapper {
        min-height: 260px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        border-radius: 0 0 20px 20px;
        box-sizing: border-box;
    }
}



/* ── 14. FAQ ACCORDION (Restored White Consultation Card & Clean Accordion) ── */
.faq-wrap-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 44px;
    align-items: flex-start;
}

.faq-contact-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 38px 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-contact-card .section-pill-tag {
    margin-bottom: 14px;
}

.faq-contact-card h3 {
    font-size: clamp(30px, 2.7vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dap-text-dark);
}

.faq-contact-card p {
    color: var(--dap-text-body);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.faq-phone-pill {
    background: #F0F7FB;
    border: 1px solid rgba(0, 109, 164, 0.18);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

/* FAQ Accordion Cards */
.faq-blue-pill-item {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-blue-pill-item:hover {
    border-color: rgba(0, 109, 164, 0.35);
    box-shadow: 0 8px 24px rgba(0, 109, 164, 0.08);
}

.faq-blue-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--dap-text-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 16px;
}

.faq-plus-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F0F7FB;
    border: 1px solid rgba(0, 109, 164, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-navy-light);
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}

.faq-pill-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 24px;
    color: var(--dap-text-body);
    font-size: 15.5px;
    line-height: 1.7;
}

/* Active Open FAQ Card */
.faq-blue-pill-item.active {
    border-color: var(--brand-navy-light);
    border-left: 4px solid var(--brand-navy-light);
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 109, 164, 0.09);
}

.faq-blue-pill-item.active .faq-plus-badge {
    background: var(--brand-navy-light);
    color: #FFFFFF;
    border-color: var(--brand-navy-light);
    transform: rotate(45deg);
}

.faq-blue-pill-item.active .faq-pill-body {
    max-height: 350px;
    padding-bottom: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
    .faq-wrap-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 15. TEAM & FUHRPARK SECTION ───────────────────────────────── */
.team-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.team-photos-container {
    position: relative;
    min-height: 360px;
}

.team-photo-base {
    width: 78%;
    height: 300px;
    border-radius: var(--radius-card);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

.team-photo-overlap {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 60%;
    height: 220px;
    border-radius: var(--radius-card);
    object-fit: cover;
    border: 5px solid #FFFFFF;
    box-shadow: 0 16px 36px rgba(49, 114, 70, 0.18);
}

@media (max-width: 800px) {
    .team-layout-grid {
        grid-template-columns: 1fr;
    }
    .team-photos-container {
        min-height: 280px;
    }
}

/* ── 16. BOTTOM FULL-WIDTH CTA BANNER (Organic Wave Shape) ─────── */
.bottom-cta-banner-wrapper {
    position: relative;
    margin-top: 40px;
    background: transparent;
    width: 100%;
    overflow: hidden;
}

.bottom-cta-wave-svg {
    display: block;
    width: 100%;
    height: 50px;
    margin-bottom: -1px;
    line-height: 0;
}

.bottom-cta-wave-svg svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bottom-cta-banner {
    background: linear-gradient(145deg, #006DA4 0%, #004364 100%);
    color: #FFFFFF;
    padding: 40px 0 90px 0;
    text-align: center;
    position: relative;
    border-radius: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.bottom-cta-banner h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.bottom-cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto 32px auto;
}

/* ── 17. FOOTER ────────────────────────────────────────────────── */
.footer {
    background: #FFFFFF;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
    color: var(--dap-text-body);
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dap-text-dark);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li a {
    color: var(--dap-text-body);
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--dap-green);
}

.footer-legal-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .section {
        padding: 55px 0;
    }
    .footer-columns-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding-top: 135px;
        padding-bottom: 110px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(244, 255, 252, 0.98) 0%, rgba(244, 255, 252, 0.94) 100%);
    }

    .hero-title {
        font-size: clamp(1.8rem, 6.5vw, 2.35rem);
        margin-bottom: 14px;
        line-height: 1.25;
    }

    .hero-subtext {
        font-size: 15.5px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hero-stat-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-big-card .service-big-img {
        height: 200px;
    }

    .service-big-body {
        padding: 24px 18px;
    }

    .service-row-card {
        grid-template-columns: 1fr;
    }

    .service-row-img {
        width: 100%;
        height: 180px;
    }

    .service-row-body {
        padding: 20px 18px;
    }

    .features-round-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .feature-round-card {
        padding: 20px 14px;
    }

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

    .form-clean-card {
        padding: 26px 18px;
        border-radius: 20px;
    }

    .story-split-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .story-blue-container {
        padding: 36px 20px;
        border-radius: 20px 20px 0 0;
    }

    .story-photo-wrapper {
        min-height: 260px;
        margin-left: 0;
        border-radius: 0 0 20px 20px;
    }

    .overlap-showcase-bg {
        height: 260px;
    }

    .overlap-card-content {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        margin-top: -24px;
        margin-left: 8px;
        margin-right: 8px;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .overlap-accent-circles {
        display: none;
    }

    .inhaberin-quote-section {
        padding: 55px 16px;
    }

    .inhaberin-portrait-img {
        width: 160px;
        height: 160px;
    }

    .inhaberin-quote-badge {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .inhaberin-quote-text {
        font-size: 1.12rem;
        line-height: 1.6;
    }

    .faq-wrap-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-contact-card {
        padding: 28px 20px;
    }

    .faq-contact-card h3 {
        font-size: 26px;
        line-height: 1.25;
    }

    .team-layout-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bottom-cta-banner {
        padding: 40px 16px 56px 16px;
        border-radius: 0;
    }

    .bottom-cta-banner h2 {
        font-size: 1.8rem;
    }

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

    .footer-legal-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .mobile-call-bar {
        display: flex;
    }
    
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 500px) {
    .header {
        padding: 0 8px;
    }

    .header-inner {
        padding: 6px 12px;
        gap: 8px;
    }

    .logo-img {
        height: 38px;
        max-width: 145px;
        flex-shrink: 0;
    }

    .mobile-header-call-btn {
        width: 38px;
        height: 38px;
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }

    .header-cta-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .features-round-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-round-card {
        flex-direction: row;
        text-align: left;
        padding: 14px 18px;
        gap: 14px;
        align-items: center;
    }

    .feature-icon-bubble {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .feature-text-content {
        flex: 1;
        min-width: 0;
    }

    .feature-round-card h4 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .feature-round-card p {
        font-size: 13.5px;
        line-height: 1.4;
    }

    .bottom-cta-wave-svg {
        height: 28px;
    }

    .districts-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 12px;
    }

    .district-check-row {
        font-size: 14.5px;
        gap: 8px;
    }

    #main-booking-form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    #main-booking-form > div[style*="display: flex"] {
        flex-direction: column !important;
    }
}

/* ── 18. MOBILE FLOATING CALL BAR ──────────────────────────────── */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    display: none;
    gap: 10px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.mobile-call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════════
   KOMPASS MOBIL BESPOKE COMPONENTS
   ═══════════════════════════════════════════════════════════════════ */

/* ── 6-SERVICES BENTO GRID ─────────────────────────────────────── */
.services-bento-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.services-bottom-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bento-service-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bento-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 109, 164, 0.3);
}

.bento-card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.services-top-row .bento-card-img-wrap {
    height: 220px;
}

.services-bottom-row .bento-card-img-wrap {
    height: 160px;
}

.bento-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bento-service-card:hover .bento-service-img {
    transform: scale(1.04);
}

.bento-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 67, 100, 0.9);
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 500px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bento-card-body {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dap-text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.bento-card-body p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--dap-text-muted);
    margin-bottom: 16px;
    flex: 1;
}

.bento-feature-pills {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.bento-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--dap-text-body);
    font-weight: 600;
}

.bento-feature-item svg {
    width: 15px;
    height: 15px;
    color: var(--brand-navy-light);
    flex-shrink: 0;
}

.bento-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    background: #F0F7FB;
    color: var(--brand-navy);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bento-cta-link:hover {
    background: var(--brand-navy-light);
    color: #FFFFFF;
}

/* ── ABOUT SPLIT GRID (KOMPASS MOBIL TRUST BOX) ────────────────── */
.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.about-photo-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-main-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.about-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 67, 100, 0.12);
}

.about-floating-badge svg {
    color: var(--brand-navy-light);
    flex-shrink: 0;
}

.about-floating-badge strong {
    display: block;
    font-size: 14.5px;
    color: var(--dap-text-dark);
}

.about-floating-badge span {
    font-size: 12.5px;
    color: var(--dap-text-muted);
}

.about-content-card {
    background: linear-gradient(145deg, #004364 0%, #002A3F 100%);
    border-radius: var(--radius-card);
    padding: 44px 40px;
    color: #FFFFFF;
    box-shadow: 0 20px 48px rgba(0, 42, 63, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
}

.about-content-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.3) 0%, rgba(2, 132, 199, 0) 70%);
    pointer-events: none;
}

.about-content-card .section-pill-tag {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.about-content-card .section-title {
    color: #FFFFFF !important;
}

.about-content-card .about-intro-p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
}

.about-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-pillar-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.about-pillar-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.pillar-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.about-pillar-item h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 3px;
}

.about-pillar-item p {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 600px) {
    .about-content-card {
        padding: 32px 20px;
    }
}

/* ── RESPONSIVE RULES FOR NEW COMPONENTS ───────────────────────── */
@media (max-width: 1024px) {
    .services-bottom-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-split-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-main-img {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .services-top-row {
        grid-template-columns: 1fr;
    }
    .services-bottom-row {
        grid-template-columns: 1fr;
    }
    .transportschein-grid {
        grid-template-columns: 1fr;
    }
    .transportschein-cta-box {
        flex-direction: column;
        text-align: center;
    }
    .transportschein-cta-box .btn {
        width: 100%;
        justify-content: center;
    }
}



