/* RESET & BASICS - Identisch zu ciso.berlin */
:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #8e0000;
    --light-gray: #f4f4f4;
    --font-stack: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-stack);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
}

/* CONTAINER */
header, main, footer { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
}
.logo a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}
.dot { color: var(--accent-color); }
.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    margin-left: 20px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}
.nav-link:hover { border-color: var(--accent-color); }

/* HERO */
.hero { margin-bottom: 80px; }
.hero-small { margin-bottom: 60px; } /* Für Unterseiten */

.mantra {
    font-size: clamp(2.5rem, 7vw, 5.5rem); /* Etwas kleiner als ciso.berlin, da Text länger */
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -1px;
}
.highlight { color: var(--accent-color); }
.subtitle {
    font-size: 1.5rem;
    color: #555;
    font-weight: 300;
    max-width: 700px;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

/* ABOUT */
.about { margin-bottom: 100px; }
.content-block h2 { font-size: 2rem; margin-bottom: 20px; }
.content-block p { margin-bottom: 20px; font-size: 1.1rem; color: #333; }

/* SERVICES / PILLARS */
.pillars { margin-bottom: 120px; border-top: 1px solid #eee; padding-top: 60px; }
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.pillar-item h3 { font-size: 1.5rem; margin-bottom: 5px; margin-top: 10px; }
.pillar-number { font-family: monospace; color: var(--accent-color); font-size: 1rem; display: block; margin-bottom: 5px; }
.service-meta { font-size: 0.9rem; color: #777; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px; }

/* CTA */
.cta { margin-bottom: 100px; background-color: var(--light-gray); padding: 60px 40px; border-radius: 4px; }
.cta-box h2 { margin-bottom: 10px; }
.cta-box p { margin-bottom: 30px; }
.button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.1s;
}
.button:hover { background-color: #600000; transform: translateY(-2px); }

/* MANIFEST STYLING */
.manifest-content { margin-bottom: 100px; }
.manifest-point { margin-bottom: 60px; }
.manifest-point h2 { 
    font-size: 1.8rem; 
    color: var(--text-color); 
    margin-bottom: 15px; 
    border-bottom: 2px solid var(--light-gray); /* Unterstreichung für Struktur */
    padding-bottom: 10px;
}
.manifest-point p { font-size: 1.1rem; color: #444; max-width: 800px; }

/* FOOTER */
.site-footer {
    padding-bottom: 40px; border-top: 2px solid var(--text-color); padding-top: 20px;
    display: flex; justify-content: space-between; flex-wrap: wrap; font-size: 0.9rem;
}
.footer-links a { color: var(--text-color); text-decoration: none; margin-right: 20px; }
.footer-links a:hover { text-decoration: underline; }
.highlight-link { font-weight: 700; color: var(--accent-color) !important; } /* Manifest Link hervorheben */
.footer-note { color: #888; margin-top: 10px; }

/* Responsive */
@media (max-width: 600px) {
    .mantra { font-size: 3rem; }
    .site-footer { flex-direction: column; gap: 20px; }
}
