:root {
    --primary: #0F3D3E;
    --accent: #C6F432;
    --background: #F4F4EF;
    --foreground: #0B1F1F;
    --muted: #E8E8DF;
    --border: rgba(15, 61, 62, 0.12);
    --display: 'Space Grotesk', 'Helvetica Neue', system-ui, sans-serif;
    --body: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}
img { display: block; max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.bg-white { background: #fff; }

/* Standard-Seiten (Beiträge, Pages) */
.page-main { padding: 64px 0; }
.page-content { max-width: 800px; padding: 0 32px; }
.page-content > * { margin-bottom: 24px; }
.page-content h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; color: var(--primary); }
.post-card {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}
.post-card:last-child { border-bottom: none; }
.post-card .wp-block-post-title { font-size: 28px; margin: 0 0 8px; }
.post-card .wp-block-post-title a { color: var(--primary); text-decoration: none; }
.post-card .wp-block-post-title a:hover { text-decoration: underline; }
.post-card .wp-block-post-date { color: rgba(11, 31, 31, 0.55); margin-bottom: 12px; }


/* WP-Block-Defaults zähmen */
.wp-block-group { box-sizing: border-box; }
.wp-block-columns { gap: 24px; margin-bottom: 0; }
.wp-block-column { min-width: 0; }

/* ---- NAV ---- */
nav.top {
    position: sticky; top: 0; z-index: 50;
    background: rgba(244, 244, 239, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 !important;
}
nav.top .inner {
    max-width: 1200px; margin: 0 auto;
    padding: 18px 32px;
}
nav.top .logo {
    font-family: var(--display); font-weight: 700; font-size: 18px;
    color: var(--primary); align-items: center; gap: 10px;
}
nav.top .logo .wp-block-site-title { font-family: var(--display); font-weight: 700; font-size: 18px; }
nav.top .logo .wp-block-site-title a { color: var(--primary); text-decoration: none; }
.logo-mark {
    display: inline-block;
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--primary); position: relative; flex-shrink: 0;
}
.logo-mark::before {
    content: ''; position: absolute; inset: 6px;
    border-radius: 50%; background: var(--accent);
}
.nav-links a { font-size: 14px; font-weight: 500; color: var(--foreground); text-decoration: none; }
.nav-links a:hover { color: var(--primary); }

/* ---- BUTTONS ---- */
.wp-block-button.btn-primary .wp-block-button__link {
    background: var(--accent); color: var(--primary);
    border-radius: 999px; padding: 12px 22px;
    font-family: var(--display); font-weight: 600; font-size: 14px;
    border: none; transition: transform .15s ease, background .15s ease;
}
.wp-block-button.btn-primary .wp-block-button__link:hover { transform: translateY(-1px); background: #d6ff5a; }
.wp-block-button.btn-ghost .wp-block-button__link {
    background: transparent; color: var(--primary);
    border: 1.5px solid var(--primary); border-radius: 999px;
    padding: 10px 20px;
    font-family: var(--display); font-weight: 600; font-size: 14px;
    transition: background .15s ease, color .15s ease;
}
.wp-block-button.btn-ghost .wp-block-button__link:hover { background: var(--primary); color: var(--background); }

/* ---- HERO ---- */
.hero { padding: 80px 0 60px; }
.hero-grid { gap: 64px; }
.hero-grid > .wp-block-column { padding: 0; }
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: var(--muted); color: var(--primary);
    font-size: 13px; font-weight: 500; margin-bottom: 24px;
}
.pill::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 0 3px rgba(198, 244, 50, 0.3);
}
.hero h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; margin: 0 0 24px; line-height: 1.05; color: var(--primary); }
.hero h1 em {
    font-style: normal;
    background: linear-gradient(180deg, transparent 65%, var(--accent) 65%);
    padding: 0 4px;
}
.hero .lead { font-size: 19px; color: rgba(11, 31, 31, 0.75); max-width: 520px; margin-bottom: 36px; }
.hero-ctas { gap: 12px; flex-wrap: wrap; margin-bottom: 0; }
.hero-visual {
    position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
    background: var(--muted);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-stat {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    background: rgba(244, 244, 239, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 16px; padding: 18px 22px;
    display: flex; gap: 24px; align-items: center; justify-content: space-between;
}
.hero-stat .item { flex: 1; }
.hero-stat .num { font-family: var(--display); font-weight: 700; font-size: 28px; color: var(--primary); line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: rgba(11, 31, 31, 0.6); margin-top: 4px; }
.hero-stat .div { width: 1px; align-self: stretch; background: var(--border); }

/* ---- TRUST ---- */
.trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0 !important; margin-top: 40px;
}
.trust .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(11, 31, 31, 0.55); font-weight: 600; margin: 0; }
.trust .partners { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; font-family: var(--display); font-weight: 600; color: var(--primary); opacity: 0.7; font-size: 14px; }

