/* ============================================================
   FHD & WISSLY – gemeinsames Stylesheet
   Basis: IT-Compliance-Beratung + Wissly-spezifische Klassen
   ============================================================ */
/* ============================================================
   FHD IT-Compliance-Beratung – gemeinsames Stylesheet
   Seriöses B2B-Design, ruhige Blau-/Grautöne, dezenter Akzent
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #1a4b8c;          /* Primärblau */
  --blue-light: #2060b0;
  --blue-pale: #e8f0f9;
  --navy: #0f2d5a;
  --text: #1a1a1a;
  --text-muted: #555;
  --border: #d0d8e4;
  --bg: #ffffff;
  --bg-light: #f5f7fa;
  --green: #1a7a3c;         /* dezenter Akzent / Bestätigung */
  --green-pale: #e8f5ed;
  --accent: #2dc87a;        /* CTA-Akzent (Wissly-Grün) */
  --amber: #8a5a00;
  --amber-pale: #fef8e8;
  --font: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', Arial, sans-serif;
}
body { font-family: var(--sans); font-size: 16px; color: var(--text); background: var(--bg); line-height: 1.65; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* TOPBAR */
.topbar { background: var(--navy); color: #fff; font-size: 13px; padding: 6px 0; }
.topbar .container { display: flex; justify-content: flex-end; gap: 20px; }
.topbar a { color: #a8c4e0; text-decoration: none; }
.topbar a:hover { color: #fff; }

/* HEADER */
header { border-bottom: 1px solid var(--border); padding: 16px 0; background: #fff; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.logo-link { text-decoration: none; display: flex; align-items: center; gap: 14px; }
.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text-wrap { line-height: 1.2; }
.logo-wordmark { font-family: var(--font); font-size: 24px; font-weight: bold; color: var(--blue); display: block; }
.logo-sub { font-family: var(--sans); font-size: 11px; color: var(--text-muted); display: block; letter-spacing: 0.03em; }
nav.main { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
nav.main a { font-size: 14px; color: var(--text); text-decoration: none; }
nav.main a:hover { color: var(--blue); text-decoration: underline; }
nav.main a.active { color: var(--blue); font-weight: bold; }
.nav-cta { background: var(--blue); color: #fff !important; padding: 8px 16px; border-radius: 2px; font-size: 14px; font-weight: bold; text-decoration: none !important; }
.nav-cta:hover { background: var(--blue-light) !important; }

/* HERO */
.hero { background: var(--blue); color: #fff; padding: 56px 0 52px; }
.hero.subtle { background: linear-gradient(180deg, #1a4b8c 0%, #173f76 100%); }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 12px; padding: 3px 11px; border-radius: 2px; margin-bottom: 14px; }
.hero h1 { font-family: var(--font); font-size: 33px; font-weight: bold; line-height: 1.28; margin-bottom: 16px; max-width: 760px; }
.hero p.lead { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 660px; margin-bottom: 28px; line-height: 1.7; }
.hero-cta { display: inline-block; background: #fff; color: var(--blue); font-weight: bold; font-size: 14px; padding: 12px 24px; border-radius: 2px; text-decoration: none; margin: 0 10px 10px 0; }
.hero-cta.primary { background: var(--accent); color: #0f3d24; }
.hero-cta.sec { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); font-weight: normal; }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: var(--text-muted); padding: 11px 0; border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--blue); text-decoration: none; }

/* SECTION */
section { padding: 44px 0; }
section.alt { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec-head { font-family: var(--font); font-size: 23px; color: var(--blue); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--blue); }
.sec-lead { max-width: 800px; margin-bottom: 24px; font-size: 16px; color: var(--text-muted); }
section p { max-width: 820px; margin-bottom: 14px; }
section p.wide { max-width: 100%; }

/* CARD GRIDS */
.grid { display: grid; gap: 18px; }
.grid.c2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.c4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.card { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 20px 22px; }
.card.alt-bg { background: var(--bg-light); }
.card h3 { font-size: 16px; font-weight: bold; color: var(--blue); margin-bottom: 8px; }
.card h3.dark { color: var(--text); }
.card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; max-width: 100%; }
.card .num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: bold; font-size: 15px; margin-bottom: 12px; }

/* CHECK LIST */
ul.checks { list-style: none; padding: 0; margin: 0 0 14px; max-width: 820px; }
ul.checks li { padding: 7px 0 7px 28px; position: relative; font-size: 15px; border-bottom: 1px solid #eef1f5; }
ul.checks li:last-child { border-bottom: none; }
ul.checks li::before { content: '✓'; position: absolute; left: 4px; top: 7px; color: var(--green); font-weight: bold; }
ul.checks.arrow li::before { content: '→'; color: var(--blue); }

/* RESULT / OUTCOME BOX */
.outcome { background: var(--green-pale); border: 1px solid #b8ddc6; border-left: 4px solid var(--green); border-radius: 0 4px 4px 0; padding: 18px 22px; max-width: 820px; }
.outcome h3 { color: #155f30; font-size: 16px; margin-bottom: 10px; }
.outcome ul { list-style: none; padding: 0; margin: 0; }
.outcome ul li { padding: 5px 0 5px 26px; position: relative; font-size: 14px; }
.outcome ul li::before { content: '✓'; position: absolute; left: 4px; color: var(--green); font-weight: bold; }

/* DELIMIT / ABGRENZUNG BOX */
.delimit { background: var(--amber-pale); border-left: 4px solid #c07800; border-radius: 0 4px 4px 0; padding: 16px 20px; max-width: 820px; font-size: 14px; color: var(--amber); }
.delimit strong { color: #6e4800; }

/* PROBLEM ITEMS */
.problem-item { background: var(--bg-light); border: 1px solid var(--border); border-radius: 4px; padding: 18px 20px; }
.problem-item h3 { font-size: 15px; font-weight: bold; color: var(--text); margin-bottom: 7px; }
.problem-item p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* CTA BAND */
.cta-band { background: var(--blue); color: #fff; padding: 40px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px; }
.cta-band h2 { font-family: var(--font); font-size: 23px; color: #fff; margin: 0; max-width: 620px; }
.cta-band p { color: rgba(255,255,255,0.82); margin: 8px 0 0; font-size: 15px; max-width: 620px; }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 10px; }
.cta-band a.btn { display: inline-block; font-weight: bold; font-size: 14px; padding: 12px 24px; border-radius: 2px; text-decoration: none; white-space: nowrap; text-align: center; }
.cta-band a.btn-primary { background: var(--accent); color: #0f3d24; }
.cta-band a.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: 4px; margin-bottom: 10px; overflow: hidden; max-width: 100%; }
.faq-item summary { cursor: pointer; padding: 15px 18px; font-size: 15px; font-weight: bold; color: var(--text); background: var(--bg-light); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--blue); font-size: 20px; font-weight: bold; margin-left: 12px; flex-shrink: 0; }
.faq-item[open] summary::after { content: '–'; }
.faq-item[open] summary { color: var(--blue); }
.faq-answer { padding: 15px 18px 17px; font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.faq-answer a { color: var(--blue); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-box { background: var(--bg-light); border: 1px solid var(--border); border-radius: 4px; padding: 24px; }
.contact-box h3 { color: var(--blue); font-family: var(--font); font-size: 19px; margin-bottom: 14px; }
.contact-box p { font-size: 15px; margin-bottom: 10px; }
.contact-box a { color: var(--blue); }
.contact-cta { display: inline-block; background: var(--accent); color: #0f3d24; font-weight: bold; font-size: 15px; padding: 13px 26px; border-radius: 2px; text-decoration: none; margin-top: 8px; }

/* SERVICE CARDS (Übersicht) */
.svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 22px; transition: border-color .15s, box-shadow .15s; text-decoration: none; }
.svc-card:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(26,75,140,0.10); }
.svc-card h3 { color: var(--blue); font-size: 17px; margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--text-muted); margin: 0 0 14px; flex: 1; }
.svc-card .more { font-size: 14px; font-weight: bold; color: var(--blue); }

/* FOOTER */
footer { background: #1e2a3a; color: #aab; font-size: 13px; padding: 38px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; margin-bottom: 28px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 12px; font-weight: bold; }
.footer-col a { color: #aab; text-decoration: none; display: block; line-height: 2; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2e3e52; padding-top: 16px; text-align: center; }

@media (max-width: 760px) {
  .hero h1 { font-size: 27px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

/* ===== Wissly-spezifische Klassen ===== */
nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
nav a { font-size: 14px; color: var(--text); text-decoration: none; }
nav a:hover { color: var(--blue); text-decoration: underline; }
nav a.active { color: var(--blue); font-weight: bold; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 640px; margin-bottom: 28px; line-height: 1.7; }
.problem { padding: 44px 0 8px; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.solution { padding: 40px 0; }
.solution p { max-width: 780px; margin-bottom: 14px; font-size: 16px; }
.mockup { margin: 28px 0 4px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 6px; padding: 26px 24px; }
.mockup-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0; }
.mockup-screen { background: #fff; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 6px rgba(26,75,140,0.08); display: flex; flex-direction: column; }
.mockup-bar { background: var(--blue); height: 26px; display: flex; align-items: center; padding: 0 9px; gap: 5px; }
.mockup-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.mockup-bar .mb-title { margin-left: 8px; color: #fff; font-size: 11px; font-weight: bold; }
.mockup-content { padding: 16px 16px 18px; flex: 1; }
.mockup-label { font-size: 12px; font-weight: bold; color: var(--blue); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.mock-line { height: 8px; border-radius: 4px; background: #e3e9f1; margin-bottom: 7px; }
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w90 { width: 90%; }
.mock-play { width: 38px; height: 38px; border-radius: 50%; background: var(--green-pale); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; margin: 6px 0 10px; }
.mock-play::after { content: ''; border-left: 11px solid var(--green); border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.mock-q { font-size: 12px; color: var(--text); margin-bottom: 8px; font-weight: bold; }
.mock-opt { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.mock-opt .box { width: 13px; height: 13px; border: 1.5px solid var(--border); border-radius: 3px; flex-shrink: 0; }
.mock-opt.correct .box { background: var(--green); border-color: var(--green); position: relative; }
.mock-opt.correct .box::after { content: '✓'; color: #fff; font-size: 9px; position: absolute; top: -1px; left: 2px; }
.mock-cert { text-align: center; padding: 4px 0; }
.mock-cert .seal { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 8px; }
.mock-cert .ct-h { font-family: var(--font); font-size: 13px; font-weight: bold; color: var(--blue); margin-bottom: 4px; }
.mockup-arrow { display: flex; align-items: center; justify-content: center; padding: 0 10px; color: var(--blue); font-size: 22px; font-weight: bold; }
.mockup-caption { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 18px; }
.process { padding: 40px 0; background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; counter-reset: step; }
.process-step { background: #fff; border: 1px solid var(--border); border-radius: 3px; padding: 18px 18px 18px 18px; position: relative; }
.process-step .num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: bold; font-size: 14px; margin-bottom: 10px; }
.process-step h4 { font-size: 14px; font-weight: bold; color: var(--text); margin-bottom: 4px; }
.process-step p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.duties { padding: 40px 0; }
.duty-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 3px; }
table.duty-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
table.duty-table thead th { background: var(--blue); color: #fff; text-align: left; padding: 11px 16px; font-weight: bold; font-size: 13px; }
table.duty-table tbody td { padding: 11px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
table.duty-table tbody tr:nth-child(even) { background: var(--bg-light); }
table.duty-table tbody tr:last-child td { border-bottom: none; }
table.duty-table .d-topic { font-weight: bold; color: var(--text); }
table.duty-table .d-interval { white-space: nowrap; color: var(--blue); font-weight: bold; }
table.duty-table .d-source { color: var(--text-muted); font-size: 13px; }
.duty-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }
.audience { padding: 40px 0; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.audience-item { background: var(--bg-light); border: 1px solid var(--border); border-radius: 3px; padding: 14px 16px; }
.audience-item h4 { font-size: 14px; font-weight: bold; color: var(--text); margin-bottom: 4px; }
.audience-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.variants { padding: 40px 0; background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.variant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.variant-card { background: #fff; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; display: flex; flex-direction: column; }
.variant-card.adv { border: 2px solid var(--blue); }
.variant-header { padding: 22px 24px; }
.variant-header.essential { background: var(--bg-light); border-bottom: 1px solid var(--border); }
.variant-header.advanced { background: var(--blue); color: #fff; }
.variant-header .v-name { font-family: var(--font); font-size: 22px; font-weight: bold; margin-bottom: 4px; }
.variant-header.essential .v-name { color: var(--blue); }
.variant-header .v-sub { font-size: 13px; }
.variant-header.essential .v-sub { color: var(--text-muted); }
.variant-header.advanced .v-sub { color: rgba(255,255,255,0.82); }
.variant-header .v-price { font-family: var(--font); font-size: 24px; font-weight: bold; margin-top: 12px; }
.variant-header.essential .v-price { color: var(--blue); }
.variant-header .v-price small { font-size: 14px; font-weight: normal; }
.variant-header .v-price-note { font-size: 12px; margin-top: 2px; }
.variant-header.essential .v-price-note { color: var(--text-muted); }
.variant-header.advanced .v-price-note { color: rgba(255,255,255,0.75); }
.variant-body { padding: 20px 24px; flex: 1; }
.variant-body ul { list-style: none; padding: 0; margin: 0; }
.variant-body ul li { padding: 5px 0 5px 22px; position: relative; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
.variant-body ul li:last-child { border-bottom: none; }
.variant-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: bold; font-size: 12px; top: 6px; }
.variant-footer { padding: 0 24px 22px; }
.variant-footer a.btn { display: block; text-align: center; padding: 11px; border-radius: 2px; text-decoration: none; font-size: 14px; font-weight: bold; }
.variant-footer a.btn-blue { background: var(--blue); color: #fff; }
.variant-footer a.btn-outline { background: #fff; color: var(--blue); border: 1px solid var(--blue); }
.variants-compare-link { text-align: center; margin-top: 22px; font-size: 14px; }
.variants-compare-link a { color: var(--blue); font-weight: bold; text-decoration: none; }
.variants-compare-link a:hover { text-decoration: underline; }
.trust { padding: 44px 0; }
.trust p { max-width: 780px; margin-bottom: 14px; font-size: 16px; }
.compliance-note-wrap { padding: 8px 0 44px; }
.compliance-note { background: var(--amber-pale); border-left: 4px solid #c07800; padding: 14px 18px; border-radius: 0 3px 3px 0; font-size: 14px; color: var(--amber); }
.faq { padding: 44px 0; }
.cta-band a { display: inline-block; background: #fff; color: var(--blue); font-weight: bold; font-size: 14px; padding: 11px 24px; border-radius: 2px; text-decoration: none; white-space: nowrap; }
.intro { padding: 40px 0 0; }
.intro p { max-width: 780px; margin-bottom: 14px; font-size: 16px; }
.features { padding: 40px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.feature-item { background: var(--bg-light); border: 1px solid var(--border); border-radius: 3px; padding: 18px 20px 18px 44px; position: relative; }
.feature-item::before { content: '✓'; position: absolute; left: 16px; top: 17px; color: var(--green); font-weight: bold; font-size: 15px; }
.feature-item h4 { font-size: 15px; font-weight: bold; color: var(--text); margin-bottom: 5px; }
.feature-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.pricing { padding: 40px 0; background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-card { background: #fff; border: 2px solid var(--blue); border-radius: 4px; max-width: 560px; margin: 0 auto; overflow: hidden; }
.price-head { background: var(--blue); color: #fff; padding: 24px; text-align: center; }
.price-head .p-name { font-family: var(--font); font-size: 22px; font-weight: bold; margin-bottom: 6px; }
.price-head .p-amount { font-family: var(--font); font-size: 40px; font-weight: bold; }
.price-head .p-amount small { font-size: 16px; font-weight: normal; }
.price-head .p-note { font-size: 13px; opacity: 0.82; margin-top: 4px; }
.price-body { padding: 22px 28px; }
.price-body ul { list-style: none; padding: 0; margin: 0 0 8px; }
.price-body ul li { padding: 6px 0 6px 24px; position: relative; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
.price-body ul li:last-child { border-bottom: none; }
.price-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: bold; font-size: 12px; top: 8px; }
.price-addon { font-size: 13px; color: var(--text-muted); margin-top: 10px; }
.price-cta { padding: 0 28px 26px; }
.price-cta a { display: block; text-align: center; background: var(--blue); color: #fff; font-weight: bold; padding: 12px; border-radius: 2px; text-decoration: none; font-size: 15px; }
.compliance { padding: 40px 0; }
.compliance p { max-width: 780px; margin-bottom: 14px; font-size: 16px; }
.upsell { padding: 36px 0; background: var(--bg-light); border-top: 1px solid var(--border); }
.upsell-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.upsell-inner h3 { font-family: var(--font); font-size: 19px; color: var(--blue); margin-bottom: 4px; }
.upsell-inner p { font-size: 14px; color: var(--text-muted); margin: 0; max-width: 560px; }
.upsell-inner a { display: inline-block; background: #fff; color: var(--blue); border: 1px solid var(--blue); font-weight: bold; font-size: 14px; padding: 11px 22px; border-radius: 2px; text-decoration: none; white-space: nowrap; }
.usecases { padding: 36px 0 0; }
.usecase-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; }
.usecase-list .uc { background: var(--bg-light); border: 1px solid var(--border); border-radius: 3px; padding: 12px 14px 12px 38px; position: relative; font-size: 14px; color: var(--text); }
.usecase-list .uc::before { content: '→'; position: absolute; left: 14px; top: 12px; color: var(--blue); font-weight: bold; }
.modules { padding: 40px 0; background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.module-item { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--blue); border-radius: 0 3px 3px 0; padding: 18px 20px; }
.module-item h4 { font-size: 15px; font-weight: bold; color: var(--blue); margin-bottom: 6px; }
.module-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.price-body p { font-size: 14px; color: var(--text-muted); margin: 0 0 12px; line-height: 1.6; }
.intro h2 { font-family: var(--font); font-size: 22px; color: var(--blue); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--blue); }
.common { padding: 40px 0; }
.common-banner { background: var(--green-pale); border: 1px solid #b8ddc6; border-left: 4px solid var(--green); border-radius: 0 3px 3px 0; padding: 14px 18px; margin-bottom: 24px; font-size: 14px; color: #155f30; }
.common-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.common-item { background: var(--bg-light); border: 1px solid var(--border); border-radius: 3px; padding: 16px 18px 16px 44px; position: relative; }
.common-item::before { content: '✓'; position: absolute; left: 16px; top: 15px; color: var(--green); font-weight: bold; font-size: 15px; }
.common-item h4 { font-size: 15px; font-weight: bold; color: var(--text); margin-bottom: 5px; }
.common-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.diff { padding: 40px 0; background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.diff-card { background: #fff; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; display: flex; flex-direction: column; }
.diff-card.adv { border: 2px solid var(--blue); }
.diff-header { padding: 22px 24px; }
.diff-header.essential { background: var(--bg-light); border-bottom: 1px solid var(--border); }
.diff-header.advanced { background: var(--blue); color: #fff; }
.diff-header .d-name { font-family: var(--font); font-size: 22px; font-weight: bold; margin-bottom: 4px; }
.diff-header.essential .d-name { color: var(--blue); }
.diff-header .d-sub { font-size: 13px; }
.diff-header.essential .d-sub { color: var(--text-muted); }
.diff-header.advanced .d-sub { color: rgba(255,255,255,0.82); }
.diff-body { padding: 20px 24px; flex: 1; }
.diff-body .d-cat { font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin: 16px 0 8px; }
.diff-body .d-cat:first-child { margin-top: 0; }
.diff-body ul { list-style: none; padding: 0; margin: 0; }
.diff-body ul li { padding: 5px 0 5px 22px; position: relative; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
.diff-body ul li:last-child { border-bottom: none; }
.diff-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: bold; font-size: 12px; top: 6px; }
.diff-body ul li.plus::before { content: '+'; color: var(--blue); font-size: 15px; top: 4px; }
.diff-footer { padding: 0 24px 22px; }
.diff-footer a.btn { display: block; text-align: center; padding: 11px; border-radius: 2px; text-decoration: none; font-size: 14px; font-weight: bold; }
.diff-footer a.btn-blue { background: var(--blue); color: #fff; }
.diff-footer a.btn-outline { background: #fff; color: var(--blue); border: 1px solid var(--blue); }
.compliance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin-bottom: 20px; }
.compliance-badge { background: var(--bg-light); border: 1px solid var(--border); border-radius: 3px; padding: 14px 16px; text-align: center; }
.compliance-badge .cb-name { font-size: 15px; font-weight: bold; color: var(--blue); margin-bottom: 4px; }
.compliance-badge .cb-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.legal { padding: 40px 0 48px; }
.legal h1 { font-family: var(--font); font-size: 30px; color: var(--blue); margin-bottom: 8px; }
.legal h2 { font-family: var(--font); font-size: 19px; color: var(--blue); margin: 30px 0 12px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.legal p { max-width: 800px; margin-bottom: 12px; }
.legal .block { background: var(--bg-light); border: 1px solid var(--border); border-radius: 3px; padding: 18px 20px; max-width: 800px; margin-bottom: 18px; }
.legal .block strong { color: var(--text); }
.legal ul { max-width: 800px; margin: 0 0 14px 20px; }
.legal ul li { margin-bottom: 5px; }
.legal a { color: var(--blue); }
.legal .muted { color: var(--text-muted); font-size: 14px; }
.legal h3 { font-size: 16px; color: var(--text); margin: 20px 0 8px; font-weight: bold; }
.legal ol { max-width: 820px; margin: 0 0 14px 22px; }
.legal ol li { margin-bottom: 5px; }
.legal .editnote { background: var(--amber-pale); border-left: 4px solid #c07800; padding: 14px 18px; border-radius: 0 3px 3px 0; font-size: 14px; color: var(--amber); max-width: 820px; margin: 14px 0 24px; }

/* ===== Cross-Link (dezenter Bereichswechsel zur anderen Domain) ===== */
nav.main a.cross-link {
  font-size: 13px;
  color: var(--text-muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
  margin-left: 2px;
}
nav.main a.cross-link:hover { color: var(--blue); text-decoration: none; }
.footer-logo { width: 30px; height: 30px; }
