/* ==========================================================================
   Loraic TIR – Theme-Styles
   Baut auf Bootstrap 5 auf und repliziert das Original-Design der
   TIR Logistik Landing Page.
   Farb-Tokens laut Vorgabe:
     Blau   #3B55A2  – Ueberschriften, Buttons, Header/Footer-Hintergrund
     Orange #FF4F04  – Subtitles, Button-Hover, Akzent-Icons
     Text   #505D7B
   Fonts: Outfit (Headings), Inter (Body)
   ========================================================================== */

:root {
    --pxl-blue: #3B55A2;
    --pxl-blue-dark: #2e447f;
    --pxl-blue-soft: #6477b5;
    --pxl-orange: #FF4F04;
    --pxl-accent: #6477B5;
    --pxl-text: #505D7B;
    --pxl-heading: #3B55A2;
    --pxl-light: #f5f7fb;
    --pxl-border: #e6eaf3;
    --pxl-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --pxl-font-head: "Outfit", "Inter", system-ui, sans-serif;
    --bs-body-font-family: var(--pxl-font-body);
}

/* ---------- Base ---------- */
body.loraic-tir {
    font-family: var(--pxl-font-body);
    color: var(--pxl-text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

.loraic-tir h1, .loraic-tir h2, .loraic-tir h3,
.loraic-tir h4, .loraic-tir h5, .loraic-tir h6 {
    font-family: var(--pxl-font-head);
    color: var(--pxl-heading);
    font-weight: 700;
    line-height: 1.2;
}

.loraic-tir a { text-decoration: none; transition: color .25s ease, background-color .25s ease, border-color .25s ease; }

.pxl-section { position: relative; padding: 100px 0; background-repeat: no-repeat; background-size: cover; background-position: center; }
@media (max-width: 991.98px) { .pxl-section { padding: 64px 0; } }

.pxl-subtitle {
    display: inline-block;
    color: #fff;
    background: var(--pxl-orange);
    font-family: var(--pxl-font-head);
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    padding: 7px 16px;
    border-radius: 1000px;
    margin-bottom: 18px;
}

.pxl-section-title { font-size: clamp(26px, 3vw, 40px); margin-bottom: 0; }

/* ---------- Buttons ---------- */
.pxl-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    background: var(--pxl-blue);
    color: #fff;
    font-family: var(--pxl-font-head);
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 6px;
    border: 0;
    line-height: 1.2;
    /* Langsamere Hover-Farbtransition wie im Original */
    transition: background-color .5s cubic-bezier(0.645, 0.045, 0.355, 1),
                color .5s cubic-bezier(0.645, 0.045, 0.355, 1),
                border-color .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.pxl-btn:hover { background: var(--pxl-orange); color: #fff; }
.pxl-readmore { transition: background-color .5s cubic-bezier(0.645, 0.045, 0.355, 1), color .5s cubic-bezier(0.645, 0.045, 0.355, 1); }

/* ---------- Swiper Arrows ---------- */
.pxl-swiper-arrow {
    width: 52px; height: 52px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--pxl-blue);
    background: transparent;
    color: var(--pxl-blue);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all .25s ease;
}
.pxl-swiper-arrow:hover { background: var(--pxl-blue); color: #fff; }
.pxl-swiper-arrow.pxl-hero-prev i,
.pxl-about-prev i { transform: scaleX(-1); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.pxl-header {
    background: var(--pxl-blue);
    position: absolute; top: 0; left: 0; right: 0;
    z-index: 50;
}
.pxl-header.pxl-sticked {
    position: fixed;
    background: var(--pxl-blue);
    box-shadow: 0 6px 24px rgba(0,0,0,.15);
    animation: pxlSlideDown .4s ease;
}
@keyframes pxlSlideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.pxl-header-row { display: flex; align-items: center; justify-content: space-between; min-height: 90px; gap: 24px; }
.pxl-logo img { height: 65px; width: auto; }

.pxl-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.pxl-menu > li { position: relative; }
.pxl-menu > li > a {
    display: inline-flex; align-items: center; gap: 6px;
    color: #fff; font-family: var(--pxl-font-head); font-weight: 500;
    padding: 12px 16px; font-size: 16px;
}
.pxl-menu > li > a:hover { color: var(--pxl-orange); }
.pxl-menu > li > a i { font-size: 10px; }

.pxl-submenu {
    position: absolute; top: 100%; left: 0;
    min-width: 230px;
    background: #fff;
    border-top: 3px solid var(--pxl-orange);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    list-style: none; margin: 0; padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all .25s ease; z-index: 60;
}
.pxl-menu > li.has-children:hover > .pxl-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.pxl-submenu li a { display: block; padding: 10px 22px; color: var(--pxl-text); font-weight: 500; }
.pxl-submenu li a:hover { color: var(--pxl-orange); padding-left: 28px; }

.pxl-header-info { display: flex; align-items: center; gap: 12px; }
.pxl-info-icon {
    width: 52px; height: 52px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 79, 4, 0.5);
    color: #fff;
    position: relative;
}
.pxl-info-icon::before {
    content: "";
    position: absolute; inset: 5px;
    border-radius: 50%;
    background: var(--pxl-orange);
}
.pxl-info-icon-svg {
    position: relative; z-index: 1;
    width: 22px; height: 22px; display: block;
    color: #fff; fill: #fff;
    animation: pxl_phone_ring 1.8s ease-out infinite;
    transform-origin: center;
}
.pxl-info-icon-svg path { fill: #fff; }

@keyframes pxl_phone_ring {
    0%        { transform: rotate(0deg)   scale(1) skew(1deg); }
    10%       { transform: rotate(-15deg) scale(1) skew(1deg); }
    20%       { transform: rotate(30deg)  scale(1) skew(1deg); }
    30%       { transform: rotate(-15deg) scale(1) skew(1deg); }
    40%       { transform: rotate(30deg)  scale(1) skew(1deg); }
    50%, 100% { transform: rotate(0deg)   scale(1) skew(1deg); }
}
@media (prefers-reduced-motion: reduce) {
    .pxl-info-icon-img { animation: none; }
}
.pxl-info-meta { display: flex; flex-direction: column; line-height: 1.3; }
.pxl-info-meta small { color: rgba(255,255,255,.75); font-size: 13px; }
.pxl-info-meta a { color: #fff; font-family: var(--pxl-font-head); font-weight: 700; font-size: 17px; }
.pxl-info-meta a:hover { color: var(--pxl-orange); }

.pxl-nav-toggle { background: transparent; border: 0; width: 42px; height: 42px; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.pxl-nav-toggle span { display: block; height: 2px; width: 26px; background: #fff; margin: 0 auto; transition: .3s; }

/* Offcanvas (mobile) */
.pxl-offcanvas { background: var(--pxl-blue); color: #fff; }
.pxl-offcanvas .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,.12); }
.pxl-logo-mobile img { height: 50px; }
.pxl-menu-mobile { list-style: none; margin: 0; padding: 0; }
.pxl-menu-mobile > li { border-bottom: 1px solid rgba(255,255,255,.1); }
.pxl-menu-mobile > li > a { display: block; padding: 14px 4px; color: #fff; font-family: var(--pxl-font-head); font-weight: 500; }
.pxl-submenu-mobile { list-style: none; margin: 0; padding: 0 0 10px 16px; display: none; }
.pxl-menu-mobile > li.open .pxl-submenu-mobile { display: block; }
.pxl-submenu-mobile li a { display: block; padding: 8px 4px; color: rgba(255,255,255,.85); }
.pxl-mobile-phone { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; color: #fff; font-family: var(--pxl-font-head); font-weight: 700; font-size: 18px; }
.pxl-mobile-phone i { color: var(--pxl-orange); }

/* ==========================================================================
   HERO
   ========================================================================== */
.pxl-hero { padding: 0; }
.pxl-hero-swiper { position: relative; }
.pxl-hero-swiper .pxl-slider--inner { position: relative; padding-bottom: 750px; }
@media (max-width: 992px) { .pxl-hero-swiper .pxl-slider--inner { padding-bottom: 550px; } }
@media (max-width: 768px) { .pxl-hero-swiper .pxl-slider--inner { padding-bottom: 450px; } }
@media (max-width: 576px) { .pxl-hero-swiper .pxl-slider--inner { padding-bottom: 350px; } }
.pxl-hero-swiper .pxl-slider--image { position: absolute; inset: 0; background-size: cover; background-position: center; }

.pxl-hero-pagination { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 5; text-align: center; }
.pxl-hero-pagination .swiper-pagination-bullet { width: 12px; height: 12px; background: #fff; opacity: .6; }
.pxl-hero-pagination .swiper-pagination-bullet-active { background: var(--pxl-orange); opacity: 1; }
.pxl-hero-nav { position: absolute; bottom: 28px; right: 40px; z-index: 5; display: flex; gap: 12px; }
.pxl-hero-nav .pxl-swiper-arrow { background: rgba(255,255,255,.9); border-color: #fff; color: var(--pxl-blue); }
.pxl-hero-nav .pxl-swiper-arrow:hover { background: var(--pxl-orange); border-color: var(--pxl-orange); color: #fff; }
@media (max-width: 768px) { .pxl-hero-nav { display: none; } }

/* ==========================================================================
   ABOUT  (UNSER KERNGESCHAEFT)
   ========================================================================== */
.pxl-about { position: relative; overflow: hidden; background-color: var(--pxl-light); }
.pxl-about-head { margin-bottom: 50px; }
.pxl-about-intro { margin: 16px auto 0; max-width: 720px; font-size: 16px; }
.pxl-about-carousel { position: relative; }
.pxl-about .container { position: relative; z-index: 2; }

/* Deko-Pfeile (oben rechts, unten links) wie im Original */
.pxl-about-deco { position: absolute; z-index: 1; width: 130px; height: auto; opacity: .28; pointer-events: none; }
.pxl-about-deco--tr { top: 24px; right: 30px; transform: rotate(90deg); }
.pxl-about-deco--bl { bottom: 30px; left: 30px; transform: rotate(-90deg); }
@media (max-width: 1199.98px) { .pxl-about-deco { display: none; } }

/* Gleiche Kachelhoehe: Slides strecken, Karte als Flex-Spalte */
.pxl-service-swiper .swiper-wrapper { align-items: stretch; }
.pxl-service-swiper .swiper-slide { height: auto; display: flex; }
.pxl-service-card { width: 100%; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 12px 36px rgba(20,30,60,.07); height: 100%; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.pxl-service-card:hover { box-shadow: 0 20px 48px rgba(20,30,60,.12); }
.pxl-service-card-media { display: block; overflow: hidden; flex: 0 0 200px; }
.pxl-service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pxl-service-card:hover .pxl-service-card-media img { transform: scale(1.06); }
.pxl-service-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1 1 auto; }
.pxl-service-card-title { font-size: 21px; margin-bottom: 10px; }
.pxl-service-card-title a { color: var(--pxl-heading); }
.pxl-service-card-title a:hover { color: var(--pxl-orange); }
/* Excerpt fuellt den Freiraum bis zum Button (Whitespace bei kuerzerem Inhalt) */
.pxl-service-card-text { font-size: 15px; margin-bottom: 18px; flex: 1 1 auto; }
.pxl-readmore { display: inline-flex; align-self: flex-start; align-items: center; margin-top: auto; background: var(--pxl-blue); color: #fff; font-family: var(--pxl-font-head); font-weight: 600; font-size: 14px; padding: 9px 20px; border-radius: 6px; }
.pxl-readmore:hover { background: var(--pxl-orange); color: #fff; }

.pxl-carousel-nav { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }

/* ==========================================================================
   PROMISE  (UNSER VERSPRECHEN)
   ========================================================================== */
.pxl-promise { background-color: #fff; }
.pxl-promise .pxl-section-title { margin-bottom: 40px; }
.pxl-check-list { list-style: none; margin: 0 0 36px; padding: 0; }
.pxl-check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; font-size: 16px; }
.pxl-check-list li i { color: var(--pxl-orange); font-size: 18px; margin-top: 3px; }
.pxl-check-list--cols { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
@media (max-width: 767.98px) { .pxl-check-list--cols { grid-template-columns: 1fr; } }
.pxl-promise-actions { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.pxl-promise-phone { display: flex; align-items: center; gap: 12px; }
.pxl-promise-phone small { color: var(--pxl-text); font-size: 13px; }
.pxl-promise-phone a { color: var(--pxl-heading); font-family: var(--pxl-font-head); font-weight: 700; font-size: 18px; }
.pxl-promise-phone .pxl-info-meta { display: flex; flex-direction: column; }

/* ==========================================================================
   COUNTER
   ========================================================================== */
.pxl-counter-section { background-color: var(--pxl-blue); padding: 200px 0;}
.pxl-counter-section::before { content: ""; position: absolute; inset: 0; background: rgba(46,68,127,.78); }
.pxl-counter-section .container { position: relative; z-index: 2; }
.pxl-counter { display: flex; align-items: center; gap: 18px; color: #fff; }
.pxl-counter-icon { width: 64px; height: 64px; flex: 0 0 64px; display: inline-flex; align-items: center; justify-content: center; }
.pxl-counter-icon img { width: auto; height: 50px; max-width: 60px; object-fit: fill; filter: brightness(0) invert(1); }
.pxl-counter-number { font-family: var(--pxl-font-head); font-weight: 800; font-size: 40px; line-height: 1; display: flex; align-items: baseline; }
.pxl-counter-suffix { color: var(--pxl-orange); margin-left: 2px; font-size: 26px; }
.pxl-counter-title { font-size: 15px; color: rgba(255,255,255,.85); margin-top: 6px; min-height: 51px;}

/* ==========================================================================
   SERVICES  (UNSERE LEISTUNGEN)
   ========================================================================== */
.pxl-services { background-color: var(--pxl-light); }
.pxl-services-head { margin-bottom: 50px; }
.pxl-services-intro { margin: 16px 0 0; }

.pxl-service-box {
    display: block; height: 100%;
    background: #fff;
    padding: 36px 30px;
    border-radius: 10px;
    border-bottom: 4px solid var(--pxl-blue);
    box-shadow: 0 10px 30px rgba(20,30,60,.06);
    transition: all .3s ease;
}
.pxl-service-box:hover { border-bottom-color: var(--pxl-orange); transform: translateY(-6px); box-shadow: 0 18px 44px rgba(20,30,60,.12); }
.pxl-service-box-icon {
    width: 84px; height: 84px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px dashed var(--pxl-blue);
    border-radius: 50%;
    background: #fff;
    margin-bottom: 22px;
    transition: border-color .3s ease;
}
.pxl-service-box:hover .pxl-service-box-icon { border-color: var(--pxl-orange); }
.pxl-service-box-icon img { width: 40px; height: 40px; }
.pxl-service-box-title { font-size: 22px; margin-bottom: 12px; }
.pxl-service-box:hover .pxl-service-box-title { color: var(--pxl-orange); }
.pxl-service-box-text { font-size: 15px; margin: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.pxl-faq { position: relative; overflow: hidden; background-color: #fff; }
.pxl-faq .container { position: relative; z-index: 2; }
.pxl-faq-text { margin: 16px 0 30px; }
/* Deko-Bild unten rechts, etwas groesser (wie im Original) */
.pxl-faq-decoration { position: absolute; right: 0; bottom: 0; z-index: 1; max-width: 460px; width: 38%; height: auto; opacity: .9; pointer-events: none; }
@media (max-width: 991.98px) { .pxl-faq-decoration { display: none; } }

.pxl-accordion .accordion-item { border: 1px solid var(--pxl-border); border-radius: 10px !important; margin-bottom: 16px; overflow: hidden; background: #fff; }
.pxl-accordion .accordion-button {
    font-family: var(--pxl-font-head); font-weight: 600; font-size: 17px;
    color: var(--pxl-heading); background: #fff; padding: 20px 56px 20px 24px;
    box-shadow: none;
}
.pxl-accordion .accordion-button:not(.collapsed) { color: #fff; background: var(--pxl-blue); }
.pxl-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.pxl-accordion .accordion-body { padding: 22px 24px; font-size: 15px; color: var(--pxl-text); }
.pxl-accordion .accordion-body a { color: var(--pxl-orange); text-decoration: underline; }

/* Plus-/Minus-Icon zum Aufklappen (wie im Original) */
.pxl-accordion .accordion-button::after {
    content: "";
    position: absolute;
    right: 22px; top: 50%;
    width: 22px; height: 22px;
    margin: 0;
    transform: translateY(-50%);
    background-image: none;
    background: transparent;
    transition: none;
}
.pxl-accordion .accordion-button::before {
    content: "";
    position: absolute;
    right: 22px; top: 50%;
    width: 22px; height: 22px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* Plus (eingeklappt) – orange */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23FF4F04' d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z'/%3E%3C/svg%3E");
}
.pxl-accordion .accordion-button:not(.collapsed)::before {
    /* Minus (aufgeklappt) – weiss */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M432 256c0 17.7-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H400c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.pxl-contact { position: relative; background-color: var(--pxl-blue); }
.pxl-contact::before { content: ""; position: absolute; inset: 0; background: rgba(59,85,162,.9); }
.pxl-contact .container { position: relative; z-index: 2; }
.pxl-contact .pxl-section-title { color: #fff; margin-bottom: 14px; }
.pxl-contact-subtitle { color: rgba(255,255,255,.9); font-size: 18px; margin: 0 0 40px; }
.pxl-contact-form .form-control { border: 1px solid rgba(255,255,255,.35); border-radius: 8px; padding: 14px 16px; font-size: 15px; background: rgba(255,255,255,.95); color: var(--pxl-text); }
.pxl-contact-form .form-control::placeholder { color: #8b97b3; }
.pxl-contact-form .form-control:focus { border-color: var(--pxl-orange); box-shadow: 0 0 0 .2rem rgba(255,79,4,.15); background: #fff; }
.pxl-btn-submit { margin-top: 10px; padding-left: 44px; padding-right: 44px; background: var(--pxl-orange); }
.pxl-btn-submit:hover { background: #fff; color: var(--pxl-blue); }
.pxl-contact-note { text-align: center; color: rgba(255,255,255,.85); font-family: var(--pxl-font-head); margin: 18px 0 0; }
/* echtes CF7 ebenfalls treffen */
.pxl-contact .wpcf7-form input[type="text"],
.pxl-contact .wpcf7-form input[type="tel"],
.pxl-contact .wpcf7-form input[type="email"],
.pxl-contact .wpcf7-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.35); border-radius: 8px; padding: 14px 16px; background: rgba(255,255,255,.95); margin-bottom: 14px; }
.pxl-contact .wpcf7-submit { background: var(--pxl-orange); color: #fff; border: 0; border-radius: 6px; padding: 14px 44px; font-family: var(--pxl-font-head); font-weight: 600; display: block; margin: 10px auto 0; }
.pxl-contact .wpcf7-submit:hover { background: var(--pxl-blue-dark); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* Heller Footer wie im Original: helles Hintergrundbild (Weltkarte),
   blaue Ueberschriften/Links, Pfeil-Icons, Akzent-Icons. */
.pxl-footer {
    background-color: #f1f7fa;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--pxl-footer-text, #132579);
}
.pxl-footer-main { padding: 80px 0 50px; }
.pxl-footer-aeo-text { font-size: 13px; color: #6b78a6; margin: 22px 0 0; max-width: 260px; }
.pxl-footer-title { color: var(--pxl-blue); font-size: 20px; margin-bottom: 22px; }

.pxl-footer-links { list-style: none; margin: 0; padding: 0; }
.pxl-footer-links li { margin-bottom: 12px; }
.pxl-footer-links a {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--pxl-blue);
    font-family: var(--pxl-font-head); font-weight: 500;
}
.pxl-footer-links a i {
    font-size: 12px; color: var(--pxl-blue);
    transition: color .25s ease, transform .25s ease;
}
.pxl-footer-links a:hover { color: var(--pxl-orange); }
.pxl-footer-links a:hover i { color: var(--pxl-orange); transform: translateX(3px); }

.pxl-footer-contact { list-style: none; margin: 0; padding: 0; }
.pxl-footer-contact li {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #dae0e7;
}
.pxl-footer-contact li:first-child { padding-top: 0; }
.pxl-footer-contact li:last-child { border-bottom: 0; align-items: flex-start; }
.pxl-fc-icon {
    width: 40px; height: 40px; flex: 0 0 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(100,119,181,.12);
    color: var(--pxl-accent, #6477B5);
    font-size: 16px;
}
.pxl-footer-contact a { color: #132579; }
.pxl-footer-contact a:hover { color: var(--pxl-orange); }
.pxl-fc-address { line-height: 1.5; }

.pxl-footer-bottom { background: var(--pxl-blue); padding: 16px 0; }
.pxl-footer-bottom-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.pxl-copyright { font-size: 15px; color: #fff; }
.pxl-legal { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; font-size: 15px; }
.pxl-legal li:not(:last-child)::after { content: "/"; margin-left: 8px; color: rgba(255,255,255,.45); }
.pxl-legal a { color: #fff; }
.pxl-legal a:hover { color: var(--pxl-orange); }

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.pxl-scroll-top {
    position: fixed; right: 28px; bottom: 28px; z-index: 40;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--pxl-blue); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transform: translateY(20px) rotate(-90deg); opacity: 0; pointer-events: none;
    transition: all .3s ease;
}
.pxl-scroll-top.is-visible { opacity: 1; transform: translateY(0) rotate(-90deg); pointer-events: auto; }
.pxl-scroll-top:hover { background: var(--pxl-orange); color: #fff; }

/* ==========================================================================
   PAGE HEADER (Inner-Page-Banner)
   ========================================================================== */
.pxl-page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 350px 0;
    text-align: center;
}
.pxl-page-header-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(46,68,127,.72), rgba(46,68,127,.82));
}
.pxl-page-header .container { position: relative; z-index: 2; }
.pxl-page-header .pxl-page-title { color: #fff; font-size: clamp(30px, 4vw, 48px); margin: 0; }
.pxl-breadcrumb { margin-top: 14px; font-family: var(--pxl-font-head); font-weight: 500; color: rgba(255,255,255,.85); }
.pxl-breadcrumb a { color: #fff; }
.pxl-breadcrumb a:hover { color: var(--pxl-orange); }
.pxl-breadcrumb span { margin: 0 8px; }
@media (max-width: 767.98px) { .pxl-page-header { padding: 200px 0; } }

/* ==========================================================================
   REFERENCES (Logo-Raster)
   ========================================================================== */
.pxl-references { background-color: #fff; }
.pxl-references-intro { font-size: 18px; margin-bottom: 50px; }
.pxl-references-intro p { margin-bottom: 8px; }
.pxl-references-empty { color: var(--pxl-text); }

.pxl-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 1199.98px) { .pxl-logo-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 991.98px)  { .pxl-logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767.98px)  { .pxl-logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 479.98px)  { .pxl-logo-grid { grid-template-columns: repeat(2, 1fr); } }

.pxl-logo-item {
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid var(--pxl-border);
    border-radius: 10px;
    padding: 22px 18px;
    min-height: 120px;
    transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.pxl-logo-item:hover {
    border-color: transparent;
    box-shadow: 0 14px 34px rgba(20,30,60,.12);
    transform: translateY(-4px);
}
.pxl-logo-item a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.pxl-logo-item img {
    max-width: 100%;
    max-height: 100px;
    width: auto; height: auto;
    object-fit: contain;
    opacity: 1;
    transition: filter .3s ease, opacity .3s ease;
}
.pxl-logo-item:hover img { filter: grayscale(0%); opacity: 1; }
.pxl-logo-fallback { font-family: var(--pxl-font-head); font-weight: 600; color: var(--pxl-heading); text-align: center; font-size: 14px; }

.pxl-entry-content h2, .pxl-entry-content h3 { margin-top: 1.4em; }
.pxl-entry-content p { margin-bottom: 1em; }

/* ==========================================================================
   SINGLE SERVICE
   ========================================================================== */
.pxl-service-single { background-color: #fff; }

.pxl-entry-content { font-size: 16px; color: var(--pxl-text); }
.pxl-entry-content h2 { font-size: 28px; margin: 0 0 16px; }
.pxl-entry-content h2:not(:first-child) { margin-top: 36px; }
.pxl-entry-content h3 { font-size: 21px; margin: 28px 0 12px; }
.pxl-entry-content p { margin-bottom: 16px; line-height: 1.75; }
.pxl-entry-content img { max-width: 100%; height: auto; border-radius: 10px; }
.pxl-entry-content .pxl-content-images {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; margin: 8px 0 24px;
}
@media (max-width: 575.98px) { .pxl-entry-content .pxl-content-images { grid-template-columns: 1fr; } }
.pxl-entry-content .pxl-check-list { margin: 0 0 22px; }
.pxl-entry-content .pxl-check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; }
.pxl-entry-content .pxl-check-list li i { color: var(--pxl-orange); margin-top: 4px; }

.pxl-service-cta { margin-top: 36px; }

/* ---------- Sidebar ---------- */
.pxl-sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 30px; }
@media (max-width: 991.98px) { .pxl-sidebar { position: static; } }

.pxl-widget { background: #fff; }
.pxl-widget-title {
    font-size: 20px; margin: 0 0 18px; padding-bottom: 14px;
    position: relative;
}
.pxl-widget-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 46px; height: 3px; background: var(--pxl-orange); border-radius: 2px; }

.pxl-widget-services {
    border: 1px solid var(--pxl-border);
    border-radius: 12px;
    padding: 26px 24px;
}
.pxl-service-nav { list-style: none; margin: 0; padding: 0; }
.pxl-service-nav li { margin-bottom: 10px; }
.pxl-service-nav li:last-child { margin-bottom: 0; }
.pxl-service-nav a {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    background: var(--pxl-light);
    color: var(--pxl-heading);
    font-family: var(--pxl-font-head); font-weight: 600; font-size: 15px;
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all .25s ease;
}
.pxl-service-nav a:hover { background: var(--pxl-blue); color: #fff; }
.pxl-service-nav a i { font-size: 13px; opacity: .8; }
.pxl-service-nav li.is-active a {
    background: var(--pxl-blue);
    color: #fff;
    border-left-color: var(--pxl-orange);
}

/* ---------- Kontaktblock ---------- */
.pxl-widget-contact {
    position: relative;
    background-color: var(--pxl-blue);
    background-size: cover; background-position: center;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.pxl-widget-contact-overlay { position: absolute; inset: 0; background: rgba(46,68,127,.9); }
.pxl-widget-contact-inner { position: relative; z-index: 2; padding: 34px 26px; }
.pxl-widget-contact-icon {
    width: 60px; height: 60px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--pxl-orange); color: #fff; font-size: 22px;
    margin-bottom: 18px;
}
.pxl-widget-contact h4 { color: #fff; font-size: 22px; margin: 0 0 10px; }
.pxl-widget-contact p { color: rgba(255,255,255,.85); font-size: 15px; margin-bottom: 18px; }
.pxl-widget-phone { display: block; color: #fff; font-family: var(--pxl-font-head); font-weight: 700; font-size: 22px; margin-bottom: 4px; }
.pxl-widget-phone:hover { color: var(--pxl-orange); }
.pxl-widget-email { display: block; color: rgba(255,255,255,.9); margin-bottom: 22px; }
.pxl-widget-email:hover { color: var(--pxl-orange); }
.pxl-btn-block { display: flex; width: 100%; }
.pxl-widget-contact .pxl-btn { background: var(--pxl-orange); }
.pxl-widget-contact .pxl-btn:hover { background: #fff; color: var(--pxl-blue); }

/* ==========================================================================
   CHECK-CIRCLE ICONS & LISTEN (selbst-enthalten, ohne Font Awesome)
   - i.fa-check-circle wird ueberall durch ein oranges Inline-SVG ersetzt.
   - Unsortierte Listen in CMS-Inhalten (the_content) nutzen den Check-Circle
     automatisch als Aufzaehlungspunkt – global, auch in reinen CMS-Seiten.
   ========================================================================== */
:root {
    --pxl-check-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23FF4F04' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm133 167L233 331c-5 5-13 5-18 0l-92-92c-5-5-5-13 0-18l18-18c5-5 13-5 18 0l65 65 129-129c5-5 13-5 18 0l18 18c5 5 5 13 0 18z'/%3E%3C/svg%3E");
}

/* Explizit gesetzte fa-check-circle-Icons – global */
i.fa-check-circle,
.fa-check-circle,
.pxl-check-list li i {
    display: inline-block;
    font-size: 0 !important;
    width: 18px; height: 18px;
    flex: 0 0 18px;
    margin-top: 3px;
    background-image: var(--pxl-check-svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* CMS-Inhalte: <ul>-Listen erhalten global den Check-Circle als Bullet. */
.pxl-entry-content ul:not(.pxl-check-list),
.pxl-references-intro ul,
.pxl-visit ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
.pxl-entry-content ul:not(.pxl-check-list) > li,
.pxl-references-intro ul > li,
.pxl-visit ul > li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.7;
}
.pxl-entry-content ul:not(.pxl-check-list) > li::before,
.pxl-references-intro ul > li::before,
.pxl-visit ul > li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.28em;
    width: 18px; height: 18px;
    background-image: var(--pxl-check-svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ==========================================================================
   KONTAKT – Kacheln + "Besuchen Sie uns" + Karte
   ========================================================================== */
.pxl-contact-tiles { background-color: #fff; padding-bottom: 40px; }
.pxl-contact-tile {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}
.pxl-contact-tile:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(20,30,60,.12); }
.pxl-contact-tile-media { height: 226px; background-size: cover; background-position: center; }
.pxl-contact-tile-body {
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 0 24px 44px;
    text-align: center;
}
.pxl-contact-tile-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 84px; height: 84px;
    border-radius: 15px;
    background: var(--pxl-orange);
    color: #fff;
    box-shadow: 0 10px 20px rgba(137,151,186,.25);
    margin: -42px auto 22px;
}
.pxl-contact-tile-icon svg { width: 38px; height: 38px; display: block; }
.pxl-contact-tile-icon svg path { fill: #fff; }
.pxl-contact-tile-title { font-size: 22px; margin-bottom: 16px; }
.pxl-contact-tile-list { list-style: none; margin: 0; padding: 0; text-align: left; display: inline-block; }
.pxl-contact-tile-list li { padding: 6px 0; font-size: 15px; color: var(--pxl-text); }
.pxl-contact-tile-list .lbl { font-family: var(--pxl-font-head); font-weight: 600; color: var(--pxl-heading); display: inline-block; min-width: 64px; }
.pxl-contact-tile-list a { color: var(--pxl-text); }
.pxl-contact-tile-list a:hover { color: var(--pxl-orange); }

.pxl-visit { background-color: var(--pxl-light); }
.pxl-visit-intro { margin: 16px auto 0; max-width: 680px; }

/* Allgemeine Kontaktinfos – zentrierte Reihe oberhalb der Karte */
.pxl-visit-info {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 30px 56px;
    margin: 44px 0 40px;
}
.pxl-visit-info-item { display: flex; align-items: flex-start; gap: 14px; text-align: left; }
.pxl-visit-info-icon {
    width: 46px; height: 46px; flex: 0 0 46px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,79,4,.1);
    color: var(--pxl-orange);
    font-size: 18px;
}
.pxl-visit-info-item h4 { font-size: 18px; margin: 0 0 4px; }
.pxl-visit-info-item h4.pxl-visit-info-sub { margin-top: 16px; }
.pxl-visit-info-item p { margin: 0; line-height: 1.6; }
.pxl-visit-info-item a { color: var(--pxl-heading); font-family: var(--pxl-font-head); font-weight: 600; }
.pxl-visit-info-item a:hover { color: var(--pxl-orange); }

.pxl-map { border-radius: 14px; overflow: hidden; box-shadow: 0 14px 38px rgba(20,30,60,.1); line-height: 0; }
.pxl-map iframe { display: block; width: 100%; }

/* Kontaktformular: Honeypot (versteckt) + Statusmeldungen */
.pxl-hp { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.pxl-form-status { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-family: var(--pxl-font-head); font-weight: 600; }
.pxl-form-status--success { background: #e7f6ec; color: #1c7c3f; border: 1px solid #b6e2c4; }
.pxl-form-status--error,
.pxl-form-status--captcha { background: #fdecec; color: #b3261e; border: 1px solid #f3c4c0; }
.captchafox { margin-bottom: 4px; }

.pxl-info-icon-img {
    position: relative;
    z-index: 1;
    width: 22px;
    height: auto;
    display: block;
    animation: pxl_phone_ring 1.8s ease-out infinite;
    transform-origin: center;
}

.service-contact-box {
    z-index: 2;
    position: relative;
}

.urgent-note {
    padding: 100px 20px 20px 20px;
    color: #fff;
    background-color: var(--pxl-orange);
    font-weight: bold;
    text-align: center;
}

.lang-picker {
    /* --- Anpassbare Tokens --- */
    --lp-bg: #ffffff;
    --lp-bg-hover: #f4f5f7;
    --lp-border: #d9dce1;
    --lp-text: #1f2733;
    --lp-muted: #6b7280;
    --lp-accent: #2563eb;
    --lp-radius: 10px;
    --lp-shadow: 0 8px 24px rgba(20, 28, 45, 0.12);

    position: relative;
    display: inline-block;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* --- Auslöser-Button (zeigt die aktuelle Sprache) --- */
.lang-picker__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    margin: 0;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--lp-text);
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.lang-picker__toggle:hover {
    background: var(--lp-bg-hover);
}

.lang-picker__toggle:focus-visible {
    outline: 2px solid var(--lp-accent);
    outline-offset: 2px;
}

.lang-picker__flag {
    display: block;
    width: 22px;
    height: 16px;
    border-radius: 3px;
    flex: 0 0 auto;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-picker__code {
    letter-spacing: 0.03em;
}

.lang-picker__chevron {
    width: 14px;
    height: 14px;
    color: var(--lp-muted);
    transition: transform 0.2s ease;
}

.lang-picker[data-open="true"] .lang-picker__chevron {
    transform: rotate(180deg);
}

/* --- Dropdown-Liste --- */
.lang-picker__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 100%;
    margin: 0;
    padding: 4px;
    list-style: none;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    z-index: 100;

    /* Geschlossen-Zustand */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.lang-picker[data-open="true"] .lang-picker__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-picker__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text);
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    border: 0;
    border-radius: calc(var(--lp-radius) - 4px);
    cursor: pointer;
}

.lang-picker__menu li {
    list-style: none;
}

.lang-picker__option:hover {
    background: var(--lp-bg-hover);
}

.lang-picker__option:focus-visible {
    outline: 2px solid var(--lp-accent);
    outline-offset: -2px;
}

.lang-picker__option[aria-current="true"] {
    color: var(--lp-accent);
}

.lang-picker__option-code {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.lang-picker__option-name {
    color: var(--lp-muted);
    font-size: 13px;
    margin-left: auto;
    padding-left: 12px;
}

.lang-picker__option[aria-current="true"] .lang-picker__option-name {
    color: var(--lp-accent);
    opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
    .lang-picker__menu,
    .lang-picker__chevron {
        transition: none;
    }
}