@charset "UTF-8";
:root {
    --primary: #143d4c;
    --accent: #f26d17;
    --third: #004756;
    --border: #e6eef2;
    --text: #0f2a33;
    --back: #f0f4f8;
    --card: #ffffff;
    --color-line: #e3e9ec;
    --color-text: #10242c;
    --color-text-muted: #5a6b73;
    --shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .06);
    --shadow1: 0 18px 40px rgba(0,0,0,.08);
	   --color-primary: #143d4c;
    --color-primary-dark: #0d2933;
    --color-primary-light: #1d5468;
    --color-accent: #f26d17;
    --color-accent-dark: #d95c0e;
    --color-accent-text: #c2530d;
    --color-ink: #10242c;
    --color-text: #10242c;
    --color-text-muted: #5a6b73;
    --color-line: #e3e9ec;
    --color-border: #e3e9ec;
    --color-back: #f6f8f9;
    --color-back-strong: #eef2f4;
    --color-card: #ffffff;
    --shadow-sm: 0 1px 2px rgba(16, 36, 44, 0.06);
    --shadow-md: 0 4px 14px rgba(16, 36, 44, 0.09);
    --shadow-lg: 0 16px 40px rgba(16, 36, 44, 0.12);
    --font-family-base: system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --container-max: 1200px;
    --section-space: clamp(3.5rem, 2.4rem + 4vw, 6.5rem);
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px
	
}

*, ::before, ::after {
    box-sizing: border-box;
}

html {
    text-size-adjust: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    min-height: 100vh;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

a {
    color: #143d4c;
    text-decoration: none;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: 0px;
    cursor: pointer;
    padding: 0px;
}

ul, ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.hidden {
    display: none !important;
}

h1, h2, h3 {
    margin: 0px;
    color: var(--primary);
    line-height: 1.2;
}
main section h3 {
    margin-bottom: 10px;
}

p {
    margin: 12px 0 12px;
    line-height: 1.7;
    color: #4b535b;
    text-align: justify;
    font-size: 16px;
}

main p:last-child {
}

.ablauf-schritten {
    background: rgb(240, 244, 248);
}

.container {
    width: 100%;
    max-width: 1440px;
    margin-inline: auto; padding-inline: 16px; min-width: 0px;
}

.split {
    display: grid;
    gap: 20px;
    align-items: start;
    min-width: 0px;
}

.split > * {
    min-width: 0px;
}

main section {
    padding-block: 40px;
    }

main > section.hero {
    background: rgb(240, 244, 248);
}

:is(.ablauf-schritten, .unser-vorteile, .services, .faq, .standorte, .kundenbewertungen) {
}

:is(.ablauf-schritten, .unser-vorteile, .services) > .container > p {
}

.unser-vorteile {
    background: rgb(240, 244, 248);
}

.btn-primary,
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 7px;
    text-decoration: none;
    transition: background .2s ease;
}

a.btn-primary:focus-visible,
a.btn-outline-dark:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary, .btn-accept {
    background: var(--accent);
    color: rgb(255, 255, 255);
}

.btn-primary:hover, .btn-accept:hover {
    background: #143d4c;
}

.btn-primary:hover {
    box-shadow: rgba(255, 112, 32, 0.35) 0px 4px 14px;
}

.btn-secondary, .btn-outline-dark, .btn-reject {
    background: rgb(255, 255, 255);
    color: var(--text);
    border: 1px solid rgb(207, 216, 220);
    box-shadow: rgba(0, 61, 77, 0.08) 0px 1px 3px;
}

.btn-secondary:hover, .btn-outline-dark:hover, .btn-reject:hover {
    box-shadow: 0 3px 8px rgba(20, 61, 76, .05), 0 10px 24px rgba(20, 61, 76, .09);
    transform: translateY(-1px);
}

.btn-outline-dark:hover, .btn-reject:hover {
    border-color: #143d4c;
}
.btn-outline-dark {
    color: var(--primary);
    border-color: rgba(0, 61, 77, 0.22);
}

.btn-primary i {
    margin-right: 8px;
}

.btn-primary:hover, .btn-outline-dark:hover {
    text-decoration: none;
}

.btn-outline-dark i {
    margin-right: 8px;
}

.btn-reject, .btn-accept {
    min-height: 40px;
    padding-inline: 16px; }

:is(.ablauf-grid > div, .bewertung-track > li, .ss-item, .faq details, .leistungen-karte) {
background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 238);
    border-radius: 8px;
    box-shadow: rgba(0, 61, 77, 0.04) 0px 1px 2px;
}
.faq .container { max-width: 900px; margin-inline: auto; text-align: center; }
:is(.ss-item, .faq details) {
    overflow: hidden;
    margin-bottom: 8px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    direction: ltr;
    text-align: left;
}

.checklist li {
    position: relative;
    padding-left: 24px;
    line-height: 1.55;
    color: rgb(92, 102, 112);
}

.checklist li::after {
    content: "\E809";
    font-family: Icons;
    font-weight: 900;
    position: absolute;
    left: 0px;
    top: 7px;
    font-size: 14px;
    line-height: 1;
    color: var(--accent);
}

ol.checklist {
    counter-reset: n 0;
}

ol.checklist li {
    counter-increment: n 1;
    padding-left: 28px;
}

ol.checklist li::before {
    content: counter(n) ".";
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

ol.checklist li::after {
    display: none;
}

.icon {
    width: 46px;
    object-fit: contain;
}

.site-header {
    position: sticky;
    top: 0px;
    z-index: 100;
    --header-h: 96px;
}

.nav-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 14px;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(226, 232, 238);
    box-shadow: rgba(0, 61, 77, 0.055) 0px 6px 24px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.logo img {
    max-height: 48px;
    max-width: 150px;
    object-fit: contain;
}

/* ============================================
   Navigation
   ============================================ */

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: var(--primary);
    z-index: 30;
}


.menu-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-link,
.dropdown > button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 48px;
    padding: 0 12px;
    font-size: 16px;
    color: #143d4c;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-decoration: none;
}

.menu-link[aria-current="page"] {
    font-weight: 600;
    color: var(--primary);
}

.menu-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    width: 55%;
    height: 3px;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    background: var(--accent);
    border-radius: 4px;
}

:is(.menu-link, .dropdown > button):is(:hover, :focus-visible) {
    color: var(--accent);
}

.menu-link:hover,
.menu-link:focus-visible,
.dropdown > button:hover,
.dropdown > button:focus-visible {
    color: var(--accent);
}
/* ==========================
   Dropdown base
========================== */

.dropdown {
    position: relative;
}


/* Arrow */

/* .dropdown > button::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 8px;
    margin-top: -3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: .2s ease;
}

.dropdown.is-open > button::after {
    margin-top: 2px;
    transform: rotate(-135deg);
}*/


/* ==========================
   Desktop
========================== */

@media (min-width:993px){

    .dropdown > ul {

        position:absolute;
        top:100%;
        left:0;

        width:260px;
        max-height:420px;

        margin:0;
        padding:6px 0;

        overflow-y:auto;
        overflow-x:hidden;

        list-style:none;

        background:#fff;
        border:1px solid #e2e8ee;
        border-radius:8px;

        box-shadow:0 10px 32px rgba(0,61,77,.14);

        /* closed */
        display:none;
    }


    /* open */

    .dropdown.is-open > ul {
        display:block;
    }


    .dropdown > ul li {
        margin:0;
    }


    .dropdown > ul a {

        display:flex;
        align-items:center;

        min-height:44px;
        padding:8px 16px;

        color:var(--primary);
        text-decoration:none;
    }


    .dropdown > ul a:hover,
    .dropdown > ul a:focus-visible {color: #ffffff;}

}



/* ==========================
   Mobile
========================== */

@media(max-width:992px){

    .nav-toggle{
        display:flex;
    }


    .menu-list{
        display:none;
    }


    .site-header.is-open .menu-list{

        display:flex;
        flex-direction:column;
        align-items:stretch;
    }


    .dropdown > ul{

        position:static;

        display:none;

        width:auto;

        margin:0 0 8px;

        padding:0 0 8px 12px;

        list-style:none;

        border-left:2px solid rgba(0,61,77,.12);

    }


    .dropdown.is-open > ul{
        display:block;
    }


    .dropdown > ul a{

        display:block;

        min-height:42px;

        padding:8px 12px;
    }

}
.btn-o {
    background: #f26d17;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 13.5px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    transition: background 0.25s ease, transform 0.25s ease;
}

.btn-o:hover {
    background: #143d4c;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(242, 109, 23, .18), 0 12px 26px rgba(242, 109, 23, .16);
}
.uu-trust {
    background: rgb(20, 61, 76);
    padding: 16px 0px;
}

.uu-trust ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 18px;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.uu-trust li {
    color: rgb(255, 255, 255);
    font-size: 0.88rem;
    font-weight: 600;
}

.uu-trust li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgb(242, 109, 23);
    margin-right: 9px;
    font-size: 0.7rem;
    font-weight: 800;
    vertical-align: 1px;
}