/* ---- SECTION ---- */
main > section { padding: 96px 0; }
.eyebrow {
    font-family: var(--display); font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--primary); margin: 0 0 16px;
    display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--accent); }
.eyebrow-center { justify-content: center; }
h2.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 700; max-width: 720px; margin: 0 0 20px; line-height: 1.1; color: var(--primary); }
.section-title-center { margin: 0 auto; }
.section-lead { font-size: 18px; max-width: 640px; color: rgba(11, 31, 31, 0.72); margin: 0 0 56px; }

/* ---- PROJEKT SPLIT ---- */
.split { gap: 64px; align-items: center; }
.split-image { aspect-ratio: 5/6; border-radius: 24px; overflow: hidden; background: var(--muted); position: relative; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image .badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--accent); color: var(--primary);
    padding: 8px 14px; border-radius: 999px;
    font-family: var(--display); font-weight: 600; font-size: 13px;
}
.feature-list-wrap { display: grid; gap: 20px; margin-top: 32px; }
.feature-list-wrap .feature-item {
    display: flex; gap: 16px; padding-top: 20px;
    border-top: 1px solid var(--border);
    align-items: flex-start;
}
.feature-list-wrap .ico {
    width: 36px; height: 36px; border-radius: 10px; background: var(--primary); color: var(--accent);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-family: var(--display); font-weight: 700; font-size: 13px;
}
.feature-list-wrap h4 { font-size: 17px; margin: 0 0 4px; color: var(--primary); }
.feature-list-wrap p { font-size: 15px; color: rgba(11, 31, 31, 0.7); margin: 0; }

/* ---- STEPS ---- */
.wp-block-columns.steps {
    display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.wp-block-columns.steps .wp-block-column.step {
    background: white; border-radius: 20px; padding: 28px;
    border: 1px solid var(--border);
    transition: transform .2s ease, box-shadow .2s ease;
    flex-basis: auto !important;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15, 61, 62, 0.08); }
.step-num { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--primary); opacity: 0.4; margin: 0 0 80px; }
.step h3 { font-size: 20px; margin: 0 0 10px; color: var(--primary); }
.step p { font-size: 14px; color: rgba(11, 31, 31, 0.7); margin: 0; }
.step.active { background: var(--primary); }
.step.active h3, .step.active .step-num, .step.active p { color: var(--background); }
.step.active .step-num { color: var(--accent); opacity: 1; }
.step.active p { color: rgba(244, 244, 239, 0.85); }

/* ---- VORTEILE ---- */
.benefits-section { background: var(--primary); color: var(--background); }
.benefits-section .eyebrow { color: var(--accent); }
.benefits-section .eyebrow::before { background: var(--accent); }
.benefits-section h2.section-title { color: var(--background); }
.benefits-section .section-lead { color: rgba(244, 244, 239, 0.75); }
.wp-block-columns.benefits {
    display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-bottom: 24px;
}
.wp-block-columns.benefits:last-child { margin-bottom: 0; }
.wp-block-columns.benefits .wp-block-column.benefit {
    border-radius: 20px; padding: 32px;
    background: rgba(244, 244, 239, 0.06);
    border: 1px solid rgba(244, 244, 239, 0.1);
    flex-basis: auto !important;
}
.benefit .num { font-family: var(--display); font-weight: 700; font-size: 44px; color: var(--accent); line-height: 1; margin: 0 0 16px; }
.benefit h3 { color: var(--background); font-size: 22px; margin: 0 0 10px; }
.benefit p { color: rgba(244, 244, 239, 0.75); font-size: 15px; margin: 0; }

