﻿:root {
    --fs-small: 15px;
    --fs-label: 13px;
    --fs-micro: 11.5px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.25s;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .site-footer *,
    .site-footer *::before,
    .site-footer *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.site-footer {
    background: #303030;
    color: #d8dde5;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: var(--fs-small);
    line-height: 1.6;
    overflow-x: hidden;
}

.site-footer a {
    text-decoration: none;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    min-width: 0;
}

.site-footer a:focus-visible {
    outline: 3px solid rgba(255, 102, 0, 0.55);
    outline-offset: 2px;
    border-radius: 3px;
}

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

.dual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.block-heading {
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 8px;
    position: relative;
}

.block-heading::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 24px; height: 2px;
    background: #ff6600;
}

.section-brand {
    padding: 40px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-brand-link {
    display: inline-block;
}

.footer-brand-logo {
    display: block;
    height: 72px;
    width: auto;
}

@media (max-width: 768px) {
    .section-brand { padding: 32px 0 24px; }
    .footer-brand-logo { height: 56px; }
}

.section-about {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.about-text {
    min-width: 0;
    overflow-wrap: break-word;
    color: #d8dde5;
    font-size: var(--fs-small);
    line-height: 1.65;
}

.about-map {
    display: block;
    margin: 0;
    width: 140px;
    height: auto;
    flex-shrink: 0;
    justify-self: center;
}

.about-text strong { color: #fff; font-weight: 600; }

@media (max-width: 440px) {
    .about-body {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }
    .about-map {
        width: 120px;
    }
}

.a2-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px 18px;
}
.a2-contact-icon  {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(255, 102, 0, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.a2-contact-icon svg { width: 15px; height: 15px; fill: #ff6600; }

.a2-contact-label  {
    color: #d8dde5;
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 1px;
}

.a2-contact-value {
    color: #fff;
    font-size: var(--fs-small);
    font-weight: 500;
    font-style: normal;
    line-height: 1.3;
    transition: color var(--duration) var(--ease);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

a.a2-contact-value,
a.a2-contact-value:visited {
    color: #fff;
    font-weight: 500;
}

a.a2-contact-value:hover,
a.a2-contact-value:focus {
    color: #ff6600;
}

.a2-contact-item  {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.a2-contact-text  {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.about-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.contact-cta svg  {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-cta--primary svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-cta:hover {
    transform: translateY(-1px);
}

.contact-cta--primary {
    background: #ff6600;
    color: #fff;
}

.contact-cta  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: var(--fs-small);
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--duration) var(--ease), background var(--duration) var(--ease), color var(--duration) var(--ease);
    min-width: 170px;
}

.section-trust {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promises {
    list-style: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px 20px;
}

.promise {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.promise-icon {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1.5px solid #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: #ff6600;
}

.promise-icon svg { width: 14px; height: 14px; }

.promise-text {
    color: #fff;
    font-size: var(--fs-small);
    font-weight: 600;
    line-height: 1.35;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.promise-title {
    display: block;
}

.promise-text .promise-sub {
    display: block;
    color: #d8dde5;
    font-size: var(--fs-label);
    font-weight: 400;
    margin-top: 3px;
    line-height: 1.4;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.trust-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ekomi-frame {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 110px;
}

.ekomi-frame .ekomi-widget-container {
    display: block;
    width: 100%;
}

.ekomi-frame .ekomi-widget-container > div,
.ekomi-frame #ek-shadow-wid {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}

.trust-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100%;
    max-width: 400px;
    min-width: 0;
}

.trust-stack .ekomi-frame,
.trust-stack .google-badge {
    width: 100%;
    min-width: 0;
    align-self: stretch;
}

.google-badge {
    display: inline-flex;
    align-self: flex-start;
    width: auto;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    background: rgba(66, 133, 244, 0.06);
    border: 1px solid rgba(66, 133, 244, 0.30);
    border-radius: 10px;
    transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.google-badge:hover {
    background: rgba(66, 133, 244, 0.12);
    transform: translateY(-1px);
}

.google-seal {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.google-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.google-label {
    color: #4285f4;
    font-size: var(--fs-micro);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.google-stars {
    display: inline-flex;
    gap: 2px;
}

.google-stars svg { width: 14px; height: 14px; fill: #4285f4; }

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 3px 0 2px;
}

.google-rating-value {
    color: #fff;
    font-size: var(--fs-small);
    font-weight: 700;
}

.google-count {
    color: #b8bec7;
    font-size: var(--fs-label);
    font-weight: 400;
}

.google-count strong {
    color: #fff;
    font-weight: 700;
}

.section-links {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}
.links-grid--secondary {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.link-col h3 {
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 8px;
    position: relative;
}

.link-col h3::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 24px; height: 2px;
    background: #ff6600;
}

.link-col ul { list-style: none; }

.link-col li { margin-bottom: 8px; }

.link-col a {
    color: #d8dde5;
    font-size: var(--fs-small);
    transition: color var(--duration) var(--ease);
}

.link-col a:hover { color: #ff6600; }

.link-col .hub-link {
    color: #ff6600;
    font-weight: 600;
}

.link-col .hub-link::after {
    content: " →";
}

.link-col .hub-link:hover {
    color: #ff8533;
}

.link-col li > span {
    color: #d8dde5;
    font-size: var(--fs-small);
    font-weight: inherit;
}

.section-social {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-inner {
    display: flex;
    justify-content: center;
}

.section-meta {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav li {
    list-style: none;
}

.legal-nav a {
    color: #d8dde5;
    font-size: var(--fs-small);
    transition: color var(--duration) var(--ease);
}

.legal-nav a:hover { color: #ff6600; }

.social-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-nav li {
    list-style: none;
}

.social-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: #d8dde5;
    background: rgba(255, 255, 255, 0.04);
    transition: color var(--duration) var(--ease), background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.social-nav a:hover {
    color: #ff6600;
    background: rgba(255, 102, 0, 0.12);
    transform: translateY(-1px);
}

.social-nav svg { width: 18px; height: 18px; fill: currentColor; }

.meta-copyright {
    color: #8a9099;
    font-size: var(--fs-label);
    white-space: nowrap;
}

.section-legal {
    background: #05070a;
    padding: 16px 0 100px 0;
}

.legal-info {
    color: #8a9099;
    font-size: var(--fs-label);
    line-height: 1.7;
    text-align: center;
}

.legal-info strong {
    color: #b8bec7;
    font-weight: 600;
}

@media (max-width: 900px) {
    .links-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 600px) {
    .footer-inner { padding: 0 20px; }
    .links-grid { grid-template-columns: 1fr; gap: 24px; }
    .section-about,
    .section-trust,
    .section-links { padding: 32px 0; }
    .meta-inner { flex-direction: column; align-items: center; gap: 16px; }
    .meta-copyright { white-space: normal; text-align: center; }
}

@media (max-width: 768px) {
    .dual-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 440px) {
    .a2-contact-list { grid-template-columns: 1fr; }
    .promises { grid-template-columns: 1fr; }
    .footer-inner { padding: 0 16px; }
    .google-badge,
    .ekomi-frame .ekomi-widget-container > div,
    .ekomi-frame #ek-shadow-wid {
        padding: 12px 14px !important;
        gap: 12px;
    }
    .google-seal {
        width: 52px;
        height: 52px;
    }
    .google-seal img {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 360px) {
    .footer-inner { padding: 0 12px; }
    .ekomi-frame .ekomi-widget-container > div,
    .ekomi-frame #ek-shadow-wid {
        padding: 10px 12px !important;
    }
}

@media (max-width: 480px) {
    /* Bei zu wenig Platz für 8 Icons in einer Reihe: saubere 4+4 Aufteilung
       statt unsauberes 7+1 Wrap. Icon-Größe bleibt unverändert. */
    .social-nav {
        display: grid;
        grid-template-columns: repeat(4, 38px);
        gap: 8px;
        justify-content: center;
    }
}

footer h3 {
    font-size: 17px !important;
}