.breadcrumb-nav {
    padding-block:20px 0}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1rem;
    color: var(--color-text-muted)
}

.breadcrumb li {
    display: flex;
    align-items: center
}

.breadcrumb li:not(:last-child)::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-inline:12px;border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    opacity: .5
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    transition: color 150ms ease-out
}

.breadcrumb a i {
    font-size: 1em
}

.breadcrumb a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px
}

.breadcrumb-current {
    color: var(--color-primary);
    font-weight: 600
}
.breadcrumb-nav {
    padding-block:20px 0}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1rem;
    color: var(--color-text-muted)
}

.breadcrumb li {
    display: flex;
    align-items: center
}

.breadcrumb li:not(:last-child)::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-inline:12px;border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    opacity: .5
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    transition: color 150ms ease-out
}

.breadcrumb a i {
    font-size: 1em
}

.breadcrumb a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px
}

.breadcrumb-current {
    color: var(--color-primary);
    font-weight: 600
}
.kv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.15s;
}

.kv-btn:active {
    transform: scale(0.98);
}

.kv-btn--orange {
    background: rgb(242, 109, 23);
    color: rgb(255, 255, 255);
}

.kv-btn--dark {
    background: rgb(20, 61, 76);
    color: rgb(255, 255, 255);
}

.kv-btn--orange:hover {
    background: #143d4c;
    transform: translateY(-2px);
    box-shadow: rgba(242, 109, 23, 0.25) 0px 8px 20px;
}

.kv-btn--dark:hover {
    background: #f26d17;
    transform: translateY(-2px);
    box-shadow: rgba(20, 61, 76, 0.25) 0px 8px 20px;
}

.kv-btn--orange:hover, .kv-btn--dark:hover {
    text-decoration: none;
}

.kv-btn:focus-visible {
    outline: rgb(242, 109, 23) solid 3px;
    outline-offset: 2px;
}

.kv-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 24px;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: stretch;
}
.docs-grid > * {
    min-width: 0px;
}
.dokumente-title {
    text-align: center;
    padding-left: 0px;
}
.dokumente-title::before {
    display: none;
}
.dokumente-sub {
    text-align: center;
    max-width: 700px;
    margin: 0px auto 30px;
}
.documents-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(221, 231, 236);
    border-radius: 18px;
    box-shadow: rgba(0, 71, 86, 0.05) 0px 10px 28px;
    overflow: hidden;
}
.document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px;
    border-bottom: 1px solid rgb(221, 231, 236);
    transition: background 0.2s;
    min-width: 0;
}
.document-item:last-child {
    border-bottom: none;
}
.document-item:hover {
    background: rgb(248, 251, 252);
}
.document-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 0%;
    min-width: 0;
}
.document-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgb(140, 150, 155);
}
.document-name {
    flex: 1 1 0%;
    min-width: 0;
    color: rgb(45, 45, 45);
    font-size: 16px;
    line-height: 1.5;
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    flex-shrink: 0;
}
.badge.required {
    background: rgba(255, 107, 26, 0.12);
    color: rgb(255, 107, 26);
    border: 1px solid rgba(255, 107, 26, 0.25);
}
.badge.optional {
    background: rgba(0, 124, 137, 0.12);
    color: rgb(0, 124, 137);
    border: 1px solid rgba(0, 124, 137, 0.25);
}

@media (max-width: 640px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
    .document-item {
        flex-wrap: wrap;
        row-gap: 8px;
    }
    .document-name {
        font-size: 15px;
        white-space: normal;
        word-break: break-word;
    }
}

.video-embed {
    position: relative;
    width: 100%.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 24px;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: stretch;
}
.docs-grid > * {
    min-width: 0px;
}
.dokumente-title {
    text-align: center;
    padding-left: 0px;
}
.dokumente-title::before {
    display: none;
}
.dokumente-sub {
    text-align: center;
    max-width: 700px;
    margin: 0px auto 30px;
}
.documents-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(221, 231, 236);
    border-radius: 18px;
    box-shadow: rgba(0, 71, 86, 0.05) 0px 10px 28px;
    overflow: hidden;
}
.document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px;
    border-bottom: 1px solid rgb(221, 231, 236);
    transition: background 0.2s;
    min-width: 0;
}
.document-item:last-child {
    border-bottom: none;
}
.document-item:hover {
    background: rgb(248, 251, 252);
}
.document-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 0%;
    min-width: 0;
}
.document-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgb(140, 150, 155);
}
.document-name {
    flex: 1 1 0%;
    min-width: 0;
    color: rgb(45, 45, 45);
    font-size: 16px;
    line-height: 1.5;
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    flex-shrink: 0;
}
.badge.required {
    background: rgba(255, 107, 26, 0.12);
    color: rgb(255, 107, 26);
    border: 1px solid rgba(255, 107, 26, 0.25);
}
.badge.optional {
    background: rgba(0, 124, 137, 0.12);
    color: rgb(0, 124, 137);
    border: 1px solid rgba(0, 124, 137, 0.25);
}

@media (max-width: 640px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
    .document-item {
        flex-wrap: wrap;
        row-gap: 8px;
    }
    .document-name {
        font-size: 15px;
        white-space: normal;
        word-break: break-word;
    }
}
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: rgb(15, 23, 36);
}

.video-embed, .video-btn {
    min-width: 0px;
}

:is(.video-btn, .video-play) {
    position: absolute;
    inset: 0px;
}

.video-btn {
    width: 100%;
    height: 100%;
    padding: 0px;
    border: 0px;
    cursor: pointer;
    background: transparent;
}

.video-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    font-size: 48px;
    color: rgb(255, 255, 255);
}

.video-embed.is-loaded .video-btn {
    display: none;
}

.video-embed iframe {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    border: 0px;
}

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

@media (max-width: 600px) {
    .document-item {
        gap: 12px;
        padding: 10px;
    }

    .document-name {
        font-size: 14px;
    }

    .badge {
        min-height: 26px;
    }

    .video-play {
        font-size: 38px;
    }
}

.note-box {
    position: relative;
    margin-top: 24px;
    padding: 20px 24px 20px 64px;
    background: rgba(0, 124, 137, 0.08);
    border-top: 1px solid rgba(0, 124, 137, 0.15);
    border-right: 1px solid rgba(0, 124, 137, 0.15);
    border-bottom: 1px solid rgba(0, 124, 137, 0.15);
    border-image: none;
    border-left: 5px solid var(--third);
    border-radius: 16px;
    color: rgb(0, 71, 86);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
}

.note-box::before {
    content: "i";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--third);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .note-box {
        padding: 60px 16px 16px;
    }

    .note-box::before {
        top: 20px;
        left: 20px;
        transform: none;
    }
}

@media (max-width: 720px) {
    .table-card {
        overflow-x: auto;
    }

    .table-card table {
        min-width: 620px;
    }
}

/* ---- Inhaltsübersicht ---- */
.toc{
    background:#ffffff;
    border:1px solid #dde6ea;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin:10px auto;
    margin-top: 10px;
    max-width: 900px;
    box-shadow: 0 6px 24px rgba(20, 61, 76, .06);
}

.toc details{
    margin:0;
}

.toc summary{
    font-size: 16px;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:#5c6f78;
    font-weight:700;
    cursor:pointer;
    margin-bottom:0;
    list-style-position:inside;
    text-align: center;
}

.toc details[open] summary{
    margin-bottom:.9rem;
}

/* Keep native arrow but style it */
.toc summary::marker{
    color:#f26d17;
}

.toc ol{
    list-style:none;
    counter-reset:toc;
    columns:2;
    column-gap:2.5rem;
    margin:0;
    padding:0;
}

.toc li{
    counter-increment:toc;
    margin-bottom: .85rem;
    break-inside:avoid;
    font-size:.95rem;
    line-height:1.5;
}

.toc li::before{
    content:counter(toc,decimal-leading-zero);
    color:#f26d17;
    font-weight:700;
    font-size:.8rem;
    margin-right:.6rem;
}

.toc a{
    color: var(--color-text-muted);
    font-weight:600;
    text-decoration:none;
    text-decoration-thickness:1.5px;
    font-size: 1rem;
    transition:color .15s ease;
}

.toc a:hover{
    color: var(--color-primary);
}

.toc a:focus-visible{
    outline:3px solid #f26d17;
    outline-offset:3px;
    border-radius:3px;
}

@media (max-width:560px){
    .toc ol{
        columns:1;
    }
}

.hero h1 {
    margin-bottom: 12px;
}

.hero > .container > div:first-child > p {
    max-width: 576px;
    margin-bottom: 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    gap: 24px;
    /* width: 100%; */
    max-width: 90%;
    margin: 22px 0px 26px;
    padding: 0px;
    list-style: none;
}

