/* Landing-Unterseiten (Funktionen, Preise, FAQ) – ergaenzt landing.css */

/* Buendig mit dem Logo in der Topbar (.landing-nav: max-width 1200px + 2rem Padding) */
.subpage-inner { max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }

/* Header mit dekorativem Hintergrund */
.subpage-header {
    background: linear-gradient(160deg, #f0faf9 0%, #e8f5f4 30%, #fff 60%, #f8f9fa 100%);
    padding: 4.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.subpage-header::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28,147,144,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.subpage-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28,147,144,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.subpage-header h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; color: #1a1a2e; margin-bottom: 1.25rem; position: relative; }
.subpage-lead { font-size: 1.1rem; line-height: 1.75; color: #555; max-width: 720px; position: relative; }

.subpage-breadcrumbs { margin-bottom: 1.5rem; font-size: 0.82rem; color: #888; position: relative; }
.subpage-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.subpage-breadcrumbs li { display: flex; align-items: center; gap: 0.4rem; }
.subpage-breadcrumbs a { color: #1c9390; text-decoration: none; font-weight: 500; }
.subpage-breadcrumbs a:hover { text-decoration: underline; }

/* Sections */
.subpage-section { padding: 3.5rem 0; }
.subpage-section-muted { background: #f0faf9; }
.subpage-section h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; color: #1a1a2e; margin-bottom: 1.5rem; }

/* Benefits als Karten mit Icons */
.subpage-benefits-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.subpage-benefit-card {
    background: linear-gradient(135deg, #f7f8fa 0%, #f0f2f5 40%, #f5f6f9 60%, #f2f3f7 100%);
    border: 1px solid #eef0f3;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.subpage-benefit-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(28,147,144,0.1); }
.subpage-benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1c9390, #2ab5b2);
    opacity: 0;
    transition: opacity .2s;
}
.subpage-benefit-card:hover::before { opacity: 1; }
.subpage-benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(28,147,144,0.12) 0%, rgba(28,147,144,0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: #1c9390;
}
.subpage-benefit-card p { color: #555; line-height: 1.65; font-size: 0.95rem; }

/* Fallback: einfache Liste */
.subpage-list { list-style: none; display: grid; gap: 0.85rem; }
.subpage-list li { position: relative; padding-left: 1.75rem; color: #555; line-height: 1.65; }
.subpage-list li::before { content: ''; position: absolute; left: 0; top: 0.45rem; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: #1c9390; }

/* Schritte */
.subpage-steps { counter-reset: subpage-step; list-style: none; display: grid; gap: 1.25rem; }
.subpage-steps li {
    counter-increment: subpage-step;
    position: relative;
    padding-left: 3.5rem;
    color: #555;
    line-height: 1.65;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}
.subpage-steps li::before {
    content: counter(subpage-step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1c9390 0%, #17807d 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(28,147,144,0.25);
}

/* Bild-Platzhalter */
.subpage-screenshot {
    background: linear-gradient(135deg, #f0faf9 0%, #e8f5f4 50%, #f0f2f5 100%);
    border: 2px dashed #d0e8e7;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.subpage-screenshot svg { opacity: 0.4; }
.subpage-screenshot-label { font-weight: 600; color: #aaa; }

/* Highlight-Box */
.subpage-highlight {
    background: linear-gradient(135deg, rgba(28,147,144,0.06) 0%, rgba(28,147,144,0.02) 100%);
    border-left: 4px solid #1c9390;
    border-radius: 0 1rem 1rem 0;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}
.subpage-highlight p { color: #444; line-height: 1.7; font-size: 0.95rem; }
.subpage-highlight strong { color: #1a1a2e; }

/* Abwechselndes Layout: Text + Bild */
.subpage-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.subpage-split--reverse .subpage-split-content { order: 2; }
.subpage-split--reverse .subpage-split-visual { order: 1; }
.subpage-split-content h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; color: #1a1a2e; margin-bottom: 1rem; }
.subpage-split-content p { color: #555; line-height: 1.75; }

/* FAQ */
.subpage-faq { display: grid; gap: 1.25rem; }
.subpage-faq-item {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: box-shadow .2s ease;
}
.subpage-faq-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.subpage-faq-item dt { font-weight: 700; color: #1a1a2e; margin-bottom: 0.5rem; }
.subpage-faq-item dd { color: #666; line-height: 1.7; font-size: 0.95rem; }

/* Feature-Karten (Hub-Seite) */
.subpage-link-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #f7f8fa 0%, #f0f2f5 40%, #f5f6f9 60%, #f2f3f7 100%);
    border: 1px solid #eef0f3;
    border-radius: 1rem;
    padding: 2rem;
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}
.subpage-link-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1c9390, #2ab5b2);
    opacity: 0;
    transition: opacity .2s;
}
.subpage-link-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(28,147,144,0.12); }
.subpage-link-card:hover::before { opacity: 1; }
.subpage-link-card h3 { color: #1a1a2e; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.subpage-link-card p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* Vertrauens-Badges */
.subpage-badges-section { padding: 3rem 0 0; }

/* Badges + Preisliste als ein gemeinsamer Block */
.pricing-block { background: linear-gradient(135deg, #e8f0f0 0%, #eef2f6 40%, #e4ecec 70%, #f0f4f8 100%); }
.pricing-block .subpage-badges-section { background: transparent; }
.pricing-block .pricing { background: transparent; padding-top: 2.5rem; }
.pricing-block .subpage-badge {
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255,255,255,0.5);
}
.subpage-badges {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.subpage-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 1rem;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: transform .2s ease, box-shadow .2s ease;
}
.subpage-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,147,144,0.1); }
.subpage-badge-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, rgba(28,147,144,0.14) 0%, rgba(28,147,144,0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c9390;
}
.subpage-badge-text { display: flex; flex-direction: column; gap: 0.2rem; }
.subpage-badge-text strong { color: #1a1a2e; font-size: 0.95rem; font-weight: 700; }
.subpage-badge-text span { color: #6b7280; font-size: 0.85rem; line-height: 1.55; }

/* Plan-Vergleich */
.plan-compare-wrap {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 1rem;
    overflow-x: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.plan-compare { width: 100%; border-collapse: collapse; min-width: 620px; }
.plan-compare thead th {
    background: linear-gradient(135deg, #f0faf9 0%, #e8f5f4 100%);
    color: #1a1a2e;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
    padding: 1rem 0.9rem;
    border-bottom: 1px solid #e4eceb;
}
.plan-compare thead th:first-child { text-align: left; }
.plan-compare tbody th {
    text-align: left;
    font-weight: 600;
    color: #444;
    font-size: 0.92rem;
    padding: 0.9rem;
    border-bottom: 1px solid #f2f4f6;
}
.plan-compare tbody td {
    text-align: center;
    padding: 0.9rem;
    border-bottom: 1px solid #f2f4f6;
}
.plan-compare tbody tr:last-child th,
.plan-compare tbody tr:last-child td { border-bottom: none; }
.plan-compare tbody tr:hover th,
.plan-compare tbody tr:hover td { background: #fafcfc; }
.plan-compare-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1c9390 0%, #17807d 100%);
    color: #fff;
}
.plan-compare-no { color: #c3c8ce; font-weight: 700; }
.plan-compare-value { font-size: 0.85rem; font-weight: 600; color: #1c9390; }
.plan-compare-note { margin-top: 1.25rem; font-size: 0.85rem; color: #888; line-height: 1.7; }

/* FAQ / Unterseiten – Themen-Navigation */
.faq-topics,
.subpage-topics {
    padding: 1.75rem 0;
    background: linear-gradient(135deg, #f0faf9 0%, #eef2f6 100%);
    border-bottom: 1px solid #e6ecec;
}
.faq-topics-title,
.subpage-topics-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1c9390;
    margin-bottom: 0.85rem;
}
.faq-topics-list,
.subpage-topics-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.faq-topics-list a,
.subpage-topics-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.faq-topics-list a:hover,
.subpage-topics-list a:hover {
    border-color: #1c9390;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(28,147,144,0.14);
}
.faq-topics-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: rgba(28,147,144,0.12);
    color: #17807d;
    font-size: 0.75rem;
    font-weight: 800;
}

/* FAQ – Gruppen */
.faq-group-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.faq-group-head h2 { margin-bottom: 0.35rem; }
.faq-group-number {
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1c9390;
    background: rgba(28,147,144,0.1);
    border-radius: 0.75rem;
    padding: 0.45rem 0.7rem;
    line-height: 1;
}
.faq-group-intro { color: #6b7280; font-size: 0.95rem; line-height: 1.6; }

/* FAQ – Accordion */
.faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-entry {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-entry:hover { border-color: #d8e4e4; box-shadow: 0 8px 24px rgba(28,147,144,0.08); }
.faq-entry[open] { border-color: rgba(28,147,144,0.35); }
.faq-entry summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    padding: 1.05rem 1.25rem;
    list-style: none;
}
.faq-entry summary::-webkit-details-marker { display: none; }
.faq-entry-question { color: #1a1a2e; font-size: 1rem; font-weight: 700; line-height: 1.5; }
.faq-entry-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(28,147,144,0.1);
    color: #1c9390;
    transition: transform .2s ease;
}
.faq-entry[open] .faq-entry-icon { transform: rotate(180deg); }
.faq-entry-answer { padding: 0 1.25rem 1.2rem; }
.faq-entry-answer p { color: #555; font-size: 0.95rem; line-height: 1.75; }

/* Hilfe-Box */
.subpage-help-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, #f0faf9 0%, #eef4f8 100%);
    border: 1px solid #e0eceb;
    border-radius: 1.25rem;
    padding: 1.75rem;
}
.subpage-help-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    background: #fff;
    color: #1c9390;
    box-shadow: 0 4px 14px rgba(28,147,144,0.12);
}
.subpage-help-text { flex: 1; }
.subpage-help-text h2 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.subpage-help-text p { color: #5c6470; font-size: 0.95rem; line-height: 1.65; }
.subpage-help-cta {
    flex-shrink: 0;
    display: inline-block;
    background: linear-gradient(135deg, #1c9390 0%, #17807d 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.subpage-help-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(28,147,144,0.28); }

/* Gezeichnete Mockups auf Unterseiten */
.subpage-mockup { width: 100%; }
.subpage-mockup .mockup-body { min-height: 240px; }

/* Mockup – Kader */
.mockup-squad { width: 100%; display: flex; flex-direction: column; gap: 0.5rem; }
.mockup-squad-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.85rem;
    background: #f7f8fa;
    border: 1px solid #eef0f3;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: #444;
}
.mockup-squad-number {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1c9390 0%, #17807d 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}
.mockup-squad-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-squad-position { flex-shrink: 0; font-size: 0.75rem; font-weight: 700; color: #1c9390; }
.mockup-squad-status {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}
.mockup-squad-status--fit { background: #f0faf9; color: #17807d; }
.mockup-squad-status--injured { background: #fdeceb; color: #c0392b; }
.mockup-squad-status--absent { background: #f3f4f6; color: #6b7280; }

/* Mockup – Sharing */
.mockup-share { width: 100%; display: flex; flex-direction: column; gap: 1.25rem; }
.mockup-share-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.9rem;
    background: #f0faf9;
    border: 1px solid #d1e8e7;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: #17807d;
}
.mockup-share-link svg { flex-shrink: 0; color: #1c9390; }
.mockup-share-link > span:first-of-type { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-share-copy {
    flex-shrink: 0;
    background: #1c9390;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

/* Schritte als Karten */
.subpage-steps--cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Abschnitts-Kopf */
.subpage-section-head { margin-bottom: 2rem; max-width: 720px; }
.subpage-section-lead { margin-top: 0.65rem; color: #6b7280; font-size: 1rem; line-height: 1.7; }

/* Funktionen-Hub – Karten */
.feature-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
}
.feature-hub-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 1.25rem;
    padding: 1.6rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature-hub-card:hover {
    transform: translateY(-4px);
    border-color: rgba(28,147,144,0.35);
    box-shadow: 0 16px 34px rgba(28,147,144,0.12);
}
.feature-hub-card--wide { grid-column: span 2; }
.feature-hub-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    margin-bottom: 1.1rem;
    background: linear-gradient(135deg, rgba(28,147,144,0.12) 0%, rgba(28,147,144,0.04) 100%);
    color: #1c9390;
}
.feature-hub-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: #1a1a2e; }
.feature-hub-teaser { color: #666; font-size: 0.95rem; line-height: 1.65; }
.feature-hub-benefits {
    list-style: none;
    margin: 1.1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.feature-hub-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.55;
}
.feature-hub-benefits svg { flex-shrink: 0; margin-top: 0.15rem; color: #1c9390; }
.feature-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1.25rem;
    color: #1c9390;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}
.feature-hub-link svg { transition: transform .2s ease; }
.feature-hub-card:hover .feature-hub-link svg { transform: translateX(3px); }

/* Ablauf-Band */
.subpage-workflow {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f0faf9 0%, #eef2f6 55%, #f0f4f8 100%);
}
.subpage-workflow-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    counter-reset: none;
}
.subpage-workflow-step {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 1.25rem;
    padding: 1.5rem;
}
.subpage-workflow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    margin-bottom: 0.9rem;
    background: linear-gradient(135deg, #1c9390 0%, #17807d 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
}
.subpage-workflow-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: #1a1a2e; }
.subpage-workflow-step p { color: #5c6470; font-size: 0.92rem; line-height: 1.65; }

/* Content-Hub: Guides & Glossar */
.content-chip--active {
    border-color: #1c9390 !important;
    background: rgba(28,147,144,0.08) !important;
    color: #17807d !important;
}
.content-empty {
    background: #fff;
    border: 1px dashed #d8e4e4;
    border-radius: 1rem;
    padding: 2rem;
    color: #6b7280;
    text-align: center;
}
.content-section-title { font-size: 1.4rem; margin-bottom: 1.5rem; }
.content-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.content-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 1.15rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 1.5rem;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.content-card:hover {
    border-color: #d8e4e4;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(28,147,144,0.1);
}
.content-card-badge {
    align-self: flex-start;
    background: rgba(28,147,144,0.1);
    color: #17807d;
    border: 1px solid rgba(28,147,144,0.2);
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}
.content-card-title { font-size: 1.15rem; line-height: 1.45; margin: 0; }
.content-card-title a { color: #1a1a2e; text-decoration: none; }
.content-card-title a:hover { color: #1c9390; }
.content-card-excerpt { color: #5c6470; font-size: 0.95rem; line-height: 1.7; }
.content-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: #8a929c;
    font-size: 0.82rem;
    margin-top: auto;
}
.content-article-meta { margin-bottom: 2rem; }
.content-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1c9390;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}
.content-card-link:hover { text-decoration: underline; }
.content-pagination { margin-top: 2rem; }

/* Beitrags- und Begriffstext */
.content-article-body { max-width: 46rem; color: #444; font-size: 1.02rem; line-height: 1.85; }
.content-article-body h2 { font-size: 1.45rem; margin: 2.25rem 0 0.9rem; }
.content-article-body h3 { font-size: 1.15rem; margin: 1.75rem 0 0.7rem; }
.content-article-body p { margin-bottom: 1.15rem; }
.content-article-body ul,
.content-article-body ol { margin: 0 0 1.15rem 1.25rem; }
.content-article-body li { margin-bottom: 0.5rem; }
.content-article-body a { color: #1c9390; }
.content-article-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid #1c9390;
    background: #f0faf9;
    border-radius: 0 0.75rem 0.75rem 0;
    color: #37474f;
}

.content-term-links {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, #f0faf9 0%, #eef4f8 100%);
    border: 1px solid #e0eceb;
    border-radius: 1.15rem;
    padding: 1.5rem;
}
.content-term-links h2 { font-size: 1.15rem; margin-bottom: 0.9rem; }
.content-term-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.content-term-links a {
    display: inline-block;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
}
.content-term-links a:hover { border-color: #1c9390; color: #17807d; }

.content-article-body--term + .subpage-highlight { margin-top: 5rem; }
.subpage-highlight .subpage-help-cta { margin-top: 1.75rem; }

/* Glossar: Begriffs-Karten und Meta-Leiste */
.term-initial-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, #1c9390 0%, #17807d 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(28,147,144,0.25);
}
.content-card--term { position: relative; }
.content-card--term:hover .term-initial-badge { transform: scale(1.05); }
.content-card--term .term-initial-badge { transition: transform .2s ease; }

.term-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2rem;
}
.term-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease;
}
.term-meta-chip:hover { border-color: #1c9390; color: #17807d; }
.term-meta-chip--feature {
    background: rgba(28,147,144,0.08);
    border-color: rgba(28,147,144,0.25);
    color: #17807d;
}

/* Begriffstext mit Akzenten */
.content-article-body--term h2 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
}
.content-article-body--term h2::before {
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 1.25rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #1c9390 0%, #17807d 100%);
}
.content-article-body--term ul { list-style: none; margin-left: 0; }
.content-article-body--term li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.7rem;
}
.content-article-body--term li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: rgba(28,147,144,0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231c9390' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center no-repeat;
}

.glossary-letters .faq-topics-count { background: rgba(28,147,144,0.12); }
.glossary-group .faq-group-number { font-size: 1.25rem; }

.subpage-back { margin-top: 2rem; }
.subpage-back a { color: #1c9390; font-weight: 600; text-decoration: none; }
.subpage-back a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
    .feature-hub-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-hub-card--wide { grid-column: span 2; }
    .subpage-workflow-list { grid-template-columns: repeat(2, 1fr); }
    .content-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .subpage-benefits-grid { grid-template-columns: 1fr; }
    .feature-hub-grid { grid-template-columns: 1fr; }
    .feature-hub-card--wide { grid-column: auto; }
    .subpage-workflow-list { grid-template-columns: 1fr; }
    .content-card-grid { grid-template-columns: 1fr; }
    .subpage-steps--cards { grid-template-columns: 1fr; }
    .subpage-help-box { flex-direction: column; align-items: flex-start; text-align: left; }
    .subpage-help-cta { width: 100%; text-align: center; }
    .subpage-badges { grid-template-columns: repeat(2, 1fr); }
    .subpage-split { grid-template-columns: 1fr; gap: 2rem; }
    .subpage-split--reverse .subpage-split-content { order: 1; }
    .subpage-split--reverse .subpage-split-visual { order: 2; }
}

@media (max-width: 640px) {
    .subpage-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
    .subpage-header { padding: 2.5rem 0 2rem; }
    .subpage-header h1 { font-size: 2rem; }
    .subpage-section { padding: 2.5rem 0; }
    .subpage-badges { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
