:root {
    --primary: #0a2a66;
    --accent: #1e6bff;
    --bg-light: #f5f8ff;
    --text-main: #0b1220;
    --text-muted: #5b6b85;
    --line: #e7ecf7;
    --radius: 12px;
    --shadow: 0 12px 30px rgba(30, 107, 255, 0.1);
    --header-h: 70px;
}
*, *::before, *::after {
    box-sizing: border-box;
}
body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-main); 
    background: #ffffff; 
    margin: 0; 
    padding-top: var(--header-h);
    overflow-x: hidden; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main, .section-wrap, .legal-wrapper, .contact-wrapper, .aktion-wrapper {
    flex: 1;
}
a { text-decoration: none; }
h1, h2, h3 { color: var(--primary); margin-top: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; }
.text-center { text-align: center; }
.sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.8rem 1.6rem; border-radius: 8px; font-weight: 700; transition: all 0.3s ease; border: none; cursor: pointer; white-space: nowrap; gap: 0.5rem; }
.btn svg { width: 1.2rem; height: 1.2rem; fill: currentColor; stroke: currentColor; }
.btn-primary { background: linear-gradient(90deg, #0d47a1, var(--accent)); color: #fff; box-shadow: 0 8px 20px rgba(30, 107, 255, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(30, 107, 255, 0.35); }
.btn-outline { background: #fff; color: var(--primary); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-h); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); z-index: 100000; display: flex; align-items: center; transition: all 0.3s; }
header.has-top-banner { top: 40px; }
body.has-top-banner { padding-top: calc(var(--header-h) + 40px); }
.nav-wrap { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo-area { display: flex; align-items: center; gap: 0.8rem; font-weight: 900; color: var(--primary); font-size: 1.2rem; }
.logo-area img { height: 40px; width: auto; }
.nav-menu { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-menu a { color: var(--text-main); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu a:hover { color: var(--accent); }
.burger { display: none; background: none; border: none; font-size: 1.8rem; color: var(--primary); cursor: pointer; }
.dropdown { position: relative; }
.dropdown-content { position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 220px; opacity: 0; visibility: hidden; transition: all 0.2s; transform: translateY(10px); padding: 0.5rem; z-index: 100; }
.dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-content a { display: block; padding: 0.8rem 1rem; border-radius: 6px; }
.dropdown-content a:hover { background: var(--bg-light); }
footer { background: var(--primary); color: #fff; padding: 4rem 1.5rem 1.5rem; margin-top: 4rem; width: 100%; }
.footer-grid { max-width: 1200px; width: 100%; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; }
.footer-col h4 { color: #fff; margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-col a { color: #a0b3d6; display: block; margin-bottom: 0.8rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); color: #a0b3d6; font-size: 0.9rem; }
.wa-btn { position: fixed; bottom: 20px; right: 20px; z-index: 9999; width: 60px; height: 60px; background-color: #25d366; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn img { width: 35px; height: 35px; }
@media (max-width: 1200px) {
    .burger { display: block; }
    .nav-menu { position: fixed; top: var(--header-h); left: 0; width: 100%; background: #fff; flex-direction: column; padding: 2rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.3s ease-in-out; }
    body.has-top-banner .nav-menu { top: calc(var(--header-h) + 40px); }
    .nav-menu.open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .dropdown-content { position: static; box-shadow: none; border: none; padding-left: 1rem; display: none; }
    .dropdown.active .dropdown-content { display: block; opacity: 1; visibility: visible; transform: none; }
}