@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-stats .stat {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 238);
    border-radius: 12px;
    padding: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "ic num" "ic lbl";
    gap: 2px 12px;
    align-items: center;
    box-shadow: rgba(0, 61, 77, 0.07) 0px 4px 18px;
    transition: transform 0.22s, border-color 0.22s;
}

.hero-stats .stat:hover {
    transform: translateY(-4px) scale(1.01);
    transition: transform 0.3s ease;
    border-color: rgba(255, 112, 32, 0.28);
    box-shadow: rgba(0, 61, 77, 0.11) 0px 10px 28px;
}

.stat-icon {
    grid-area: ic;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(242, 109, 23, 0.16), rgba(242, 109, 23, 0.06));
    border: 1px solid rgba(242, 109, 23, 0.2);
    display: grid;
    place-items: center;
    font-size: 20px;
}

.hero-stats .stat-icon::before {
    margin: 0px;
    color: var(--accent);
}

.stat-num {
    font-size: 16px;
    color: var(--primary);
}

.stat-label {
    grid-area: lbl;
    font-size: 16px;
    font-weight: 600;
    color: rgb(92, 102, 112);
}

@media (max-width: 768px) {
    .hero-stats {
    }
}

.hero-buttons, .fazit-buttons, div.cta .container > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
}

div.cta .container > div:last-child {
    justify-content: center;
}

.fazit-section .fazit-buttons {
    margin-top: 24px;
}

.hero-bild img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 16px
}

:is(.hero-bild img) {
    margin-inline: auto; }

.fazit-section .split {
}

.ablauf-grid, .vorteile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.ablauf-grid {
    padding-top: 32px;
}

.ablauf-grid > div {
    position: relative;
    padding: 32px 20px 20px;
}

.ablauf-icon {
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-80%, -80%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(207, 216, 220);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ablauf-grid h3 {
    text-align: center;
}

.ablauf-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgb(242, 109, 23);
    color: rgb(255, 255, 255);
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.25s, transform 0.25s;
}

.cta-button:hover {
    background: rgb(20, 61, 76);
    color: rgb(255, 255, 255);
    text-decoration: none;
    transform: translateY(-2px);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
        margin-inline: auto; }
}

.leistungen-karte {
    display: flex;
    flex-direction: column;
    min-width: 0px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.leistungen-karte:hover {
    transform: translateY(-4px) scale(1.01);
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 61, 77, 0.1) 0px 8px 24px;
}

.leistungen-karte > img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.35s;
}

.leistungen-karte:hover > img {
    transform: scale(1.04);
}

.leistungen-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    padding: 15px;
}

.text-link {
    color: #f26d17;
    font-weight: 600;
    transition: color var(--ease);
}
.text-link:hover {
    color: #143d4c;
}
.leistungen-content .text-link {
    margin-top: auto;
    padding-top: 16px;
    align-self: flex-start;
}

h2 {
  width: fit-content;
}

h2:after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin: 10px auto 18px;
  background: var(--accent);
  border-radius: 2px;
}

.leistungen-content h3 {
	margin-top: 8px;
    margin-bottom: 8px;
	transition: .2s ease;
}

.leistungen-content p {
    margin: 0px;
    font-size: 14px;
}
	
.leistungen-karte:hover .leistungen-content h3 {
    /* color: #f26d17; */
}
:is(.vorteile-karte, .vorteile-karte-dark) {
    border: 1px solid rgb(226, 232, 238);
    border-radius: 16px;
    padding: 32px;
}

.vorteile-karte, .vorteile-karte-dark {
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.vorteile-karte:hover, .vorteile-karte-dark:hover, .vorteile-karte:focus-within, .vorteile-karte-dark:focus-within {
    transform: translateY(-4px) scale(1.01);
    transition: transform 0.3s ease;
    box-shadow: var(--ap-shadow-hover);
}

.vorteile-karte-dark {
    background: var(--primary);
}

.vorteile-karte {
    background: rgb(255, 255, 255);
}

.vorteile-karte h3 {
}

.vorteile-karte-dark :is(h3, p) {
    color: rgb(255, 255, 255);
}

:is(.vorteile-karte, .vorteile-karte-dark) > div:first-child {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--primary);
}

.vorteile-karte-dark > div:first-child {
    background: rgb(255, 255, 255);
}

:is(.vorteile-karte, .vorteile-karte-dark) .icon {
    width: 40px;
    height: 40px;
}

.vorteile-karte .icon {
    filter: brightness(0) invert(1);
}

.vorteile-karte-dark .icon {
    filter: brightness(0);
}

div.cta .container {
    padding: 56px 32px;
    background: linear-gradient(90deg, var(--primary), #007896);
    border-radius: 20px;
}

div.cta p {
    color: rgb(255, 255, 255);
}

div.cta .container > p.cta {
    margin: 0px 0px 20px;
    font-size: 26px;
    font-weight: 700;
}

div.cta .btn-primary {
    background: rgb(255, 255, 255);
    color: var(--primary);
}

div.cta .btn-secondary {
    background: transparent;
    color: rgb(255, 255, 255);
}

div.cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.autoverkauf {
    border-bottom: 4px solid rgb(240, 244, 248);
}

.bestepreise .split {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 50px;
    align-items: center;
}

.bestepreise-bild {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .bestepreise .split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bestepreise-bild {
        max-width: 480px;
        margin: 0px auto;
    }
}

:is(.kundenbewertungen, .faq, .fazit-section) {
    border-top: 1px solid rgb(226, 232, 238);
}

.ss-liste {
    display: grid;
    gap: 8px;
}

.ss-item summary {
    padding: 14px 16px;
}

.ss-item .modelle {
    padding: 0px 16px 16px;
}

:is(.standorte, .faq) > .container > div:first-child {
    margin-bottom: 28px;
}

.faq > .container > details[open] {
    box-shadow: inset 3px 0 0 var(--primary);
}

.faq summary {
    min-height: 52px;
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    color: #143d4c;
    list-style: none;
    position: relative;
}
.faq summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid rgb(251, 98, 28);
    border-bottom: 2px solid rgb(251, 98, 28);
    transform: rotate(45deg);
    transition: transform 0.2s;
    font-size: 1.3rem;
    position: absolute;
    right: 1.25rem;
    top: 50%;
}
.faq details p {
    margin: 0px;
    padding: 15px 20px 19px 24px;
    border-top: 1px solid rgb(226, 232, 238);
    font-size: 14px;
    color: rgb(74, 95, 106);
}


.section-head {
    max-width: 720px;
    margin-bottom: 48px
}
 
h2+p,.section-head h1+p {
    margin-top: 16px
}
 
.city-pills {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px
}
 
@media(min-width: 560px) {
    .city-pills {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}
 
@media(min-width: 768px) {
    .city-pills {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}
 
@media(min-width: 992px) {
    .city-pills {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        /* gap: 12px; */
    }
}
 

.city-pills a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding-inline: 20px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: var(--color-card);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-ink);
    transition: transform 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out, background-color 150ms ease-out, box-shadow 150ms ease-out
}
 
.city-pills a i {
    color: var(--color-accent);
    transition: color 150ms ease-out
}
 
.city-pills a:hover {
    transform: translateY(-4px) scale(1.01);
    transition: transform 0.3s ease;;
    border-color: var(--color-accent);
    box-shadow: 0 12px 24px rgba(242, 109, 23, .14);
    color: var(--color-accent);
    background: #fff8f3
}
 
.city-pills a:hover i {
    color: var(--color-accent)
}
 
@media(prefers-reduced-motion: reduce) {
    .city-pills a {
        transition: border-color 150ms ease-out, color 150ms ease-out, background-color 150ms ease-out, box-shadow 150ms ease-out
    }
 
    .city-pills a:hover {
        transform: none
    }
}
 
.city-pills a.is-current {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
    font-weight: 600
}
 
.city-pills a.is-current i {
    color: #fff
}
.city-pills.is-collapsed li:nth-child(n + 21) {
    display: none
}

#city-list-toggle i {
    transition: transform 150ms ease-out
}

#city-list-toggle[aria-expanded="true"] i {
    transform: rotate(180deg)
}



.bewertungssterne {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.bewertungssterne span:first-child,
.bewertung-sterne {
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 700;
}

.bewertungssterne span:first-child {
    font-size: 22px;
}

.bewertung-slider {
    width: 100%;
    margin-top: 16px;
}

.bewertung-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    align-items: stretch;
    padding: 4px 16px 8px;
    scrollbar-width: none;
}

.bewertung-track::-webkit-scrollbar {
    display: none;
}

.bewertung-track > li {
    flex: 0 0 min(352px, calc(100vw - 32px));
    display: flex;
    scroll-snap-align: start;
}

