/* Wiederverwendbare Komponenten */

.skip-link:focus {
    left: 20px;
    top: 20px;
    background: #fff;
    padding: 12px;
    z-index: 99;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.brand b {
    display: block;
    color: #8fa4bc;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.brand-logo {
    display: block;
    width: 168px;
    height: 54px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.site-header .brand {
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 12px;
    background: linear-gradient(135deg,var(--accent),var(--accent2));
    color: #061321;
    font-weight: 900;
    letter-spacing: -.08em;
}

.nav a:not(.button) {
    color: #c7d4e2;
}

.nav-toggle {
    display: none;
    background: transparent;
    color: #fff;
    border: 1px solid var(--line);
    padding: 9px 12px;
    border-radius: 8px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg,var(--accent),#2f80d0);
    color: #07111f;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(34,211,197,.22);
    cursor: pointer;
    transition: .2s;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(34,211,197,.3);
}

.button-small {
    padding: 10px 15px;
}

.button-ghost {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    box-shadow: none;
}

.button-light {
    background: #fff;
    color: #07111f;
    box-shadow: none;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9db2c9;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.eyebrow span {
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.eyebrow.dark {
    color: #607086;
}

.eyebrow.centered {
    justify-content: center;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 50px;
}

.trust-row span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    color: #aebed0;
    background: rgba(255,255,255,.035);
}

.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    font-size: 28px;
    color: #8fa4bc;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    50% {
        transform: translateY(8px);
    }
}

.lead p:first-child {
    margin-top: 0;
}

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

.card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
    transition: .25s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(34,211,197,.55);
    background: rgba(34,211,197,.055);
}

.card .icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 32px;
}

.card h3 {
    font-size: 21px;
    margin: 0 0 12px;
}

.card p {
    color: #9fb0c2;
    min-height: 104px;
}

.card a {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.visual-image {
    position: relative;
}

.visual-image img {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-credit {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: #79889a;
}

.check-list {
    margin-top: 38px;
}

.check-list div {
    position: relative;
    padding: 20px 0 20px 44px;
    border-top: 1px solid #d9e2e9;
}

.check-list div:before {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 20px;
    color: #0068b0;
    font-weight: 900;
}

.check-list b,.check-list span {
    display: block;
}

.check-list span {
    color: var(--muted);
    font-size: 15px;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 20px;
}

.tech-list span {
    padding: 12px 18px;
    border: 1px solid #dbe5ec;
    border-radius: 10px;
    background: #fff;
    font-weight: 800;
    color: #516276;
}

.contact-info>p {
    color: var(--muted);
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #dce5eb;
}

.contact-item>span {
    color: #0068b0;
    font-weight: 900;
}

.contact-item b,.contact-item a {
    display: block;
}

.contact-item p {
    margin: 0;
    color: var(--muted);
}

.availability {
    margin-top: 28px;
    padding: 24px;
    background: #edf5fb;
    border-radius: 14px;
}

.availability p {
    margin-bottom: 0;
}

.contact-form {
    padding: 35px;
    background: #f3f7fa;
    border-radius: var(--radius);
}

.form-note,.placeholder-warning {
    padding: 16px;
    border-left: 3px solid #e8a127;
    background: #fff8e8;
    margin-bottom: 24px;
    font-size: 14px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
}

.contact-form input,.contact-form select,.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 13px;
    border: 1px solid #ccd8e1;
    border-radius: 9px;
    background: #fff;
    font: inherit;
}

.consent {
    display: flex !important;
    gap: 10px;
    font-weight: 400 !important;
}

.consent input {
    width: auto;
    margin-top: 5px;
}

.consent a {
    text-decoration: underline;
}

.map-placeholder {
    min-height: 300px;
    display: grid;
    place-items: center;
    text-align: center;
    background: repeating-linear-gradient(45deg,#eaf0f4,#eaf0f4 12px,#e3ebf0 12px,#e3ebf0 24px);
    color: #627285;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease,transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}
