/* =========================================================================
   Digitale Handarbeit – Redesign (rd-) Stylesheet
   Geteiltes Stylesheet fuer alle auf das neue Design migrierten Seiten.
   Akzentfarbe ist pro Seite via --rd-accent / --rd-accent-ink ueberschreibbar
   (Inline-Style am <body>); Default ist Koralle (Marke/Startseite).
   ========================================================================= */

:root {
    --rd-bg: #ffffff;
    --rd-ink: #111111;
    --rd-muted: #6b6b6b;
    --rd-line: #ececec;
    --rd-surface: #f6f5f3;
    --rd-accent: #ff7070;          /* Korallrot (Akzent) */
    --rd-accent-ink: #ed5a5a;      /* etwas dunkler fuer Text-Kontrast */
    --rd-dark: #141414;
    --rd-header-h: 104px;
    --rd-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --rd-max: 1180px;
    --rd-radius: 14px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
    font-family: var(--rd-font);
    overflow-x: clip;
    background: var(--rd-bg);
    color: var(--rd-ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }

.rd-wrap { width: 90%; max-width: var(--rd-max); margin: 0 auto; }
.rd-accent { color: var(--acc, var(--rd-accent-ink)); }
.rd-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--acc, var(--rd-muted));
    margin-bottom: 1.4rem;
}

/* ---------- Header ---------- */
.rd-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.88);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--rd-line);
}
.rd-nav { display: flex; align-items: center; justify-content: space-between; height: var(--rd-header-h); }
.rd-logo { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .95rem; }
.rd-logo img { height: 32px; width: auto; }
.rd-nav-links { display: flex; align-items: center; gap: 3rem; }
.rd-nav-links a { font-size: .95rem; font-weight: 500; color: #333; }
.rd-nav-links a:not(.rd-nav-cta) { position: relative; }
.rd-nav-links a:not(.rd-nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
    background: var(--rd-accent); transform: scaleX(0); transform-origin: left center;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}
.rd-nav-links a:not(.rd-nav-cta):hover::after,
.rd-nav-links a:not(.rd-nav-cta):focus-visible::after { transform: scaleX(1); }
.rd-nav-links a:not(.rd-nav-cta):hover { color: var(--rd-ink); }
.rd-nav-cta {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--rd-dark); color: #fff !important;
    padding: .62rem 1.15rem; border-radius: 0;
    font-size: .85rem; font-weight: 600;
}
.rd-nav-cta:hover { background: #000; }
.rd-burger { display: none; background: none; border: 0; cursor: pointer; font-size: 1.4rem; color: var(--rd-ink); }

/* ---------- Hero ---------- */
.rd-hero { padding: clamp(1.75rem, 4vw, 3.25rem) 0 clamp(2.5rem, 5vw, 4rem); }
.rd-hero h1 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.02em;
    max-width: none;
    margin-bottom: 1.4rem;
}
.rd-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #444; max-width: 78ch; margin-bottom: 2rem; }
.rd-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.rd-btn {
    display: inline-flex; align-items: center; gap: .55rem;
    background: var(--rd-accent); color: #fff !important;
    padding: .95rem 1.7rem; border-radius: 0;
    font-weight: 600; font-size: .98rem;
    border: 1px solid var(--rd-accent);
}
.rd-btn:hover { background: var(--rd-accent-ink); border-color: var(--rd-accent-ink); }
.rd-btn-ghost {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .95rem 1.4rem; border-radius: 0;
    font-weight: 600; font-size: .98rem;
    color: var(--rd-ink) !important; border: 1px solid var(--rd-line);
    background: #fff;
}
.rd-btn-ghost:hover { border-color: var(--rd-ink); }

.rd-stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 2.6rem; }
.rd-stats span { font-size: .92rem; color: var(--rd-muted); }
.rd-stats strong { color: var(--rd-ink); font-weight: 700; }

/* Gezielte Asymmetrie: Bild oben links, Text darunter, grauer Block rechts
   reicht nach unten und rahmt den Text ein. Full-Bleed beidseitig. */