.bewertung-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 22px;
}

.bewertung-sterne {
    font-size: 18px;
    margin-bottom: 12px;
}

.bewertung-track blockquote {
    margin: 0;
    padding-bottom: 16px;
}

.bewertung-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
    border-top: 1px solid rgb(226, 232, 238);
}

.bewertung-author > span:first-child {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background: rgb(240, 244, 248);
    border: 1px solid rgb(226, 232, 238);
}

.kundenstandort {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgb(148, 163, 184);
}
/* Floating contact buttons */
.floating-actions {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common style */
.floating-actions a{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    color: var(--card);
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

/* Hover */
.floating-actions a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    filter: brightness(1.08);
}

.floating-actions a:active {
    transform: translateY(0) scale(1);
}

.floating-actions a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* Phone */
.floating-actions .phone{
    background: #164da8;
}

/* WhatsApp */
.floating-actions .whatsapp{
    background: #25d366;
}

/* Form / Bewertung */
.floating-actions .form-link{
    background: #f26d17;
}

/* Font Awesome icons */
.floating-actions i{
    line-height:1;
}

/* Mobile */
@media(max-width:768px){
    .floating-actions{
        right: 5px;
        bottom: 20px;
        gap:10px;
    }

    .floating-actions a{
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
.cookie-container {
    position: fixed;
    inset: auto 0px 0px;
    z-index: 9999;
    padding: 16px;
    background: rgb(20, 61, 76);
    color: rgb(255, 255, 255);
    box-shadow: rgba(20, 61, 76, 0.35) 0px -6px 24px;
    animation: 0.35s ease-out 0s 1 normal none running cb-up;
}

.cookie-container[hidden] {
    display: none;
}

@keyframes cb-up {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-container {
        animation: none;
    }
}

.cookie-content {
    max-width: 1140px;
    margin: 0px auto;
    display: grid;
    gap: 12px;
}

.cookie-title {
    margin: 0px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.cookie-desc p {
    margin: 0px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-desc a {
    color: rgb(242, 109, 23);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-desc a:hover {
    color: rgb(255, 255, 255);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-buttons button {
    flex: 1 1 auto;
    min-height: 44px;
    padding: 10px 22px;
    border: 2px solid;
    border-radius: 8px;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-buttons button:active {
    transform: scale(0.98);
}

.cookie-buttons button:focus-visible, .cookie-desc a:focus-visible {
    outline: rgb(242, 109, 23) solid 3px;
    outline-offset: 2px;
}

.btn-accept {
    background: rgb(242, 109, 23);
    border-color: rgb(242, 109, 23);
    color: rgb(255, 255, 255);
}

.btn-accept:hover {
    background: rgb(217, 92, 13);
    border-color: rgb(217, 92, 13);
}

.btn-reject {
    background: transparent;
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.btn-reject:hover {
    background: rgb(255, 255, 255);
    color: rgb(20, 61, 76);
}

@media (min-width: 768px) {
    .cookie-container {
        padding: 20px 24px;
    }

    .cookie-content {
        grid-template-columns: 1fr auto;
        grid-template-areas: "title buttons" "desc buttons";
        align-items: center;
        column-gap: 32px;
    }

    .cookie-title {
        grid-area: title;
    }

    .cookie-desc {
        grid-area: desc;
    }

    .cookie-buttons {
        grid-area: buttons;
        flex-direction: column;
    }

    .cookie-buttons button {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (min-width: 520px) {
    .bewertung-track > li {
        flex-basis: calc(-24px + 50vw);
    }
}

@media (min-width: 640px) {
    .ss-liste {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    :is(.container, .footer-container, .page-toc > summary, .page-toc nav, .bewertung-track) {
        padding-inline: 24px;
    }

    main section {
        /* padding-block: 64px; */
        }

    .split {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero .split {
        align-items: center;
    }

    .ss-liste {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }

    main h1 {
        font-size: 34px;
    }

    main section h2 {
        font-size: 26px;
    }

    .bewertung-track > li {
        flex-basis: calc(0.333333 * (-80px + min(1440px, 100vw)));
    }
}

@media (min-width: 1200px) {
    :is(.container, .footer-container, .page-toc > summary, .page-toc nav, .cookie-container, .bewertung-track) {
        padding-inline: 24px;
    }

    main section {
        padding-block: 72px; }

    main h1 {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 122;
    }

    .site-header.is-open {
        z-index: 121;
    }

    .menu {
        position: fixed;
        inset: 0px 0px 0px auto;
        z-index: 120;
        width: min(320px, 88vw);
        height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: calc(12px + env(safe-area-inset-top, 0px)) 16px calc(16px + env(safe-area-inset-bottom, 0px));
        background: rgb(255, 255, 255);
        border-left: 1px solid rgb(226, 232, 238);
        box-shadow: rgba(0, 61, 77, 0.14) -8px 0px 32px;
        overflow: hidden;
        transform: translateX(100%);
        transition: transform 0.28s;
        overscroll-behavior: contain;
    }

    .site-header.is-open .menu {
        transform: translateX(0px);
    }

    .site-header.is-open::before {
        content: "";
        position: fixed;
        inset: 0px;
        z-index: 119;
        background: rgba(15, 23, 36, 0.4);
    }

    .menu-list {
        flex: 1 1 auto;
        flex-flow: column;
        align-items: stretch;
        place-content: flex-start;
        gap: 0px;
        min-height: 0px;
        overflow: hidden auto;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
    }

    .menu-list > li {
        flex-shrink: 0;
        border-bottom: 1px solid rgb(226, 232, 238);
    }

    .menu-link, .dropdown > button {
        width: 100%;
        min-height: 48px;
        padding: 14px 0px;
        font-size: 16px;
    }

    .dropdown > ul {
        position: static;
        max-height: min(16rem, 42dvh);
        margin: 0px 0px 8px;
        padding: 0px 0px 8px 12px;
        border: 0px;
        border-radius: 0px;
        box-shadow: none;
        overflow: hidden auto;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
    }

    .dropdown.is-open > ul {
        border-left: 2px solid rgba(0, 61, 77, 0.12);
    }

    .dropdown > ul a {
        padding: 5px;
    }
}

@media (max-width: 900px) {
    .hero .split, .fazit-section .split {
        text-align: center;
    }

    .hero > .container > div:first-child > p, .hero-stats {
        margin: 22px 0px 26px;
    }

    .hero-buttons, .fazit-buttons {
        justify-content: center;
    }

    .hero-stats .stat {
        grid-template-columns: auto auto 1fr;
        grid-template-areas:
            "ic num lbl";
    }

    .hero-stats .stat-icon {
        grid-area: ic;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(145deg, rgba(242, 109, 23, 0.16), rgba(242, 109, 23, 0.06));
        border: 1px solid rgba(242, 109, 23, 0.2);
        display: grid;
        place-items: center;
        font-size: 19px;
        color: rgb(242, 109, 23);
    }

    .stat-num::after {
        margin-inline: auto; }

    .hero-bild, .fazit-image {
        order: -1;
    }

    :is(.ablauf-grid, .vorteile-grid, .services > .container) {
        grid-template-columns: 1fr;
        max-width: 448px;
        margin-inline: auto; }
}

@media (max-width: 520px) {
    .hero-buttons, div.cta .container > div:last-child, .fazit-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons [class^="btn-"], div.cta [class^="btn-"], .fazit-buttons [class^="btn-"] {
        width: 100%;
        max-width: 352px;
        margin-inline: auto; }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        /* width: 60%; */
    }

    .hero-stats .stat {
        flex-flow: wrap;
        align-items: center;
        text-align: left;
        /* gap: 12px 14px; */
        /* padding: 14px 16px; */
    }

    .hero-stats .stat-icon {
        margin-inline: 0px; }

    .hero-stats .stat-num {
        flex: 1 1 0%;
        min-width: 0px;
    }

    .hero-stats .stat-label {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.services {
    background: rgb(255, 255, 255);
}

.automarken {
    padding: 64px 0px;
    background: rgb(240, 244, 248);
}

.automarken-intro {
    margin: 0px 0px 32px;
    color: rgb(61, 90, 102);
    line-height: 1.7;
}

.automarken-liste {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .automarken-liste {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .automarken-liste {
        grid-template-columns: repeat(4, 1fr);
    }
}

.automarken-liste li {
    align-self: start;
}

.automarken-item {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(219, 229, 233);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.automarken-item:hover {
    border-color: rgb(20, 61, 76);
}

.automarken-item[open] {
    border-color: rgb(242, 109, 23);
    box-shadow: rgba(20, 61, 76, 0.12) 0px 6px 18px;
}

.automarken-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    font-weight: 600;
    color: rgb(20, 61, 76);
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}

.automarken-item summary:hover {
    color: rgb(242, 109, 23);
}

.automarken-item summary::-webkit-details-marker {
    display: none;
}

.automarken-item summary {
    list-style: none;
}

.automarken-item summary::after {
    content: "+";
    flex: 0 0 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgb(20, 61, 76);
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.25s, background-color 0.25s;
}

.automarken-item[open] summary::after {
    content: "+";
    transform: rotate(45deg);
    background: rgb(242, 109, 23);
}

.automarken-item[open] summary {
    color: rgb(242, 109, 23);
    border-bottom: 1px solid rgb(244, 217, 196);
}

.automarken-item .modelle {
    margin: 0px;
    padding: 14px 18px 18px;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgb(61, 90, 102);
    animation: 0.3s ease 0s 1 normal none running marken-fade;
}

@keyframes marken-fade {
    0% {
        opacity: 0;
        transform: translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .automarken-item .modelle {
        animation: none;
    }
}

.automarken-item summary:focus-visible {
    outline: rgb(242, 109, 23) solid 3px;
    outline-offset: -3px;
    border-radius: 10px;
}

.automarken-liste li:last-child .automarken-item {
    background: rgb(20, 61, 76);
    border-color: rgb(20, 61, 76);
}

.automarken-liste li:last-child summary {
    color: rgb(255, 255, 255);
}

.automarken-liste li:last-child summary:hover, .automarken-liste li:last-child .automarken-item[open] summary {
    color: rgb(242, 109, 23);
}

.automarken-liste li:last-child .modelle {
    color: rgba(255, 255, 255, 0.85);
}

.automarken-liste li:last-child .automarken-item[open] summary {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}



/* ===== Shared summary/accordion toggle icon (applies to .brand-card summary too) ===== */
.brands {
    background: rgb(240, 244, 248);
}
.accordion summary,
.brand-card summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 40px;
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 150ms ease-out
}

.accordion summary::-webkit-details-marker,
.brand-card summary::-webkit-details-marker {
    display: none
}

.accordion summary:hover,
.brand-card summary:hover {
    color: var(--color-accent-text)
}

.accordion summary:focus-visible,
.brand-card summary:focus-visible {
    outline: 2px solid #143d4c;
    outline-offset: 2px;
    outline-offset: -2px
}

.accordion summary::before,
.accordion summary::after,
.brand-card summary::before,
.brand-card summary::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 200ms ease-out
}

.accordion summary::before,
.brand-card summary::before {
    transform: translateY(-50%)
}

.accordion summary::after,
.brand-card summary::after {
    transform: translateY(-50%) rotate(90deg)
}

.accordion details[open]>summary::after,
.brand-card details[open]>summary::after {
    transform: translateY(-50%) rotate(0deg)
}

@media (prefers-reduced-motion: reduce) {
    .accordion summary::before,
    .accordion summary::after,
    .brand-card summary::before,
    .brand-card summary::after {
        transition: none
    }
}

/* ===== Brand grid (the collapsible card layout) ===== */
.brand-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr)
}

@media (min-width: 640px) {
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width: 992px) {
    .brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

/* Collapsed state: only show the first N cards, per breakpoint */
.brand-grid.is-collapsed>li {
    display: none
}

.brand-grid.is-collapsed>li:nth-child(-n+5) {
    display: block
}

@media (min-width: 640px) {
    .brand-grid.is-collapsed>li:nth-child(-n+8) {
        display: block
    }
}

@media (min-width: 992px) {
    .brand-grid.is-collapsed>li:nth-child(-n+9) {
        display: block
    }
}

/* ===== Individual brand card ===== */
.brand-card {
    background: #fff;
    border: 1px solid #e3e9ec;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(16,36,44,.05), 0 2px 8px rgba(16,36,44,.04);
    transition: border-color 200ms ease-out, box-shadow 200ms ease-out, background-color 200ms ease-out;
    padding-inline: 24px;
    align-self: start
}

.brand-card:hover {
    border-color: rgba(20,61,76,.28);
    box-shadow: 0 4px 14px rgba(16,36,44,.09)
}

.brand-card summary {
    padding-block: 16px;
    font-size: 1rem
}

.brand-card .accordion-body {
    padding-bottom: 20px;
    border-top: 1px solid var(--color-line)
}

.brand-card .accordion-body p {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.65
}

/* ===== Section wrapper used around the grid ===== */
.section-head {
    max-width: 720px;
    margin-bottom: 48px
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px
}

/* ===== "Show all brands" toggle button ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    border: 1px solid rgba(0,0,0,0);
    border-radius: 999px;
    text-decoration: none;
    max-width: 100%;
    text-align: center;
    text-wrap: balance;
    cursor: pointer;
    transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out
}

.btn:focus-visible {
    outline: 2px solid #143d4c;
    outline-offset: 2px
}

.btn-outline {
    background: rgba(0,0,0,0);
    border-color: rgba(20,61,76,.25);
    color: var(--color-primary)
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: var(--color-back)
}





@media (max-width: 900px) {
    .uu-trust ul {
        justify-content: flex-start;
    }

    .kv-hero__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .uu-trust ul {
        flex-direction: column;
        gap: 8px;
    }

    .kv-hero__btns .kv-btn {
        flex: 1 1 100%;
    }
}

.stadt-info {
    padding: 20px;
}

.stadt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card {
    background: var(--card);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgb(11, 61, 74), rgb(251, 98, 28));
}

.stadt-info {
    padding-block: 72px; background: rgb(240, 244, 248);
    margin-top: 20px;
}

.stadt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card {
    background: var(--card);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgb(20, 61, 76), rgb(242, 109, 23));
}

.card-header svg, .card-header i {
    display: inline-flex;
    align-items: center;
    align-self: center;
}

.table-wrap {
    height: 380px;
    overflow: hidden auto;
    display: block;
    scroll-behavior: smooth;
    padding-right: 4px;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
}

thead th {
    text-align: left;
    padding: 14px 16px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgb(247, 251, 253);
    border-bottom: 1px solid var(--border);
}

tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

tbody tr:hover {
    /* background: rgb(248, 252, 253); */
}

.info-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s;
}

.info-table tr:hover {
    background: rgb(253, 252, 251);
}

.info-table th {
    width: 50%;
    font-weight: 600;
    color: var(--primary);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    text-align: left;
}

.info-table th i {
    color: var(--accent);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.info-table td {
    width: 50%;
    padding: 14px 16px;
    vertical-align: middle;
    box-sizing: border-box;
}

.info-table a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.info-table a:hover {
    text-decoration: none;
}

.info-table a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: none;
}

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

.staedte a::before {
    font-family: icons;
    font-weight: 900;
    content: "\f3c5";
    font-size: 0.85em;
    color: rgb(251, 98, 28);
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: 5px;
}

.standorte-regionen {
    margin-top: 26px;
}

.standorte-regionen .staedte {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.standorte-regionen .staedte li a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 16px;
    color: var(--primary, #003d4d);
    background: rgb(255, 255, 255);
    border: 1px solid var(--border, #dde7ec);
    box-shadow: rgba(0, 71, 86, 0.04) 0px 8px 18px;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s;
}

.standorte-regionen .staedte li a:hover {
    transform: translateY(-2px);
    border-color: #f26d17;
    box-shadow: 0 12px 24px rgba(242, 109, 23, .14);
    color: #f26d17;
    background: #fff8f3;
}
.standorte-regionen .staedte li a:active {
    transform: translateY(0px);
}

@media (max-width: 720px) {
    .standorte-regionen .staedte {
        gap: 10px;
    }

    .standorte-regionen .staedte li a {
        font-size: 16px;
        padding: 9px 14px;
    }
}

.faq {
    padding: 64px 0px;
    background: rgb(240, 244, 248);
}

:root {
    --ap-primary: #143d4c;
    --ap-primary-dark: #143d4c;
    --ap-ink: #143d4c;
    --ap-body: #0f2a33;
    --ap-surface: #ffffff;
    --ap-border: #e6eef2;
    --ap-radius: 16px;
    --ap-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(242, 109, 23, .12);
    --ap-shadow-hover: 0 2px 4px rgba(15, 23, 42, .05), 0 16px 40px rgba(242, 109, 23, .12);
}

.ap-section {background: rgb(240, 244, 248);
}
	
.ap-header {
    margin: 30px auto;
}

.ap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    gap: 40px;
}

.ap-card {
    border-top: 4px solid transparent;
    position: relative;
    min-width: 0px;
    background: var(--ap-surface);
    border-radius: 16px;
    padding: clamp(24px, 3vw, 32px);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.ap-card:hover, .ap-card:focus-within {
    transform: translateY(-4px) scale(1.01);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(15, 23, 42, .05), 0 16px 40px rgba(242, 109, 23, .12);
    border-top-color: #f26d17;
}

.ap-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ap-step {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: rgba(242, 109, 23, 0.12);
    color: #a8420a;
    border-radius: 14px;
    font-size: 30px;
    font-weight: 700;
}
.ap-card:hover .ap-step {
    background: #f26d17;
    color: #ffffff;
}
.ap-card h3 {
    margin: 0px;
    font-size: 18px;
    line-height: 1.3;
    color: var(--ap-ink);
}

.ap-card p {
    margin: 0px;
    font-size: 16px;
}

.case-heading {
    margin-top: 45px;
    margin-bottom: 15px;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.3;
}


.ap-cases {
    display: grid;
    gap: 24px;
}
 
@media (min-width: 640px) {
    .ap-cases {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
 
@media (min-width: 992px) {
    .ap-cases {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 40px;
    }
}
 
.ap-case {
    background: #fff;
    border: 1px solid #e3e9ec;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(16,36,44,.05), 0 2px 8px rgba(16,36,44,.04);
    transition: border-color 200ms ease-out, box-shadow 200ms ease-out, background-color 200ms ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
 
.ap-case:hover {
    border-color: rgba(20,61,76,.28);
    box-shadow: 0 4px 14px rgba(16,36,44,.09);
}
 
.ap-case img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
 
.ap-case-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 24px;
}
 
.ap-case-content h4 {
    margin-bottom: 16px;
}
 
.spec-list {
    margin: 0 0 20px;
    font-size: 1rem;
}
 
.spec-list > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-block: 8px;
    border-bottom: 1px solid var(--color-line);
}
 
.spec-list dt {
    color: var(--color-text-muted);
}
 
.spec-list dd {
    margin: 0;
    font-weight: 600;
    color: var(--color-ink);
    text-align: right;
}
 
.ap-case-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}
 
.ap-case-price strong {
    font-size: 16px;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}
 
.ap-case-price span {
    font-size: 14px;
    color: rgb(66 86 92);
    background: rgb(238, 246, 248);
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.ap-summary {
    margin-top: clamp(32px, 4vw, 48px);
    background: linear-gradient(135deg, rgb(20, 61, 76), rgb(242, 109, 23));
    border-radius: var(--ap-radius);
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

.ap-summary-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.ap-summary-check {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgb(255, 255, 255);
    font-size: 24px;
}

.ap-summary strong {
    display: block;
    color: rgb(255, 255, 255);
    font-size: clamp(17px, 1.8vw, 20px);
    font-weight: 700;
    margin-bottom: 6px;
}

.ap-summary p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}


/* CTA Button */
    .ap-cta {
	align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    background: #ffffff;
    color: #143d4c;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.ap-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    color: #f26d17;
}

.ap-cta i {
    font-size: 14px;
}


/* Mobile */
@media (max-width: 600px) {

    .ap-summary {
        padding: 28px 22px;
        gap: 20px;
    }

    .ap-summary-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ap-summary-check {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}
@media (max-width: 900px) {
    .ap-grid {
        grid-template-columns: 1fr;
    }

    .ap-cases {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {

    .ap-card {
        padding: 15px;
    }

    .ap-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ap-cta {
        width: 100%;
        align-self: center;
        white-space: normal;
        text-align: center;
    }
}

.comparison-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.comparison-layout > * {
    max-height: 500px;
}

.table-responsive {
    width: 100%;
    max-height: 450px;
    overflow: auto;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: var(--card, #fff);
}

.table-responsive::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: rgb(204, 204, 204);
    border-radius: 10px;
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    font-size: 14px;
}

.table-responsive thead th {
    padding: 16px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: rgb(247, 251, 253);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0px;
    z-index: 2;
}

.table-responsive thead th.highlight-col {
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgb(20, 61, 76), rgb(242, 109, 23));
    border-bottom: 2px solid rgb(225, 91, 6);
}

.table-responsive tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.5;
    color: rgb(68, 68, 68);
}

.table-responsive tbody tr:hover {
    background: rgb(248, 252, 253);
}

.table-responsive tbody tr:last-child td {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.table-responsive tbody td.highlight-col {
    background: rgb(240, 244, 248);
    font-weight: 500;
}

.table-responsive tbody td.highlight-col strong {
    color: rgb(20, 61, 76);
}

.comparison-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-height: 450px;
}

.comparison-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .comparison-layout {
        grid-template-columns: 1fr;
    }

    .table-responsive {
        max-height: 400px;
    }

    .comparison-image {
        height: 320px;
        max-height: 400px;
    }

    .table-responsive table {
        min-width: 750px;
    }
}

@media (max-width: 768px) {
    .table-responsive thead th, .table-responsive tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .comparison-image {
        height: 260px;
        max-height: 260px;
    }
}
  /* ---- Page header ---- */
  .page-head{
    border-bottom:3px solid var(--primary);
    padding-bottom:2rem;
    margin-bottom:2.5rem;
    position:relative;
  }
  .page-head::after{
    content:"";
    position:absolute;
    left:0;bottom:-3px;
    width:88px;height:3px;
    background:var(--secondary);
  }
/* ===== Wrapper: positions the whole widget bottom-right ===== */
.chatbot-widget {
    position: fixed;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px
}

/* Hide the whole widget while the mobile nav menu is open */
.site-header.is-open ~ .chatbot-widget {
    display: none
}

/* ===== Toggle button (comment/xmark icon swap) ===== */
.chatbot-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #f4874a;
    font-size: 1.125rem;
    box-shadow: 0 0 0 3px rgba(255,255,255,.92), 0 16px 40px rgba(16,36,44,.12);
    transition: background-color 150ms ease-out
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: rgba(255, 112, 32, 0.35) 0px 4px 14px;
}

.chatbot-toggle i {
    position: absolute;
    transition: opacity 150ms ease-out, transform 200ms ease-out
}

.chatbot-toggle .chatbot-toggle-close {
    opacity: 0;
    transform: rotate(-90deg)
}

.chatbot-toggle[aria-expanded=true] .chatbot-toggle-open {
    opacity: 0;
    transform: rotate(90deg)
}

.chatbot-toggle[aria-expanded=true] .chatbot-toggle-close {
    opacity: 1;
    transform: rotate(0)
}

@media (prefers-reduced-motion: reduce) {
    .chatbot-toggle i {
        transition: opacity 150ms ease-out;
        transform: none
    }
}

/* ===== Panel container ===== */
.chatbot-panel {
    display: flex
}

.chatbot-panel[hidden] {
    display: none
}

.chatbot-panel {
    flex-direction: column;
    width: min(360px, 100vw - 40px);
    height: min(560px, 100dvh - 140px);
    overflow: hidden;
    background: var(--color-card);
    border: 1px solid var(--color-line);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(16,36,44,.22)
}

/* ===== Header: avatar, title, status, close button ===== */
.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--color-primary);
    color: #fff
}

.chatbot-header h2 {
    font-size: 1rem;
    color: #fff
}

.chatbot-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff
}

.chatbot-ident {
    flex: 1 1 auto;
    min-width: 0
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0 0;
    font-size: 1rem;
    color: rgba(255,255,255,.75)
}

.chatbot-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4ade80
}

.chatbot-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: #fff
}

.chatbot-close:hover {
    background: rgba(255,255,255,.15)
}

.chatbot-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px
}

/* ===== WhatsApp / Phone quick-contact row ===== */
.chatbot-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-line)
}

.chatbot-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding-inline: 16px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    transition: background-color 150ms ease-out
}

.chatbot-action--whatsapp {
    background: #12805c
}

.chatbot-action--whatsapp:hover {
    background: #0f6b4d;
    color: #fff
}

.chatbot-action--phone {
    background: #c2530d
}

.chatbot-action--phone:hover {
    background: var(--color-accent-dark);
    color: #fff
}

/* ===== Quick-question chips ===== */
.chatbot-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-line)
}

.chatbot-chips button {
    padding: 6px 12px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: var(--color-card);
    font-size: 1rem;
    color: var(--color-text-muted);
    transition: border-color 150ms ease-out, color 150ms ease-out, background-color 150ms ease-out
}

.chatbot-chips button:hover {
    border-color: var(--color-primary);
    background: var(--color-back);
    color: var(--color-primary)
}

/* ===== Messages list ===== */
.chatbot-messages {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-back)
}

.chatbot-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.55
}