/* ---- ROADMAP ---- */
.wp-block-columns.roadmap {
    display: grid !important; grid-template-columns: repeat(5, 1fr); gap: 0;
    position: relative; margin-top: 32px;
}
.wp-block-columns.roadmap::before {
    content: ''; position: absolute; top: 32px; left: 5%; right: 5%; height: 2px;
    background: var(--border); z-index: 0;
}
.wp-block-columns.roadmap .wp-block-column.phase {
    position: relative; padding: 0 12px; z-index: 1;
    flex-basis: auto !important;
}
.phase .dot {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--background); border: 3px solid var(--primary);
    margin: 24px 0;
}
.phase.done .dot { background: var(--accent); border-color: var(--accent); }
.phase.now .dot { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 8px rgba(15,61,62,0.12); }
.phase .year { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--primary); margin: 0 0 4px; }
.phase h4 { font-size: 16px; margin: 0 0 6px; color: var(--primary); }
.phase p { font-size: 13px; color: rgba(11, 31, 31, 0.65); margin: 0; }

/* ---- ENGAGE ---- */
.engage { gap: 56px; }
.engage-cards { display: grid; gap: 16px; }
.engage-card {
    background: white; border-radius: 18px; padding: 24px;
    display: flex !important; gap: 20px;
    align-items: center; border: 1px solid var(--border);
    transition: border-color .2s ease;
}
.engage-card:hover { border-color: var(--primary); }
.engage-card > .wp-block-group { flex: 1; }
.engage-card .ec-ico {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--muted); display: flex; align-items: center; justify-content: center;
    color: var(--primary); flex-shrink: 0;
}
.engage-card h4 { font-size: 17px; margin: 0 0 2px; color: var(--primary); }
.engage-card p { font-size: 13px; color: rgba(11, 31, 31, 0.65); margin: 0; }
.engage-card .arrow {
    width: 36px; height: 36px; border-radius: 50%; background: var(--muted);
    display: flex; align-items: center; justify-content: center; color: var(--primary);
    transition: background .2s ease; flex-shrink: 0;
}
.engage-card:hover .arrow { background: var(--accent); }

/* ---- FAQ ---- */
.faq-section { background: var(--muted); }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq { max-width: 800px; margin: 0 auto; }
.faq .wp-block-details {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    cursor: pointer;
}
.faq .wp-block-details summary {
    font-family: var(--display); font-weight: 600; font-size: 19px;
    color: var(--primary); list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq .wp-block-details summary::-webkit-details-marker { display: none; }
.faq .wp-block-details summary::after { content: '+'; font-size: 24px; font-weight: 400; }
.faq .wp-block-details[open] summary::after { content: '−'; }
.faq .wp-block-details p { margin-top: 14px; color: rgba(11, 31, 31, 0.72); font-size: 15px; max-width: 680px; }

/* ---- FOOTER ---- */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 32px; background: var(--background); }
.footer-grid { gap: 48px; margin-bottom: 48px; }
.site-footer h5 { font-family: var(--display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin: 0 0 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer li, .site-footer li a { font-size: 14px; color: rgba(11, 31, 31, 0.7); text-decoration: none; }
.site-footer li a:hover { color: var(--primary); }
.footer-about { font-size: 14px; color: rgba(11, 31, 31, 0.7); max-width: 320px; margin-top: 16px; }
.footer-bottom {
    padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: rgba(11, 31, 31, 0.55); margin: 0; }
.footer-legal { gap: 24px; }
.footer-legal p { margin: 0; }
.footer-legal a { color: rgba(11, 31, 31, 0.55); text-decoration: none; }
.footer-legal a:hover { color: var(--primary); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .wp-block-columns.hero-grid,
    .wp-block-columns.split,
    .wp-block-columns.engage { flex-direction: column !important; gap: 40px; }
    .wp-block-columns.hero-grid .wp-block-column,
    .wp-block-columns.split .wp-block-column,
    .wp-block-columns.engage .wp-block-column { flex-basis: 100% !important; width: 100%; }
    .wp-block-columns.steps { grid-template-columns: repeat(2, 1fr); }
    .wp-block-columns.benefits { grid-template-columns: 1fr; }
    .wp-block-columns.roadmap { grid-template-columns: 1fr; gap: 24px; }
    .wp-block-columns.roadmap::before { display: none; }
    .footer-grid { flex-wrap: wrap; }
    .footer-grid > .wp-block-column { flex-basis: 48% !important; }
    main > section { padding: 64px 0; }
    .step-num { margin-bottom: 40px; }
    nav.top .inner { padding: 14px 20px; gap: 16px; }
    .container { padding: 0 20px; }
}
