:root {
    --primary: #c8102e;
    --primary-dark: #9a0c23;
    --text: #1a1a1a;
    --text-muted: #5f6b7a;
    --bg: #ffffff;
    --bg-soft: #f6f7f9;
    --border: #e1e5ea;
    --container: 1100px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
body {
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { color: var(--text); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

.topbar {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.topbar .container {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    color: var(--text) !important;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 1.2rem;
    text-decoration: none !important;
}
.topbar nav { display: flex; gap: 2rem; }
.topbar nav a { color: var(--text); font-size: 0.95rem; text-decoration: none; }
.topbar nav a:hover { color: var(--primary); }

.hero {
    padding: 5rem 0 4rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}
.hero h1 { margin-bottom: 1.5rem; max-width: 22ch; }
.hero .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 65ch;
    margin-bottom: 2.5rem;
}
.actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: background 0.15s;
}
.btn-primary { background: var(--primary); color: var(--bg) !important; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { border: 1px solid var(--text); color: var(--text) !important; }
.btn-secondary:hover { background: var(--text); color: var(--bg) !important; }

.trust {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}
.trust-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.leistungen-preview { padding: 5rem 0; }
.leistungen-preview .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.leistungen-preview article {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    background: var(--bg);
}
.leistungen-preview article:hover { border-color: var(--primary); }
.leistungen-preview p { color: var(--text-muted); font-size: 0.95rem; }
.leistungen-preview a { font-weight: 600; font-size: 0.9rem; }

.testimonial {
    padding: 5rem 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonial blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.5;
    max-width: 50ch;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--text);
}
.testimonial cite {
    display: block;
    text-align: center;
    color: var(--text-muted);
    font-style: normal;
    font-size: 0.95rem;
}

.cta-band {
    padding: 5rem 0;
    text-align: center;
}
.cta-band h2 { margin-bottom: 0.5rem; }
.cta-band p { color: var(--text-muted); margin-bottom: 2rem; }

footer {
    padding: 4rem 0 2rem;
    background: #1a1a1a;
    color: #b0b8c4;
    font-size: 0.9rem;
}
footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
footer strong {
    display: block;
    color: var(--bg);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
footer .col p { margin-bottom: 0.75rem; }
footer a { display: block; color: #b0b8c4; margin-bottom: 0.4rem; font-size: 0.9rem; text-decoration: none; }
footer a:hover { color: var(--bg); }
.footer-bottom {
    display: block !important;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #6c7686;
    grid-column: 1 / -1 !important;
}

@media (max-width: 800px) {
    .leistungen-preview .grid { grid-template-columns: 1fr; }
    footer .container { grid-template-columns: 1fr 1fr; }
    .topbar nav { gap: 1rem; font-size: 0.85rem; }
}