.chatbot-message.is-bot {
    align-self: flex-start;
    background: var(--color-card);
    border: 1px solid var(--color-line);
    color: var(--color-ink)
}

.chatbot-message.is-user {
    align-self: flex-end;
    background: var(--color-primary);
    color: #fff
}

/* Typing indicator (three pulsing dots) — shown while a reply is "typed" */
.chatbot-typing {
    align-self: flex-start;
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--color-card);
    border: 1px solid var(--color-line);
    border-radius: 12px
}

.chatbot-typing span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-text-muted);
    animation: chatbot-blink 1.2s infinite ease-in-out
}

.chatbot-typing span:nth-child(2) {
    animation-delay: .2s
}

.chatbot-typing span:nth-child(3) {
    animation-delay: .4s
}

@keyframes chatbot-blink {
    0%, 80%, 100% {
        opacity: .3
    }
    40% {
        opacity: 1
    }
}

@media (prefers-reduced-motion: reduce) {
    .chatbot-typing span {
        animation: none
    }
}

/* ===== Message input form ===== */
.chatbot-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--color-line)
}

.chatbot-form input {
    flex: 1 1 auto;
    min-width: 0;
    height: 42px;
    padding-inline: 16px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    font-size: 1rem
}

.chatbot-form input:focus {
    outline: none;
    border-color: var(--color-primary)
}