.rd-hero-media {
    /* Auf breiten Monitoren den Full-Bleed deckeln: Media-Breite max. ~1500px,
       der Rest wird zu Rand. Auf schmalen Screens wie bisher (clamp). */
    --rd-gutter: max(clamp(2rem, 5vw, 4.5rem), calc((100vw - 1500px) / 2));
    position: relative;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    margin-left: calc(50% - 50vw + var(--rd-gutter));
    margin-right: calc(50% - 50vw + var(--rd-gutter));
    padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.rd-hero-deco {
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 0;
    width: 50%;
    background: var(--rd-surface);
    z-index: 0;
}
.rd-hero-img {
    position: relative;
    z-index: 1;
    width: 56%;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--rd-surface);
}
.rd-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.rd-hero-prose {
    position: relative;
    z-index: 1;
    padding-top: clamp(1.6rem, 3vw, 2.4rem);
    padding-left: max(4vw, calc(50vw - 590px - var(--rd-gutter)));
    padding-right: 1.5rem;
}
.rd-hero-prose .rd-eyebrow { margin-bottom: 1rem; }
.rd-hero-prose .rd-prose { max-width: 44ch; }

/* ---------- WhatsApp Pill ---------- */
.rd-pill-row { padding: 2.5rem 0; }
.rd-pill {
    display: inline-flex; align-items: center; gap: .7rem;
    background: var(--rd-dark); color: #fff !important;
    padding: .85rem 1.5rem; border-radius: 0;
    font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.rd-pill:hover { background: #000; }

/* ---------- Sektion ---------- */
.rd-section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.rd-section--surface { background: var(--rd-surface); }
.rd-h2 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); font-weight: 700; letter-spacing: -.015em; line-height: 1.18; }
.rd-sub { color: var(--rd-muted); max-width: 60ch; margin-top: .9rem; font-size: 1.05rem; }

/* ---------- Fliesstext (natuerlich, einfach) ---------- */
.rd-prose { max-width: 60ch; }
.rd-prose p { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.7; color: #333; margin-bottom: 1.4rem; }
.rd-prose p:last-child { margin-bottom: 0; }
.rd-prose .rd-lead-line { color: var(--acc, var(--rd-accent-ink)); font-weight: 600; }

/* ---------- Leistungen (typografische Liste) ---------- */
.rd-services { margin-top: 2.5rem; border-top: 1px solid var(--rd-line); }
.rd-service {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    padding: 1.7rem 0; border-bottom: 1px solid var(--rd-line);
}
.rd-service-main { display: flex; align-items: baseline; gap: 1.2rem; }
.rd-service-num { font-size: .85rem; font-weight: 700; color: var(--acc, var(--rd-accent-ink)); width: 2.4rem; flex: none; }
.rd-service h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 700; letter-spacing: -.01em; }
.rd-service p { color: var(--rd-muted); font-size: .98rem; max-width: 72ch; margin-top: .3rem; }
.rd-service-arrow {
    flex: none; width: 48px; height: 48px; border-radius: 0;
    border: 1px solid var(--rd-line); display: flex; align-items: center; justify-content: center;
    color: var(--rd-ink); font-size: 1rem; transition: all .2s ease;
}
.rd-service:hover .rd-service-arrow { background: var(--acc, var(--rd-accent)); border-color: var(--acc, var(--rd-accent)); color: #fff; transform: translateX(3px); }
.rd-service:hover h3 { color: var(--acc, var(--rd-accent-ink)); }

/* ---------- Text-Spalten (statt Karten) ---------- */
.rd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.6rem; margin-top: 2.6rem; }
.rd-card {
    display: flex; flex-direction: column; gap: .45rem;
    padding-top: 1.4rem; border-top: 1px solid var(--rd-line);
}
.rd-card-tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--acc, var(--rd-accent-ink)); }
.rd-card h4 { font-size: 1.15rem; font-weight: 700; }
.rd-card p { color: var(--rd-muted); font-size: .94rem; }
.rd-card .rd-card-link { margin-top: .3rem; font-weight: 600; font-size: .9rem; color: var(--acc, var(--rd-accent-ink)); }
.rd-card:hover .rd-card-link { text-decoration: underline; }