.chatbot-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff
}

.chatbot-form button:hover {
    background: var(--color-primary-dark)
}

/* ===== sr-only utility used by the "Ihre Nachricht" label ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}
/*vergleich section ===== */
main>section:nth-of-type(n + 3) {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px
}
/* Wrapper - scroll container + card styling on larger screens */
@media (min-width: 640px) {
    .vs-wrap {
        overflow-x: auto;
        border: 1px solid var(--color-line);
        border-radius: 12px;
        background: var(--color-card);
        box-shadow: 0 1px 2px rgba(16, 36, 44, .05), 0 2px 8px rgba(16, 36, 44, .04);
    }
}

.vs-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 1rem;
}

.vs-table thead th:first-child,
.vs-table tbody th {
    width: 15%;
    font-weight: 700;
    color: var(--color-primary);
}

.vs-table th,
.vs-table td {
    padding: 20px;
    text-align: left;
    vertical-align: top;
    border-left-color: 1px solid var(--color-line);
}

.vs-table tbody th {
    width: 22%;
    font-weight: 700;
    color: var(--color-primary);
}

.vs-table td {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.vs-table strong {
    color: var(--color-ink);
}

.vs-table tbody tr + tr > * {
    border-top: 1px solid var(--color-line);
}

/* Highlighted "recommended" column */
.vs-table .is-us {
    background: rgba(242, 109, 23, .05);
    border-inline: 1px solid rgba(242, 109, 23, .35);
    /* color: var(--color-ink); */
}

.vs-table thead .is-us {
    /* border-top: 1px solid rgba(242, 109, 23, .35); */
    /* background: var(--color-back); */
    /* color: white; */
}

.vs-table tbody tr:last-child .is-us {
    border-bottom: 1px solid rgba(242, 109, 23, .35);
}

/* Header row */
.vs-table thead th {
    padding-block: 20px;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-back);
    font-size: 1rem;
    color: var(--color-primary);
}

.vs-head {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.vs-head-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    font-size: 1rem;
}

.vs-head-icon--other {
    background: var(--color-back-strong);
    color: var(--color-text-muted);
}

.vs-head-icon--us {
    background: #c2530d;
    color: #fff;
}

/* "Empfohlen" badge */
.vs-tag {
    display: inline-block;
    margin-left: 12px;
    padding: 2px 12px;
    border-radius: 999px;
    background: #c2530d;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    vertical-align: middle;
}

/* Mobile: collapses into stacked cards */
@media (max-width: 640px) {
    .vs-table {
        display: block;
    }

    .vs-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .vs-table tbody,
    .vs-table tr,
    .vs-table th,
    .vs-table td {
        display: block;
    }

    .vs-table tr {
        background: #fff;
        border: 1px solid #e3e9ec;
        border-radius: 12px;
        box-shadow: 0 1px 2px rgba(16, 36, 44, .05), 0 2px 8px rgba(16, 36, 44, .04);
        transition: border-color 200ms ease-out, box-shadow 200ms ease-out, background-color 200ms ease-out;
        padding: 20px;
        margin-bottom: 16px;
    }

    .vs-table tbody tr + tr > * {
        border-top: 0;
    }

    .vs-table tbody th {
        width: auto;
        padding: 0 0 16px;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--color-line);
    }

    .vs-table td {
        padding: 16px 0 0;
    }

    .vs-table td::before {
        content: attr(data-label);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: var(--color-text-muted);
    }

    .vs-table .is-us {
        margin-top: 16px;
        padding: 16px;
        border: 1px solid rgba(242, 109, 23, .35);
        border-radius: 8px;
        background: rgba(242, 109, 23, .05);
    }

    .vs-table .is-us::before {
        color: var(--color-accent-text);
    }
}

/* Powers the sr-only caption + hidden "Kriterium" header label */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq .faq-all {
    margin-top: 32px;
    text-align: center
}

.faq .faq-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 32px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-card);
    box-shadow: 0 1px 2px rgba(15,23,42,.05);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: border-color 150ms ease-out,color 150ms ease-out,box-shadow 200ms ease-out,transform 200ms ease-out
}

.faq .faq-all-link i {
    font-size: .8125rem;
    color: var(--color-accent)
}

.faq .faq-all-link:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    /* color: #c2530d; */
    box-shadow: 0 4px 14px rgba(242,109,23,.16)
}
.section-cta {
    margin-top: 32px;
    text-align: center
}

.section-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 32px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-card);
    box-shadow: 0 1px 2px rgba(15,23,42,.05);
    font: inherit;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 150ms ease-out,color 150ms ease-out,box-shadow 200ms ease-out,transform 200ms ease-out
}

.section-cta .btn-outline i {
    font-size: .8125rem;
    color: var(--color-accent)
}

.section-cta .btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    box-shadow: 0 4px 14px rgba(242,109,23,.16)
}

.section-cta .btn-outline:focus-visible {
    outline: 3px solid #f26d17;
    outline-offset: 2px
}

/* menu */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    --header-h: 76px;
    background: var(--color-card);
    border-bottom: 1px solid rgba(0,0,0,0);
    transition: border-color 200ms ease-out, box-shadow 200ms ease-out
}

.site-header.is-scrolled {
    border-bottom-color: var(--color-line);
    box-shadow: 0 1px 2px rgba(16,36,44,.06)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding-block: 12px;
}

.logo {
    flex-shrink: 0
}

.logo img {
    max-height: 42px;
    max-width: 160px;
    object-fit: contain;
    object-position: left center
}

.menu {
    display: flex;
    align-items: center;
    gap: clamp(12px,1.6vw,24px)
}

.menu-list {
    display: flex;
    align-items: center;
    gap: clamp(12px,1.6vw,24px)
}

.menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0;
    background: none;
    border: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-ink);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 150ms ease-out
}

/* Underline — lives directly on .menu-link, works for <a> and <button>, no span required */
.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 200ms ease-out
}

.menu-link:hover::after,
.menu-link:focus-visible::after {
    transform: scaleX(1);
    background: var(--color-accent-text)
}

@media (prefers-reduced-motion: reduce) {
    .menu-link::after {
        transition: none
    }
}

.menu-link:hover,
.menu-link:focus-visible {
    color: var(--color-primary)
}

.menu-link:focus-visible {
    outline: 2px solid #143d4c;
    outline-offset: 2px;
    border-radius: 2px
}

.menu-link[aria-current=page],
.menu-link[data-current=true] {
    color: var(--color-primary);
    font-weight: 600
}

.menu-link[aria-current=page]::after,
.menu-link[data-current=true]::after {
    transform: scaleX(1)
}

.dropdown {
    position: relative
}

/* Dropdown arrow — its own element, out of flow, aria-hidden in markup */
.dropdown-icon {
    position: absolute;
    right: 0px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-75%) rotate(45deg);
    transition: transform 150ms ease-out;
    pointer-events: none
}

.dropdown > button.menu-link {
    padding-right: 14px
}

.dropdown.is-open .dropdown-icon {
    transform: translateY(-25%) rotate(-135deg)
}

@media (min-width: 992px) {
    .dropdown-menu {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        width: 260px;
        max-height: 60vh;
        padding: 8px;
        overflow-y: auto;
        background: var(--color-card);
        border: 1px solid var(--color-line);
        border-radius: 12px;
        box-shadow: 0 16px 40px rgba(16,36,44,.12);
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -6px);
        transition: opacity 150ms ease-out, transform 150ms ease-out, visibility 150ms ease-out
    }

    /* FIX: this previously said `display: block`, which forced every
       dropdown to render regardless of the native `hidden` attribute.
       It must hide the element, matching what `hidden` means natively. */
    .dropdown-menu[hidden] {
        display: none
    }

    .dropdown.is-open::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 14px
    }

    .dropdown.is-open > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0)
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        min-height: 40px;
        padding: 8px 12px;
        border-radius: 6px;
        color: var(--color-ink);
        font-size: 1rem;
        transition: background-color 150ms ease-out, color 150ms ease-out
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus-visible {
        background: var(--color-primary);
        color: var(--color-primary)
    }

    .dropdown-menu a[aria-current=page] {
        color: var(--color-primary);
        font-weight: 600;
        box-shadow: inset 2px 0 0 var(--color-primary)
    }
}