.rd-section-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.rd-link-arrow { font-weight: 600; font-size: .92rem; color: var(--rd-ink); border: 1px solid var(--rd-line); padding: .6rem 1.1rem; border-radius: 0; }
.rd-link-arrow:hover { border-color: var(--rd-ink); }

/* ---------- Zwei-Spalten (Bild + Text) ---------- */
.rd-split { display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.rd-split-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: var(--rd-surface); }
.rd-pullquote { margin-top: 1.6rem; padding-left: 1.1rem; border-left: 3px solid var(--rd-accent); font-style: italic; color: #333; }
.rd-inline-links { margin-top: 1.8rem; display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; }
.rd-inline-links a { font-weight: 600; }
.rd-inline-links a:hover { color: var(--rd-accent-ink); }

/* ---------- Generische Zwei-Spalten ---------- */
.rd-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* ---------- Definitionsliste (z.B. Qualifikation) ---------- */
.rd-deflist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 2rem; margin: 0; }
.rd-deflist li { display: flex; align-items: baseline; gap: .7rem; font-size: .98rem; color: #333; }
.rd-deflist i { color: var(--rd-accent); font-size: .85rem; flex: none; }

/* ---------- Full-Bleed Bildband ---------- */
.rd-bleed-img { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.rd-bleed-img img { width: 100%; height: clamp(220px, 32vw, 380px); object-fit: cover; display: block; }

/* ---------- Zentrierter CTA ---------- */
.rd-cta-center { text-align: center; }
.rd-cta-center .rd-eyebrow { color: var(--rd-muted); }
.rd-cta-center .rd-h2 { margin-bottom: 1rem; }
.rd-cta-center p { color: var(--rd-muted); max-width: 60ch; margin: 0 auto 1.6rem; }

/* ---------- Testimonial ---------- */
.rd-quote { max-width: none; flex: 1; }
.rd-quote-mark { font-size: 3rem; line-height: 1; color: var(--rd-accent); opacity: .5; font-weight: 700; }
.rd-quote p { font-size: clamp(1.05rem, 1.8vw, 1.35rem); line-height: 1.5; margin: .4rem 0 1.2rem; font-weight: 500; }
.rd-quote cite { font-style: normal; font-weight: 600; }
.rd-quote small { display: block; color: var(--rd-muted); }
.rd-rating-block { text-align: right; flex: none; }
.rd-rating { font-weight: 700; }
.rd-rating i { color: var(--rd-accent); }

/* ---------- Kontakt ---------- */
.rd-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; }
.rd-contact-visual {
    background: var(--rd-accent); color: #fff; position: relative;
    min-height: 540px; display: flex; align-items: flex-end; justify-content: flex-start;
    overflow: hidden;
}
.rd-contact-visual .rd-lets {
    position: absolute; inset: 0; z-index: 0;
    display: flex; flex-direction: column; justify-content: space-between;
    text-align: center; padding: 1.1rem 1rem;
    pointer-events: none; overflow: hidden;
}
.rd-contact-visual .rd-lets span {
    display: block; white-space: nowrap;
    font-weight: 800; font-size: clamp(2.8rem, 6.8vw, 4.6rem); line-height: 1.02;
    letter-spacing: -.02em; text-transform: uppercase; color: #fff; opacity: 1;
}
.rd-contact-visual img {
    position: relative; z-index: 2;
    height: 90%; max-height: 560px; width: auto; object-fit: contain; object-position: left bottom;
    align-self: flex-end;
    /* mehrlagiger Schatten entlang der Silhouette = Tiefe */
    filter:
        drop-shadow(0 2px 6px rgba(0,0,0,.40))
        drop-shadow(0 10px 22px rgba(0,0,0,.38))
        drop-shadow(0 28px 55px rgba(0,0,0,.45));
}
.rd-contact-panel { background: var(--rd-dark); color: #eaeaea; padding: 2.6rem; display: flex; flex-direction: column; justify-content: center; }
.rd-contact-panel h2 { color: #fff; font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; margin-bottom: .9rem; }
.rd-contact-panel p { color: #b9b9b9; margin-bottom: 1.6rem; }
.rd-contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.rd-contact-meta { margin-top: 1.6rem; font-size: .85rem; color: #9a9a9a; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.rd-contact-meta i { color: var(--rd-accent); }

/* ---------- Footer ---------- */
.rd-footer { background: var(--rd-dark); color: #cfcfcf; padding: 3.5rem 0 2rem; }
.rd-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.rd-footer h5 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.rd-footer ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.rd-footer a { font-size: .9rem; color: #b3b3b3; }
.rd-footer a:hover { color: #fff; }
.rd-footer-brand p { color: #9a9a9a; font-size: .9rem; max-width: 34ch; margin-top: .8rem; }
.rd-footer-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid #2a2a2a; font-size: .8rem; color: #8a8a8a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; }

/* ---------- WhatsApp Float ---------- */
.rd-wa-float {
    position: fixed; right: 18px; bottom: 18px; z-index: 60;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25d366; color: #fff !important;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,.4);
}
.rd-wa-float:hover { background: #1ebe5b; }

/* ---------- Mobile Kontaktbar ---------- */
.rd-mobilebar { display: none; }

/* ---------- Formulare ---------- */
.rd-form { display: flex; flex-direction: column; gap: 1.2rem; }
.rd-field { display: flex; flex-direction: column; gap: .5rem; }
.rd-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rd-muted); }
.rd-label .rd-opt { font-weight: 400; text-transform: none; letter-spacing: 0; }
.rd-input, .rd-textarea {
    width: 100%; padding: .85rem 1rem; font-family: inherit; font-size: 1rem;
    color: var(--rd-ink); background: #fff; border: 1px solid var(--rd-line); border-radius: 0;
    transition: border-color .2s ease;
}
.rd-input:focus, .rd-textarea:focus { outline: none; border-color: var(--rd-ink); }
.rd-textarea { resize: vertical; min-height: 150px; }
.rd-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.rd-chip {
    padding: .5rem 1rem; font-family: inherit; font-size: .9rem; font-weight: 600;
    border: 1px solid var(--rd-line); background: #fff; color: var(--rd-ink); cursor: pointer;
    transition: all .15s ease;
}
.rd-chip:hover { border-color: var(--rd-ink); }
.rd-chip.is-active { background: var(--rd-accent); border-color: var(--rd-accent); color: #fff; }
.rd-form-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.rd-form-note { font-size: .85rem; color: var(--rd-muted); display: inline-flex; align-items: center; gap: .4rem; }
.rd-form-note i { color: var(--rd-accent); }
.rd-btn-submit { border: 1px solid var(--rd-accent); cursor: pointer; font-family: inherit; }
.rd-alert { padding: 1rem 1.2rem; border-radius: 0; margin-bottom: 1.4rem; font-size: .95rem; }
.rd-alert strong { display: block; margin-bottom: .25rem; }
.rd-alert--ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.rd-alert--err { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ---------- Kontaktinfos ---------- */
.rd-contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.rd-contact-info h4 { font-size: .95rem; margin-bottom: .2rem; }
.rd-contact-info p { color: var(--rd-muted); font-size: .92rem; margin: 0; }
.rd-contact-info a { font-weight: 600; color: var(--rd-ink); }
.rd-contact-info a:hover { color: var(--rd-accent-ink); }
.rd-contact-info .rd-ci-block { padding-top: 1.2rem; border-top: 1px solid var(--rd-line); }

/* ---------- Insights: Artikel-Karten ---------- */
.rd-articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.4rem; }
.rd-article { display: flex; flex-direction: column; border: 1px solid var(--rd-line); background: #fff; }
.rd-article--feat { grid-column: span 2; }
.rd-article-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--rd-surface); display: block; }
.rd-article--feat .rd-article-media { aspect-ratio: 21 / 9; }
.rd-article-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.rd-article:hover .rd-article-media img { transform: scale(1.04); }
.rd-article-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.rd-article-tags { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.rd-article h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.25; }
.rd-article--feat h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.rd-article p { color: var(--rd-muted); font-size: .94rem; flex: 1; }
.rd-article-link { font-weight: 700; font-size: .8rem; color: var(--rd-accent-ink); text-transform: uppercase; letter-spacing: .05em; }
.rd-article:hover .rd-article-link { text-decoration: underline; }
.rd-badge { font-size: .6rem; padding: .18rem .5rem; background: var(--rd-surface); color: var(--rd-accent-ink); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Filter + Pagination ---------- */
.rd-filters { display: flex; flex-wrap: wrap; gap: .6rem; }
.rd-pill-btn { padding: .55rem 1.1rem; font-size: .9rem; font-weight: 600; border: 1px solid var(--rd-line); color: var(--rd-ink); background: #fff; }
.rd-pill-btn:hover { border-color: var(--rd-ink); }
.rd-pill-btn.is-active { background: var(--rd-ink); color: #fff; border-color: var(--rd-ink); }
.rd-pager { margin-top: 3rem; display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.rd-pager a { padding: .55rem 1rem; font-size: .9rem; font-weight: 600; border: 1px solid var(--rd-line); color: var(--rd-ink); }
.rd-pager a:hover { border-color: var(--rd-ink); }
.rd-pager a.is-active { background: var(--rd-ink); color: #fff; border-color: var(--rd-ink); pointer-events: none; }

/* ---------- Newsletter-Inline ---------- */
.rd-nl { display: flex; gap: 0; max-width: 420px; }
.rd-nl input { flex: 1; min-width: 0; padding: .85rem 1rem; font-family: inherit; font-size: .95rem; border: 1px solid var(--rd-line); border-right: none; background: #fff; color: var(--rd-ink); }
.rd-nl input:focus { outline: none; border-color: var(--rd-ink); }
.rd-nl button { white-space: nowrap; border: 1px solid var(--rd-accent); cursor: pointer; font-family: inherit; }

/* ---------- Glossar ---------- */
.rd-glossary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rd-gloss { padding: .8rem 1.1rem; border-left: 3px solid var(--rd-line); transition: opacity .15s ease; }
.rd-gloss strong { display: block; margin-bottom: .25rem; }
.rd-gloss span { font-size: .9rem; color: var(--rd-muted); line-height: 1.55; }
.rd-gloss-search { width: 100%; max-width: 480px; padding: .75rem 1rem; font-family: inherit; font-size: 1rem; border: 1px solid var(--rd-line); background: #fff; color: var(--rd-ink); }
.rd-gloss-search:focus { outline: none; border-color: var(--rd-ink); }
.rd-gloss-alpha { display: flex; flex-wrap: wrap; gap: .4rem; }
.rd-gloss-letter { padding: .35rem .65rem; font-size: .85rem; font-weight: 600; border: 1px solid var(--rd-line); color: var(--rd-ink); }
.rd-gloss-letter:hover { background: var(--rd-ink); color: #fff; }
.rd-gloss-letter.is-active { background: var(--rd-ink); color: #fff; }
.rd-gloss-letter.is-empty { opacity: .25; pointer-events: none; }

/* ---------- Case Studies (ruhig, einheitlich) ---------- */
.rd-cs { max-width: 760px; }
.rd-cs .rd-eyebrow { margin-bottom: 1rem; }
.rd-cs-no { color: var(--rd-accent-ink); }
.rd-cs-h { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 1.4rem; }
.rd-cs-result { margin-top: 1.6rem; font-size: .92rem; line-height: 1.7; color: var(--rd-muted); }
.rd-cs-result b { color: var(--rd-ink); font-weight: 700; }

/* Statement-Band */
.rd-band { background: var(--rd-dark); color: #e6e6e6; padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.rd-band .rd-wrap { text-align: center; max-width: 820px; }
.rd-band .rd-band-eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: #8a8a8a; font-weight: 700; }
.rd-band p.rd-band-lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.6; color: #dcdcdc; margin: 1rem auto 1.5rem; }
.rd-band-author { display: flex; align-items: center; justify-content: center; gap: .8rem; }
.rd-band-avatar { width: 48px; height: 48px; border-radius: 50%; background: #444; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; flex: none; }
.rd-band-author .rd-ba-name { font-weight: 600; color: #fff; font-size: .95rem; }
.rd-band-author .rd-ba-sub { color: #9a9a9a; font-size: .8rem; }

/* Number-Stats (Case Studies "In Kürze") */
.rd-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2rem; }
.rd-number { padding-top: 1.2rem; border-top: 1px solid var(--rd-line); }
.rd-number b { display: block; font-size: 2.3rem; font-weight: 700; line-height: 1; letter-spacing: -.01em; }
.rd-number p { font-size: .85rem; color: var(--rd-muted); margin-top: .4rem; }

/* Prozess-Schritte */
.rd-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.rd-step { display: flex; gap: 1rem; align-items: flex-start; }
.rd-step-num { flex: none; width: 34px; height: 34px; background: var(--rd-ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; }
.rd-step strong { display: block; }
.rd-step p { font-size: .9rem; color: var(--rd-muted); margin: 0; }

/* Testimonial-Slider (Case Studies) */
.rd-tslider { position: relative; }
.rd-ttrack { position: relative; min-height: 220px; }
.rd-tslide { position: absolute; inset: 0 0 auto 0; opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; pointer-events: none; }
.rd-tslide.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.rd-tslide p { font-size: clamp(1.1rem, 1.8vw, 1.4rem); line-height: 1.5; font-weight: 500; margin-bottom: 1.2rem; }
.rd-tslide cite { font-style: normal; font-weight: 600; }
.rd-tslide small { display: block; color: var(--rd-muted); }
.rd-tnav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.4rem; }
.rd-tdots { display: flex; gap: .4rem; }
.rd-tdot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--rd-muted); background: transparent; cursor: pointer; padding: 0; }
.rd-tdot.is-active { background: var(--rd-accent); border-color: var(--rd-accent); }
.rd-tbtns { display: flex; gap: .5rem; }
.rd-tbtn { width: 40px; height: 40px; border: 1px solid var(--rd-line); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--rd-ink); }
.rd-tbtn:hover { background: var(--rd-accent); border-color: var(--rd-accent); color: #fff; }

/* ---------- Insights-Artikel (rd-Wrapper um bestehendes Editorial-Markup) ----------
   Bestehende Artikel nutzen Editorial-Klassen + Inline-Styles mit Editorial-Variablen.
   Dieser Layer mappt jene Variablen auf die rd-Palette (eckig statt abgerundet) und
   restyled Typografie/Komponenten auf die neue Design-Sprache – ohne Eingriff je Datei. */
.rd-legacy-article {
    --bg-color: #fff;
    --text-main: var(--rd-ink);
    --text-muted: var(--rd-muted);
    --accent: var(--rd-ink);
    --line-color: var(--rd-line);
    --surface: var(--rd-surface);
    --font-sans: var(--rd-font);
    --font-serif: var(--rd-font);
    --space-xs: .5rem;
    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 4rem;
    --space-xl: 6rem;
    --accent-amber: var(--rd-accent);
    --accent-amber-hover: var(--rd-accent-ink);
    --radius: 0;
    color: var(--rd-ink);
}
.rd-legacy-article .section { padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--rd-line); overflow-x: clip; }
.rd-legacy-article .section:last-child { border-bottom: 0; }
.rd-legacy-article .container { width: 90%; max-width: 820px; margin: 0 auto; }
.rd-legacy-article .insight-body { max-width: none; }

.rd-legacy-article h1 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1.2rem; text-wrap: balance; }
.rd-legacy-article h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; margin: 2.6rem 0 1rem; text-wrap: balance; }
.rd-legacy-article h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 700; line-height: 1.25; letter-spacing: -.01em; margin: 2.2rem 0 .8rem; }
.rd-legacy-article h4 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; margin: 1.8rem 0 .6rem; }
.rd-legacy-article .font-serif { font-family: var(--rd-font); font-style: normal; font-weight: 700; color: var(--rd-accent-ink); }

.rd-legacy-article p { font-size: 1.08rem; line-height: 1.7; color: #333; margin-bottom: 1.3rem; }
.rd-legacy-article .text-large { font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.5; color: #444; font-weight: 400; margin-bottom: 1.6rem; }

.rd-legacy-article .label { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--rd-muted); border: 0; padding: 0; margin-bottom: 1.2rem; }

.rd-legacy-article .insight-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; font-size: .88rem; color: var(--rd-muted); margin-bottom: 1.6rem; }
.rd-legacy-article .insight-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.rd-legacy-article .insight-meta i { color: var(--rd-accent); }

.rd-legacy-article .insight-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--rd-surface); margin-bottom: 2rem; border-radius: 0; }

.rd-legacy-article ul, .rd-legacy-article ol { margin: 0 0 1.4rem; padding-left: 1.4rem; }
.rd-legacy-article li { margin-bottom: .6rem; line-height: 1.65; color: #333; }
.rd-legacy-article ul { list-style: disc; }
.rd-legacy-article ol { list-style: decimal; }

.rd-legacy-article blockquote { margin: 1.8rem 0; padding-left: 1.2rem; border-left: 3px solid var(--rd-accent); font-size: 1.15rem; line-height: 1.5; color: #333; font-style: italic; }

.rd-legacy-article .insight-body a, .rd-legacy-article p a, .rd-legacy-article li a, .rd-legacy-article .text-large a, .rd-legacy-article .author-box a {
    text-decoration: underline; text-decoration-color: var(--rd-accent); text-decoration-thickness: 2px; text-underline-offset: 3px; font-weight: 600;
}
.rd-legacy-article a:hover { color: var(--rd-accent-ink); }

.rd-legacy-article .btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; background: var(--rd-accent); color: #fff !important; border: 1px solid var(--rd-accent); border-radius: 0; font-weight: 600; font-size: .95rem; text-transform: none; letter-spacing: 0; text-decoration: none !important; }
.rd-legacy-article .btn:hover { background: var(--rd-accent-ink); border-color: var(--rd-accent-ink); }
.rd-legacy-article .btn-outline { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.5rem; background: #fff; color: var(--rd-ink) !important; border: 1px solid var(--rd-line); border-radius: 0; font-weight: 600; font-size: .95rem; text-transform: none; letter-spacing: 0; text-decoration: none !important; }
.rd-legacy-article .btn-outline:hover { border-color: var(--rd-ink); }

.rd-legacy-article .grid { display: grid; gap: 1.6rem; }
.rd-legacy-article .grid-2 { grid-template-columns: 1fr 1fr; }
.rd-legacy-article .grid-3 { grid-template-columns: repeat(3, 1fr); }
.rd-legacy-article .grid-4 { grid-template-columns: repeat(4, 1fr); }
.rd-legacy-article .card { padding: 1.4rem; background: #fff; border: 1px solid var(--rd-line); border-radius: 0; }

.rd-legacy-article table { width: 100%; border-collapse: collapse; margin: 1.6rem 0; font-size: .95rem; }
.rd-legacy-article th, .rd-legacy-article td { border: 1px solid var(--rd-line); padding: .7rem .9rem; text-align: left; vertical-align: top; }
.rd-legacy-article th { background: var(--rd-surface); font-weight: 700; }

.rd-legacy-article .author-box { display: flex; gap: 2rem; align-items: flex-start; margin-top: 3rem; padding: 1.8rem; background: var(--rd-surface); border: 1px solid var(--rd-line) !important; border-radius: 0; }
.rd-legacy-article .author-box img { width: 120px !important; height: 120px !important; border-radius: 0 !important; object-fit: cover; flex: none; border: 0 !important; }
.rd-legacy-article .author-box h4 { margin: 0 0 .4rem; }

.rd-legacy-article .practice-link { margin: 3rem 0; padding: 1.8rem; background: var(--rd-surface); border-left: 3px solid var(--rd-accent); border-radius: 0; }
.rd-legacy-article .practice-link__eyebrow { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; font-weight: 700; color: var(--rd-accent-ink); margin-bottom: .5rem; }
.rd-legacy-article .practice-link__heading { font-size: 1.3rem; line-height: 1.3; margin: 0 0 .5rem; }
.rd-legacy-article .practice-link__lead { font-size: 1rem; color: #444; line-height: 1.55; margin-bottom: 1.2rem; }

/* Weitere Artikel-Komponenten */
.rd-legacy-article .fact-checked-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--rd-ink); border: 1px solid var(--rd-line); padding: .3rem .7rem; margin-bottom: 1rem; border-radius: 0; text-decoration: none !important; }
.rd-legacy-article .pull-quote { margin: 1.8rem 0; padding: 1rem 1.4rem; background: var(--rd-surface); border-left: 3px solid var(--rd-accent); font-size: 1.2rem; line-height: 1.5; font-style: italic; color: #333; }
.rd-legacy-article .personal-signature { font-style: italic; font-size: 1.1rem; color: var(--rd-ink); display: inline-block; margin-top: 1rem; }
.rd-legacy-article .method-flow { margin: 1.8rem 0; padding: 1.4rem; background: var(--rd-surface); border: 1px solid var(--rd-line); }
.rd-legacy-article .method-flow-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--rd-muted); margin-bottom: .8rem; }
.rd-legacy-article .method-flow-steps { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.rd-legacy-article .method-flow-step { padding: .5rem .8rem; font-size: .82rem; font-weight: 600; border: 1px solid var(--rd-line); background: #fff; }
.rd-legacy-article .method-flow-arrow { color: var(--rd-muted); font-weight: 700; }
.rd-legacy-article .method-flow-note { font-size: .9rem; color: var(--rd-muted); margin: .8rem 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .rd-articles { grid-template-columns: 1fr 1fr; }
    .rd-article--feat { grid-column: span 2; }
    .rd-glossary-grid { grid-template-columns: 1fr; }
    .rd-grid { grid-template-columns: 1fr; }
    .rd-contact-grid { grid-template-columns: 1fr; }
    .rd-contact-visual { min-height: 320px; }
    .rd-hero-img { width: 68%; }
    .rd-hero-deco { width: 48%; top: 24%; }
    .rd-split { grid-template-columns: 1fr; }
    .rd-split-media img { max-width: 320px; }
    .rd-cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .rd-hero-media { padding-bottom: 1.5rem; margin-left: 0; margin-right: 0; }
    .rd-hero-img { width: 100%; }
    .rd-hero-deco { display: none; }
    .rd-hero-prose { padding-left: 0; padding-right: 0; }
    .rd-hero-prose .rd-prose { max-width: none; }
    .rd-deflist { grid-template-columns: 1fr; }
    .rd-articles { grid-template-columns: 1fr; }
    .rd-article--feat { grid-column: span 1; }
    .rd-nl { max-width: none; }
}
@media (max-width: 760px) {
    .rd-nav-links { display: none; }
    .rd-burger { display: block; }
    .rd-nav-links.is-open {
        display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem;
        position: absolute; top: var(--rd-header-h); left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--rd-line);
        padding: 1.4rem 5%;
    }
    .rd-service { flex-direction: row; align-items: center; }
    .rd-service p { display: none; }
    .rd-footer-grid { grid-template-columns: 1fr 1fr; }
    .rd-legacy-article .grid-2, .rd-legacy-article .grid-3, .rd-legacy-article .grid-4 { grid-template-columns: 1fr; }
    .rd-legacy-article .author-box { flex-direction: column; gap: 1.2rem; }
    .rd-legacy-article .author-box img { width: 96px !important; height: 96px !important; }
    /* Header kompakter auf Mobile */
    :root { --rd-header-h: 66px; }
    /* Stimmen / Section-Heads sauber stapeln */
    .rd-section-head { flex-direction: column; align-items: flex-start; }
    .rd-rating-block { text-align: left; }
    /* Mobile Kontaktbar sichtbar, WA-Float weicht aus */
    .rd-mobilebar {
        display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
        background: var(--rd-dark); border-top: 1px solid #2a2a2a;
    }
    .rd-mobilebar a {
        flex: 1; text-align: center; color: #eaeaea; font-size: .8rem; font-weight: 600;
        padding: .7rem .4rem; display: flex; flex-direction: column; gap: .25rem; align-items: center;
    }
    .rd-mobilebar i { font-size: 1rem; }
    .rd-wa-float { bottom: 70px; }
}
@media (max-width: 480px) {
    .rd-footer-grid { grid-template-columns: 1fr; }
    .rd-stats { gap: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
}