@media (min-width: 992px) and (prefers-reduced-motion: reduce) {
    .dropdown-menu {
        transition: opacity 150ms ease-out;
        transform: translate(-50%, 0)
    }
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: -8px;
    border-radius: 6px;
    color: var(--color-primary)
}

.nav-toggle-bars {
    position: relative;
    display: block;
    width: 22px;
    height: 14px
}

.nav-toggle-bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 200ms ease-out, opacity 150ms ease-out
}

.nav-toggle-bars span:nth-child(1) {
    top: 0
}

.nav-toggle-bars span:nth-child(2) {
    top: 6px
}

.nav-toggle-bars span:nth-child(3) {
    top: 12px
}

.site-header.is-open .nav-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.site-header.is-open .nav-toggle-bars span:nth-child(2) {
    opacity: 0
}

.site-header.is-open .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 22
    }

    .site-header.is-open {
        z-index: 21
    }

    .menu {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 20;
        width: min(340px,88vw);
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: calc(76px + env(safe-area-inset-top, 0px)) 20px calc(20px + env(safe-area-inset-bottom, 0px));
        background: var(--color-card);
        border-left: 1px solid var(--color-line);
        box-shadow: 0 16px 40px rgba(16,36,44,.12);
        overflow: hidden;
        transform: translateX(100%);
        transition: transform 300ms ease-out;
        overscroll-behavior: contain
    }

    .site-header.is-open .menu {
        transform: translateX(0)
    }

    .site-header.is-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 19;
        background: rgba(16,36,44,.45)
    }

    .menu-list {
        flex: 1 1 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-height: 0;
        overflow: hidden auto;
        overscroll-behavior: contain
    }

    .menu-list > li {
        flex-shrink: 0;
        border-bottom: 1px solid var(--color-line)
    }

    .menu-link {
        width: 100%;
        min-height: 52px;
        justify-content: space-between;
        font-size: 1rem
    }

    .menu-link::after {
        display: none
    }

    .menu-link[aria-current=page],
    .menu-link[data-current=true] {
        box-shadow: inset 3px 0 0 var(--color-primary);
        padding-left: 12px
    }

    .dropdown > button.menu-link {
        padding-right: 0
    }

    .dropdown-icon {
        right: -18px
    }

    .dropdown-menu {
        display: none;
        max-height: min(15rem,40dvh);
        margin-bottom: 12px;
        padding-left: 16px;
        border-left: 2px solid var(--color-line);
        overflow: hidden auto;
        overscroll-behavior: contain
    }

    .dropdown.is-open > .dropdown-menu {
        display: block;
        border-left-color: var(--color-primary)
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 8px;
        color: var(--color-text-muted);
        font-size: 1rem
    }

    .dropdown-menu a:hover,
    .dropdown-menu a[aria-current=page] {
        color: var(--color-primary)
    }

    .menu-actions {
        flex-shrink: 0;
        padding-top: 20px
    }

    .menu-actions .btn {
        width: 100%
    }
}
/* ============================================================
   REVIEWS SECTION — full CSS
   ============================================================ */

/* ===== Section head (title + rating on left) ===== */
.section-head {
    max-width: 720px;
    margin-bottom: 48px
}

.section-head--split {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px
}

.section-head--split > div {
    max-width: 720px
}

/* ===== Star rating ===== */
.stars {
    color: #f26d17;
    letter-spacing: .08em
}

.rating-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 1rem
}

/* ===== Horizontally scrolling review track ===== */
.review-track {
    display: flex;
    gap: 20px;
    padding-block: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-x: contain
}

.review-track::-webkit-scrollbar {
    display: none
}

.review-track:focus-visible {
    outline: 2px solid #143d4c;
    outline-offset: 2px;
    border-radius: 12px
}

.review-track > li {
    flex: 0 0 calc((100% - 20px) / 2);
    scroll-snap-align: start
}

@media (max-width: 640px) {
    .review-track > li {
        flex-basis: 100%
    }
}

@media (min-width: 992px) {
    .review-track > li {
        flex-basis: calc((100% - 20px * 2) / 3)
    }
}

@media (prefers-reduced-motion: reduce) {
    .review-track {
        scroll-behavior: auto
    }
}

/* ===== Review card ===== */
.review-card {
    background: #fff;
    border: 1px solid #e3e9ec;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(16,36,44,.05), 0 2px 8px rgba(16,36,44,.04);
    transition: border-color 200ms ease-out, box-shadow 200ms ease-out, background-color 200ms ease-out;
    display: flex;
    flex-direction: column;
    padding: 24px
}

.review-card blockquote {
    margin: 16px 0 24px;
    flex: 1 1 auto
}

.review-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-ink)
}

.review-card p::before {
    content: "„"
}

.review-card p::after {
    content: "“"
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--color-line)
}

.review-author > span:last-child {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    min-width: 0
}

.review-author strong {
    font-size: 1rem
}

.review-author small {
    font-size: 1rem;
    color: var(--color-text-muted)
}

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--color-back-strong);
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700
}

/* ============================================================
   SLIDER CONTROLS — arrows tucked close on either side of the
   dots, all centered together: [prev]  ●○  [next]
   ============================================================ */

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px
}

/* Removes the wrapper from layout so its two buttons become direct
   flex items of .slider-controls, letting us reorder them around the dots */
.slider-nav {
    display: contents
}

.slider-nav[hidden] {
    display: none
}

.slider-nav button {
    order: 1; /* prev button defaults here */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: var(--color-card);
    color: var(--color-primary);
    transition: border-color 150ms ease-out, background-color 150ms ease-out, opacity 150ms ease-out
}

/* Next button (second one in the markup) goes after the dots */
.slider-nav button:last-child {
    order: 3
}

.slider-nav button:hover:not(:disabled) {
    border-color: var(--color-primary);
    background: var(--color-back)
}

.slider-nav button:disabled {
    opacity: .35;
    cursor: default
}

.slider-dots {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 0
}

.slider-dots[hidden] {
    display: none
}

/* Button itself is a full 24x24 hit area (WCAG 2.5.8 minimum) —
   invisible, just there to catch the tap/click */
.slider-dot {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border-radius: 999px
}

/* The visible dot stays small, centered inside the larger hit area */
.slider-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--color-line);
    transition: background-color 150ms ease-out, width 200ms ease-out
}

.slider-dot:hover::after {
    background: rgba(20, 61, 76, .35)
}

.slider-dot.is-active::after {
    width: 24px;
    background: var(--color-primary)
}

/* FOOTER */

.site-footer {
    background: var(--color-primary);
    color: rgba(255,255,255,.72)
}

.footer-inner {
    display: grid;
    gap: 40px;
    padding-block:var(--section-space) 40px}

@media(min-width: 640px) {
    .footer-inner {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}

@media(min-width: 992px) {
    .footer-inner {
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: 48px
    }
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 1rem;
    transition: background-color 150ms ease-out,border-color 150ms ease-out
}

.footer-socials a:hover {
    border-color: #f4874a;
    color: #f4874a
}

.footer-socials a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px
}

.footer-heading {
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1rem
}

.footer-links a {
    display: inline-block;
    color: rgba(255,255,255,.72);
    transition: color 150ms ease-out
}

.footer-links a:hover {
    color: #f4874a
}

.footer-links a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px
}

.footer-links span {
    display: block;
    line-height: 1.6
}

.footer-links--icons li {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.footer-links--icons>li>i {
    flex-shrink: 0;
    width: 16px;
    margin-top: 4px;
    text-align: center;
    font-size: 1rem;
    color: #f4874a
}

.footer-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: rgba(255,255,255,.72)
}

.footer-rating strong {
    color: #fff
}

.footer-rating .stars {
    color: #f4874a
}

.site-footer .text-link {
    color: #fff
}

.site-footer .text-link::after {
    display: none
}

.site-footer .text-link:hover {
    color: #f4874a
}

.site-footer .text-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255,255,255,.6)
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block:20px}
.trustpilot {
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(165deg, rgb(23, 74, 87), rgb(12, 45, 55));
    display: flex;
    flex-direction: column;
    gap: 9px;
}

:is(.trustpilot-header, .trustpilot-rating, .trustpilot-brand) {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trustpilot-brand-star {
    color: #f4874a;
    font-size: 18px;
}

.trustpilot-brand-name, .trustpilot-title {
    font-size: 16px;
    font-weight: 700;
    color: rgb(255 255 255);
}

.trustpilot-stars {
    color: #f4874a;
    font-size: 18px;
}

.trustpilot-score {
    font-weight: 700;
    color: rgb(255 255 255);
}

.trustpilot-note {
    margin: 0px;
    font-size: 12px;
    color: rgb(255 255 255 / 78%);
}

.trustpilot-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    background: #f4874a;
    border-radius: 7px;
}
