/* ======================================================
   service-pages.css
   Zentrales Layoutsystem fuer Leistungsseiten

   Grundlage: Referenzlayout „Laufende Steuerberatung“.
   Geltung: nur Seiten mit body.service-page.
   Keine Inhaltssteuerung, keine Inline-Styles, keine seitenindividuellen
   Sonderregeln ausser ueber eindeutige Body-Klassen.
====================================================== */

/* ======================================================
   BASE
====================================================== */

body.service-page .service-main {
    background: var(--ivory);
}

body.service-page .service-main + .site-footer {
    margin-top: 0;
}

body.service-page .section {
    padding:
        clamp(5rem, 8vw, 7rem)
        0;
}

body.service-page .section-heading {
    max-width: 940px;
    margin: 0 0 3rem;
}

body.service-page .section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

body.service-page .section-heading.narrow {
    max-width: 840px;
}

body.service-page .section-heading h2 {
    margin-bottom: 1rem;
}

body.service-page .section-heading p,
body.service-page .split-content p,
body.service-page .feature-copy p,
body.service-page .grid-intro p,
body.service-page .scope-panel p {
    color: var(--muted);
    font-size: 1.03rem;
}

body.service-page .section-kicker,
body.service-page .eyebrow {
    margin-bottom: .85rem;
    color: var(--brass);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.25;
    text-transform: uppercase;
}

body.service-page .lead {
    margin-top: .78rem;
    color: var(--ink-soft);
    font-size: clamp(.87rem, .92vw, .98rem);
    line-height: 1.55;
}

/* ======================================================
   SECTION HEADINGS / KICKER COLOR
   Abschnittsueberschriften auf Leistungsseiten
====================================================== */

body.service-page .service-main h2 {
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

body.service-page .service-main p.section-kicker,
body.service-page .service-main .section-kicker {
    color: var(--brass);
    font-size: clamp(.98rem, 1.05vw, 1.12rem);
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.25;
    text-transform: uppercase;
}

body.service-page .service-main .section-service-navy h2,
body.service-page .service-main .section-service-navy p.section-kicker,
body.service-page .service-main .section-service-navy .section-kicker,
body.service-page .service-main .section-navy h2,
body.service-page .service-main .section-navy p.section-kicker,
body.service-page .service-main .section-navy .section-kicker,
body.service-page .service-main .section-heading.inverted h2,
body.service-page .service-main .section-heading.inverted p.section-kicker,
body.service-page .service-main .section-heading.inverted .section-kicker,
body.service-page .service-main .cta-box h2,
body.service-page .service-main .cta-box p.section-kicker,
body.service-page .service-main .cta-box .section-kicker,
body.service-page .service-main .cta-panel h2,
body.service-page .service-main .cta-panel p.section-kicker,
body.service-page .service-main .cta-panel .section-kicker {
    color: #ffffff;
}

/* ======================================================
   SECTION RHYTHM
====================================================== */

body.service-page .hero-page {
    padding: 1.6rem 0 5rem;
    background:
        linear-gradient(
            180deg,
            var(--ivory) 0%,
            var(--ivory-2) 100%
        );
}

body.service-page .section-intro,
body.service-page .section.muted,
body.service-page .final-cta {
    background: #ffffff;
}

body.service-page .section-service-muted {
    background:
        linear-gradient(
            180deg,
            #f7f2ea 0%,
            #efe5d6 100%
        );
}

body.service-page .section-feature,
body.service-page .section-scope {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f2e8dc 100%
        );
}

body.service-page .internal-links-section {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f7f2ea 100%
        );
}

body.service-page .internal-links-section,
body.service-page .faq-section {
    position: relative;
}

body.service-page .internal-links-section::after,
body.service-page .faq-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 3rem));
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(184,135,59,0) 0%,
            rgba(184,135,59,.22) 20%,
            rgba(184,135,59,.32) 50%,
            rgba(184,135,59,.22) 80%,
            rgba(184,135,59,0) 100%
        );
}

/* ======================================================
   BREADCRUMBS
====================================================== */

body.service-page .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--muted);
    font-size: .9rem;
}

body.service-page .breadcrumbs a {
    color: var(--ink-soft);
    font-weight: 600;
}

body.service-page .breadcrumbs a:hover {
    color: var(--navy);
}

/* ======================================================
   HERO
====================================================== */

body.service-page .hero-banner {
    position: relative;
    overflow: hidden;
    height: clamp(500px, 50vw, 660px);
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #f1e8dc 0%,
            #f8f4ed 100%
        );
    box-shadow: var(--shadow-deep);
}

body.service-page .hero-banner picture {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

body.service-page .hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    background: transparent;
}

body.service-page .hero-copy {
    position: absolute;
    left: clamp(1.25rem, 4vw, 3.35rem);
    top: 50%;
    bottom: auto;
    width: min(590px, 48%);
    transform: translateY(-50%);
    z-index: 2;
}

body.service-page .hero-card {
    padding:
        clamp(1rem, 2vw, 1.55rem)
        clamp(1.05rem, 2.25vw, 1.75rem);
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 22px;
    background: rgba(255,255,255,.70);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 38px rgba(13,41,72,.12);
}

body.service-page .hero-copy h1 {
    max-width: 25ch;
    font-size: clamp(1.42rem, 1.95vw, 2.18rem);
    line-height: 1.08;
}

body.service-page .hero-copy .button-row {
    gap: .65rem;
    margin-top: 1.1rem;
}

body.service-page .hero-copy .btn {
    padding: .7rem .94rem;
    border-radius: 10px;
    font-size: .84rem;
}

body.service-page .btn-service-secondary {
    background: rgba(255,255,255,.7);
    color: var(--navy);
    border-color: rgba(13,41,72,.16);
    box-shadow: none;
}

body.service-page .btn-service-secondary:hover {
    background: #ffffff;
    color: var(--navy);
}

/* ======================================================
   INTRO / SIDE PANEL
====================================================== */

body.service-page .grid-intro {
    display: grid;
    grid-template-columns: minmax(0,1fr) 390px;
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
}

body.service-page .grid-intro h2 {
    margin-bottom: 1.35rem;
}

body.service-page .intro-panel {
    position: sticky;
    top: calc(var(--header-compact) + 28px);
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

body.service-page .intro-panel h3 {
    margin-bottom: 1.1rem;
}

body.service-page .check-list {
    display: grid;
    gap: .8rem;
}

body.service-page .check-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

body.service-page .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .15rem;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(184,135,59,.12);
    color: var(--brass);
    font-size: .78rem;
    font-weight: 900;
}

/* ======================================================
   QUESTION LIST
====================================================== */

body.service-page .question-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: .9rem;
}

body.service-page .question-list div {
    position: relative;
    padding: 1.05rem 1.1rem 1.05rem 3rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.84);
    color: var(--ink-soft);
    line-height: 1.6;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

body.service-page .question-list div:hover {
    transform: translateY(-2px);
    border-color: rgba(184,135,59,.32);
    box-shadow: var(--shadow-soft);
}

body.service-page .question-list div::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid rgba(184,135,59,.45);
    border-radius: 50%;
    background: rgba(184,135,59,.08);
}

body.service-page .question-list--balanced div,
body.service-page .question-list--laufende div {
    min-height: 92px;
    display: flex;
    align-items: center;
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
}

/* ======================================================
   CARDS / SERVICE GRIDS
====================================================== */

body.service-page .card-grid,
body.service-page .service-card-grid {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

body.service-page .card-grid.three-columns,
body.service-page .service-card-grid--3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

body.service-page .service-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 1.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184,135,59,.35);
    box-shadow: var(--shadow-deep);
}

body.service-page .service-card h3 {
    margin-bottom: 1rem;
}

body.service-page .service-card p {
    margin-bottom: .9rem;
    color: var(--muted);
    line-height: 1.7;
}

body.service-page .service-card .btn,
body.service-page .service-card .text-link {
    margin-top: auto;
    align-self: flex-start;
}

body.service-page .text-link {
    display: inline-flex;
    padding-top: .9rem;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.35;
    transition:
        color .2s ease,
        transform .2s ease;
}

body.service-page .text-link:hover {
    color: var(--navy-2);
    transform: translateX(2px);
}

body.service-page .card-number {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--brass);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ======================================================
   FEATURE ROWS / MEDIA
====================================================== */

body.service-page .feature-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(420px,.92fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

body.service-page .feature-row.reverse {
    grid-template-columns: minmax(420px,.92fr) minmax(0,1fr);
}

body.service-page .feature-copy {
    width: 100%;
}

body.service-page .feature-copy p + p {
    margin-top: 1rem;
}

body.service-page .media-card,
body.service-page .media-card--quiet {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #f1e8dc 0%,
            #f8f4ed 100%
        );
    box-shadow: var(--shadow-soft);
}

body.service-page .feature-row.reverse .media-card,
body.service-page .feature-row.reverse .media-card--quiet {
    max-width: 520px;
}

body.service-page .media-card picture,
body.service-page .media-card img,
body.service-page .media-card--quiet picture,
body.service-page .media-card--quiet img {
    display: block;
    width: 100%;
}

body.service-page .media-card img,
body.service-page .media-card--quiet img {
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* ======================================================
   DARK TARGET SECTION
====================================================== */

body.service-page .section-service-navy {
    background:
        linear-gradient(
            180deg,
            #071a30 0%,
            #0b2745 100%
        );
}

body.service-page .section-service-navy .section-heading h2,
body.service-page .section-service-navy .section-heading p,
body.service-page .section-service-navy .section-kicker,
body.service-page .section-heading.inverted h2,
body.service-page .section-heading.inverted p,
body.service-page .section-heading.inverted .section-kicker {
    color: #ffffff;
}

body.service-page .service-target-grid,
body.service-page .target-grid-dark {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

body.service-page .service-target-grid--six,
body.service-page .target-grid-dark {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

body.service-page .service-target-grid article,
body.service-page .target-grid-dark article {
    min-height: 240px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
}

body.service-page .service-target-grid h3,
body.service-page .target-grid-dark h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

body.service-page .service-target-grid p,
body.service-page .target-grid-dark p {
    color: rgba(255,255,255,.82);
}

/* ======================================================
   SPLIT / QUOTE / SCOPE
====================================================== */

body.service-page .split-section {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

body.service-page .split-content h2 {
    margin-bottom: 1.35rem;
}

body.service-page .quote-panel {
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(184,135,59,.16);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            #f8f4ed 0%,
            #efe5d6 100%
        );
    box-shadow: var(--shadow-soft);
}

body.service-page .quote-panel p {
    margin: 0;
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.65rem, 2vw, 2.1rem);
    line-height: 1.25;
    letter-spacing: -.02em;
}

body.service-page .scope-panel {
    display: grid;
    grid-template-columns: minmax(280px,.82fr) minmax(0,1.18fr);
    gap: clamp(1.8rem, 5vw, 4rem);
    align-items: start;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%),
        linear-gradient(145deg, #fff, #fbf8f2);
    box-shadow: var(--shadow-soft);
}

body.service-page .scope-panel h2 {
    max-width: 560px;
}

body.service-page .scope-panel p + p {
    margin-top: 1rem;
}

/* ======================================================
   PROCESS
====================================================== */

body.service-page .service-process-grid,
body.service-page .process-grid-extended {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

body.service-page .service-process-grid article {
    padding: 2rem;
    border: 1px solid rgba(13,41,72,.06);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.82);
    box-shadow: var(--shadow-soft);
}

body.service-page .service-process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: #0d2948;
    color: #ffffff;
    font-size: .95rem;
    font-weight: 700;
}

body.service-page .service-process-grid h3 {
    margin-bottom: .9rem;
}

/* ======================================================
   INTERNAL LINKS
====================================================== */

body.service-page .internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1rem;
}

body.service-page .internal-links-grid a {
    display: grid;
    gap: .45rem;
    min-height: 132px;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page .internal-links-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(184,135,59,.35);
    box-shadow: var(--shadow-deep);
}

body.service-page .internal-links-grid span {
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.35rem, 1.7vw, 1.75rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.02em;
}

body.service-page .internal-links-grid small {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

/* ======================================================
   FAQ
====================================================== */

body.service-page .faq-layout {
    display: grid;
    grid-template-columns: 390px minmax(0,1fr);
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
}

body.service-page .faq-list {
    display: grid;
    gap: .8rem;
}

body.service-page .faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

body.service-page .faq-list summary {
    cursor: pointer;
    padding: 1.2rem 1.35rem;
    color: var(--navy);
    font-weight: 800;
    list-style: none;
}

body.service-page .faq-list summary::-webkit-details-marker {
    display: none;
}

body.service-page .faq-list summary::after {
    content: "+";
    float: right;
    color: var(--brass);
}

body.service-page .faq-list details[open] summary::after {
    content: "–";
}

body.service-page .faq-list details p {
    margin: 0;
    padding: 0 1.35rem 1.35rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ======================================================
   FINAL CTA
====================================================== */

body.service-page .cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #071a30 0%,
            #0b2745 100%
        );
    box-shadow: var(--shadow-deep);
}

body.service-page .cta-copy {
    max-width: 760px;
}

body.service-page .cta-box .section-kicker,
body.service-page .cta-box h2,
body.service-page .cta-box p {
    color: #ffffff;
}

body.service-page .cta-actions {
    flex-shrink: 0;
}

body.service-page .cta-actions .btn {
    white-space: nowrap;
    background: #ffffff;
    color: #0b2745;
    border: 1px solid rgba(255,255,255,.9);
}

body.service-page .cta-actions .btn:hover {
    background: rgba(255,255,255,.92);
    color: #071a30;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1080px) {

    body.service-page .hero-banner {
        height: clamp(430px, 56vw, 580px);
    }

    body.service-page .hero-copy {
        width: min(540px, 62%);
    }

    body.service-page .card-grid.three-columns,
    body.service-page .service-card-grid--3,
    body.service-page .service-target-grid--six,
    body.service-page .target-grid-dark,
    body.service-page .internal-links-grid,
    body.service-page .service-process-grid,
    body.service-page .process-grid-extended {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    body.service-page .scope-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1040px) {

    body.service-page .grid-intro,
    body.service-page .faq-layout {
        grid-template-columns: 1fr;
    }

    body.service-page .intro-panel {
        position: static;
    }
}

@media (max-width: 980px) {

    body.service-page .feature-row,
    body.service-page .feature-row.reverse,
    body.service-page .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    body.service-page .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {

    body.service-page .section {
        padding: 4rem 0;
    }

    body.service-page .hero-page {
        padding: 1.2rem 0 4rem;
    }

    body.service-page .hero-banner {
        height: auto;
        display: grid;
    }

    body.service-page .hero-banner picture,
    body.service-page .hero-banner img {
        height: auto;
    }

    body.service-page .hero-copy {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        transform: none;
        margin: -20px 12px 12px;
    }

    body.service-page .hero-card {
        background: rgba(255,255,255,.9);
    }

    body.service-page .hero-copy h1 {
        max-width: none;
        font-size: clamp(1.75rem, 6vw, 2.2rem);
    }

    body.service-page .question-list,
    body.service-page .card-grid.three-columns,
    body.service-page .service-card-grid--3,
    body.service-page .service-target-grid--six,
    body.service-page .target-grid-dark,
    body.service-page .internal-links-grid,
    body.service-page .service-process-grid,
    body.service-page .process-grid-extended {
        grid-template-columns: 1fr;
    }

    body.service-page .service-card,
    body.service-page .service-target-grid article,
    body.service-page .target-grid-dark article,
    body.service-page .service-process-grid article {
        padding: 1.5rem;
    }

    body.service-page .cta-actions,
    body.service-page .cta-actions .btn {
        width: 100%;
    }
}

/* ======================================================
   FINAL OVERRIDE: SECTION-KICKER AUF LEISTUNGSSEITEN
   Greift auch dann, wenn globale Absatzregeln oder eine abweichende
   Lade-Reihenfolge die Abschnittslabels erneut grau setzen.
====================================================== */

body.service-page .service-main p.section-kicker,
.service-main p.section-kicker {
    color: var(--brass) !important;
    font-size: clamp(.98rem, 1.05vw, 1.12rem) !important;
}

body.service-page .service-main .section-service-navy p.section-kicker,
body.service-page .service-main .section-heading.inverted p.section-kicker,
body.service-page .service-main .cta-box p.section-kicker,
.service-main .section-service-navy p.section-kicker,
.service-main .section-heading.inverted p.section-kicker,
.service-main .cta-box p.section-kicker {
    color: #ffffff !important;
}

/* ======================================================
   ZIELSEITEN-ERGÄNZUNGEN AUS HOMEPAGE.ZIP
   Zentrale Übernahme der vorhandenen Seiten-CSS.
   Keine Inline-Styles; keine separaten Zielseiten-CSS-Dateien.
   Nicht-generische Ausnahmen bleiben über Body-Klassen gekapselt.
====================================================== */

/* ===== Aus 404.css zentralisiert (auf body.service-page--404 gekapselt) ===== */


body.service-page--404 .service-main .hero-banner--404 {
  position: relative;
  overflow: hidden;
}

body.service-page--404 .service-main .hero-banner--404 img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

body.service-page--404 .service-main .hero-card--404 {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.55);
}

body.service-page--404 .hero-copy h1 {
  max-width: 13ch;
}

body.service-page--404 .area-card {
  min-height: 100%;
}

body.service-page--404 .link-list {
  margin-bottom: 1.6rem;
}

@media (max-width: 760px) {

  body.service-page--404 .hero-copy h1 {
    max-width: none;
  }

  body.service-page--404 .service-main .hero-card--404 {
    background: rgba(255,255,255,.88);
  }
}

/* ===== Aus betriebspruefung-steuerstreit.css zentralisiert ===== */
/* ======================================================
   Unterseite Steuerberaterhaftung / Betriebsprüfung & Steuerstreit
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--betriebspruefung-steuerstreit .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung-steuerstreit .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--betriebspruefung-steuerstreit .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--betriebspruefung-steuerstreit .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(610px, 49%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--betriebspruefung-steuerstreit .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--betriebspruefung-steuerstreit .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.42rem, 1.86vw, 2.08rem);
  line-height: 1.08;
}

.service-page--betriebspruefung-steuerstreit .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--betriebspruefung-steuerstreit .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--betriebspruefung-steuerstreit .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--betriebspruefung-steuerstreit .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung-steuerstreit .media-card--quiet picture,
.service-page--betriebspruefung-steuerstreit .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--betriebspruefung-steuerstreit .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--betriebspruefung-steuerstreit .bp-card-grid .service-card {
  min-height: 335px;
}

.service-page--betriebspruefung-steuerstreit .bp-card-grid .service-card p + p {
  margin-top: .75rem;
}

.service-page--betriebspruefung-steuerstreit .question-list--bp div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--betriebspruefung-steuerstreit .question-list--bp div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--betriebspruefung-steuerstreit .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--betriebspruefung-steuerstreit .service-target-grid--six article {
  min-height: 230px;
}

.service-page--betriebspruefung-steuerstreit .bp-target-grid h3 {
  hyphens: auto;
}

.service-page--betriebspruefung-steuerstreit .section-route {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--betriebspruefung-steuerstreit .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--betriebspruefung-steuerstreit .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--betriebspruefung-steuerstreit .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--betriebspruefung-steuerstreit .documents-list {
  margin-top: 1.4rem;
}

.service-page--betriebspruefung-steuerstreit .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--betriebspruefung-steuerstreit .service-process-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.service-page--betriebspruefung-steuerstreit .service-process-grid--six article {
  min-height: 315px;
}

.service-page--betriebspruefung-steuerstreit .faq-list details p {
  line-height: 1.7;
}

.service-page--betriebspruefung-steuerstreit .text-link {
  align-self: flex-start;
  margin-top: 1.1rem;
}

@media (max-width: 1080px) {
  .service-page--betriebspruefung-steuerstreit .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--betriebspruefung-steuerstreit .hero-copy {
    width: min(560px, 64%);
  }

  .service-page--betriebspruefung-steuerstreit .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--betriebspruefung-steuerstreit .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--betriebspruefung-steuerstreit .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--betriebspruefung-steuerstreit .hero-banner picture,
  .service-page--betriebspruefung-steuerstreit .hero-banner img {
    height: auto;
  }

  .service-page--betriebspruefung-steuerstreit .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--betriebspruefung-steuerstreit .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--betriebspruefung-steuerstreit .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--betriebspruefung-steuerstreit .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--betriebspruefung-steuerstreit .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--betriebspruefung-steuerstreit .bp-card-grid .service-card,
  .service-page--betriebspruefung-steuerstreit .service-process-grid--six article,
  .service-page--betriebspruefung-steuerstreit .service-target-grid--six article {
    min-height: 0;
  }

  .service-page--betriebspruefung-steuerstreit .documents-copy {
    padding: 1.45rem;
  }
}

/* ===== Aus betriebspruefung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Betriebsprüfung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--betriebspruefung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--betriebspruefung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--betriebspruefung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(565px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--betriebspruefung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--betriebspruefung .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.42rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-page--betriebspruefung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--betriebspruefung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--betriebspruefung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--betriebspruefung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung .media-card--quiet picture,
.service-page--betriebspruefung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--betriebspruefung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--betriebspruefung .question-list--betriebspruefung {
  align-items: stretch;
}

.service-page--betriebspruefung .question-list--betriebspruefung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--betriebspruefung .question-list--betriebspruefung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--betriebspruefung .service-card {
  min-height: 300px;
}

.service-page--betriebspruefung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--betriebspruefung .service-target-grid--six {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page--betriebspruefung .service-target-grid--six article {
  min-height: 230px;
}

.service-page--betriebspruefung .service-process-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--betriebspruefung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .service-page--betriebspruefung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-page--betriebspruefung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--betriebspruefung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--betriebspruefung .service-process-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--betriebspruefung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--betriebspruefung .hero-banner picture,
  .service-page--betriebspruefung .hero-banner img {
    height: auto;
  }

  .service-page--betriebspruefung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--betriebspruefung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--betriebspruefung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--betriebspruefung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--betriebspruefung .service-target-grid--six,
  .service-page--betriebspruefung .service-process-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus blog-template.css zentralisiert (auf body.article-page gekapselt) ===== */


body.article-page {
  background: var(--ivory);
}

body.article-page .service-main .article-hero {
  padding: 1.6rem 0 4.8rem;
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
}

body.article-page .service-main .article-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
  box-shadow: var(--shadow-deep);
  line-height: 0;
}

body.article-page .service-main .article-banner picture {
  display: block;
}

body.article-page .service-main .article-banner picture,
body.article-page .service-main .article-banner img {
  width: 100%;
  height: auto;
  display: block;
}

body.article-page .service-main .article-banner img {
  object-fit: contain;
  object-position: center;
}

body.article-page .service-main .article-overlay {
  position: absolute;
  left: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  width: min(700px, calc(100% - 3rem));
}

body.article-page .service-main .article-card {
  padding: clamp(1.3rem, 2.6vw, 2rem);
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 44px rgba(13,41,72,.12);
}

body.article-page .service-main .article-eyebrow {
  margin-bottom: .9rem;
  color: var(--brass);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.article-page .service-main .article-overlay h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

body.article-page .service-main .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.5;
}

body.article-page .service-main .article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

body.article-page .service-main .article-content {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .article-intro {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

body.article-page .service-main .article-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

body.article-page .service-main .article-content p {
  color: var(--muted);
}

body.article-page .service-main .article-content ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: .7rem;
}

body.article-page .service-main .article-content li {
  color: var(--muted);
}

body.article-page .service-main .article-quote {
  margin: 2.5rem 0;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, #fff, #fbf8f2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .article-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.25;
  color: var(--navy);
}

body.article-page .service-main .article-sidebar {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
}

body.article-page .service-main .sidebar-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .sidebar-card h3 {
  margin-bottom: 1rem;
}

body.article-page .service-main .sidebar-nav {
  display: grid;
  gap: .7rem;
}

body.article-page .service-main .sidebar-nav a {
  color: var(--ink-soft);
  font-weight: 600;
}

body.article-page .service-main .sidebar-nav a:hover {
  color: var(--navy);
}

@media (max-width: 1040px) {

  body.article-page .service-main .article-layout {
    grid-template-columns: 1fr;
  }

  body.article-page .service-main .article-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {

  body.article-page .service-main .article-overlay {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -22px 14px 14px;
  }

  body.article-page .service-main .article-overlay h1 {
    max-width: none;
  }

  body.article-page .service-main .article-card {
    background: rgba(255,255,255,.92);
  }

  body.article-page .service-main .article-content {
    padding: 1.6rem;
  }
}

/* ===== Aus datenschutz.css zentralisiert ===== */
/* ======================================================
   Datenschutzseite
   - nutzt den zentralen Website-/Leistungsseiten-Master
   - nur seitenbezogene Ergänzungen
====================================================== */

.service-page--datenschutz .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--datenschutz .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--datenschutz .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--datenschutz .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  width: min(540px, 45%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--datenschutz .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--datenschutz .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 2.15vw, 2.45rem);
  line-height: 1.08;
}

.service-page--datenschutz .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.9rem, .96vw, 1rem);
  line-height: 1.58;
}

.service-page--datenschutz .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--datenschutz .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--datenschutz .legal-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(2.2rem, 6vw, 4.6rem);
  align-items: start;
}

.service-page--datenschutz .legal-intro-grid h2 {
  margin-bottom: 1.35rem;
}

.service-page--datenschutz .legal-summary-card {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--datenschutz .legal-summary-card h3 {
  margin-bottom: 1.1rem;
}

.service-page--datenschutz .legal-section {
  padding-top: clamp(4rem, 6vw, 6rem);
}

.service-page--datenschutz .legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}

.service-page--datenschutz .legal-toc {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}

.service-page--datenschutz .legal-toc nav {
  display: grid;
  gap: .35rem;
}

.service-page--datenschutz .legal-toc a {
  display: block;
  padding: .58rem .72rem;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.32;
}

.service-page--datenschutz .legal-toc a:hover {
  background: rgba(13,41,72,.05);
  color: var(--navy);
}

.service-page--datenschutz .legal-content {
  display: grid;
  gap: 1rem;
}

.service-page--datenschutz .legal-card {
  scroll-margin-top: calc(var(--header-compact) + 24px);
  padding: clamp(1.45rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}

.service-page--datenschutz .legal-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.35vw, 2.25rem);
}

.service-page--datenschutz .legal-card p,
.service-page--datenschutz .legal-card li,
.service-page--datenschutz .legal-card address {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
}

.service-page--datenschutz .legal-card address {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(13,41,72,.035);
  border: 1px solid rgba(13,41,72,.06);
  font-style: normal;
}

.service-page--datenschutz .legal-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-page--datenschutz .legal-card ul {
  display: grid;
  gap: .55rem;
  margin: 1rem 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.service-page--datenschutz .legal-card ul li::marker {
  color: var(--brass);
}

.service-page--datenschutz .warning-card {
  position: relative;
  background: linear-gradient(180deg, #fffaf3 0%, #fcf7ef 100%);
  border-color: rgba(184,135,59,.22);
}

.service-page--datenschutz .legal-card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(184,135,59,.10);
  color: var(--brass);
}

.service-page--datenschutz .legal-card-icon svg {
  width: 25px;
  height: 25px;
}

.service-page--datenschutz .cta-actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .service-page--datenschutz .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--datenschutz .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--datenschutz .legal-intro-grid,
  .service-page--datenschutz .legal-layout {
    grid-template-columns: 1fr;
  }

  .service-page--datenschutz .legal-summary-card,
  .service-page--datenschutz .legal-toc {
    position: static;
  }

  .service-page--datenschutz .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--datenschutz .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .service-page--datenschutz .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--datenschutz .hero-banner picture,
  .service-page--datenschutz .hero-banner img {
    height: auto;
  }

  .service-page--datenschutz .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--datenschutz .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--datenschutz .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--datenschutz .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--datenschutz .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .service-page--datenschutz .legal-card {
    padding: 1.25rem;
  }
}

/* ===== Aus einkommensteuererklaerung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Einkommensteuererklärung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--einkommensteuererklaerung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--einkommensteuererklaerung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--einkommensteuererklaerung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--einkommensteuererklaerung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--einkommensteuererklaerung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--einkommensteuererklaerung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--einkommensteuererklaerung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--einkommensteuererklaerung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--einkommensteuererklaerung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--einkommensteuererklaerung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--einkommensteuererklaerung .media-card--quiet picture,
.service-page--einkommensteuererklaerung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--einkommensteuererklaerung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--einkommensteuererklaerung .question-list--einkommensteuer {
  align-items: stretch;
}

.service-page--einkommensteuererklaerung .question-list--einkommensteuer div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--einkommensteuererklaerung .question-list--einkommensteuer div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--einkommensteuererklaerung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--einkommensteuererklaerung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--einkommensteuererklaerung .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--einkommensteuererklaerung .scope-panel h2 {
  max-width: 560px;
}

.service-page--einkommensteuererklaerung .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--einkommensteuererklaerung .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--einkommensteuererklaerung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--einkommensteuererklaerung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--einkommensteuererklaerung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--einkommensteuererklaerung .service-target-grid--six,
  .service-page--einkommensteuererklaerung .scope-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--einkommensteuererklaerung .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--einkommensteuererklaerung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--einkommensteuererklaerung .hero-banner picture,
  .service-page--einkommensteuererklaerung .hero-banner img {
    height: auto;
  }

  .service-page--einkommensteuererklaerung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--einkommensteuererklaerung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--einkommensteuererklaerung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--einkommensteuererklaerung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--einkommensteuererklaerung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus einspruch-steuerbescheid.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsanwalt Einspruch gegen Steuerbescheid
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--einspruch-steuerbescheid .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--einspruch-steuerbescheid .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--einspruch-steuerbescheid .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.service-page--einspruch-steuerbescheid .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--einspruch-steuerbescheid .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--einspruch-steuerbescheid .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--einspruch-steuerbescheid .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--einspruch-steuerbescheid .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--einspruch-steuerbescheid .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--einspruch-steuerbescheid .question-list--einspruch div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--einspruch-steuerbescheid .question-list--einspruch div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--einspruch-steuerbescheid .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--einspruch-steuerbescheid .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--einspruch-steuerbescheid .media-card--quiet picture,
.service-page--einspruch-steuerbescheid .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--einspruch-steuerbescheid .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--einspruch-steuerbescheid .section-risk {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--einspruch-steuerbescheid .risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--einspruch-steuerbescheid .risk-panel h2 {
  max-width: 560px;
}

.service-page--einspruch-steuerbescheid .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--einspruch-steuerbescheid .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--einspruch-steuerbescheid .risk-list {
  display: grid;
  gap: .75rem;
}

.service-page--einspruch-steuerbescheid .risk-list li {
  position: relative;
  padding: .9rem .95rem .9rem 2.65rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  color: var(--ink-soft);
  font-weight: 600;
}

.service-page--einspruch-steuerbescheid .risk-list li::before {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid rgba(184,135,59,.46);
  border-radius: 50%;
  content: "";
}

.service-page--einspruch-steuerbescheid .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--einspruch-steuerbescheid .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--einspruch-steuerbescheid .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--einspruch-steuerbescheid .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--einspruch-steuerbescheid .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--einspruch-steuerbescheid .risk-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--einspruch-steuerbescheid .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--einspruch-steuerbescheid .hero-banner picture,
  .service-page--einspruch-steuerbescheid .hero-banner img {
    height: auto;
  }

  .service-page--einspruch-steuerbescheid .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--einspruch-steuerbescheid .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--einspruch-steuerbescheid .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--einspruch-steuerbescheid .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--einspruch-steuerbescheid .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus erbschaftsteuer-schenkungsteuer.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Erbschaftsteuer / Schenkungsteuer
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--erbschaftsteuer-schenkungsteuer .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy h1 {
  max-width: 25ch;
  font-size: clamp(1.42rem, 1.9vw, 2.12rem);
  line-height: 1.08;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet picture,
.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--erbschaftsteuer-schenkungsteuer .question-list--erbschaftsteuer div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .question-list--erbschaftsteuer div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--erbschaftsteuer-schenkungsteuer .service-card {
  min-height: 330px;
}

.service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six article {
  min-height: 220px;
}

.service-page--erbschaftsteuer-schenkungsteuer .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel h2 {
  max-width: 560px;
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .faq-list details p {
  line-height: 1.7;
}

.service-page--erbschaftsteuer-schenkungsteuer .cta-box .cta-note {
  color: rgba(255, 255, 255, .76);
}

@media (max-width: 1080px) {
  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--erbschaftsteuer-schenkungsteuer .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner picture,
  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner img {
    height: auto;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.72rem, 5.8vw, 2.2rem);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .service-card {
    min-height: auto;
  }
}

/* ===== Aus erweiterte-gewerbesteuerkuerzung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Erweiterte Gewerbesteuerkürzung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--erweiterte-gewerbesteuerkuerzung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe7dc 0%, #f8f4ed 100%);
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .question-list--gewerbesteuer div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .question-list--gewerbesteuer div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet {
  background: linear-gradient(180deg, #efe7dc 0%, #f8f4ed 100%);
}

.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet picture,
.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel h2 {
  max-width: 560px;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-list {
  display: grid;
  gap: .85rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-list li {
  position: relative;
  padding: .95rem 1rem .95rem 3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  color: var(--ink-soft);
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(184,135,59,.48);
  background: rgba(184,135,59,.08);
}

.service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six article {
  min-height: 220px;
}

.service-page--erweiterte-gewerbesteuerkuerzung .text-link {
  align-self: flex-start;
}

.service-page--erweiterte-gewerbesteuerkuerzung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .risk-panel {
    grid-template-columns: 1fr;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner picture,
  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner img {
    height: auto;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus finanzbuchfuehrung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Finanzbuchführung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--finanzbuchfuehrung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzbuchfuehrung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--finanzbuchfuehrung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--finanzbuchfuehrung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--finanzbuchfuehrung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--finanzbuchfuehrung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--finanzbuchfuehrung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--finanzbuchfuehrung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--finanzbuchfuehrung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--finanzbuchfuehrung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzbuchfuehrung .media-card--quiet picture,
.service-page--finanzbuchfuehrung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--finanzbuchfuehrung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--finanzbuchfuehrung .question-list--finanzbuchfuehrung {
  align-items: stretch;
}

.service-page--finanzbuchfuehrung .question-list--finanzbuchfuehrung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--finanzbuchfuehrung .question-list--finanzbuchfuehrung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--finanzbuchfuehrung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--finanzbuchfuehrung .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--finanzbuchfuehrung .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--finanzbuchfuehrung .scope-panel h2 {
  max-width: 520px;
}

.service-page--finanzbuchfuehrung .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--finanzbuchfuehrung .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--finanzbuchfuehrung .faq-list details p {
  line-height: 1.7;
}

.service-page--finanzbuchfuehrung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

@media (max-width: 1080px) {
  .service-page--finanzbuchfuehrung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--finanzbuchfuehrung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--finanzbuchfuehrung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--finanzbuchfuehrung .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--finanzbuchfuehrung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--finanzbuchfuehrung .hero-banner picture,
  .service-page--finanzbuchfuehrung .hero-banner img {
    height: auto;
  }

  .service-page--finanzbuchfuehrung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--finanzbuchfuehrung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--finanzbuchfuehrung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--finanzbuchfuehrung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--finanzbuchfuehrung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus finanzgericht.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Finanzgerichtliche Verfahren
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--finanzgericht .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzgericht .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--finanzgericht .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--finanzgericht .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--finanzgericht .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--finanzgericht .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.92vw, 2.12rem);
  line-height: 1.08;
}

.service-page--finanzgericht .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--finanzgericht .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--finanzgericht .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--finanzgericht .media-card--quiet,
.service-page--finanzgericht .media-card--wide {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzgericht .media-card--quiet picture,
.service-page--finanzgericht .media-card--quiet img,
.service-page--finanzgericht .media-card--wide picture,
.service-page--finanzgericht .media-card--wide img {
  display: block;
  width: 100%;
}

.service-page--finanzgericht .media-card--quiet img,
.service-page--finanzgericht .media-card--wide img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--finanzgericht .question-list--finanzgericht div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--finanzgericht .question-list--finanzgericht div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--finanzgericht .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--finanzgericht .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--finanzgericht .service-target-grid--six article {
  min-height: 205px;
}

.service-page--finanzgericht .service-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--finanzgericht .focus-grid .service-card {
  min-height: 240px;
}

.service-page--finanzgericht .evidence-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.11), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--finanzgericht .evidence-panel h2 {
  margin-bottom: 1.25rem;
}

.service-page--finanzgericht .evidence-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--finanzgericht .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--finanzgericht .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--finanzgericht .hero-copy {
    width: min(530px, 62%);
  }

  .service-page--finanzgericht .service-target-grid--six,
  .service-page--finanzgericht .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--finanzgericht .evidence-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--finanzgericht .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--finanzgericht .hero-banner picture,
  .service-page--finanzgericht .hero-banner img {
    height: auto;
  }

  .service-page--finanzgericht .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--finanzgericht .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--finanzgericht .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--finanzgericht .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--finanzgericht .service-target-grid--six,
  .service-page--finanzgericht .service-process-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus fristversaeumnis.css zentralisiert ===== */
/* ======================================================
   Unterseite Steuerberaterhaftung / Fristversäumnis
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--fristversaeumnis .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--fristversaeumnis .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--fristversaeumnis .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--fristversaeumnis .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--fristversaeumnis .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--fristversaeumnis .hero-copy h1 {
  max-width: 21ch;
  font-size: clamp(1.52rem, 2vw, 2.24rem);
  line-height: 1.08;
}

.service-page--fristversaeumnis .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .94vw, .99rem);
  line-height: 1.55;
}

.service-page--fristversaeumnis .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--fristversaeumnis .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--fristversaeumnis .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--fristversaeumnis .media-card--quiet picture,
.service-page--fristversaeumnis .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--fristversaeumnis .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--fristversaeumnis .frist-card-grid .service-card {
  min-height: 350px;
}

.service-page--fristversaeumnis .frist-card-grid .service-card p + p {
  margin-top: .75rem;
}

.service-page--fristversaeumnis .question-list--frist div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--fristversaeumnis .question-list--frist div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--fristversaeumnis .section-wiedereinsetzung {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--fristversaeumnis .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--fristversaeumnis .service-target-grid--six article {
  min-height: 210px;
}

.service-page--fristversaeumnis .frist-target-grid h3 {
  hyphens: auto;
}

.service-page--fristversaeumnis .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--fristversaeumnis .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--fristversaeumnis .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--fristversaeumnis .documents-list {
  margin-top: 1.4rem;
}

.service-page--fristversaeumnis .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--fristversaeumnis .service-process-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.service-page--fristversaeumnis .service-process-grid--six article {
  min-height: 300px;
}

.service-page--fristversaeumnis .faq-list details p {
  line-height: 1.7;
}

.service-page--fristversaeumnis .text-link {
  align-self: flex-start;
  margin-top: 1.1rem;
}

@media (max-width: 1080px) {
  .service-page--fristversaeumnis .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--fristversaeumnis .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--fristversaeumnis .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--fristversaeumnis .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--fristversaeumnis .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--fristversaeumnis .hero-banner picture,
  .service-page--fristversaeumnis .hero-banner img {
    height: auto;
  }

  .service-page--fristversaeumnis .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--fristversaeumnis .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--fristversaeumnis .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--fristversaeumnis .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--fristversaeumnis .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--fristversaeumnis .frist-card-grid .service-card,
  .service-page--fristversaeumnis .service-process-grid--six article,
  .service-page--fristversaeumnis .service-target-grid--six article {
    min-height: 0;
  }

  .service-page--fristversaeumnis .documents-copy {
    padding: 1.45rem;
  }
}

/* ===== Aus geschaeftsfuehrerhaftung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Geschäftsführerhaftung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--geschaeftsfuehrerhaftung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--geschaeftsfuehrerhaftung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--geschaeftsfuehrerhaftung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(575px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--geschaeftsfuehrerhaftung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--geschaeftsfuehrerhaftung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--geschaeftsfuehrerhaftung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--geschaeftsfuehrerhaftung .media-card--quiet picture,
.service-page--geschaeftsfuehrerhaftung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--geschaeftsfuehrerhaftung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--geschaeftsfuehrerhaftung .question-list--haftung {
  align-items: stretch;
}

.service-page--geschaeftsfuehrerhaftung .question-list--haftung div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--geschaeftsfuehrerhaftung .question-list--haftung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--geschaeftsfuehrerhaftung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--geschaeftsfuehrerhaftung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--geschaeftsfuehrerhaftung .service-target-grid--six article {
  min-height: 225px;
}

.service-page--geschaeftsfuehrerhaftung .section-risk {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--geschaeftsfuehrerhaftung .risk-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--geschaeftsfuehrerhaftung .risk-panel h2 {
  max-width: 720px;
  margin-bottom: 1.35rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-list {
  display: grid;
  gap: .7rem;
  margin-top: 1.4rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-list li {
  position: relative;
  padding: .85rem .95rem .85rem 2.6rem;
  border: 1px solid rgba(13, 41, 72, .06);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  color: var(--ink-soft);
  font-weight: 600;
}

.service-page--geschaeftsfuehrerhaftung .risk-list li::before {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  content: "›";
  font-weight: 900;
}

.service-page--geschaeftsfuehrerhaftung .document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-page--geschaeftsfuehrerhaftung .document-grid article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--geschaeftsfuehrerhaftung .document-grid h3 {
  margin-bottom: .65rem;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.service-page--geschaeftsfuehrerhaftung .document-grid p {
  color: var(--muted);
}

.service-page--geschaeftsfuehrerhaftung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--geschaeftsfuehrerhaftung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--geschaeftsfuehrerhaftung .hero-copy {
    width: min(535px, 61%);
  }

  .service-page--geschaeftsfuehrerhaftung .risk-panel {
    grid-template-columns: 1fr;
  }

  .service-page--geschaeftsfuehrerhaftung .service-target-grid--six,
  .service-page--geschaeftsfuehrerhaftung .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--geschaeftsfuehrerhaftung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-banner picture,
  .service-page--geschaeftsfuehrerhaftung .hero-banner img {
    height: auto;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--geschaeftsfuehrerhaftung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--geschaeftsfuehrerhaftung .service-target-grid--six,
  .service-page--geschaeftsfuehrerhaftung .document-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus gestaltungsberatung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Gestaltungsberatung
   - nutzt den zentralen Leistungsseiten-Master
   - ergänzt nur seitenbezogene Bild-/Hero-Feinheiten
====================================================== */

.service-page--gestaltungsberatung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gestaltungsberatung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--gestaltungsberatung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--gestaltungsberatung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--gestaltungsberatung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--gestaltungsberatung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--gestaltungsberatung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--gestaltungsberatung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--gestaltungsberatung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--gestaltungsberatung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gestaltungsberatung .media-card--quiet picture,
.service-page--gestaltungsberatung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--gestaltungsberatung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--gestaltungsberatung .question-list--gestaltungsberatung {
  align-items: stretch;
}

.service-page--gestaltungsberatung .question-list--gestaltungsberatung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--gestaltungsberatung .question-list--gestaltungsberatung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--gestaltungsberatung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--gestaltungsberatung .faq-list details p {
  line-height: 1.7;
}

.service-page--gestaltungsberatung .text-link {
  align-self: flex-start;
}

.service-page--gestaltungsberatung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

@media (max-width: 1080px) {
  .service-page--gestaltungsberatung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--gestaltungsberatung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--gestaltungsberatung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--gestaltungsberatung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--gestaltungsberatung .hero-banner picture,
  .service-page--gestaltungsberatung .hero-banner img {
    height: auto;
  }

  .service-page--gestaltungsberatung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--gestaltungsberatung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--gestaltungsberatung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--gestaltungsberatung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--gestaltungsberatung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus gewerblicher-grundstueckshandel.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Gewerblicher Grundstückshandel
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--gewerblicher-grundstueckshandel .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gewerblicher-grundstueckshandel .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--gewerblicher-grundstueckshandel .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--gewerblicher-grundstueckshandel .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--gewerblicher-grundstueckshandel .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--gewerblicher-grundstueckshandel .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gewerblicher-grundstueckshandel .media-card--quiet picture,
.service-page--gewerblicher-grundstueckshandel .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--gewerblicher-grundstueckshandel .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--gewerblicher-grundstueckshandel .question-list--grundstueckshandel {
  align-items: stretch;
}

.service-page--gewerblicher-grundstueckshandel .question-list--grundstueckshandel div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--gewerblicher-grundstueckshandel .question-list--grundstueckshandel div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--gewerblicher-grundstueckshandel .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--gewerblicher-grundstueckshandel .risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--gewerblicher-grundstueckshandel .risk-panel h2 {
  max-width: 560px;
}

.service-page--gewerblicher-grundstueckshandel .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--gewerblicher-grundstueckshandel .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--gewerblicher-grundstueckshandel .risk-list {
  display: grid;
  gap: .8rem;
}

.service-page--gewerblicher-grundstueckshandel .risk-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--ink-soft);
}

.service-page--gewerblicher-grundstueckshandel .risk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brass);
}

.service-page--gewerblicher-grundstueckshandel .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--gewerblicher-grundstueckshandel .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--gewerblicher-grundstueckshandel .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--gewerblicher-grundstueckshandel .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--gewerblicher-grundstueckshandel .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--gewerblicher-grundstueckshandel .risk-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--gewerblicher-grundstueckshandel .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-banner picture,
  .service-page--gewerblicher-grundstueckshandel .hero-banner img {
    height: auto;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--gewerblicher-grundstueckshandel .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--gewerblicher-grundstueckshandel .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus holdingstrukturen.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Holdingstrukturen
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
   - v6: Bannerbild auf Master-Blockformat gebracht; vollständiges Motiv ohne Verzerrung.
====================================================== */

.service-page--holdingstrukturen .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--holdingstrukturen .hero-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-page--holdingstrukturen .hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.service-page--holdingstrukturen .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(540px, 43%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--holdingstrukturen .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--holdingstrukturen .hero-copy h1 {
  max-width: 25ch;
  font-size: clamp(1.36rem, 1.78vw, 2rem);
  line-height: 1.08;
}

.service-page--holdingstrukturen .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.85rem, .88vw, .94rem);
  line-height: 1.55;
}

.service-page--holdingstrukturen .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--holdingstrukturen .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--holdingstrukturen .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--holdingstrukturen .media-card--quiet picture,
.service-page--holdingstrukturen .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--holdingstrukturen .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--holdingstrukturen .question-list--holdingstrukturen {
  align-items: stretch;
}

.service-page--holdingstrukturen .question-list--holdingstrukturen div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--holdingstrukturen .question-list--holdingstrukturen div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--holdingstrukturen .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--holdingstrukturen .service-target-grid--six article {
  min-height: 230px;
}

.service-page--holdingstrukturen .faq-list details p {
  line-height: 1.7;
}

.service-page--holdingstrukturen .text-link {
  align-self: flex-start;
}

.service-page--holdingstrukturen .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--holdingstrukturen .service-process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-page--holdingstrukturen .service-process-grid article {
  min-height: 300px;
}

@media (max-width: 1180px) {
  .service-page--holdingstrukturen .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-page--holdingstrukturen .hero-banner {
    height: clamp(430px, 56vw, 580px);
    padding: 0;
  }

  .service-page--holdingstrukturen .hero-copy {
    width: min(535px, 61%);
  }

  .service-page--holdingstrukturen .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--holdingstrukturen .hero-banner {
    height: auto;
    display: grid;
    padding: 0;
  }

  .service-page--holdingstrukturen .hero-banner picture,
  .service-page--holdingstrukturen .hero-banner img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .service-page--holdingstrukturen .hero-banner img {
    object-fit: contain;
    object-position: center;
  }

  .service-page--holdingstrukturen .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--holdingstrukturen .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--holdingstrukturen .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--holdingstrukturen .service-target-grid--six,
  .service-page--holdingstrukturen .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-page--holdingstrukturen .service-process-grid article,
  .service-page--holdingstrukturen .service-target-grid--six article {
    min-height: 0;
  }
}

/* ===== Aus immobilien-betriebsvermoegen.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Immobilien im Betriebsvermögen
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--immobilien-betriebsvermoegen .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-betriebsvermoegen .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--immobilien-betriebsvermoegen .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--immobilien-betriebsvermoegen .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--immobilien-betriebsvermoegen .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .69);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--immobilien-betriebsvermoegen .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.45rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-page--immobilien-betriebsvermoegen .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--immobilien-betriebsvermoegen .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--immobilien-betriebsvermoegen .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--immobilien-betriebsvermoegen .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-betriebsvermoegen .media-card--quiet picture,
.service-page--immobilien-betriebsvermoegen .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--immobilien-betriebsvermoegen .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--immobilien-betriebsvermoegen .question-list--immo-bv {
  align-items: stretch;
}

.service-page--immobilien-betriebsvermoegen .question-list--immo-bv div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--immobilien-betriebsvermoegen .question-list--immo-bv div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--immobilien-betriebsvermoegen .service-card-grid--long .service-card {
  min-height: 350px;
}

.service-page--immobilien-betriebsvermoegen .risk-card-grid .service-card {
  min-height: 245px;
}

.service-page--immobilien-betriebsvermoegen .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--immobilien-betriebsvermoegen .service-target-grid--six article {
  min-height: 210px;
}

.service-page--immobilien-betriebsvermoegen .service-process-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-page--immobilien-betriebsvermoegen .service-process-grid--five article {
  min-height: 290px;
}

.service-page--immobilien-betriebsvermoegen .related-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 16% 16%, rgba(184,135,59,.08), transparent 23%), linear-gradient(180deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--immobilien-betriebsvermoegen .related-panel h2 {
  margin-bottom: 1rem;
}

.service-page--immobilien-betriebsvermoegen .related-panel p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--immobilien-betriebsvermoegen .link-list-panel {
  margin: 0;
}

.service-page--immobilien-betriebsvermoegen .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .service-page--immobilien-betriebsvermoegen .service-process-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-page--immobilien-betriebsvermoegen .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--immobilien-betriebsvermoegen .hero-copy {
    width: min(530px, 60%);
  }

  .service-page--immobilien-betriebsvermoegen .service-target-grid--six,
  .service-page--immobilien-betriebsvermoegen .related-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--immobilien-betriebsvermoegen .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--immobilien-betriebsvermoegen .hero-banner picture,
  .service-page--immobilien-betriebsvermoegen .hero-banner img {
    height: auto;
  }

  .service-page--immobilien-betriebsvermoegen .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--immobilien-betriebsvermoegen .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--immobilien-betriebsvermoegen .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--immobilien-betriebsvermoegen .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--immobilien-betriebsvermoegen .service-target-grid--six,
  .service-page--immobilien-betriebsvermoegen .service-process-grid--five {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus immobilien-gbr-grundstuecksgesellschaften.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Immobilien-GbR und Grundstücksgesellschaften
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.9vw, 2.12rem);
  line-height: 1.08;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .question-list--gbr div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .question-list--gbr div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet picture,
.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-card {
  min-width: 0;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-card h3,
.service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid h3,
.service-page--immobilien-gbr-grundstuecksgesellschaften .faq-list summary {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair .media-card {
  height: 100%;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.6rem, 5vw, 3.8rem);
  align-items: start;
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.11), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid h2 {
  max-width: 620px;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links {
  display: grid;
  gap: .8rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .92rem 1.05rem;
  border: 1px solid rgba(13,41,72,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.35;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links a::after {
  content: "→";
  color: var(--brass);
  font-weight: 900;
  flex: 0 0 auto;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links a:hover {
  color: var(--navy);
  border-color: rgba(184,135,59,.36);
  background: #fff;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid--six,
  .service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair,
  .service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid {
    grid-template-columns: 1fr;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair img {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 760px) {
  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner picture,
  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner img {
    height: auto;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus immobilienverkauf-private-veraeusserungsgeschaefte.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Immobilienverkauf / private Veräußerungsgeschäfte
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy h1 {
  max-width: 26ch;
  font-size: clamp(1.38rem, 1.88vw, 2.08rem);
  line-height: 1.08;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet picture,
.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .question-list--immobilienverkauf {
  align-items: stretch;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .question-list--immobilienverkauf div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .question-list--immobilienverkauf div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-card {
  min-height: 310px;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .faq-list details p {
  line-height: 1.7;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .quote-panel p {
  color: var(--navy);
}

@media (max-width: 1080px) {
  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner picture,
  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner img {
    height: auto;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.7rem, 5.8vw, 2.15rem);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus impressum.css zentralisiert ===== */
/* ======================================================
   Impressum – alternative, ruhigere Gestaltung
   - nutzt den zentralen Website-Master
   - Header/Footer/Logo bleiben unberührt
   - alle Regeln sind auf .service-page--impressum beschränkt
====================================================== */

.service-page--impressum .hero-banner--impressum {
  height: clamp(500px, 50vw, 650px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--impressum .hero-banner--impressum picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--impressum .hero-banner--impressum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.service-page--impressum .hero-banner--impressum::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(247,242,234,.82) 0%,
    rgba(247,242,234,.66) 30%,
    rgba(247,242,234,.28) 55%,
    rgba(247,242,234,0) 78%);
}

.service-page--impressum .hero-copy {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3.35rem);
  top: 50%;
  width: min(530px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--impressum .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--impressum .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(1.7rem, 2.25vw, 2.45rem);
  line-height: 1.08;
}

.service-page--impressum .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.9rem, .94vw, 1rem);
  line-height: 1.58;
}

.service-page--impressum .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--impressum .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

/* Zusammenhängende Hauptfläche statt vieler isolierter Blöcke */
.service-page--impressum .legal-identity-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 1.8rem);
  align-items: start;
}

.service-page--impressum .legal-identity-panel,
.service-page--impressum .legal-document,
.service-page--impressum .legal-continuous-sheet {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-soft);
}

.service-page--impressum .legal-identity-panel {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background:
    radial-gradient(circle at 84% 16%, rgba(184,135,59,.10), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.service-page--impressum .legal-identity-panel h2 {
  margin-bottom: .25rem;
  font-size: clamp(2rem, 2.75vw, 2.65rem);
}

.service-page--impressum .identity-subline {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-weight: 800;
  letter-spacing: .04em;
}

.service-page--impressum address {
  margin: 0 0 1.15rem;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.7;
}

.service-page--impressum .identity-links {
  display: grid;
  gap: .72rem;
}

.service-page--impressum .identity-links li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: .65rem;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 700;
}

.service-page--impressum .identity-links svg {
  width: 19px;
  height: 19px;
  color: var(--brass);
}

.service-page--impressum .identity-links a {
  overflow-wrap: anywhere;
}

.service-page--impressum .identity-note {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(184,135,59,.18);
  border-radius: 18px;
  background: #fffaf3;
}

.service-page--impressum .identity-note span,
.service-page--impressum .identity-note strong {
  display: block;
}

.service-page--impressum .identity-note span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.service-page--impressum .identity-note strong {
  margin-top: .2rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.service-page--impressum .legal-document {
  overflow: hidden;
}

.service-page--impressum .legal-document-header,
.service-page--impressum .legal-document-section,
.service-page--impressum .legal-profession-grid {
  padding: clamp(1.45rem, 3vw, 2.25rem);
}

.service-page--impressum .legal-document-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(251,248,242,.92)),
    radial-gradient(circle at 88% 8%, rgba(184,135,59,.13), transparent 24%);
}

.service-page--impressum .legal-document-header h2,
.service-page--impressum .legal-row-content h2,
.service-page--impressum .legal-editorial-copy h2 {
  margin-bottom: 1rem;
}

.service-page--impressum .legal-document-section {
  border-top: 1px solid var(--line);
}

.service-page--impressum .legal-document-section h3,
.service-page--impressum .legal-profession-grid h3 {
  margin-bottom: .8rem;
}

.service-page--impressum .legal-keyline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.2rem;
}

.service-page--impressum .legal-keyline span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: .9rem 1rem;
  border: 1px solid rgba(13,41,72,.08);
  border-radius: 16px;
  background: rgba(13,41,72,.035);
  color: var(--ink-soft);
  font-weight: 700;
}

.service-page--impressum .legal-document-section--image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: clamp(1.2rem, 4vw, 2.4rem);
  align-items: center;
}

.service-page--impressum .legal-document-section--image figure,
.service-page--impressum .legal-image-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f1e8dc;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-page--impressum .legal-document-section--image img,
.service-page--impressum .legal-image-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.service-page--impressum .legal-profession-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-page--impressum .legal-profession-grid article {
  min-width: 0;
  padding-right: clamp(1rem, 3vw, 2rem);
}

.service-page--impressum .legal-profession-grid article + article {
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: 0;
  border-left: 1px solid var(--line);
}

.service-page--impressum .legal-profession-grid h4 {
  margin-top: 1rem;
  margin-bottom: .65rem;
}

.service-page--impressum .legal-link-list {
  display: grid;
  gap: .52rem;
  margin-top: .7rem;
}

.service-page--impressum .legal-link-list a {
  display: inline-flex;
  gap: .45rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.service-page--impressum .legal-link-list a::before {
  content: "›";
  color: var(--brass);
  font-weight: 900;
}

/* Editorialer Mittelteil mit zusammenhängendem Bildband */
.service-page--impressum .legal-editorial-section {
  overflow: hidden;
}

.service-page--impressum .legal-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

.service-page--impressum .legal-editorial-copy {
  max-width: 680px;
}

.service-page--impressum .legal-image-stack {
  display: grid;
  grid-template-columns: .95fr .72fr;
  grid-template-rows: auto auto;
  gap: .9rem;
}

.service-page--impressum .legal-image-stack .legal-stack-large {
  grid-row: span 2;
}

.service-page--impressum .legal-image-stack img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.15 / 1;
}

.service-page--impressum .legal-stack-large img {
  aspect-ratio: 1 / 1.42;
}

/* Fortlaufende Rechtstexte als ein Dokument */
.service-page--impressum .legal-continuous-sheet {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.service-page--impressum .legal-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(1.45rem, 3vw, 2.3rem);
}

.service-page--impressum .legal-row + .legal-row {
  border-top: 1px solid var(--line);
}

.service-page--impressum .legal-row-label {
  color: var(--brass);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: "Inter", system-ui, sans-serif;
}

.service-page--impressum .legal-row-content p + p {
  margin-top: 1rem;
}

.service-page--impressum .legal-row--cta {
  background: rgba(13,41,72,.035);
}

.service-page--impressum .legal-row--cta .btn {
  margin-top: 1.2rem;
}

.service-page--impressum .legal-cta-box {
  background: radial-gradient(circle at 12% 22%, rgba(184,135,59,.15), transparent 26%), linear-gradient(135deg, #123862 0%, #0d2948 60%, #0a213b 100%);
}

@media (max-width: 1080px) {
  .service-page--impressum .hero-banner--impressum {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--impressum .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--impressum .legal-identity-shell,
  .service-page--impressum .legal-document-section--image,
  .service-page--impressum .legal-editorial-grid {
    grid-template-columns: 1fr;
  }

  .service-page--impressum .legal-identity-panel {
    position: static;
  }

  .service-page--impressum .legal-profession-grid {
    grid-template-columns: 1fr;
  }

  .service-page--impressum .legal-profession-grid article {
    padding-right: 0;
  }

  .service-page--impressum .legal-profession-grid article + article {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-page--impressum .legal-keyline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--impressum .hero-banner--impressum {
    height: auto;
    display: grid;
  }

  .service-page--impressum .hero-banner--impressum::after {
    background: linear-gradient(180deg, rgba(247,242,234,.72), rgba(247,242,234,.10));
  }

  .service-page--impressum .hero-banner--impressum picture,
  .service-page--impressum .hero-banner--impressum img {
    height: auto;
  }

  .service-page--impressum .hero-banner--impressum img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--impressum .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--impressum .hero-card {
    background: rgba(255,255,255,.92);
  }

  .service-page--impressum .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.85rem, 6.4vw, 2.35rem);
  }

  .service-page--impressum .legal-document-header,
  .service-page--impressum .legal-document-section,
  .service-page--impressum .legal-profession-grid,
  .service-page--impressum .legal-identity-panel,
  .service-page--impressum .legal-row {
    padding: 1.25rem;
  }

  .service-page--impressum .legal-image-stack {
    grid-template-columns: 1fr;
  }

  .service-page--impressum .legal-image-stack .legal-stack-large {
    grid-row: auto;
  }

  .service-page--impressum .legal-image-stack img,
  .service-page--impressum .legal-stack-large img {
    aspect-ratio: auto;
    height: auto;
  }

  .service-page--impressum .legal-row {
    grid-template-columns: 1fr;
    gap: .6rem;
  }
}

/* ===== Aus jahresabschluss-steuererklaerung-buchfuehrung.css zentralisiert ===== */
/* ======================================================
   Unterseite Steuerberaterhaftung / Jahresabschluss, Steuererklärung & Buchführung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--haftung-jahresabschluss .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--haftung-jahresabschluss .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--haftung-jahresabschluss .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--haftung-jahresabschluss .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(640px, 50%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--haftung-jahresabschluss .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--haftung-jahresabschluss .hero-copy h1 {
  max-width: 25ch;
  font-size: clamp(1.36rem, 1.76vw, 2rem);
  line-height: 1.08;
}

.service-page--haftung-jahresabschluss .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--haftung-jahresabschluss .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--haftung-jahresabschluss .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--haftung-jahresabschluss .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--haftung-jahresabschluss .media-card--quiet picture,
.service-page--haftung-jahresabschluss .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--haftung-jahresabschluss .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--haftung-jahresabschluss .abschluss-card-grid .service-card {
  min-height: 330px;
}

.service-page--haftung-jahresabschluss .abschluss-card-grid .service-card p + p {
  margin-top: .75rem;
}

.service-page--haftung-jahresabschluss .question-list--abschluss div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--haftung-jahresabschluss .question-list--abschluss div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--haftung-jahresabschluss .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--haftung-jahresabschluss .service-target-grid--six article {
  min-height: 230px;
}

.service-page--haftung-jahresabschluss .abschluss-target-grid h3 {
  hyphens: auto;
}

.service-page--haftung-jahresabschluss .section-route {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--haftung-jahresabschluss .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--haftung-jahresabschluss .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--haftung-jahresabschluss .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--haftung-jahresabschluss .documents-list {
  margin-top: 1.4rem;
}

.service-page--haftung-jahresabschluss .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--haftung-jahresabschluss .service-process-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.service-page--haftung-jahresabschluss .service-process-grid--six article {
  min-height: 315px;
}

.service-page--haftung-jahresabschluss .related-grid .service-card {
  min-height: 285px;
}

.service-page--haftung-jahresabschluss .related-grid .text-link {
  margin-top: auto;
  padding-top: 1rem;
}

.service-page--haftung-jahresabschluss .faq-list details p {
  line-height: 1.7;
}

.service-page--haftung-jahresabschluss .text-link {
  align-self: flex-start;
  margin-top: 1.1rem;
}

@media (max-width: 1080px) {
  .service-page--haftung-jahresabschluss .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--haftung-jahresabschluss .hero-copy {
    width: min(560px, 64%);
  }

  .service-page--haftung-jahresabschluss .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--haftung-jahresabschluss .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--haftung-jahresabschluss .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--haftung-jahresabschluss .hero-banner picture,
  .service-page--haftung-jahresabschluss .hero-banner img {
    height: auto;
  }

  .service-page--haftung-jahresabschluss .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--haftung-jahresabschluss .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--haftung-jahresabschluss .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--haftung-jahresabschluss .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.65rem, 5.75vw, 2.16rem);
  }

  .service-page--haftung-jahresabschluss .hero-copy .btn {
    width: 100%;
  }

  .service-page--haftung-jahresabschluss .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus jahresabschluss.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Jahresabschluss
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--jahresabschluss .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--jahresabschluss .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--jahresabschluss .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--jahresabschluss .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--jahresabschluss .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .69);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--jahresabschluss .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.18rem);
  line-height: 1.08;
}

.service-page--jahresabschluss .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .99rem);
  line-height: 1.55;
}

.service-page--jahresabschluss .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--jahresabschluss .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--jahresabschluss .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--jahresabschluss .media-card--quiet picture,
.service-page--jahresabschluss .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--jahresabschluss .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--jahresabschluss .question-list--jahresabschluss div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--jahresabschluss .question-list--jahresabschluss div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--jahresabschluss .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--jahresabschluss .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--jahresabschluss .section-records {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--jahresabschluss .records-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 15% 18%, rgba(184,135,59,.11), transparent 26%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--jahresabschluss .records-panel h2 {
  max-width: 720px;
}

.service-page--jahresabschluss .records-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--jahresabschluss .records-panel .media-card {
  box-shadow: none;
}

.service-page--jahresabschluss .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--jahresabschluss .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--jahresabschluss .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--jahresabschluss .service-target-grid--six,
  .service-page--jahresabschluss .records-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--jahresabschluss .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--jahresabschluss .hero-banner picture,
  .service-page--jahresabschluss .hero-banner img {
    height: auto;
  }

  .service-page--jahresabschluss .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--jahresabschluss .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--jahresabschluss .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--jahresabschluss .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--jahresabschluss .service-target-grid--six,
  .service-page--jahresabschluss .records-panel {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus kontakt.css zentralisiert ===== */
/* ======================================================
   Kontaktseite
   nutzt den zentralen Leistungsseiten-Master und ergänzt
   ausschließlich seitenbezogene Regeln.
====================================================== */

/* Bannerhöhe aus dem Leistungsseiten-Template übernommen. */
.service-page--kontakt .hero-banner {
  height: clamp(480px, 50vw, 640px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--kontakt .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--kontakt .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--kontakt .hero-copy {
  width: min(560px, 44%);
}

.service-page--kontakt .hero-card {
  background: rgba(255, 255, 255, .64);
  border-color: rgba(255, 255, 255, .76);
  backdrop-filter: blur(8px);
}

.service-page--kontakt .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 2.25vw, 2.48rem);
}

.service-page--kontakt .quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-page--kontakt .quick-contact-card {
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--kontakt .quick-contact-card h3 {
  margin-bottom: .65rem;
}

.service-page--kontakt .quick-contact-card p,
.service-page--kontakt .quick-contact-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.service-page--kontakt .quick-contact-card a {
  color: var(--navy);
  font-weight: 800;
}

.service-page--kontakt .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 6vw, 4.4rem);
  align-items: start;
}

.service-page--kontakt .contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-deep);
}

.service-page--kontakt .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-page--kontakt .form-row {
  display: grid;
  gap: .46rem;
}

.service-page--kontakt .form-row--full,
.service-page--kontakt .form-row--checkbox,
.service-page--kontakt .form-actions {
  grid-column: 1 / -1;
}

.service-page--kontakt label {
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 800;
}

.service-page--kontakt input,
.service-page--kontakt select,
.service-page--kontakt textarea {
  width: 100%;
  min-height: 48px;
  padding: .8rem .9rem;
  border: 1px solid rgba(13,41,72,.15);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.service-page--kontakt textarea {
  min-height: 170px;
  resize: vertical;
}

.service-page--kontakt input:focus,
.service-page--kontakt select:focus,
.service-page--kontakt textarea:focus {
  border-color: rgba(184,135,59,.65);
  box-shadow: 0 0 0 4px rgba(184,135,59,.12);
}

.service-page--kontakt .form-row--checkbox label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.55;
}

.service-page--kontakt .form-row--checkbox input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: .18rem;
  accent-color: var(--navy);
}

.service-page--kontakt .form-note {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}

.service-page--kontakt .contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.service-page--kontakt .contact-info-list {
  display: grid;
  gap: .85rem;
  margin-top: 1.65rem;
}

.service-page--kontakt .contact-info-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  color: var(--ink-soft);
}

.service-page--kontakt .contact-info-list li::before {
  position: absolute;
  left: 1.05rem;
  top: 1.05rem;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,135,59,.45);
  border-radius: 50%;
  color: var(--brass);
  content: "✓";
  font-size: .72rem;
  font-weight: 900;
}

.service-page--kontakt .image-stack {
  display: grid;
  gap: 1rem;
}

.service-page--kontakt .image-stack .media-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--kontakt .address-panel {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--kontakt .address-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--kontakt .address-card address {
  margin: .8rem 0 1.1rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}

.service-page--kontakt .address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}

.service-page--kontakt .question-list--kontakt div {
  min-height: 86px;
  display: flex;
  align-items: center;
}

.service-page--kontakt .question-list--kontakt div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--kontakt .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--kontakt .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

@media (max-width: 1080px) {
  .service-page--kontakt .hero-banner {
    height: clamp(430px, 56vw, 560px);
  }

  .service-page--kontakt .hero-copy {
    width: min(500px, 58%);
  }

  .service-page--kontakt .quick-contact-grid,
  .service-page--kontakt .contact-layout,
  .service-page--kontakt .address-panel {
    grid-template-columns: 1fr;
  }

  .service-page--kontakt .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--kontakt .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--kontakt .hero-banner picture,
  .service-page--kontakt .hero-banner img {
    height: auto;
  }

  .service-page--kontakt .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--kontakt .hero-copy {
    width: auto;
  }

  .service-page--kontakt .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--kontakt .form-grid,
  .service-page--kontakt .quick-contact-grid,
  .service-page--kontakt .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--kontakt .address-actions .btn {
    width: 100%;
  }
}

.service-page--kontakt .intro-panel address {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}

/* ===== Aus lohnabrechnung-baulohn.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Lohnabrechnung / Baulohn
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--lohnabrechnung-baulohn .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--lohnabrechnung-baulohn .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--lohnabrechnung-baulohn .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--lohnabrechnung-baulohn .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--lohnabrechnung-baulohn .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--lohnabrechnung-baulohn .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--lohnabrechnung-baulohn .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--lohnabrechnung-baulohn .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--lohnabrechnung-baulohn .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--lohnabrechnung-baulohn .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--lohnabrechnung-baulohn .media-card--quiet picture,
.service-page--lohnabrechnung-baulohn .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--lohnabrechnung-baulohn .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--lohnabrechnung-baulohn .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--lohnabrechnung-baulohn .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--lohnabrechnung-baulohn .scope-panel h2 {
  max-width: 520px;
}

.service-page--lohnabrechnung-baulohn .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--lohnabrechnung-baulohn .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--lohnabrechnung-baulohn .service-target-grid--six article {
  min-height: 220px;
}

.service-page--lohnabrechnung-baulohn .question-list--lohn div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--lohnabrechnung-baulohn .question-list--lohn div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--lohnabrechnung-baulohn .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--lohnabrechnung-baulohn .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--lohnabrechnung-baulohn .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--lohnabrechnung-baulohn .scope-panel {
    grid-template-columns: 1fr;
  }

  .service-page--lohnabrechnung-baulohn .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--lohnabrechnung-baulohn .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--lohnabrechnung-baulohn .hero-banner picture,
  .service-page--lohnabrechnung-baulohn .hero-banner img {
    height: auto;
  }

  .service-page--lohnabrechnung-baulohn .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--lohnabrechnung-baulohn .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--lohnabrechnung-baulohn .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--lohnabrechnung-baulohn .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--lohnabrechnung-baulohn .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus rechtsanwalt-koeln.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsanwalt Köln
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--rechtsanwalt-koeln .hero-banner {
  height: clamp(520px, 50vw, 680px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-koeln .hero-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg,
    rgba(247,242,234,.86) 0%,
    rgba(247,242,234,.70) 28%,
    rgba(247,242,234,.34) 48%,
    rgba(247,242,234,.08) 70%,
    rgba(247,242,234,0) 100%);
}

.service-page--rechtsanwalt-koeln .hero-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-page--rechtsanwalt-koeln .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.service-page--rechtsanwalt-koeln .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--rechtsanwalt-koeln .hero-card {
  padding: clamp(1.1rem, 2.2vw, 1.75rem) clamp(1.15rem, 2.45vw, 1.95rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(13, 41, 72, .12);
}

.service-page--rechtsanwalt-koeln .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.55rem, 2.05vw, 2.28rem);
  line-height: 1.08;
}

.service-page--rechtsanwalt-koeln .hero-copy .lead {
  margin-top: .82rem;
  font-size: clamp(.89rem, .96vw, 1rem);
  line-height: 1.58;
}

.service-page--rechtsanwalt-koeln .hero-copy .button-row {
  gap: .7rem;
  margin-top: 1.15rem;
}

.service-page--rechtsanwalt-koeln .hero-copy .btn {
  padding: .72rem .96rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--rechtsanwalt-koeln .question-list--rechtsanwalt {
  align-items: stretch;
}

.service-page--rechtsanwalt-koeln .question-list--rechtsanwalt div {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--rechtsanwalt-koeln .question-list--rechtsanwalt div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--rechtsanwalt-koeln .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-koeln .media-card--quiet picture,
.service-page--rechtsanwalt-koeln .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--rechtsanwalt-koeln .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--rechtsanwalt-koeln .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--rechtsanwalt-koeln .service-target-grid--six article {
  min-height: 210px;
}

.service-page--rechtsanwalt-koeln .law-image-band {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
}

.service-page--rechtsanwalt-koeln .law-image-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.service-page--rechtsanwalt-koeln .law-image-duo .media-card img {
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.service-page--rechtsanwalt-koeln .law-note-panel {
  padding: clamp(1.75rem, 4vw, 2.65rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsanwalt-koeln .law-note-panel h2 {
  margin-bottom: 1.15rem;
}

.service-page--rechtsanwalt-koeln .text-link {
  align-self: flex-start;
}

.service-page--rechtsanwalt-koeln .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--rechtsanwalt-koeln .faq-list details p {
  line-height: 1.7;
}

.service-page--rechtsanwalt-koeln .cta-box--with-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(200px, 310px);
  gap: clamp(1.2rem, 4vw, 2.4rem);
  overflow: hidden;
}

.service-page--rechtsanwalt-koeln .cta-box--with-image figure {
  align-self: stretch;
  min-height: 180px;
  margin: -1.1rem -1.1rem -1.1rem 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
}

.service-page--rechtsanwalt-koeln .cta-box--with-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

@media (max-width: 1080px) {
  .service-page--rechtsanwalt-koeln .hero-banner {
    height: clamp(440px, 58vw, 590px);
  }

  .service-page--rechtsanwalt-koeln .hero-copy {
    width: min(530px, 62%);
  }

  .service-page--rechtsanwalt-koeln .law-image-band,
  .service-page--rechtsanwalt-koeln .cta-box--with-image {
    grid-template-columns: 1fr;
  }

  .service-page--rechtsanwalt-koeln .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--rechtsanwalt-koeln .cta-box--with-image figure {
    min-height: 220px;
    margin: 0;
  }
}

@media (max-width: 760px) {
  .service-page--rechtsanwalt-koeln .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--rechtsanwalt-koeln .hero-banner::after {
    display: none;
  }

  .service-page--rechtsanwalt-koeln .hero-banner picture,
  .service-page--rechtsanwalt-koeln .hero-banner img {
    height: auto;
  }

  .service-page--rechtsanwalt-koeln .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--rechtsanwalt-koeln .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--rechtsanwalt-koeln .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--rechtsanwalt-koeln .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--rechtsanwalt-koeln .service-target-grid--six,
  .service-page--rechtsanwalt-koeln .law-image-duo {
    grid-template-columns: 1fr;
  }

  .service-page--rechtsanwalt-koeln .law-image-duo .media-card img {
    height: auto;
    object-fit: contain;
  }
}

/* ===== Aus rechtsanwalt-steuerrecht.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsanwalt im Steuerrecht
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--rechtsanwalt-steuerrecht .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-steuerrecht .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--rechtsanwalt-steuerrecht .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(575px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--rechtsanwalt-steuerrecht .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--rechtsanwalt-steuerrecht .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.18rem);
  line-height: 1.08;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--rechtsanwalt-steuerrecht .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-steuerrecht .media-card--quiet picture,
.service-page--rechtsanwalt-steuerrecht .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--rechtsanwalt-steuerrecht .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--rechtsanwalt-steuerrecht .question-list--steuerrecht div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--rechtsanwalt-steuerrecht .question-list--steuerrecht div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--rechtsanwalt-steuerrecht .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--rechtsanwalt-steuerrecht .service-target-grid--six article {
  min-height: 230px;
}

.service-page--rechtsanwalt-steuerrecht .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--rechtsanwalt-steuerrecht .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--rechtsanwalt-steuerrecht .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsanwalt-steuerrecht .scope-panel h2 {
  max-width: 540px;
}

.service-page--rechtsanwalt-steuerrecht .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--rechtsanwalt-steuerrecht .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--rechtsanwalt-steuerrecht .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--rechtsanwalt-steuerrecht .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--rechtsanwalt-steuerrecht .hero-copy {
    width: min(530px, 62%);
  }

  .service-page--rechtsanwalt-steuerrecht .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--rechtsanwalt-steuerrecht .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--rechtsanwalt-steuerrecht .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-banner picture,
  .service-page--rechtsanwalt-steuerrecht .hero-banner img {
    height: auto;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--rechtsanwalt-steuerrecht .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--rechtsanwalt-steuerrecht .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus rechtsformwahl.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsformwahl
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--rechtsformwahl .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsformwahl .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--rechtsformwahl .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--rechtsformwahl .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--rechtsformwahl .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--rechtsformwahl .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--rechtsformwahl .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--rechtsformwahl .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--rechtsformwahl .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--rechtsformwahl .question-list--rechtsformwahl {
  align-items: stretch;
}

.service-page--rechtsformwahl .question-list--rechtsformwahl div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--rechtsformwahl .question-list--rechtsformwahl div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--rechtsformwahl .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsformwahl .media-card--quiet picture,
.service-page--rechtsformwahl .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--rechtsformwahl .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--rechtsformwahl .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--rechtsformwahl .service-target-grid--six article {
  min-height: 210px;
}

.service-page--rechtsformwahl .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2.2rem;
}

.service-page--rechtsformwahl .comparison-card {
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsformwahl .comparison-card h3 {
  margin-bottom: .75rem;
}

.service-page--rechtsformwahl .comparison-card p {
  color: var(--muted);
}

.service-page--rechtsformwahl .decision-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsformwahl .decision-panel h2 {
  max-width: 520px;
}

.service-page--rechtsformwahl .decision-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--rechtsformwahl .decision-panel p + p {
  margin-top: 1rem;
}

.service-page--rechtsformwahl .text-link {
  align-self: flex-start;
}

.service-page--rechtsformwahl .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--rechtsformwahl .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--rechtsformwahl .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--rechtsformwahl .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--rechtsformwahl .service-target-grid--six,
  .service-page--rechtsformwahl .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--rechtsformwahl .decision-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--rechtsformwahl .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--rechtsformwahl .hero-banner picture,
  .service-page--rechtsformwahl .hero-banner img {
    height: auto;
  }

  .service-page--rechtsformwahl .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--rechtsformwahl .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--rechtsformwahl .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--rechtsformwahl .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--rechtsformwahl .service-target-grid--six,
  .service-page--rechtsformwahl .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus steuerberater-koeln.css zentralisiert ===== */
/* ======================================================
   Lokale Hub-Seite: Steuerberater Köln
   Ergänzung zum zentralen Leistungsseiten-Master.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--steuerberater-koeln .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberater-koeln .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--steuerberater-koeln .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--steuerberater-koeln .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 45%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--steuerberater-koeln .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--steuerberater-koeln .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 2.25vw, 2.45rem);
  line-height: 1.08;
}

.service-page--steuerberater-koeln .hero-copy .lead {
  margin-top: .82rem;
  font-size: clamp(.9rem, .96vw, 1rem);
  line-height: 1.58;
}

.service-page--steuerberater-koeln .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--steuerberater-koeln .hero-copy .btn {
  padding: .72rem .96rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--steuerberater-koeln .local-benefit-grid {
  margin-top: 2.2rem;
}

.service-page--steuerberater-koeln .service-card--hub {
  min-height: 330px;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills,
.service-page--steuerberater-koeln .hub-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.15rem;
}

.service-page--steuerberater-koeln .link-pills a,
.service-page--steuerberater-koeln .hub-link-list a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .46rem .62rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 41, 72, .11);
  background: rgba(255, 255, 255, .68);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
}

.service-page--steuerberater-koeln .link-pills a::after,
.service-page--steuerberater-koeln .hub-link-list a::after {
  content: "→";
  color: var(--brass);
}

.service-page--steuerberater-koeln .service-card-emphasis .link-pills a {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.10);
  color: #fff;
}

.service-page--steuerberater-koeln .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberater-koeln .media-card--quiet picture,
.service-page--steuerberater-koeln .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--steuerberater-koeln .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--steuerberater-koeln .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerberater-koeln .service-target-grid--six article {
  min-height: 230px;
}

.service-page--steuerberater-koeln .question-list--steuerberater div {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--steuerberater-koeln .question-list--steuerberater div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--steuerberater-koeln .care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-page--steuerberater-koeln .care-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberater-koeln .care-card h3 {
  margin-bottom: .7rem;
}

.service-page--steuerberater-koeln .care-card p {
  color: var(--muted);
}

.service-page--steuerberater-koeln .care-card .hub-link-list {
  margin-top: 1.3rem;
  padding-top: 0;
}

.service-page--steuerberater-koeln .image-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}

.service-page--steuerberater-koeln .image-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #efe5d6;
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberater-koeln .image-strip img {
  width: 100%;
  height: auto;
  display: block;
}

.service-page--steuerberater-koeln .area-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-page--steuerberater-koeln .area-link-card {
  padding: 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberater-koeln .area-link-card h3 {
  margin-bottom: .75rem;
}

.service-page--steuerberater-koeln .area-link-card .link-list {
  margin-bottom: 0;
}

.service-page--steuerberater-koeln .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--steuerberater-koeln .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--steuerberater-koeln .hero-copy {
    width: min(520px, 58%);
  }

  .service-page--steuerberater-koeln .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--steuerberater-koeln .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--steuerberater-koeln .hero-banner picture,
  .service-page--steuerberater-koeln .hero-banner img {
    height: auto;
  }

  .service-page--steuerberater-koeln .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--steuerberater-koeln .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--steuerberater-koeln .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--steuerberater-koeln .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--steuerberater-koeln .care-grid,
  .service-page--steuerberater-koeln .image-strip,
  .service-page--steuerberater-koeln .area-link-grid,
  .service-page--steuerberater-koeln .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   v2 Korrektur:
   - Vorteilsblöcke im Abschnitt „Steuerberatung in Köln“ gegen Textüberlauf gesichert
   - Links in den Leistungsblöcken ruhiger als einheitliche Listenzeilen statt Pill-Buttons
====================================================== */

.service-page--steuerberater-koeln .local-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.service-page--steuerberater-koeln .local-benefit-grid .mini-card {
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.service-page--steuerberater-koeln .local-benefit-grid .mini-card h3 {
  font-size: clamp(1.28rem, 1.55vw, 1.7rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-page--steuerberater-koeln .local-benefit-grid .mini-card p {
  overflow-wrap: anywhere;
}

.service-page--steuerberater-koeln .service-card--hub {
  min-width: 0;
  overflow: hidden;
}

.service-page--steuerberater-koeln .service-card--hub h3,
.service-page--steuerberater-koeln .service-card--hub p {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  margin-top: auto;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(13, 41, 72, .10);
}

.service-page--steuerberater-koeln .service-card--hub .link-pills::before {
  content: "Weiterführend";
  display: block;
  margin-bottom: .35rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: "Inter", system-ui, sans-serif;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  padding: .55rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 750;
  line-height: 1.35;
  box-shadow: none;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a + a {
  border-top: 1px solid rgba(13, 41, 72, .075);
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a::after {
  content: "→";
  flex: 0 0 auto;
  margin-left: 1rem;
  color: var(--brass);
  font-weight: 800;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a:hover {
  color: var(--navy-2);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills {
  border-top-color: rgba(255,255,255,.18);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills::before {
  color: rgba(255,255,255,.68);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills a {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.14);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills a + a {
  border-top: 1px solid rgba(255,255,255,.14);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills a::after {
  color: rgba(255,255,255,.82);
}

@media (max-width: 760px) {
  .service-page--steuerberater-koeln .local-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus steuerberaterhaftung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Steuerberaterhaftung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--steuerberaterhaftung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberaterhaftung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--steuerberaterhaftung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--steuerberaterhaftung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--steuerberaterhaftung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--steuerberaterhaftung .hero-copy h1 {
  max-width: 19ch;
  font-size: clamp(1.52rem, 2vw, 2.24rem);
  line-height: 1.08;
}

.service-page--steuerberaterhaftung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .94vw, .99rem);
  line-height: 1.55;
}

.service-page--steuerberaterhaftung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--steuerberaterhaftung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--steuerberaterhaftung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberaterhaftung .media-card--quiet picture,
.service-page--steuerberaterhaftung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--steuerberaterhaftung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--steuerberaterhaftung .question-list--haftung div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--steuerberaterhaftung .question-list--haftung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--steuerberaterhaftung .hub-card-grid .service-card {
  min-height: 360px;
}

.service-page--steuerberaterhaftung .service-card .text-link {
  margin-top: auto;
  padding-top: .95rem;
  align-self: flex-start;
}

.service-page--steuerberaterhaftung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerberaterhaftung .service-target-grid--six article {
  min-height: 215px;
}

.service-page--steuerberaterhaftung .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--steuerberaterhaftung .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberaterhaftung .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--steuerberaterhaftung .documents-list {
  margin-top: 1.4rem;
}

.service-page--steuerberaterhaftung .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--steuerberaterhaftung .service-process-grid--five {
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.service-page--steuerberaterhaftung .service-process-grid--five article {
  min-height: 285px;
}

.service-page--steuerberaterhaftung .section-tax-procedure {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--steuerberaterhaftung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--steuerberaterhaftung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--steuerberaterhaftung .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--steuerberaterhaftung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--steuerberaterhaftung .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--steuerberaterhaftung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--steuerberaterhaftung .hero-banner picture,
  .service-page--steuerberaterhaftung .hero-banner img {
    height: auto;
  }

  .service-page--steuerberaterhaftung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--steuerberaterhaftung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--steuerberaterhaftung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--steuerberaterhaftung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--steuerberaterhaftung .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--steuerberaterhaftung .hub-card-grid .service-card,
  .service-page--steuerberaterhaftung .service-process-grid--five article,
  .service-page--steuerberaterhaftung .service-target-grid--six article {
    min-height: 0;
  }

  .service-page--steuerberaterhaftung .documents-copy {
    padding: 1.45rem;
  }
}

/* ===== Aus steuerstrafrecht.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Steuerstrafrecht
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--steuerstrafrecht .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerstrafrecht .hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(247,242,234,.84) 0%,
    rgba(247,242,234,.66) 34%,
    rgba(247,242,234,.26) 58%,
    rgba(247,242,234,0) 84%);
  z-index: 1;
}

.service-page--steuerstrafrecht .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--steuerstrafrecht .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--steuerstrafrecht .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--steuerstrafrecht .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--steuerstrafrecht .hero-copy h1 {
  max-width: 22ch;
  font-size: clamp(1.45rem, 1.95vw, 2.18rem);
  line-height: 1.08;
}

.service-page--steuerstrafrecht .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--steuerstrafrecht .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--steuerstrafrecht .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--steuerstrafrecht .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerstrafrecht .media-card--quiet picture,
.service-page--steuerstrafrecht .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--steuerstrafrecht .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--steuerstrafrecht .question-list--steuerstrafrecht {
  align-items: stretch;
}

.service-page--steuerstrafrecht .question-list--steuerstrafrecht div {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--steuerstrafrecht .question-list--steuerstrafrecht div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--steuerstrafrecht .card-grid--steuerstrafrecht .service-card {
  min-height: 330px;
}

.service-page--steuerstrafrecht .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--steuerstrafrecht .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerstrafrecht .service-target-grid--six article {
  min-height: 220px;
}

.service-page--steuerstrafrecht .risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-page--steuerstrafrecht .risk-grid article {
  min-width: 0;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerstrafrecht .risk-grid h3 {
  margin-bottom: .75rem;
}

.service-page--steuerstrafrecht .risk-grid p {
  color: var(--muted);
}

.service-page--steuerstrafrecht .service-process-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerstrafrecht .service-process-grid--six article {
  min-height: 295px;
}

.service-page--steuerstrafrecht .faq-list details p {
  line-height: 1.7;
}

.service-page--steuerstrafrecht .cta-box {
  align-items: flex-start;
}

.service-page--steuerstrafrecht .cta-note {
  margin-top: 1rem;
  font-size: .98rem;
  color: rgba(255,255,255,.76) !important;
}

@media (max-width: 1080px) {
  .service-page--steuerstrafrecht .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--steuerstrafrecht .hero-copy {
    width: min(520px, 61%);
  }

  .service-page--steuerstrafrecht .service-target-grid--six,
  .service-page--steuerstrafrecht .risk-grid,
  .service-page--steuerstrafrecht .service-process-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--steuerstrafrecht .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--steuerstrafrecht .hero-banner::after {
    background: linear-gradient(180deg,
      rgba(247,242,234,.52) 0%,
      rgba(247,242,234,.18) 55%,
      rgba(247,242,234,0) 100%);
  }

  .service-page--steuerstrafrecht .hero-banner picture,
  .service-page--steuerstrafrecht .hero-banner img {
    height: auto;
  }

  .service-page--steuerstrafrecht .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--steuerstrafrecht .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--steuerstrafrecht .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--steuerstrafrecht .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--steuerstrafrecht .service-target-grid--six,
  .service-page--steuerstrafrecht .risk-grid,
  .service-page--steuerstrafrecht .service-process-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--steuerstrafrecht .question-list--steuerstrafrecht div {
    min-height: 0;
  }
}

/* ===== Aus ueber-uns.css zentralisiert ===== */
/* ======================================================
   Seite: Über uns
   - nutzt den zentralen Leistungsseiten-Master
   - alle Regeln bewusst seitenbezogen unter .service-page--ueber-uns
   - logo.css bleibt geschützt und wird zuletzt geladen
====================================================== */

.service-page--ueber-uns .hero-banner {
  height: auto;
  min-height: 0;
  display: block;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--ueber-uns .hero-banner picture,
.service-page--ueber-uns .hero-banner img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .hero-banner img {
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.service-page--ueber-uns .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--ueber-uns .hero-card {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--ueber-uns .hero-copy h1 {
  max-width: 21ch;
  font-size: clamp(1.45rem, 2.05vw, 2.18rem);
  line-height: 1.08;
}

.service-page--ueber-uns .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .94vw, .98rem);
  line-height: 1.55;
}

.service-page--ueber-uns .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--ueber-uns .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--ueber-uns .about-profile-card {
  padding: 0;
  overflow: hidden;
}

.service-page--ueber-uns .about-profile-card picture,
.service-page--ueber-uns .about-profile-card img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .about-profile-card img {
  height: auto;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--ueber-uns .about-profile-body {
  padding: 1.55rem;
}

.service-page--ueber-uns .about-profile-body h3 {
  margin-bottom: .35rem;
}

.service-page--ueber-uns .about-profile-body > p {
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.45;
}

.service-page--ueber-uns .about-fact-list {
  display: grid;
  gap: .72rem;
  margin-top: 1.25rem;
}

.service-page--ueber-uns .about-fact-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-page--ueber-uns .about-fact-list li::before {
  position: absolute;
  left: 0;
  top: .52em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.service-page--ueber-uns .service-card {
  min-height: 300px;
}

.service-page--ueber-uns .media-card--quiet,
.service-page--ueber-uns .about-gallery figure {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--ueber-uns .media-card--quiet picture,
.service-page--ueber-uns .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--ueber-uns .quote-panel p small {
  display: block;
  margin-top: .85rem;
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-page--ueber-uns .about-gallery {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 1.1rem;
  align-items: stretch;
}

.service-page--ueber-uns .about-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.service-page--ueber-uns .about-gallery picture,
.service-page--ueber-uns .about-gallery img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .about-gallery img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.service-page--ueber-uns .about-gallery .about-gallery-vertical img {
  object-fit: cover;
  object-position: center;
}

.service-page--ueber-uns .about-gallery-caption {
  padding: 1.25rem;
  background: rgba(255,255,255,.76);
  border-top: 1px solid var(--line);
}

.service-page--ueber-uns .about-gallery-caption h3 {
  margin-bottom: .35rem;
}

.service-page--ueber-uns .about-gallery-caption p {
  color: var(--muted);
}

.service-page--ueber-uns .question-list div {
  min-height: 86px;
  display: flex;
  align-items: center;
}

.service-page--ueber-uns .question-list div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--ueber-uns .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--ueber-uns .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--ueber-uns .service-card {
    min-height: 0;
  }

  .service-page--ueber-uns .about-gallery {
    grid-template-columns: 1fr;
  }

  .service-page--ueber-uns .about-gallery img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
}

@media (max-width: 760px) {
  .service-page--ueber-uns .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--ueber-uns .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--ueber-uns .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--ueber-uns .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--ueber-uns .about-profile-card {
    position: static;
  }
}

/* ===== Aus umwandlung-umstrukturierung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Umwandlung & Umstrukturierung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--umwandlung-umstrukturierung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--umwandlung-umstrukturierung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--umwandlung-umstrukturierung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--umwandlung-umstrukturierung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--umwandlung-umstrukturierung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--umwandlung-umstrukturierung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--umwandlung-umstrukturierung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--umwandlung-umstrukturierung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--umwandlung-umstrukturierung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--umwandlung-umstrukturierung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--umwandlung-umstrukturierung .media-card--quiet picture,
.service-page--umwandlung-umstrukturierung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--umwandlung-umstrukturierung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--umwandlung-umstrukturierung .question-list--umwandlung {
  align-items: stretch;
}

.service-page--umwandlung-umstrukturierung .question-list--umwandlung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--umwandlung-umstrukturierung .question-list--umwandlung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--umwandlung-umstrukturierung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--umwandlung-umstrukturierung .faq-list details p {
  line-height: 1.7;
}

.service-page--umwandlung-umstrukturierung .text-link {
  align-self: flex-start;
}

.service-page--umwandlung-umstrukturierung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--umwandlung-umstrukturierung .split-content p,
.service-page--umwandlung-umstrukturierung .feature-copy p:not(.section-kicker) {
  font-size: 1.03rem;
}

.service-page--umwandlung-umstrukturierung .service-process-grid article {
  min-height: 250px;
}

@media (max-width: 1080px) {
  .service-page--umwandlung-umstrukturierung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--umwandlung-umstrukturierung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--umwandlung-umstrukturierung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--umwandlung-umstrukturierung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--umwandlung-umstrukturierung .hero-banner picture,
  .service-page--umwandlung-umstrukturierung .hero-banner img {
    height: auto;
  }

  .service-page--umwandlung-umstrukturierung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--umwandlung-umstrukturierung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--umwandlung-umstrukturierung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--umwandlung-umstrukturierung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--umwandlung-umstrukturierung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus vermietung-verpachtung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Vermietung und Verpachtung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--vermietung-verpachtung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--vermietung-verpachtung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--vermietung-verpachtung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--vermietung-verpachtung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--vermietung-verpachtung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--vermietung-verpachtung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.92vw, 2.14rem);
  line-height: 1.08;
}

.service-page--vermietung-verpachtung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--vermietung-verpachtung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--vermietung-verpachtung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--vermietung-verpachtung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--vermietung-verpachtung .media-card--quiet picture,
.service-page--vermietung-verpachtung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--vermietung-verpachtung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--vermietung-verpachtung .question-list--vermietung {
  align-items: stretch;
}

.service-page--vermietung-verpachtung .question-list--vermietung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--vermietung-verpachtung .question-list--vermietung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--vermietung-verpachtung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--vermietung-verpachtung .service-target-grid--six article {
  min-height: 218px;
}

.service-page--vermietung-verpachtung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--vermietung-verpachtung .info-panel {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--vermietung-verpachtung .info-panel h2 {
  max-width: 540px;
}

.service-page--vermietung-verpachtung .info-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--vermietung-verpachtung .info-panel p + p {
  margin-top: 1rem;
}

.service-page--vermietung-verpachtung .key-list {
  display: grid;
  gap: .75rem;
  margin-top: 0;
}

.service-page--vermietung-verpachtung .key-list li {
  position: relative;
  padding: .88rem 1rem .88rem 2.45rem;
  border: 1px solid rgba(13,41,72,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  color: var(--ink-soft);
  font-weight: 600;
}

.service-page--vermietung-verpachtung .key-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brass);
  transform: translateY(-50%);
}

.service-page--vermietung-verpachtung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--vermietung-verpachtung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--vermietung-verpachtung .hero-copy {
    width: min(520px, 62%);
  }

  .service-page--vermietung-verpachtung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--vermietung-verpachtung .info-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--vermietung-verpachtung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--vermietung-verpachtung .hero-banner picture,
  .service-page--vermietung-verpachtung .hero-banner img {
    height: auto;
  }

  .service-page--vermietung-verpachtung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--vermietung-verpachtung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--vermietung-verpachtung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--vermietung-verpachtung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--vermietung-verpachtung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Inline-CSS aus blog.html zentralisiert 1 (auf body.article-page gekapselt) ===== */


    body.article-page {
      background: var(--ivory);
    }

    body.article-page .service-main .article-hero {
      padding: 1.6rem 0 4.8rem;
      background:
        linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
    }

    body.article-page .service-main .article-banner {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
      box-shadow: var(--shadow-deep);
    }

    body.article-page .service-main .article-banner picture,
body.article-page .service-main .article-banner img {
      width: 100%;
      display: block;
    }

    body.article-page .service-main .article-banner img {
      object-fit: contain;
      object-position: center;
      background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
    }

    body.article-page .service-main .article-overlay {
      position: absolute;
      left: clamp(1.5rem, 4vw, 3.5rem);
      bottom: clamp(1.5rem, 4vw, 3rem);
      width: min(720px, calc(100% - 3rem));
      z-index: 2;
    }

    body.article-page .service-main .article-card {
      padding: clamp(1.35rem, 2.8vw, 2rem);
      border-radius: 24px;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.7);
      box-shadow: 0 18px 44px rgba(13,41,72,.12);
    }

    body.article-page .service-main .article-eyebrow {
      margin-bottom: .85rem;
      color: var(--brass);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    body.article-page .service-main .article-overlay h1 {
      max-width: 18ch;
      font-size: clamp(2rem, 3vw, 3.1rem);
      line-height: 1.06;
    }

    body.article-page .service-main .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem;
      color: var(--ink-soft);
      font-size: .92rem;
      font-weight: 600;
    }

    body.article-page .service-main .article-wrapper {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }

    body.article-page .service-main .article-content {
      background: rgba(255,255,255,.78);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: clamp(2rem, 4vw, 3.25rem);
      box-shadow: var(--shadow-soft);
    }

    body.article-page .service-main .article-content h2 {
      margin-top: 3rem;
      margin-bottom: 1rem;
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    }

    body.article-page .service-main .article-content h3 {
      margin-top: 2rem;
      margin-bottom: .75rem;
      font-size: clamp(1.35rem, 2vw, 1.7rem);
    }

    body.article-page .service-main .article-content p {
      font-size: 1.03rem;
      color: var(--muted);
    }

    body.article-page .service-main .article-content ul {
      margin-top: 1rem;
      display: grid;
      gap: .8rem;
      padding-left: 1.2rem;
      list-style: disc;
    }

    body.article-page .service-main .article-content li {
      color: var(--muted);
    }

    body.article-page .service-main .article-sidebar {
      position: sticky;
      top: calc(var(--header-compact) + 28px);
      display: grid;
      gap: 1rem;
    }

    body.article-page .service-main .sidebar-card {
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.84);
      box-shadow: var(--shadow-soft);
    }

    body.article-page .service-main .sidebar-card h3 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    body.article-page .service-main .toc-list {
      display: grid;
      gap: .7rem;
    }

    body.article-page .service-main .toc-list a {
      color: var(--ink-soft);
      font-weight: 600;
    }

    body.article-page .service-main .toc-list a:hover {
      color: var(--navy);
    }

    body.article-page .service-main .author-box {
      display: grid;
      gap: .8rem;
    }

    body.article-page .service-main .author-label {
      color: var(--brass);
      font-size: .74rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 800;
    }

    body.article-page .service-main .quote-highlight {
      margin: 2.4rem 0;
      padding: 2rem;
      border-radius: 26px;
      background:
        linear-gradient(145deg, #fff, #fbf8f2);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    body.article-page .service-main .quote-highlight p {
      margin: 0;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(1.6rem, 2.4vw, 2.15rem);
      line-height: 1.25;
      color: var(--navy);
    }

    body.article-page .service-main .article-cta {
      margin-top: 4rem;
      padding: clamp(2rem, 4vw, 3rem);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at top left, rgba(184,135,59,.14), transparent 28%),
        linear-gradient(135deg, var(--navy), #0a213a);
      color: #fff;
      box-shadow: var(--shadow-deep);
    }

    body.article-page .service-main .article-cta h2,
body.article-page .service-main .article-cta p {
      color: #fff;
    }

    body.article-page .service-main .article-cta .btn {
      margin-top: 1.5rem;
      background: #fff;
      color: var(--navy);
      border-color: rgba(255,255,255,.72);
    }

    body.article-page .service-main .article-cta .btn:hover {
      background: var(--ivory);
    }

    @media (max-width: 1040px) {

      body.article-page .service-main .article-wrapper {
        grid-template-columns: 1fr;
      }

      body.article-page .service-main .article-sidebar {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 760px) {

      body.article-page .service-main .article-overlay {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        margin: -24px 14px 14px;
      }

      body.article-page .service-main .article-overlay h1 {
        max-width: none;
      }

      body.article-page .service-main .article-card {
        background: rgba(255,255,255,.9);
      }

      body.article-page .service-main .article-content {
        padding: 1.6rem;
      }
    }

/* ======================================================
   KORREKTUR: HERO-ABSTAND, SVG-DEFS, CTA-BUTTONS
   Stand: 2026-05-18
====================================================== */

body.service-page .service-main .svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

body.service-page .service-main .hero-page {
    padding-top: .65rem;
    padding-bottom: clamp(3.75rem, 6vw, 5rem);
}

body.service-page .service-main .breadcrumbs {
    margin-bottom: .8rem;
}

body.service-page .service-main .final-cta .cta-box > .btn,
body.service-page .service-main .final-cta .cta-box > a.btn,
body.service-page .service-main .cta-box > .btn,
body.service-page .service-main .cta-box > a.btn {
    white-space: nowrap;
    background: #ffffff;
    color: var(--navy);
    border-color: rgba(255,255,255,.9);
    box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

body.service-page .service-main .final-cta .cta-box > .btn:hover,
body.service-page .service-main .final-cta .cta-box > a.btn:hover,
body.service-page .service-main .cta-box > .btn:hover,
body.service-page .service-main .cta-box > a.btn:hover {
    background: #f7f2ea;
    color: var(--navy-2);
}

@media (max-width: 760px) {
    body.service-page .service-main .hero-page {
        padding-top: .55rem;
        padding-bottom: 3.5rem;
    }

    body.service-page .service-main .breadcrumbs {
        margin-bottom: .65rem;
    }

    body.service-page .service-main .cta-box > .btn,
    body.service-page .service-main .cta-box > a.btn {
        width: 100%;
    }
}
/* ======================================================
   HOTFIX V2: HEADERABSTAND + CTA-BUTTON AUF LEISTUNGSSEITEN
   Scope: nur WordPress-Leistungsseiten mit body.service-page
====================================================== */

body.service-page .service-main > svg.svg-defs,
body.service-page .service-main svg.svg-defs,
body.service-page .service-main .svg-defs {
    position: absolute !important;
    inline-size: 0 !important;
    block-size: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    line-height: 0 !important;
    pointer-events: none !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
}

body.service-page .service-main > .hero-page:first-of-type,
body.service-page .service-main > .svg-defs + .hero-page,
body.service-page .service-main .hero-page:first-of-type,
body.service-page .service-main .hero-page {
    padding-top: .35rem !important;
}

body.service-page .service-main .breadcrumbs {
    margin-top: 0 !important;
    margin-bottom: .65rem !important;
}

body.service-page .service-main .hero-banner {
    margin-top: 0 !important;
}

body.service-page .service-main .section.final-cta .container.cta-box > a.btn,
body.service-page .service-main .section.final-cta .cta-box > a.btn,
body.service-page .service-main .final-cta .cta-box > a.btn,
body.service-page .service-main .final-cta .cta-box a.btn:not(.btn-service-secondary),
body.service-page.service-page--umwandlung-umstrukturierung .service-main .final-cta .cta-box a.btn {
    white-space: nowrap !important;
    background: #ffffff !important;
    color: var(--navy) !important;
    border-color: rgba(255,255,255,.9) !important;
    box-shadow: 0 12px 26px rgba(0,0,0,.14) !important;
}

body.service-page .service-main .section.final-cta .container.cta-box > a.btn:hover,
body.service-page .service-main .section.final-cta .cta-box > a.btn:hover,
body.service-page .service-main .final-cta .cta-box > a.btn:hover,
body.service-page .service-main .final-cta .cta-box a.btn:not(.btn-service-secondary):hover,
body.service-page.service-page--umwandlung-umstrukturierung .service-main .final-cta .cta-box a.btn:hover {
    background: #f7f2ea !important;
    color: var(--navy-2) !important;
}

@media (max-width: 760px) {
    body.service-page .service-main > .hero-page:first-of-type,
    body.service-page .service-main > .svg-defs + .hero-page,
    body.service-page .service-main .hero-page:first-of-type,
    body.service-page .service-main .hero-page {
        padding-top: .3rem !important;
    }

    body.service-page .service-main .breadcrumbs {
        margin-bottom: .55rem !important;
    }

    body.service-page .service-main .final-cta .cta-box > a.btn,
    body.service-page .service-main .final-cta .cta-box a.btn:not(.btn-service-secondary) {
        width: 100% !important;
    }
}

/* ======================================================
   FEINSCHLIFF: LEGAL-SEITEN, HERO-TITEL, ÜBER-UNS-BANNER
   Stand: 2026-05-18

   Technische Layoutkorrekturen ohne Inhaltsänderungen:
   - kleinere Dokument-Überschriften auf Datenschutz/Impressum
   - Hero-H1 nutzt die volle Breite der Hero-Textkarte
   - Über-uns-Banner wird an das schmalere 1200x400-Bild angepasst
====================================================== */

/* Hero-Überschriften: keine künstliche Begrenzung auf wenige Zeichen. */
body.service-page .service-main .hero-copy h1 {
    max-width: none !important;
    width: auto !important;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
    text-wrap: balance;
}

/* Text innerhalb der Hero-Karte bleibt ruhig lesbar und definiert die Kartenbreite. */
body.service-page .service-main .hero-copy .lead {
    max-width: 64ch;
}

/* Datenschutz: nummerierte Dokumentüberschriften kleiner als normale Abschnitts-H2. */
body.service-page.service-page--datenschutz .service-main .legal-card h2 {
    margin-bottom: .85rem;
    font-size: clamp(1.28rem, 1.65vw, 1.62rem) !important;
    line-height: 1.18;
    letter-spacing: -.01em;
}

body.service-page.service-page--datenschutz .service-main .legal-card h3 {
    font-size: clamp(1.12rem, 1.35vw, 1.36rem);
    line-height: 1.18;
}

/* Impressum: Dokument- und Rechtstextüberschriften dezenter skalieren. */
body.service-page.service-page--impressum .service-main .legal-document-header h2,
body.service-page.service-page--impressum .service-main .legal-row-content h2,
body.service-page.service-page--impressum .service-main .legal-editorial-copy h2 {
    margin-bottom: .85rem;
    font-size: clamp(1.32rem, 1.75vw, 1.7rem) !important;
    line-height: 1.18;
    letter-spacing: -.01em;
}

body.service-page.service-page--impressum .service-main .legal-document-section h3,
body.service-page.service-page--impressum .service-main .legal-profession-grid h3 {
    font-size: clamp(1.16rem, 1.45vw, 1.45rem) !important;
    line-height: 1.18;
}

body.service-page.service-page--impressum .service-main .legal-profession-grid h4 {
    font-size: clamp(1rem, 1.12vw, 1.12rem);
    line-height: 1.25;
}

/* Über uns: Hero-Banner an das schmalere Kanzlei_Banner-Motiv 1200x400 annähern. */
body.service-page.service-page--ueber-uns .service-main .hero-banner {
    height: clamp(320px, 33vw, 420px) !important;
    min-height: 0 !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner picture {
    height: 100% !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center right !important;
}

@media (max-width: 1080px) {
    body.service-page .service-main .hero-copy {
        width: min(620px, 62%) !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: clamp(300px, 40vw, 380px) !important;
    }
}

@media (max-width: 760px) {
    body.service-page .service-main .hero-copy {
        width: auto !important;
        max-width: none !important;
    }

    body.service-page .service-main .hero-copy h1 {
        text-wrap: normal;
    }

    body.service-page.service-page--datenschutz .service-main .legal-card h2,
    body.service-page.service-page--impressum .service-main .legal-document-header h2,
    body.service-page.service-page--impressum .service-main .legal-row-content h2,
    body.service-page.service-page--impressum .service-main .legal-editorial-copy h2 {
        font-size: clamp(1.22rem, 5vw, 1.45rem) !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: auto !important;
        min-height: 0 !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner picture,
    body.service-page.service-page--ueber-uns .service-main .hero-banner img {
        height: auto !important;
    }
}
/* ======================================================
   Über uns: Bannerbild Besprechungsraum
   Stellt die Hero-Höhe wieder auf das ursprüngliche
   Leistungsseiten-Template zurück und lässt das neue
   16:9-Bild den Bannercontainer sauber füllen.
====================================================== */

body.service-page.service-page--ueber-uns .service-main .hero-banner {
    height: clamp(500px, 50vw, 660px) !important;
    min-height: 0 !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner picture,
body.service-page.service-page--ueber-uns .service-main .hero-banner img {
    width: 100% !important;
    height: 100% !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner img {
    object-fit: cover !important;
    object-position: center center !important;
}

@media (max-width: 1080px) {
    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: clamp(430px, 56vw, 580px) !important;
    }
}

@media (max-width: 760px) {
    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: auto !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner picture,
    body.service-page.service-page--ueber-uns .service-main .hero-banner img {
        height: auto !important;
    }
}
/* ======================================================
   Über uns: kleinere Kanzlei-Bilder
   Reduziert Kanzlei_2.jpg und Kanzlei_3.jpg harmonisch,
   ohne Inhalt oder Bildpfade zu verändern.
====================================================== */

body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-2 {
    max-width: min(360px, 100%) !important;
}

body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-3 {
    max-width: min(430px, 100%) !important;
}

body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-2 img,
body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-3 img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
}

@media (max-width: 760px) {
    body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-2,
    body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-3 {
        max-width: 100% !important;
    }
}
/* ======================================================
   service-pages.css
   Zentrales Layoutsystem fuer Leistungsseiten

   Grundlage: Referenzlayout „Laufende Steuerberatung“.
   Geltung: nur Seiten mit body.service-page.
   Keine Inhaltssteuerung, keine Inline-Styles, keine seitenindividuellen
   Sonderregeln ausser ueber eindeutige Body-Klassen.
====================================================== */

/* ======================================================
   BASE
====================================================== */

body.service-page .service-main {
    background: var(--ivory);
}

body.service-page .service-main + .site-footer {
    margin-top: 0;
}

body.service-page .section {
    padding:
        clamp(5rem, 8vw, 7rem)
        0;
}

body.service-page .section-heading {
    max-width: 940px;
    margin: 0 0 3rem;
}

body.service-page .section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

body.service-page .section-heading.narrow {
    max-width: 840px;
}

body.service-page .section-heading h2 {
    margin-bottom: 1rem;
}

body.service-page .section-heading p,
body.service-page .split-content p,
body.service-page .feature-copy p,
body.service-page .grid-intro p,
body.service-page .scope-panel p {
    color: var(--muted);
    font-size: 1.03rem;
}

body.service-page .section-kicker,
body.service-page .eyebrow {
    margin-bottom: .85rem;
    color: var(--brass);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.25;
    text-transform: uppercase;
}

body.service-page .lead {
    margin-top: .78rem;
    color: var(--ink-soft);
    font-size: clamp(.87rem, .92vw, .98rem);
    line-height: 1.55;
}

/* ======================================================
   SECTION HEADINGS / KICKER COLOR
   Abschnittsueberschriften auf Leistungsseiten
====================================================== */

body.service-page .service-main h2 {
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

body.service-page .service-main p.section-kicker,
body.service-page .service-main .section-kicker {
    color: var(--brass);
    font-size: clamp(.98rem, 1.05vw, 1.12rem);
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.25;
    text-transform: uppercase;
}

body.service-page .service-main .section-service-navy h2,
body.service-page .service-main .section-service-navy p.section-kicker,
body.service-page .service-main .section-service-navy .section-kicker,
body.service-page .service-main .section-navy h2,
body.service-page .service-main .section-navy p.section-kicker,
body.service-page .service-main .section-navy .section-kicker,
body.service-page .service-main .section-heading.inverted h2,
body.service-page .service-main .section-heading.inverted p.section-kicker,
body.service-page .service-main .section-heading.inverted .section-kicker,
body.service-page .service-main .cta-box h2,
body.service-page .service-main .cta-box p.section-kicker,
body.service-page .service-main .cta-box .section-kicker,
body.service-page .service-main .cta-panel h2,
body.service-page .service-main .cta-panel p.section-kicker,
body.service-page .service-main .cta-panel .section-kicker {
    color: #ffffff;
}

/* ======================================================
   SECTION RHYTHM
====================================================== */

body.service-page .hero-page {
    padding: 1.6rem 0 5rem;
    background:
        linear-gradient(
            180deg,
            var(--ivory) 0%,
            var(--ivory-2) 100%
        );
}

body.service-page .section-intro,
body.service-page .section.muted,
body.service-page .final-cta {
    background: #ffffff;
}

body.service-page .section-service-muted {
    background:
        linear-gradient(
            180deg,
            #f7f2ea 0%,
            #efe5d6 100%
        );
}

body.service-page .section-feature,
body.service-page .section-scope {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f2e8dc 100%
        );
}

body.service-page .internal-links-section {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f7f2ea 100%
        );
}

body.service-page .internal-links-section,
body.service-page .faq-section {
    position: relative;
}

body.service-page .internal-links-section::after,
body.service-page .faq-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 3rem));
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(184,135,59,0) 0%,
            rgba(184,135,59,.22) 20%,
            rgba(184,135,59,.32) 50%,
            rgba(184,135,59,.22) 80%,
            rgba(184,135,59,0) 100%
        );
}

/* ======================================================
   BREADCRUMBS
====================================================== */

body.service-page .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--muted);
    font-size: .9rem;
}

body.service-page .breadcrumbs a {
    color: var(--ink-soft);
    font-weight: 600;
}

body.service-page .breadcrumbs a:hover {
    color: var(--navy);
}

/* ======================================================
   HERO
====================================================== */

body.service-page .hero-banner {
    position: relative;
    overflow: hidden;
    height: clamp(500px, 50vw, 660px);
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #f1e8dc 0%,
            #f8f4ed 100%
        );
    box-shadow: var(--shadow-deep);
}

body.service-page .hero-banner picture {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

body.service-page .hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    background: transparent;
}

body.service-page .hero-copy {
    position: absolute;
    left: clamp(1.25rem, 4vw, 3.35rem);
    top: 50%;
    bottom: auto;
    width: min(590px, 48%);
    transform: translateY(-50%);
    z-index: 2;
}

body.service-page .hero-card {
    padding:
        clamp(1rem, 2vw, 1.55rem)
        clamp(1.05rem, 2.25vw, 1.75rem);
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 22px;
    background: rgba(255,255,255,.70);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 38px rgba(13,41,72,.12);
}

body.service-page .hero-copy h1 {
    max-width: 25ch;
    font-size: clamp(1.42rem, 1.95vw, 2.18rem);
    line-height: 1.08;
}

body.service-page .hero-copy .button-row {
    gap: .65rem;
    margin-top: 1.1rem;
}

body.service-page .hero-copy .btn {
    padding: .7rem .94rem;
    border-radius: 10px;
    font-size: .84rem;
}

body.service-page .btn-service-secondary {
    background: rgba(255,255,255,.7);
    color: var(--navy);
    border-color: rgba(13,41,72,.16);
    box-shadow: none;
}

body.service-page .btn-service-secondary:hover {
    background: #ffffff;
    color: var(--navy);
}

/* ======================================================
   INTRO / SIDE PANEL
====================================================== */

body.service-page .grid-intro {
    display: grid;
    grid-template-columns: minmax(0,1fr) 390px;
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
}

body.service-page .grid-intro h2 {
    margin-bottom: 1.35rem;
}

body.service-page .intro-panel {
    position: sticky;
    top: calc(var(--header-compact) + 28px);
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

body.service-page .intro-panel h3 {
    margin-bottom: 1.1rem;
}

body.service-page .check-list {
    display: grid;
    gap: .8rem;
}

body.service-page .check-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

body.service-page .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .15rem;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(184,135,59,.12);
    color: var(--brass);
    font-size: .78rem;
    font-weight: 900;
}

/* ======================================================
   QUESTION LIST
====================================================== */

body.service-page .question-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: .9rem;
}

body.service-page .question-list div {
    position: relative;
    padding: 1.05rem 1.1rem 1.05rem 3rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.84);
    color: var(--ink-soft);
    line-height: 1.6;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

body.service-page .question-list div:hover {
    transform: translateY(-2px);
    border-color: rgba(184,135,59,.32);
    box-shadow: var(--shadow-soft);
}

body.service-page .question-list div::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid rgba(184,135,59,.45);
    border-radius: 50%;
    background: rgba(184,135,59,.08);
}

body.service-page .question-list--balanced div,
body.service-page .question-list--laufende div {
    min-height: 92px;
    display: flex;
    align-items: center;
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
}

/* ======================================================
   CARDS / SERVICE GRIDS
====================================================== */

body.service-page .card-grid,
body.service-page .service-card-grid {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

body.service-page .card-grid.three-columns,
body.service-page .service-card-grid--3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

body.service-page .service-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 1.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184,135,59,.35);
    box-shadow: var(--shadow-deep);
}

body.service-page .service-card h3 {
    margin-bottom: 1rem;
}

body.service-page .service-card p {
    margin-bottom: .9rem;
    color: var(--muted);
    line-height: 1.7;
}

body.service-page .service-card .btn,
body.service-page .service-card .text-link {
    margin-top: auto;
    align-self: flex-start;
}

body.service-page .text-link {
    display: inline-flex;
    padding-top: .9rem;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.35;
    transition:
        color .2s ease,
        transform .2s ease;
}

body.service-page .text-link:hover {
    color: var(--navy-2);
    transform: translateX(2px);
}

body.service-page .card-number {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--brass);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ======================================================
   FEATURE ROWS / MEDIA
====================================================== */

body.service-page .feature-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(420px,.92fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

body.service-page .feature-row.reverse {
    grid-template-columns: minmax(420px,.92fr) minmax(0,1fr);
}

body.service-page .feature-copy {
    width: 100%;
}

body.service-page .feature-copy p + p {
    margin-top: 1rem;
}

body.service-page .media-card,
body.service-page .media-card--quiet {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #f1e8dc 0%,
            #f8f4ed 100%
        );
    box-shadow: var(--shadow-soft);
}

body.service-page .feature-row.reverse .media-card,
body.service-page .feature-row.reverse .media-card--quiet {
    max-width: 520px;
}

body.service-page .media-card picture,
body.service-page .media-card img,
body.service-page .media-card--quiet picture,
body.service-page .media-card--quiet img {
    display: block;
    width: 100%;
}

body.service-page .media-card img,
body.service-page .media-card--quiet img {
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* ======================================================
   DARK TARGET SECTION
====================================================== */

body.service-page .section-service-navy {
    background:
        linear-gradient(
            180deg,
            #071a30 0%,
            #0b2745 100%
        );
}

body.service-page .section-service-navy .section-heading h2,
body.service-page .section-service-navy .section-heading p,
body.service-page .section-service-navy .section-kicker,
body.service-page .section-heading.inverted h2,
body.service-page .section-heading.inverted p,
body.service-page .section-heading.inverted .section-kicker {
    color: #ffffff;
}

body.service-page .service-target-grid,
body.service-page .target-grid-dark {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

body.service-page .service-target-grid--six,
body.service-page .target-grid-dark {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

body.service-page .service-target-grid article,
body.service-page .target-grid-dark article {
    min-height: 240px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
}

body.service-page .service-target-grid h3,
body.service-page .target-grid-dark h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

body.service-page .service-target-grid p,
body.service-page .target-grid-dark p {
    color: rgba(255,255,255,.82);
}

/* ======================================================
   SPLIT / QUOTE / SCOPE
====================================================== */

body.service-page .split-section {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

body.service-page .split-content h2 {
    margin-bottom: 1.35rem;
}

body.service-page .quote-panel {
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(184,135,59,.16);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            #f8f4ed 0%,
            #efe5d6 100%
        );
    box-shadow: var(--shadow-soft);
}

body.service-page .quote-panel p {
    margin: 0;
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.65rem, 2vw, 2.1rem);
    line-height: 1.25;
    letter-spacing: -.02em;
}

body.service-page .scope-panel {
    display: grid;
    grid-template-columns: minmax(280px,.82fr) minmax(0,1.18fr);
    gap: clamp(1.8rem, 5vw, 4rem);
    align-items: start;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%),
        linear-gradient(145deg, #fff, #fbf8f2);
    box-shadow: var(--shadow-soft);
}

body.service-page .scope-panel h2 {
    max-width: 560px;
}

body.service-page .scope-panel p + p {
    margin-top: 1rem;
}

/* ======================================================
   PROCESS
====================================================== */

body.service-page .service-process-grid,
body.service-page .process-grid-extended {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

body.service-page .service-process-grid article {
    padding: 2rem;
    border: 1px solid rgba(13,41,72,.06);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.82);
    box-shadow: var(--shadow-soft);
}

body.service-page .service-process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: #0d2948;
    color: #ffffff;
    font-size: .95rem;
    font-weight: 700;
}

body.service-page .service-process-grid h3 {
    margin-bottom: .9rem;
}

/* ======================================================
   INTERNAL LINKS
====================================================== */

body.service-page .internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1rem;
}

body.service-page .internal-links-grid a {
    display: grid;
    gap: .45rem;
    min-height: 132px;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page .internal-links-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(184,135,59,.35);
    box-shadow: var(--shadow-deep);
}

body.service-page .internal-links-grid span {
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.35rem, 1.7vw, 1.75rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.02em;
}

body.service-page .internal-links-grid small {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

/* ======================================================
   FAQ
====================================================== */

body.service-page .faq-layout {
    display: grid;
    grid-template-columns: 390px minmax(0,1fr);
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
}

body.service-page .faq-list {
    display: grid;
    gap: .8rem;
}

body.service-page .faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

body.service-page .faq-list summary {
    cursor: pointer;
    padding: 1.2rem 1.35rem;
    color: var(--navy);
    font-weight: 800;
    list-style: none;
}

body.service-page .faq-list summary::-webkit-details-marker {
    display: none;
}

body.service-page .faq-list summary::after {
    content: "+";
    float: right;
    color: var(--brass);
}

body.service-page .faq-list details[open] summary::after {
    content: "–";
}

body.service-page .faq-list details p {
    margin: 0;
    padding: 0 1.35rem 1.35rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ======================================================
   FINAL CTA
====================================================== */

body.service-page .cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #071a30 0%,
            #0b2745 100%
        );
    box-shadow: var(--shadow-deep);
}

body.service-page .cta-copy {
    max-width: 760px;
}

body.service-page .cta-box .section-kicker,
body.service-page .cta-box h2,
body.service-page .cta-box p {
    color: #ffffff;
}

body.service-page .cta-actions {
    flex-shrink: 0;
}

body.service-page .cta-actions .btn {
    white-space: nowrap;
    background: #ffffff;
    color: #0b2745;
    border: 1px solid rgba(255,255,255,.9);
}

body.service-page .cta-actions .btn:hover {
    background: rgba(255,255,255,.92);
    color: #071a30;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1080px) {

    body.service-page .hero-banner {
        height: clamp(430px, 56vw, 580px);
    }

    body.service-page .hero-copy {
        width: min(540px, 62%);
    }

    body.service-page .card-grid.three-columns,
    body.service-page .service-card-grid--3,
    body.service-page .service-target-grid--six,
    body.service-page .target-grid-dark,
    body.service-page .internal-links-grid,
    body.service-page .service-process-grid,
    body.service-page .process-grid-extended {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    body.service-page .scope-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1040px) {

    body.service-page .grid-intro,
    body.service-page .faq-layout {
        grid-template-columns: 1fr;
    }

    body.service-page .intro-panel {
        position: static;
    }
}

@media (max-width: 980px) {

    body.service-page .feature-row,
    body.service-page .feature-row.reverse,
    body.service-page .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    body.service-page .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {

    body.service-page .section {
        padding: 4rem 0;
    }

    body.service-page .hero-page {
        padding: 1.2rem 0 4rem;
    }

    body.service-page .hero-banner {
        height: auto;
        display: grid;
    }

    body.service-page .hero-banner picture,
    body.service-page .hero-banner img {
        height: auto;
    }

    body.service-page .hero-copy {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        transform: none;
        margin: -20px 12px 12px;
    }

    body.service-page .hero-card {
        background: rgba(255,255,255,.9);
    }

    body.service-page .hero-copy h1 {
        max-width: none;
        font-size: clamp(1.75rem, 6vw, 2.2rem);
    }

    body.service-page .question-list,
    body.service-page .card-grid.three-columns,
    body.service-page .service-card-grid--3,
    body.service-page .service-target-grid--six,
    body.service-page .target-grid-dark,
    body.service-page .internal-links-grid,
    body.service-page .service-process-grid,
    body.service-page .process-grid-extended {
        grid-template-columns: 1fr;
    }

    body.service-page .service-card,
    body.service-page .service-target-grid article,
    body.service-page .target-grid-dark article,
    body.service-page .service-process-grid article {
        padding: 1.5rem;
    }

    body.service-page .cta-actions,
    body.service-page .cta-actions .btn {
        width: 100%;
    }
}

/* ======================================================
   FINAL OVERRIDE: SECTION-KICKER AUF LEISTUNGSSEITEN
   Greift auch dann, wenn globale Absatzregeln oder eine abweichende
   Lade-Reihenfolge die Abschnittslabels erneut grau setzen.
====================================================== */

body.service-page .service-main p.section-kicker,
.service-main p.section-kicker {
    color: var(--brass) !important;
    font-size: clamp(.98rem, 1.05vw, 1.12rem) !important;
}

body.service-page .service-main .section-service-navy p.section-kicker,
body.service-page .service-main .section-heading.inverted p.section-kicker,
body.service-page .service-main .cta-box p.section-kicker,
.service-main .section-service-navy p.section-kicker,
.service-main .section-heading.inverted p.section-kicker,
.service-main .cta-box p.section-kicker {
    color: #ffffff !important;
}

/* ======================================================
   ZIELSEITEN-ERGÄNZUNGEN AUS HOMEPAGE.ZIP
   Zentrale Übernahme der vorhandenen Seiten-CSS.
   Keine Inline-Styles; keine separaten Zielseiten-CSS-Dateien.
   Nicht-generische Ausnahmen bleiben über Body-Klassen gekapselt.
====================================================== */

/* ===== Aus 404.css zentralisiert (auf body.service-page--404 gekapselt) ===== */


body.service-page--404 .service-main .hero-banner--404 {
  position: relative;
  overflow: hidden;
}

body.service-page--404 .service-main .hero-banner--404 img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

body.service-page--404 .service-main .hero-card--404 {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.55);
}

body.service-page--404 .hero-copy h1 {
  max-width: 13ch;
}

body.service-page--404 .area-card {
  min-height: 100%;
}

body.service-page--404 .link-list {
  margin-bottom: 1.6rem;
}

@media (max-width: 760px) {

  body.service-page--404 .hero-copy h1 {
    max-width: none;
  }

  body.service-page--404 .service-main .hero-card--404 {
    background: rgba(255,255,255,.88);
  }
}

/* ===== Aus betriebspruefung-steuerstreit.css zentralisiert ===== */
/* ======================================================
   Unterseite Steuerberaterhaftung / Betriebsprüfung & Steuerstreit
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--betriebspruefung-steuerstreit .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung-steuerstreit .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--betriebspruefung-steuerstreit .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--betriebspruefung-steuerstreit .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(610px, 49%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--betriebspruefung-steuerstreit .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--betriebspruefung-steuerstreit .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.42rem, 1.86vw, 2.08rem);
  line-height: 1.08;
}

.service-page--betriebspruefung-steuerstreit .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--betriebspruefung-steuerstreit .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--betriebspruefung-steuerstreit .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--betriebspruefung-steuerstreit .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung-steuerstreit .media-card--quiet picture,
.service-page--betriebspruefung-steuerstreit .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--betriebspruefung-steuerstreit .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--betriebspruefung-steuerstreit .bp-card-grid .service-card {
  min-height: 335px;
}

.service-page--betriebspruefung-steuerstreit .bp-card-grid .service-card p + p {
  margin-top: .75rem;
}

.service-page--betriebspruefung-steuerstreit .question-list--bp div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--betriebspruefung-steuerstreit .question-list--bp div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--betriebspruefung-steuerstreit .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--betriebspruefung-steuerstreit .service-target-grid--six article {
  min-height: 230px;
}

.service-page--betriebspruefung-steuerstreit .bp-target-grid h3 {
  hyphens: auto;
}

.service-page--betriebspruefung-steuerstreit .section-route {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--betriebspruefung-steuerstreit .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--betriebspruefung-steuerstreit .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--betriebspruefung-steuerstreit .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--betriebspruefung-steuerstreit .documents-list {
  margin-top: 1.4rem;
}

.service-page--betriebspruefung-steuerstreit .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--betriebspruefung-steuerstreit .service-process-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.service-page--betriebspruefung-steuerstreit .service-process-grid--six article {
  min-height: 315px;
}

.service-page--betriebspruefung-steuerstreit .faq-list details p {
  line-height: 1.7;
}

.service-page--betriebspruefung-steuerstreit .text-link {
  align-self: flex-start;
  margin-top: 1.1rem;
}

@media (max-width: 1080px) {
  .service-page--betriebspruefung-steuerstreit .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--betriebspruefung-steuerstreit .hero-copy {
    width: min(560px, 64%);
  }

  .service-page--betriebspruefung-steuerstreit .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--betriebspruefung-steuerstreit .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--betriebspruefung-steuerstreit .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--betriebspruefung-steuerstreit .hero-banner picture,
  .service-page--betriebspruefung-steuerstreit .hero-banner img {
    height: auto;
  }

  .service-page--betriebspruefung-steuerstreit .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--betriebspruefung-steuerstreit .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--betriebspruefung-steuerstreit .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--betriebspruefung-steuerstreit .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--betriebspruefung-steuerstreit .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--betriebspruefung-steuerstreit .bp-card-grid .service-card,
  .service-page--betriebspruefung-steuerstreit .service-process-grid--six article,
  .service-page--betriebspruefung-steuerstreit .service-target-grid--six article {
    min-height: 0;
  }

  .service-page--betriebspruefung-steuerstreit .documents-copy {
    padding: 1.45rem;
  }
}

/* ===== Aus betriebspruefung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Betriebsprüfung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--betriebspruefung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--betriebspruefung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--betriebspruefung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(565px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--betriebspruefung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--betriebspruefung .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.42rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-page--betriebspruefung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--betriebspruefung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--betriebspruefung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--betriebspruefung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung .media-card--quiet picture,
.service-page--betriebspruefung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--betriebspruefung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--betriebspruefung .question-list--betriebspruefung {
  align-items: stretch;
}

.service-page--betriebspruefung .question-list--betriebspruefung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--betriebspruefung .question-list--betriebspruefung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--betriebspruefung .service-card {
  min-height: 300px;
}

.service-page--betriebspruefung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--betriebspruefung .service-target-grid--six {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page--betriebspruefung .service-target-grid--six article {
  min-height: 230px;
}

.service-page--betriebspruefung .service-process-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--betriebspruefung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .service-page--betriebspruefung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-page--betriebspruefung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--betriebspruefung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--betriebspruefung .service-process-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--betriebspruefung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--betriebspruefung .hero-banner picture,
  .service-page--betriebspruefung .hero-banner img {
    height: auto;
  }

  .service-page--betriebspruefung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--betriebspruefung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--betriebspruefung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--betriebspruefung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--betriebspruefung .service-target-grid--six,
  .service-page--betriebspruefung .service-process-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus blog-template.css zentralisiert (auf body.article-page gekapselt) ===== */


body.article-page {
  background: var(--ivory);
}

body.article-page .service-main .article-hero {
  padding: 1.6rem 0 4.8rem;
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
}

body.article-page .service-main .article-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
  box-shadow: var(--shadow-deep);
  line-height: 0;
}

body.article-page .service-main .article-banner picture {
  display: block;
}

body.article-page .service-main .article-banner picture,
body.article-page .service-main .article-banner img {
  width: 100%;
  height: auto;
  display: block;
}

body.article-page .service-main .article-banner img {
  object-fit: contain;
  object-position: center;
}

body.article-page .service-main .article-overlay {
  position: absolute;
  left: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  width: min(700px, calc(100% - 3rem));
}

body.article-page .service-main .article-card {
  padding: clamp(1.3rem, 2.6vw, 2rem);
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 44px rgba(13,41,72,.12);
}

body.article-page .service-main .article-eyebrow {
  margin-bottom: .9rem;
  color: var(--brass);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.article-page .service-main .article-overlay h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

body.article-page .service-main .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.5;
}

body.article-page .service-main .article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

body.article-page .service-main .article-content {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .article-intro {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

body.article-page .service-main .article-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

body.article-page .service-main .article-content p {
  color: var(--muted);
}

body.article-page .service-main .article-content ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: .7rem;
}

body.article-page .service-main .article-content li {
  color: var(--muted);
}

body.article-page .service-main .article-quote {
  margin: 2.5rem 0;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, #fff, #fbf8f2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .article-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.25;
  color: var(--navy);
}

body.article-page .service-main .article-sidebar {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
}

body.article-page .service-main .sidebar-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .sidebar-card h3 {
  margin-bottom: 1rem;
}

body.article-page .service-main .sidebar-nav {
  display: grid;
  gap: .7rem;
}

body.article-page .service-main .sidebar-nav a {
  color: var(--ink-soft);
  font-weight: 600;
}

body.article-page .service-main .sidebar-nav a:hover {
  color: var(--navy);
}

@media (max-width: 1040px) {

  body.article-page .service-main .article-layout {
    grid-template-columns: 1fr;
  }

  body.article-page .service-main .article-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {

  body.article-page .service-main .article-overlay {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -22px 14px 14px;
  }

  body.article-page .service-main .article-overlay h1 {
    max-width: none;
  }

  body.article-page .service-main .article-card {
    background: rgba(255,255,255,.92);
  }

  body.article-page .service-main .article-content {
    padding: 1.6rem;
  }
}

/* ===== Aus datenschutz.css zentralisiert ===== */
/* ======================================================
   Datenschutzseite
   - nutzt den zentralen Website-/Leistungsseiten-Master
   - nur seitenbezogene Ergänzungen
====================================================== */

.service-page--datenschutz .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--datenschutz .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--datenschutz .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--datenschutz .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  width: min(540px, 45%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--datenschutz .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--datenschutz .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 2.15vw, 2.45rem);
  line-height: 1.08;
}

.service-page--datenschutz .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.9rem, .96vw, 1rem);
  line-height: 1.58;
}

.service-page--datenschutz .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--datenschutz .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--datenschutz .legal-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(2.2rem, 6vw, 4.6rem);
  align-items: start;
}

.service-page--datenschutz .legal-intro-grid h2 {
  margin-bottom: 1.35rem;
}

.service-page--datenschutz .legal-summary-card {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--datenschutz .legal-summary-card h3 {
  margin-bottom: 1.1rem;
}

.service-page--datenschutz .legal-section {
  padding-top: clamp(4rem, 6vw, 6rem);
}

.service-page--datenschutz .legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}

.service-page--datenschutz .legal-toc {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}

.service-page--datenschutz .legal-toc nav {
  display: grid;
  gap: .35rem;
}

.service-page--datenschutz .legal-toc a {
  display: block;
  padding: .58rem .72rem;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.32;
}

.service-page--datenschutz .legal-toc a:hover {
  background: rgba(13,41,72,.05);
  color: var(--navy);
}

.service-page--datenschutz .legal-content {
  display: grid;
  gap: 1rem;
}

.service-page--datenschutz .legal-card {
  scroll-margin-top: calc(var(--header-compact) + 24px);
  padding: clamp(1.45rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}

.service-page--datenschutz .legal-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.35vw, 2.25rem);
}

.service-page--datenschutz .legal-card p,
.service-page--datenschutz .legal-card li,
.service-page--datenschutz .legal-card address {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
}

.service-page--datenschutz .legal-card address {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(13,41,72,.035);
  border: 1px solid rgba(13,41,72,.06);
  font-style: normal;
}

.service-page--datenschutz .legal-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-page--datenschutz .legal-card ul {
  display: grid;
  gap: .55rem;
  margin: 1rem 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.service-page--datenschutz .legal-card ul li::marker {
  color: var(--brass);
}

.service-page--datenschutz .warning-card {
  position: relative;
  background: linear-gradient(180deg, #fffaf3 0%, #fcf7ef 100%);
  border-color: rgba(184,135,59,.22);
}

.service-page--datenschutz .legal-card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(184,135,59,.10);
  color: var(--brass);
}

.service-page--datenschutz .legal-card-icon svg {
  width: 25px;
  height: 25px;
}

.service-page--datenschutz .cta-actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .service-page--datenschutz .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--datenschutz .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--datenschutz .legal-intro-grid,
  .service-page--datenschutz .legal-layout {
    grid-template-columns: 1fr;
  }

  .service-page--datenschutz .legal-summary-card,
  .service-page--datenschutz .legal-toc {
    position: static;
  }

  .service-page--datenschutz .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--datenschutz .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .service-page--datenschutz .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--datenschutz .hero-banner picture,
  .service-page--datenschutz .hero-banner img {
    height: auto;
  }

  .service-page--datenschutz .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--datenschutz .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--datenschutz .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--datenschutz .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--datenschutz .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .service-page--datenschutz .legal-card {
    padding: 1.25rem;
  }
}

/* ===== Aus einkommensteuererklaerung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Einkommensteuererklärung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--einkommensteuererklaerung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--einkommensteuererklaerung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--einkommensteuererklaerung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--einkommensteuererklaerung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--einkommensteuererklaerung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--einkommensteuererklaerung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--einkommensteuererklaerung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--einkommensteuererklaerung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--einkommensteuererklaerung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--einkommensteuererklaerung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--einkommensteuererklaerung .media-card--quiet picture,
.service-page--einkommensteuererklaerung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--einkommensteuererklaerung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--einkommensteuererklaerung .question-list--einkommensteuer {
  align-items: stretch;
}

.service-page--einkommensteuererklaerung .question-list--einkommensteuer div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--einkommensteuererklaerung .question-list--einkommensteuer div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--einkommensteuererklaerung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--einkommensteuererklaerung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--einkommensteuererklaerung .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--einkommensteuererklaerung .scope-panel h2 {
  max-width: 560px;
}

.service-page--einkommensteuererklaerung .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--einkommensteuererklaerung .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--einkommensteuererklaerung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--einkommensteuererklaerung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--einkommensteuererklaerung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--einkommensteuererklaerung .service-target-grid--six,
  .service-page--einkommensteuererklaerung .scope-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--einkommensteuererklaerung .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--einkommensteuererklaerung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--einkommensteuererklaerung .hero-banner picture,
  .service-page--einkommensteuererklaerung .hero-banner img {
    height: auto;
  }

  .service-page--einkommensteuererklaerung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--einkommensteuererklaerung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--einkommensteuererklaerung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--einkommensteuererklaerung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--einkommensteuererklaerung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus einspruch-steuerbescheid.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsanwalt Einspruch gegen Steuerbescheid
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--einspruch-steuerbescheid .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--einspruch-steuerbescheid .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--einspruch-steuerbescheid .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.service-page--einspruch-steuerbescheid .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--einspruch-steuerbescheid .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--einspruch-steuerbescheid .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--einspruch-steuerbescheid .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--einspruch-steuerbescheid .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--einspruch-steuerbescheid .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--einspruch-steuerbescheid .question-list--einspruch div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--einspruch-steuerbescheid .question-list--einspruch div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--einspruch-steuerbescheid .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--einspruch-steuerbescheid .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--einspruch-steuerbescheid .media-card--quiet picture,
.service-page--einspruch-steuerbescheid .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--einspruch-steuerbescheid .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--einspruch-steuerbescheid .section-risk {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--einspruch-steuerbescheid .risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--einspruch-steuerbescheid .risk-panel h2 {
  max-width: 560px;
}

.service-page--einspruch-steuerbescheid .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--einspruch-steuerbescheid .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--einspruch-steuerbescheid .risk-list {
  display: grid;
  gap: .75rem;
}

.service-page--einspruch-steuerbescheid .risk-list li {
  position: relative;
  padding: .9rem .95rem .9rem 2.65rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  color: var(--ink-soft);
  font-weight: 600;
}

.service-page--einspruch-steuerbescheid .risk-list li::before {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid rgba(184,135,59,.46);
  border-radius: 50%;
  content: "";
}

.service-page--einspruch-steuerbescheid .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--einspruch-steuerbescheid .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--einspruch-steuerbescheid .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--einspruch-steuerbescheid .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--einspruch-steuerbescheid .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--einspruch-steuerbescheid .risk-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--einspruch-steuerbescheid .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--einspruch-steuerbescheid .hero-banner picture,
  .service-page--einspruch-steuerbescheid .hero-banner img {
    height: auto;
  }

  .service-page--einspruch-steuerbescheid .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--einspruch-steuerbescheid .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--einspruch-steuerbescheid .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--einspruch-steuerbescheid .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--einspruch-steuerbescheid .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus erbschaftsteuer-schenkungsteuer.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Erbschaftsteuer / Schenkungsteuer
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--erbschaftsteuer-schenkungsteuer .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy h1 {
  max-width: 25ch;
  font-size: clamp(1.42rem, 1.9vw, 2.12rem);
  line-height: 1.08;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet picture,
.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--erbschaftsteuer-schenkungsteuer .question-list--erbschaftsteuer div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .question-list--erbschaftsteuer div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--erbschaftsteuer-schenkungsteuer .service-card {
  min-height: 330px;
}

.service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six article {
  min-height: 220px;
}

.service-page--erbschaftsteuer-schenkungsteuer .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel h2 {
  max-width: 560px;
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .faq-list details p {
  line-height: 1.7;
}

.service-page--erbschaftsteuer-schenkungsteuer .cta-box .cta-note {
  color: rgba(255, 255, 255, .76);
}

@media (max-width: 1080px) {
  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--erbschaftsteuer-schenkungsteuer .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner picture,
  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner img {
    height: auto;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.72rem, 5.8vw, 2.2rem);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .service-card {
    min-height: auto;
  }
}

/* ===== Aus erweiterte-gewerbesteuerkuerzung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Erweiterte Gewerbesteuerkürzung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--erweiterte-gewerbesteuerkuerzung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe7dc 0%, #f8f4ed 100%);
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .question-list--gewerbesteuer div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .question-list--gewerbesteuer div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet {
  background: linear-gradient(180deg, #efe7dc 0%, #f8f4ed 100%);
}

.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet picture,
.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel h2 {
  max-width: 560px;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-list {
  display: grid;
  gap: .85rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-list li {
  position: relative;
  padding: .95rem 1rem .95rem 3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  color: var(--ink-soft);
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(184,135,59,.48);
  background: rgba(184,135,59,.08);
}

.service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six article {
  min-height: 220px;
}

.service-page--erweiterte-gewerbesteuerkuerzung .text-link {
  align-self: flex-start;
}

.service-page--erweiterte-gewerbesteuerkuerzung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .risk-panel {
    grid-template-columns: 1fr;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner picture,
  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner img {
    height: auto;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus finanzbuchfuehrung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Finanzbuchführung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--finanzbuchfuehrung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzbuchfuehrung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--finanzbuchfuehrung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--finanzbuchfuehrung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--finanzbuchfuehrung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--finanzbuchfuehrung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--finanzbuchfuehrung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--finanzbuchfuehrung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--finanzbuchfuehrung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--finanzbuchfuehrung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzbuchfuehrung .media-card--quiet picture,
.service-page--finanzbuchfuehrung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--finanzbuchfuehrung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--finanzbuchfuehrung .question-list--finanzbuchfuehrung {
  align-items: stretch;
}

.service-page--finanzbuchfuehrung .question-list--finanzbuchfuehrung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--finanzbuchfuehrung .question-list--finanzbuchfuehrung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--finanzbuchfuehrung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--finanzbuchfuehrung .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--finanzbuchfuehrung .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--finanzbuchfuehrung .scope-panel h2 {
  max-width: 520px;
}

.service-page--finanzbuchfuehrung .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--finanzbuchfuehrung .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--finanzbuchfuehrung .faq-list details p {
  line-height: 1.7;
}

.service-page--finanzbuchfuehrung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

@media (max-width: 1080px) {
  .service-page--finanzbuchfuehrung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--finanzbuchfuehrung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--finanzbuchfuehrung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--finanzbuchfuehrung .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--finanzbuchfuehrung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--finanzbuchfuehrung .hero-banner picture,
  .service-page--finanzbuchfuehrung .hero-banner img {
    height: auto;
  }

  .service-page--finanzbuchfuehrung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--finanzbuchfuehrung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--finanzbuchfuehrung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--finanzbuchfuehrung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--finanzbuchfuehrung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus finanzgericht.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Finanzgerichtliche Verfahren
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--finanzgericht .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzgericht .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--finanzgericht .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--finanzgericht .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--finanzgericht .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--finanzgericht .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.92vw, 2.12rem);
  line-height: 1.08;
}

.service-page--finanzgericht .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--finanzgericht .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--finanzgericht .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--finanzgericht .media-card--quiet,
.service-page--finanzgericht .media-card--wide {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzgericht .media-card--quiet picture,
.service-page--finanzgericht .media-card--quiet img,
.service-page--finanzgericht .media-card--wide picture,
.service-page--finanzgericht .media-card--wide img {
  display: block;
  width: 100%;
}

.service-page--finanzgericht .media-card--quiet img,
.service-page--finanzgericht .media-card--wide img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--finanzgericht .question-list--finanzgericht div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--finanzgericht .question-list--finanzgericht div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--finanzgericht .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--finanzgericht .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--finanzgericht .service-target-grid--six article {
  min-height: 205px;
}

.service-page--finanzgericht .service-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--finanzgericht .focus-grid .service-card {
  min-height: 240px;
}

.service-page--finanzgericht .evidence-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.11), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--finanzgericht .evidence-panel h2 {
  margin-bottom: 1.25rem;
}

.service-page--finanzgericht .evidence-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--finanzgericht .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--finanzgericht .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--finanzgericht .hero-copy {
    width: min(530px, 62%);
  }

  .service-page--finanzgericht .service-target-grid--six,
  .service-page--finanzgericht .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--finanzgericht .evidence-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--finanzgericht .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--finanzgericht .hero-banner picture,
  .service-page--finanzgericht .hero-banner img {
    height: auto;
  }

  .service-page--finanzgericht .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--finanzgericht .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--finanzgericht .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--finanzgericht .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--finanzgericht .service-target-grid--six,
  .service-page--finanzgericht .service-process-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus fristversaeumnis.css zentralisiert ===== */
/* ======================================================
   Unterseite Steuerberaterhaftung / Fristversäumnis
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--fristversaeumnis .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--fristversaeumnis .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--fristversaeumnis .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--fristversaeumnis .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--fristversaeumnis .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--fristversaeumnis .hero-copy h1 {
  max-width: 21ch;
  font-size: clamp(1.52rem, 2vw, 2.24rem);
  line-height: 1.08;
}

.service-page--fristversaeumnis .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .94vw, .99rem);
  line-height: 1.55;
}

.service-page--fristversaeumnis .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--fristversaeumnis .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--fristversaeumnis .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--fristversaeumnis .media-card--quiet picture,
.service-page--fristversaeumnis .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--fristversaeumnis .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--fristversaeumnis .frist-card-grid .service-card {
  min-height: 350px;
}

.service-page--fristversaeumnis .frist-card-grid .service-card p + p {
  margin-top: .75rem;
}

.service-page--fristversaeumnis .question-list--frist div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--fristversaeumnis .question-list--frist div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--fristversaeumnis .section-wiedereinsetzung {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--fristversaeumnis .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--fristversaeumnis .service-target-grid--six article {
  min-height: 210px;
}

.service-page--fristversaeumnis .frist-target-grid h3 {
  hyphens: auto;
}

.service-page--fristversaeumnis .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--fristversaeumnis .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--fristversaeumnis .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--fristversaeumnis .documents-list {
  margin-top: 1.4rem;
}

.service-page--fristversaeumnis .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--fristversaeumnis .service-process-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.service-page--fristversaeumnis .service-process-grid--six article {
  min-height: 300px;
}

.service-page--fristversaeumnis .faq-list details p {
  line-height: 1.7;
}

.service-page--fristversaeumnis .text-link {
  align-self: flex-start;
  margin-top: 1.1rem;
}

@media (max-width: 1080px) {
  .service-page--fristversaeumnis .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--fristversaeumnis .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--fristversaeumnis .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--fristversaeumnis .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--fristversaeumnis .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--fristversaeumnis .hero-banner picture,
  .service-page--fristversaeumnis .hero-banner img {
    height: auto;
  }

  .service-page--fristversaeumnis .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--fristversaeumnis .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--fristversaeumnis .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--fristversaeumnis .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--fristversaeumnis .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--fristversaeumnis .frist-card-grid .service-card,
  .service-page--fristversaeumnis .service-process-grid--six article,
  .service-page--fristversaeumnis .service-target-grid--six article {
    min-height: 0;
  }

  .service-page--fristversaeumnis .documents-copy {
    padding: 1.45rem;
  }
}

/* ===== Aus geschaeftsfuehrerhaftung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Geschäftsführerhaftung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--geschaeftsfuehrerhaftung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--geschaeftsfuehrerhaftung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--geschaeftsfuehrerhaftung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(575px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--geschaeftsfuehrerhaftung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--geschaeftsfuehrerhaftung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--geschaeftsfuehrerhaftung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--geschaeftsfuehrerhaftung .media-card--quiet picture,
.service-page--geschaeftsfuehrerhaftung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--geschaeftsfuehrerhaftung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--geschaeftsfuehrerhaftung .question-list--haftung {
  align-items: stretch;
}

.service-page--geschaeftsfuehrerhaftung .question-list--haftung div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--geschaeftsfuehrerhaftung .question-list--haftung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--geschaeftsfuehrerhaftung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--geschaeftsfuehrerhaftung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--geschaeftsfuehrerhaftung .service-target-grid--six article {
  min-height: 225px;
}

.service-page--geschaeftsfuehrerhaftung .section-risk {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--geschaeftsfuehrerhaftung .risk-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--geschaeftsfuehrerhaftung .risk-panel h2 {
  max-width: 720px;
  margin-bottom: 1.35rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-list {
  display: grid;
  gap: .7rem;
  margin-top: 1.4rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-list li {
  position: relative;
  padding: .85rem .95rem .85rem 2.6rem;
  border: 1px solid rgba(13, 41, 72, .06);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  color: var(--ink-soft);
  font-weight: 600;
}

.service-page--geschaeftsfuehrerhaftung .risk-list li::before {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  content: "›";
  font-weight: 900;
}

.service-page--geschaeftsfuehrerhaftung .document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-page--geschaeftsfuehrerhaftung .document-grid article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--geschaeftsfuehrerhaftung .document-grid h3 {
  margin-bottom: .65rem;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.service-page--geschaeftsfuehrerhaftung .document-grid p {
  color: var(--muted);
}

.service-page--geschaeftsfuehrerhaftung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--geschaeftsfuehrerhaftung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--geschaeftsfuehrerhaftung .hero-copy {
    width: min(535px, 61%);
  }

  .service-page--geschaeftsfuehrerhaftung .risk-panel {
    grid-template-columns: 1fr;
  }

  .service-page--geschaeftsfuehrerhaftung .service-target-grid--six,
  .service-page--geschaeftsfuehrerhaftung .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--geschaeftsfuehrerhaftung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-banner picture,
  .service-page--geschaeftsfuehrerhaftung .hero-banner img {
    height: auto;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--geschaeftsfuehrerhaftung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--geschaeftsfuehrerhaftung .service-target-grid--six,
  .service-page--geschaeftsfuehrerhaftung .document-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus gestaltungsberatung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Gestaltungsberatung
   - nutzt den zentralen Leistungsseiten-Master
   - ergänzt nur seitenbezogene Bild-/Hero-Feinheiten
====================================================== */

.service-page--gestaltungsberatung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gestaltungsberatung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--gestaltungsberatung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--gestaltungsberatung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--gestaltungsberatung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--gestaltungsberatung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--gestaltungsberatung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--gestaltungsberatung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--gestaltungsberatung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--gestaltungsberatung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gestaltungsberatung .media-card--quiet picture,
.service-page--gestaltungsberatung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--gestaltungsberatung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--gestaltungsberatung .question-list--gestaltungsberatung {
  align-items: stretch;
}

.service-page--gestaltungsberatung .question-list--gestaltungsberatung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--gestaltungsberatung .question-list--gestaltungsberatung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--gestaltungsberatung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--gestaltungsberatung .faq-list details p {
  line-height: 1.7;
}

.service-page--gestaltungsberatung .text-link {
  align-self: flex-start;
}

.service-page--gestaltungsberatung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

@media (max-width: 1080px) {
  .service-page--gestaltungsberatung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--gestaltungsberatung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--gestaltungsberatung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--gestaltungsberatung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--gestaltungsberatung .hero-banner picture,
  .service-page--gestaltungsberatung .hero-banner img {
    height: auto;
  }

  .service-page--gestaltungsberatung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--gestaltungsberatung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--gestaltungsberatung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--gestaltungsberatung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--gestaltungsberatung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus gewerblicher-grundstueckshandel.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Gewerblicher Grundstückshandel
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--gewerblicher-grundstueckshandel .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gewerblicher-grundstueckshandel .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--gewerblicher-grundstueckshandel .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--gewerblicher-grundstueckshandel .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--gewerblicher-grundstueckshandel .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--gewerblicher-grundstueckshandel .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gewerblicher-grundstueckshandel .media-card--quiet picture,
.service-page--gewerblicher-grundstueckshandel .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--gewerblicher-grundstueckshandel .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--gewerblicher-grundstueckshandel .question-list--grundstueckshandel {
  align-items: stretch;
}

.service-page--gewerblicher-grundstueckshandel .question-list--grundstueckshandel div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--gewerblicher-grundstueckshandel .question-list--grundstueckshandel div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--gewerblicher-grundstueckshandel .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--gewerblicher-grundstueckshandel .risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--gewerblicher-grundstueckshandel .risk-panel h2 {
  max-width: 560px;
}

.service-page--gewerblicher-grundstueckshandel .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--gewerblicher-grundstueckshandel .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--gewerblicher-grundstueckshandel .risk-list {
  display: grid;
  gap: .8rem;
}

.service-page--gewerblicher-grundstueckshandel .risk-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--ink-soft);
}

.service-page--gewerblicher-grundstueckshandel .risk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brass);
}

.service-page--gewerblicher-grundstueckshandel .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--gewerblicher-grundstueckshandel .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--gewerblicher-grundstueckshandel .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--gewerblicher-grundstueckshandel .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--gewerblicher-grundstueckshandel .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--gewerblicher-grundstueckshandel .risk-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--gewerblicher-grundstueckshandel .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-banner picture,
  .service-page--gewerblicher-grundstueckshandel .hero-banner img {
    height: auto;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--gewerblicher-grundstueckshandel .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--gewerblicher-grundstueckshandel .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus holdingstrukturen.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Holdingstrukturen
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
   - v6: Bannerbild auf Master-Blockformat gebracht; vollständiges Motiv ohne Verzerrung.
====================================================== */

.service-page--holdingstrukturen .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--holdingstrukturen .hero-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-page--holdingstrukturen .hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.service-page--holdingstrukturen .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(540px, 43%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--holdingstrukturen .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--holdingstrukturen .hero-copy h1 {
  max-width: 25ch;
  font-size: clamp(1.36rem, 1.78vw, 2rem);
  line-height: 1.08;
}

.service-page--holdingstrukturen .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.85rem, .88vw, .94rem);
  line-height: 1.55;
}

.service-page--holdingstrukturen .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--holdingstrukturen .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--holdingstrukturen .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--holdingstrukturen .media-card--quiet picture,
.service-page--holdingstrukturen .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--holdingstrukturen .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--holdingstrukturen .question-list--holdingstrukturen {
  align-items: stretch;
}

.service-page--holdingstrukturen .question-list--holdingstrukturen div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--holdingstrukturen .question-list--holdingstrukturen div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--holdingstrukturen .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--holdingstrukturen .service-target-grid--six article {
  min-height: 230px;
}

.service-page--holdingstrukturen .faq-list details p {
  line-height: 1.7;
}

.service-page--holdingstrukturen .text-link {
  align-self: flex-start;
}

.service-page--holdingstrukturen .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--holdingstrukturen .service-process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-page--holdingstrukturen .service-process-grid article {
  min-height: 300px;
}

@media (max-width: 1180px) {
  .service-page--holdingstrukturen .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-page--holdingstrukturen .hero-banner {
    height: clamp(430px, 56vw, 580px);
    padding: 0;
  }

  .service-page--holdingstrukturen .hero-copy {
    width: min(535px, 61%);
  }

  .service-page--holdingstrukturen .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--holdingstrukturen .hero-banner {
    height: auto;
    display: grid;
    padding: 0;
  }

  .service-page--holdingstrukturen .hero-banner picture,
  .service-page--holdingstrukturen .hero-banner img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .service-page--holdingstrukturen .hero-banner img {
    object-fit: contain;
    object-position: center;
  }

  .service-page--holdingstrukturen .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--holdingstrukturen .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--holdingstrukturen .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--holdingstrukturen .service-target-grid--six,
  .service-page--holdingstrukturen .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-page--holdingstrukturen .service-process-grid article,
  .service-page--holdingstrukturen .service-target-grid--six article {
    min-height: 0;
  }
}

/* ===== Aus immobilien-betriebsvermoegen.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Immobilien im Betriebsvermögen
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--immobilien-betriebsvermoegen .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-betriebsvermoegen .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--immobilien-betriebsvermoegen .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--immobilien-betriebsvermoegen .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--immobilien-betriebsvermoegen .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .69);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--immobilien-betriebsvermoegen .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.45rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-page--immobilien-betriebsvermoegen .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--immobilien-betriebsvermoegen .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--immobilien-betriebsvermoegen .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--immobilien-betriebsvermoegen .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-betriebsvermoegen .media-card--quiet picture,
.service-page--immobilien-betriebsvermoegen .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--immobilien-betriebsvermoegen .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--immobilien-betriebsvermoegen .question-list--immo-bv {
  align-items: stretch;
}

.service-page--immobilien-betriebsvermoegen .question-list--immo-bv div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--immobilien-betriebsvermoegen .question-list--immo-bv div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--immobilien-betriebsvermoegen .service-card-grid--long .service-card {
  min-height: 350px;
}

.service-page--immobilien-betriebsvermoegen .risk-card-grid .service-card {
  min-height: 245px;
}

.service-page--immobilien-betriebsvermoegen .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--immobilien-betriebsvermoegen .service-target-grid--six article {
  min-height: 210px;
}

.service-page--immobilien-betriebsvermoegen .service-process-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-page--immobilien-betriebsvermoegen .service-process-grid--five article {
  min-height: 290px;
}

.service-page--immobilien-betriebsvermoegen .related-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 16% 16%, rgba(184,135,59,.08), transparent 23%), linear-gradient(180deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--immobilien-betriebsvermoegen .related-panel h2 {
  margin-bottom: 1rem;
}

.service-page--immobilien-betriebsvermoegen .related-panel p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--immobilien-betriebsvermoegen .link-list-panel {
  margin: 0;
}

.service-page--immobilien-betriebsvermoegen .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .service-page--immobilien-betriebsvermoegen .service-process-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-page--immobilien-betriebsvermoegen .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--immobilien-betriebsvermoegen .hero-copy {
    width: min(530px, 60%);
  }

  .service-page--immobilien-betriebsvermoegen .service-target-grid--six,
  .service-page--immobilien-betriebsvermoegen .related-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--immobilien-betriebsvermoegen .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--immobilien-betriebsvermoegen .hero-banner picture,
  .service-page--immobilien-betriebsvermoegen .hero-banner img {
    height: auto;
  }

  .service-page--immobilien-betriebsvermoegen .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--immobilien-betriebsvermoegen .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--immobilien-betriebsvermoegen .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--immobilien-betriebsvermoegen .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--immobilien-betriebsvermoegen .service-target-grid--six,
  .service-page--immobilien-betriebsvermoegen .service-process-grid--five {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus immobilien-gbr-grundstuecksgesellschaften.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Immobilien-GbR und Grundstücksgesellschaften
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.9vw, 2.12rem);
  line-height: 1.08;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .question-list--gbr div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .question-list--gbr div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet picture,
.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-card {
  min-width: 0;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-card h3,
.service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid h3,
.service-page--immobilien-gbr-grundstuecksgesellschaften .faq-list summary {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair .media-card {
  height: 100%;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.6rem, 5vw, 3.8rem);
  align-items: start;
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.11), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid h2 {
  max-width: 620px;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links {
  display: grid;
  gap: .8rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .92rem 1.05rem;
  border: 1px solid rgba(13,41,72,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.35;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links a::after {
  content: "→";
  color: var(--brass);
  font-weight: 900;
  flex: 0 0 auto;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links a:hover {
  color: var(--navy);
  border-color: rgba(184,135,59,.36);
  background: #fff;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid--six,
  .service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair,
  .service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid {
    grid-template-columns: 1fr;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair img {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 760px) {
  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner picture,
  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner img {
    height: auto;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus immobilienverkauf-private-veraeusserungsgeschaefte.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Immobilienverkauf / private Veräußerungsgeschäfte
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy h1 {
  max-width: 26ch;
  font-size: clamp(1.38rem, 1.88vw, 2.08rem);
  line-height: 1.08;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet picture,
.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .question-list--immobilienverkauf {
  align-items: stretch;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .question-list--immobilienverkauf div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .question-list--immobilienverkauf div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-card {
  min-height: 310px;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .faq-list details p {
  line-height: 1.7;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .quote-panel p {
  color: var(--navy);
}

@media (max-width: 1080px) {
  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner picture,
  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner img {
    height: auto;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.7rem, 5.8vw, 2.15rem);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus impressum.css zentralisiert ===== */
/* ======================================================
   Impressum – alternative, ruhigere Gestaltung
   - nutzt den zentralen Website-Master
   - Header/Footer/Logo bleiben unberührt
   - alle Regeln sind auf .service-page--impressum beschränkt
====================================================== */

.service-page--impressum .hero-banner--impressum {
  height: clamp(500px, 50vw, 650px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--impressum .hero-banner--impressum picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--impressum .hero-banner--impressum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.service-page--impressum .hero-banner--impressum::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(247,242,234,.82) 0%,
    rgba(247,242,234,.66) 30%,
    rgba(247,242,234,.28) 55%,
    rgba(247,242,234,0) 78%);
}

.service-page--impressum .hero-copy {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3.35rem);
  top: 50%;
  width: min(530px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--impressum .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--impressum .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(1.7rem, 2.25vw, 2.45rem);
  line-height: 1.08;
}

.service-page--impressum .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.9rem, .94vw, 1rem);
  line-height: 1.58;
}

.service-page--impressum .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--impressum .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

/* Zusammenhängende Hauptfläche statt vieler isolierter Blöcke */
.service-page--impressum .legal-identity-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 1.8rem);
  align-items: start;
}

.service-page--impressum .legal-identity-panel,
.service-page--impressum .legal-document,
.service-page--impressum .legal-continuous-sheet {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-soft);
}

.service-page--impressum .legal-identity-panel {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background:
    radial-gradient(circle at 84% 16%, rgba(184,135,59,.10), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.service-page--impressum .legal-identity-panel h2 {
  margin-bottom: .25rem;
  font-size: clamp(2rem, 2.75vw, 2.65rem);
}

.service-page--impressum .identity-subline {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-weight: 800;
  letter-spacing: .04em;
}

.service-page--impressum address {
  margin: 0 0 1.15rem;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.7;
}

.service-page--impressum .identity-links {
  display: grid;
  gap: .72rem;
}

.service-page--impressum .identity-links li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: .65rem;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 700;
}

.service-page--impressum .identity-links svg {
  width: 19px;
  height: 19px;
  color: var(--brass);
}

.service-page--impressum .identity-links a {
  overflow-wrap: anywhere;
}

.service-page--impressum .identity-note {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(184,135,59,.18);
  border-radius: 18px;
  background: #fffaf3;
}

.service-page--impressum .identity-note span,
.service-page--impressum .identity-note strong {
  display: block;
}

.service-page--impressum .identity-note span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.service-page--impressum .identity-note strong {
  margin-top: .2rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.service-page--impressum .legal-document {
  overflow: hidden;
}

.service-page--impressum .legal-document-header,
.service-page--impressum .legal-document-section,
.service-page--impressum .legal-profession-grid {
  padding: clamp(1.45rem, 3vw, 2.25rem);
}

.service-page--impressum .legal-document-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(251,248,242,.92)),
    radial-gradient(circle at 88% 8%, rgba(184,135,59,.13), transparent 24%);
}

.service-page--impressum .legal-document-header h2,
.service-page--impressum .legal-row-content h2,
.service-page--impressum .legal-editorial-copy h2 {
  margin-bottom: 1rem;
}

.service-page--impressum .legal-document-section {
  border-top: 1px solid var(--line);
}

.service-page--impressum .legal-document-section h3,
.service-page--impressum .legal-profession-grid h3 {
  margin-bottom: .8rem;
}

.service-page--impressum .legal-keyline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.2rem;
}

.service-page--impressum .legal-keyline span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: .9rem 1rem;
  border: 1px solid rgba(13,41,72,.08);
  border-radius: 16px;
  background: rgba(13,41,72,.035);
  color: var(--ink-soft);
  font-weight: 700;
}

.service-page--impressum .legal-document-section--image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: clamp(1.2rem, 4vw, 2.4rem);
  align-items: center;
}

.service-page--impressum .legal-document-section--image figure,
.service-page--impressum .legal-image-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f1e8dc;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-page--impressum .legal-document-section--image img,
.service-page--impressum .legal-image-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.service-page--impressum .legal-profession-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-page--impressum .legal-profession-grid article {
  min-width: 0;
  padding-right: clamp(1rem, 3vw, 2rem);
}

.service-page--impressum .legal-profession-grid article + article {
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: 0;
  border-left: 1px solid var(--line);
}

.service-page--impressum .legal-profession-grid h4 {
  margin-top: 1rem;
  margin-bottom: .65rem;
}

.service-page--impressum .legal-link-list {
  display: grid;
  gap: .52rem;
  margin-top: .7rem;
}

.service-page--impressum .legal-link-list a {
  display: inline-flex;
  gap: .45rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.service-page--impressum .legal-link-list a::before {
  content: "›";
  color: var(--brass);
  font-weight: 900;
}

/* Editorialer Mittelteil mit zusammenhängendem Bildband */
.service-page--impressum .legal-editorial-section {
  overflow: hidden;
}

.service-page--impressum .legal-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

.service-page--impressum .legal-editorial-copy {
  max-width: 680px;
}

.service-page--impressum .legal-image-stack {
  display: grid;
  grid-template-columns: .95fr .72fr;
  grid-template-rows: auto auto;
  gap: .9rem;
}

.service-page--impressum .legal-image-stack .legal-stack-large {
  grid-row: span 2;
}

.service-page--impressum .legal-image-stack img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.15 / 1;
}

.service-page--impressum .legal-stack-large img {
  aspect-ratio: 1 / 1.42;
}

/* Fortlaufende Rechtstexte als ein Dokument */
.service-page--impressum .legal-continuous-sheet {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.service-page--impressum .legal-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(1.45rem, 3vw, 2.3rem);
}

.service-page--impressum .legal-row + .legal-row {
  border-top: 1px solid var(--line);
}

.service-page--impressum .legal-row-label {
  color: var(--brass);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: "Inter", system-ui, sans-serif;
}

.service-page--impressum .legal-row-content p + p {
  margin-top: 1rem;
}

.service-page--impressum .legal-row--cta {
  background: rgba(13,41,72,.035);
}

.service-page--impressum .legal-row--cta .btn {
  margin-top: 1.2rem;
}

.service-page--impressum .legal-cta-box {
  background: radial-gradient(circle at 12% 22%, rgba(184,135,59,.15), transparent 26%), linear-gradient(135deg, #123862 0%, #0d2948 60%, #0a213b 100%);
}

@media (max-width: 1080px) {
  .service-page--impressum .hero-banner--impressum {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--impressum .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--impressum .legal-identity-shell,
  .service-page--impressum .legal-document-section--image,
  .service-page--impressum .legal-editorial-grid {
    grid-template-columns: 1fr;
  }

  .service-page--impressum .legal-identity-panel {
    position: static;
  }

  .service-page--impressum .legal-profession-grid {
    grid-template-columns: 1fr;
  }

  .service-page--impressum .legal-profession-grid article {
    padding-right: 0;
  }

  .service-page--impressum .legal-profession-grid article + article {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-page--impressum .legal-keyline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--impressum .hero-banner--impressum {
    height: auto;
    display: grid;
  }

  .service-page--impressum .hero-banner--impressum::after {
    background: linear-gradient(180deg, rgba(247,242,234,.72), rgba(247,242,234,.10));
  }

  .service-page--impressum .hero-banner--impressum picture,
  .service-page--impressum .hero-banner--impressum img {
    height: auto;
  }

  .service-page--impressum .hero-banner--impressum img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--impressum .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--impressum .hero-card {
    background: rgba(255,255,255,.92);
  }

  .service-page--impressum .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.85rem, 6.4vw, 2.35rem);
  }

  .service-page--impressum .legal-document-header,
  .service-page--impressum .legal-document-section,
  .service-page--impressum .legal-profession-grid,
  .service-page--impressum .legal-identity-panel,
  .service-page--impressum .legal-row {
    padding: 1.25rem;
  }

  .service-page--impressum .legal-image-stack {
    grid-template-columns: 1fr;
  }

  .service-page--impressum .legal-image-stack .legal-stack-large {
    grid-row: auto;
  }

  .service-page--impressum .legal-image-stack img,
  .service-page--impressum .legal-stack-large img {
    aspect-ratio: auto;
    height: auto;
  }

  .service-page--impressum .legal-row {
    grid-template-columns: 1fr;
    gap: .6rem;
  }
}

/* ===== Aus jahresabschluss-steuererklaerung-buchfuehrung.css zentralisiert ===== */
/* ======================================================
   Unterseite Steuerberaterhaftung / Jahresabschluss, Steuererklärung & Buchführung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--haftung-jahresabschluss .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--haftung-jahresabschluss .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--haftung-jahresabschluss .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--haftung-jahresabschluss .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(640px, 50%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--haftung-jahresabschluss .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--haftung-jahresabschluss .hero-copy h1 {
  max-width: 25ch;
  font-size: clamp(1.36rem, 1.76vw, 2rem);
  line-height: 1.08;
}

.service-page--haftung-jahresabschluss .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--haftung-jahresabschluss .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--haftung-jahresabschluss .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--haftung-jahresabschluss .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--haftung-jahresabschluss .media-card--quiet picture,
.service-page--haftung-jahresabschluss .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--haftung-jahresabschluss .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--haftung-jahresabschluss .abschluss-card-grid .service-card {
  min-height: 330px;
}

.service-page--haftung-jahresabschluss .abschluss-card-grid .service-card p + p {
  margin-top: .75rem;
}

.service-page--haftung-jahresabschluss .question-list--abschluss div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--haftung-jahresabschluss .question-list--abschluss div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--haftung-jahresabschluss .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--haftung-jahresabschluss .service-target-grid--six article {
  min-height: 230px;
}

.service-page--haftung-jahresabschluss .abschluss-target-grid h3 {
  hyphens: auto;
}

.service-page--haftung-jahresabschluss .section-route {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--haftung-jahresabschluss .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--haftung-jahresabschluss .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--haftung-jahresabschluss .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--haftung-jahresabschluss .documents-list {
  margin-top: 1.4rem;
}

.service-page--haftung-jahresabschluss .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--haftung-jahresabschluss .service-process-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.service-page--haftung-jahresabschluss .service-process-grid--six article {
  min-height: 315px;
}

.service-page--haftung-jahresabschluss .related-grid .service-card {
  min-height: 285px;
}

.service-page--haftung-jahresabschluss .related-grid .text-link {
  margin-top: auto;
  padding-top: 1rem;
}

.service-page--haftung-jahresabschluss .faq-list details p {
  line-height: 1.7;
}

.service-page--haftung-jahresabschluss .text-link {
  align-self: flex-start;
  margin-top: 1.1rem;
}

@media (max-width: 1080px) {
  .service-page--haftung-jahresabschluss .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--haftung-jahresabschluss .hero-copy {
    width: min(560px, 64%);
  }

  .service-page--haftung-jahresabschluss .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--haftung-jahresabschluss .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--haftung-jahresabschluss .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--haftung-jahresabschluss .hero-banner picture,
  .service-page--haftung-jahresabschluss .hero-banner img {
    height: auto;
  }

  .service-page--haftung-jahresabschluss .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--haftung-jahresabschluss .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--haftung-jahresabschluss .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--haftung-jahresabschluss .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.65rem, 5.75vw, 2.16rem);
  }

  .service-page--haftung-jahresabschluss .hero-copy .btn {
    width: 100%;
  }

  .service-page--haftung-jahresabschluss .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus jahresabschluss.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Jahresabschluss
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--jahresabschluss .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--jahresabschluss .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--jahresabschluss .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--jahresabschluss .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--jahresabschluss .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .69);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--jahresabschluss .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.18rem);
  line-height: 1.08;
}

.service-page--jahresabschluss .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .99rem);
  line-height: 1.55;
}

.service-page--jahresabschluss .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--jahresabschluss .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--jahresabschluss .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--jahresabschluss .media-card--quiet picture,
.service-page--jahresabschluss .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--jahresabschluss .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--jahresabschluss .question-list--jahresabschluss div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--jahresabschluss .question-list--jahresabschluss div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--jahresabschluss .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--jahresabschluss .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--jahresabschluss .section-records {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--jahresabschluss .records-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 15% 18%, rgba(184,135,59,.11), transparent 26%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--jahresabschluss .records-panel h2 {
  max-width: 720px;
}

.service-page--jahresabschluss .records-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--jahresabschluss .records-panel .media-card {
  box-shadow: none;
}

.service-page--jahresabschluss .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--jahresabschluss .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--jahresabschluss .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--jahresabschluss .service-target-grid--six,
  .service-page--jahresabschluss .records-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--jahresabschluss .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--jahresabschluss .hero-banner picture,
  .service-page--jahresabschluss .hero-banner img {
    height: auto;
  }

  .service-page--jahresabschluss .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--jahresabschluss .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--jahresabschluss .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--jahresabschluss .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--jahresabschluss .service-target-grid--six,
  .service-page--jahresabschluss .records-panel {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus kontakt.css zentralisiert ===== */
/* ======================================================
   Kontaktseite
   nutzt den zentralen Leistungsseiten-Master und ergänzt
   ausschließlich seitenbezogene Regeln.
====================================================== */

/* Bannerhöhe aus dem Leistungsseiten-Template übernommen. */
.service-page--kontakt .hero-banner {
  height: clamp(480px, 50vw, 640px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--kontakt .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--kontakt .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--kontakt .hero-copy {
  width: min(560px, 44%);
}

.service-page--kontakt .hero-card {
  background: rgba(255, 255, 255, .64);
  border-color: rgba(255, 255, 255, .76);
  backdrop-filter: blur(8px);
}

.service-page--kontakt .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 2.25vw, 2.48rem);
}

.service-page--kontakt .quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-page--kontakt .quick-contact-card {
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--kontakt .quick-contact-card h3 {
  margin-bottom: .65rem;
}

.service-page--kontakt .quick-contact-card p,
.service-page--kontakt .quick-contact-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.service-page--kontakt .quick-contact-card a {
  color: var(--navy);
  font-weight: 800;
}

.service-page--kontakt .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 6vw, 4.4rem);
  align-items: start;
}

.service-page--kontakt .contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-deep);
}

.service-page--kontakt .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-page--kontakt .form-row {
  display: grid;
  gap: .46rem;
}

.service-page--kontakt .form-row--full,
.service-page--kontakt .form-row--checkbox,
.service-page--kontakt .form-actions {
  grid-column: 1 / -1;
}

.service-page--kontakt label {
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 800;
}

.service-page--kontakt input,
.service-page--kontakt select,
.service-page--kontakt textarea {
  width: 100%;
  min-height: 48px;
  padding: .8rem .9rem;
  border: 1px solid rgba(13,41,72,.15);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.service-page--kontakt textarea {
  min-height: 170px;
  resize: vertical;
}

.service-page--kontakt input:focus,
.service-page--kontakt select:focus,
.service-page--kontakt textarea:focus {
  border-color: rgba(184,135,59,.65);
  box-shadow: 0 0 0 4px rgba(184,135,59,.12);
}

.service-page--kontakt .form-row--checkbox label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.55;
}

.service-page--kontakt .form-row--checkbox input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: .18rem;
  accent-color: var(--navy);
}

.service-page--kontakt .form-note {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}

.service-page--kontakt .contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.service-page--kontakt .contact-info-list {
  display: grid;
  gap: .85rem;
  margin-top: 1.65rem;
}

.service-page--kontakt .contact-info-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  color: var(--ink-soft);
}

.service-page--kontakt .contact-info-list li::before {
  position: absolute;
  left: 1.05rem;
  top: 1.05rem;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,135,59,.45);
  border-radius: 50%;
  color: var(--brass);
  content: "✓";
  font-size: .72rem;
  font-weight: 900;
}

.service-page--kontakt .image-stack {
  display: grid;
  gap: 1rem;
}

.service-page--kontakt .image-stack .media-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--kontakt .address-panel {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--kontakt .address-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--kontakt .address-card address {
  margin: .8rem 0 1.1rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}

.service-page--kontakt .address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}

.service-page--kontakt .question-list--kontakt div {
  min-height: 86px;
  display: flex;
  align-items: center;
}

.service-page--kontakt .question-list--kontakt div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--kontakt .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--kontakt .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

@media (max-width: 1080px) {
  .service-page--kontakt .hero-banner {
    height: clamp(430px, 56vw, 560px);
  }

  .service-page--kontakt .hero-copy {
    width: min(500px, 58%);
  }

  .service-page--kontakt .quick-contact-grid,
  .service-page--kontakt .contact-layout,
  .service-page--kontakt .address-panel {
    grid-template-columns: 1fr;
  }

  .service-page--kontakt .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--kontakt .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--kontakt .hero-banner picture,
  .service-page--kontakt .hero-banner img {
    height: auto;
  }

  .service-page--kontakt .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--kontakt .hero-copy {
    width: auto;
  }

  .service-page--kontakt .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--kontakt .form-grid,
  .service-page--kontakt .quick-contact-grid,
  .service-page--kontakt .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--kontakt .address-actions .btn {
    width: 100%;
  }
}

.service-page--kontakt .intro-panel address {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}

/* ===== Aus lohnabrechnung-baulohn.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Lohnabrechnung / Baulohn
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--lohnabrechnung-baulohn .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--lohnabrechnung-baulohn .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--lohnabrechnung-baulohn .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--lohnabrechnung-baulohn .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--lohnabrechnung-baulohn .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--lohnabrechnung-baulohn .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--lohnabrechnung-baulohn .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--lohnabrechnung-baulohn .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--lohnabrechnung-baulohn .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--lohnabrechnung-baulohn .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--lohnabrechnung-baulohn .media-card--quiet picture,
.service-page--lohnabrechnung-baulohn .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--lohnabrechnung-baulohn .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--lohnabrechnung-baulohn .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--lohnabrechnung-baulohn .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--lohnabrechnung-baulohn .scope-panel h2 {
  max-width: 520px;
}

.service-page--lohnabrechnung-baulohn .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--lohnabrechnung-baulohn .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--lohnabrechnung-baulohn .service-target-grid--six article {
  min-height: 220px;
}

.service-page--lohnabrechnung-baulohn .question-list--lohn div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--lohnabrechnung-baulohn .question-list--lohn div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--lohnabrechnung-baulohn .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--lohnabrechnung-baulohn .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--lohnabrechnung-baulohn .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--lohnabrechnung-baulohn .scope-panel {
    grid-template-columns: 1fr;
  }

  .service-page--lohnabrechnung-baulohn .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--lohnabrechnung-baulohn .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--lohnabrechnung-baulohn .hero-banner picture,
  .service-page--lohnabrechnung-baulohn .hero-banner img {
    height: auto;
  }

  .service-page--lohnabrechnung-baulohn .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--lohnabrechnung-baulohn .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--lohnabrechnung-baulohn .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--lohnabrechnung-baulohn .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--lohnabrechnung-baulohn .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus rechtsanwalt-koeln.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsanwalt Köln
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--rechtsanwalt-koeln .hero-banner {
  height: clamp(520px, 50vw, 680px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-koeln .hero-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg,
    rgba(247,242,234,.86) 0%,
    rgba(247,242,234,.70) 28%,
    rgba(247,242,234,.34) 48%,
    rgba(247,242,234,.08) 70%,
    rgba(247,242,234,0) 100%);
}

.service-page--rechtsanwalt-koeln .hero-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-page--rechtsanwalt-koeln .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.service-page--rechtsanwalt-koeln .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--rechtsanwalt-koeln .hero-card {
  padding: clamp(1.1rem, 2.2vw, 1.75rem) clamp(1.15rem, 2.45vw, 1.95rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(13, 41, 72, .12);
}

.service-page--rechtsanwalt-koeln .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.55rem, 2.05vw, 2.28rem);
  line-height: 1.08;
}

.service-page--rechtsanwalt-koeln .hero-copy .lead {
  margin-top: .82rem;
  font-size: clamp(.89rem, .96vw, 1rem);
  line-height: 1.58;
}

.service-page--rechtsanwalt-koeln .hero-copy .button-row {
  gap: .7rem;
  margin-top: 1.15rem;
}

.service-page--rechtsanwalt-koeln .hero-copy .btn {
  padding: .72rem .96rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--rechtsanwalt-koeln .question-list--rechtsanwalt {
  align-items: stretch;
}

.service-page--rechtsanwalt-koeln .question-list--rechtsanwalt div {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--rechtsanwalt-koeln .question-list--rechtsanwalt div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--rechtsanwalt-koeln .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-koeln .media-card--quiet picture,
.service-page--rechtsanwalt-koeln .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--rechtsanwalt-koeln .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--rechtsanwalt-koeln .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--rechtsanwalt-koeln .service-target-grid--six article {
  min-height: 210px;
}

.service-page--rechtsanwalt-koeln .law-image-band {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
}

.service-page--rechtsanwalt-koeln .law-image-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.service-page--rechtsanwalt-koeln .law-image-duo .media-card img {
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.service-page--rechtsanwalt-koeln .law-note-panel {
  padding: clamp(1.75rem, 4vw, 2.65rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsanwalt-koeln .law-note-panel h2 {
  margin-bottom: 1.15rem;
}

.service-page--rechtsanwalt-koeln .text-link {
  align-self: flex-start;
}

.service-page--rechtsanwalt-koeln .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--rechtsanwalt-koeln .faq-list details p {
  line-height: 1.7;
}

.service-page--rechtsanwalt-koeln .cta-box--with-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(200px, 310px);
  gap: clamp(1.2rem, 4vw, 2.4rem);
  overflow: hidden;
}

.service-page--rechtsanwalt-koeln .cta-box--with-image figure {
  align-self: stretch;
  min-height: 180px;
  margin: -1.1rem -1.1rem -1.1rem 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
}

.service-page--rechtsanwalt-koeln .cta-box--with-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

@media (max-width: 1080px) {
  .service-page--rechtsanwalt-koeln .hero-banner {
    height: clamp(440px, 58vw, 590px);
  }

  .service-page--rechtsanwalt-koeln .hero-copy {
    width: min(530px, 62%);
  }

  .service-page--rechtsanwalt-koeln .law-image-band,
  .service-page--rechtsanwalt-koeln .cta-box--with-image {
    grid-template-columns: 1fr;
  }

  .service-page--rechtsanwalt-koeln .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--rechtsanwalt-koeln .cta-box--with-image figure {
    min-height: 220px;
    margin: 0;
  }
}

@media (max-width: 760px) {
  .service-page--rechtsanwalt-koeln .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--rechtsanwalt-koeln .hero-banner::after {
    display: none;
  }

  .service-page--rechtsanwalt-koeln .hero-banner picture,
  .service-page--rechtsanwalt-koeln .hero-banner img {
    height: auto;
  }

  .service-page--rechtsanwalt-koeln .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--rechtsanwalt-koeln .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--rechtsanwalt-koeln .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--rechtsanwalt-koeln .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--rechtsanwalt-koeln .service-target-grid--six,
  .service-page--rechtsanwalt-koeln .law-image-duo {
    grid-template-columns: 1fr;
  }

  .service-page--rechtsanwalt-koeln .law-image-duo .media-card img {
    height: auto;
    object-fit: contain;
  }
}

/* ===== Aus rechtsanwalt-steuerrecht.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsanwalt im Steuerrecht
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--rechtsanwalt-steuerrecht .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-steuerrecht .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--rechtsanwalt-steuerrecht .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(575px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--rechtsanwalt-steuerrecht .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--rechtsanwalt-steuerrecht .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.18rem);
  line-height: 1.08;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--rechtsanwalt-steuerrecht .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-steuerrecht .media-card--quiet picture,
.service-page--rechtsanwalt-steuerrecht .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--rechtsanwalt-steuerrecht .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--rechtsanwalt-steuerrecht .question-list--steuerrecht div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--rechtsanwalt-steuerrecht .question-list--steuerrecht div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--rechtsanwalt-steuerrecht .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--rechtsanwalt-steuerrecht .service-target-grid--six article {
  min-height: 230px;
}

.service-page--rechtsanwalt-steuerrecht .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--rechtsanwalt-steuerrecht .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--rechtsanwalt-steuerrecht .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsanwalt-steuerrecht .scope-panel h2 {
  max-width: 540px;
}

.service-page--rechtsanwalt-steuerrecht .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--rechtsanwalt-steuerrecht .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--rechtsanwalt-steuerrecht .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--rechtsanwalt-steuerrecht .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--rechtsanwalt-steuerrecht .hero-copy {
    width: min(530px, 62%);
  }

  .service-page--rechtsanwalt-steuerrecht .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--rechtsanwalt-steuerrecht .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--rechtsanwalt-steuerrecht .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-banner picture,
  .service-page--rechtsanwalt-steuerrecht .hero-banner img {
    height: auto;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--rechtsanwalt-steuerrecht .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--rechtsanwalt-steuerrecht .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus rechtsformwahl.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsformwahl
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--rechtsformwahl .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsformwahl .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--rechtsformwahl .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--rechtsformwahl .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--rechtsformwahl .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--rechtsformwahl .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--rechtsformwahl .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--rechtsformwahl .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--rechtsformwahl .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--rechtsformwahl .question-list--rechtsformwahl {
  align-items: stretch;
}

.service-page--rechtsformwahl .question-list--rechtsformwahl div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--rechtsformwahl .question-list--rechtsformwahl div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--rechtsformwahl .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsformwahl .media-card--quiet picture,
.service-page--rechtsformwahl .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--rechtsformwahl .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--rechtsformwahl .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--rechtsformwahl .service-target-grid--six article {
  min-height: 210px;
}

.service-page--rechtsformwahl .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2.2rem;
}

.service-page--rechtsformwahl .comparison-card {
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsformwahl .comparison-card h3 {
  margin-bottom: .75rem;
}

.service-page--rechtsformwahl .comparison-card p {
  color: var(--muted);
}

.service-page--rechtsformwahl .decision-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsformwahl .decision-panel h2 {
  max-width: 520px;
}

.service-page--rechtsformwahl .decision-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--rechtsformwahl .decision-panel p + p {
  margin-top: 1rem;
}

.service-page--rechtsformwahl .text-link {
  align-self: flex-start;
}

.service-page--rechtsformwahl .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--rechtsformwahl .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--rechtsformwahl .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--rechtsformwahl .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--rechtsformwahl .service-target-grid--six,
  .service-page--rechtsformwahl .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--rechtsformwahl .decision-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--rechtsformwahl .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--rechtsformwahl .hero-banner picture,
  .service-page--rechtsformwahl .hero-banner img {
    height: auto;
  }

  .service-page--rechtsformwahl .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--rechtsformwahl .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--rechtsformwahl .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--rechtsformwahl .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--rechtsformwahl .service-target-grid--six,
  .service-page--rechtsformwahl .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus steuerberater-koeln.css zentralisiert ===== */
/* ======================================================
   Lokale Hub-Seite: Steuerberater Köln
   Ergänzung zum zentralen Leistungsseiten-Master.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--steuerberater-koeln .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberater-koeln .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--steuerberater-koeln .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--steuerberater-koeln .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 45%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--steuerberater-koeln .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--steuerberater-koeln .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 2.25vw, 2.45rem);
  line-height: 1.08;
}

.service-page--steuerberater-koeln .hero-copy .lead {
  margin-top: .82rem;
  font-size: clamp(.9rem, .96vw, 1rem);
  line-height: 1.58;
}

.service-page--steuerberater-koeln .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--steuerberater-koeln .hero-copy .btn {
  padding: .72rem .96rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--steuerberater-koeln .local-benefit-grid {
  margin-top: 2.2rem;
}

.service-page--steuerberater-koeln .service-card--hub {
  min-height: 330px;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills,
.service-page--steuerberater-koeln .hub-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.15rem;
}

.service-page--steuerberater-koeln .link-pills a,
.service-page--steuerberater-koeln .hub-link-list a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .46rem .62rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 41, 72, .11);
  background: rgba(255, 255, 255, .68);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
}

.service-page--steuerberater-koeln .link-pills a::after,
.service-page--steuerberater-koeln .hub-link-list a::after {
  content: "→";
  color: var(--brass);
}

.service-page--steuerberater-koeln .service-card-emphasis .link-pills a {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.10);
  color: #fff;
}

.service-page--steuerberater-koeln .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberater-koeln .media-card--quiet picture,
.service-page--steuerberater-koeln .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--steuerberater-koeln .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--steuerberater-koeln .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerberater-koeln .service-target-grid--six article {
  min-height: 230px;
}

.service-page--steuerberater-koeln .question-list--steuerberater div {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--steuerberater-koeln .question-list--steuerberater div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--steuerberater-koeln .care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-page--steuerberater-koeln .care-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberater-koeln .care-card h3 {
  margin-bottom: .7rem;
}

.service-page--steuerberater-koeln .care-card p {
  color: var(--muted);
}

.service-page--steuerberater-koeln .care-card .hub-link-list {
  margin-top: 1.3rem;
  padding-top: 0;
}

.service-page--steuerberater-koeln .image-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}

.service-page--steuerberater-koeln .image-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #efe5d6;
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberater-koeln .image-strip img {
  width: 100%;
  height: auto;
  display: block;
}

.service-page--steuerberater-koeln .area-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-page--steuerberater-koeln .area-link-card {
  padding: 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberater-koeln .area-link-card h3 {
  margin-bottom: .75rem;
}

.service-page--steuerberater-koeln .area-link-card .link-list {
  margin-bottom: 0;
}

.service-page--steuerberater-koeln .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--steuerberater-koeln .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--steuerberater-koeln .hero-copy {
    width: min(520px, 58%);
  }

  .service-page--steuerberater-koeln .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--steuerberater-koeln .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--steuerberater-koeln .hero-banner picture,
  .service-page--steuerberater-koeln .hero-banner img {
    height: auto;
  }

  .service-page--steuerberater-koeln .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--steuerberater-koeln .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--steuerberater-koeln .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--steuerberater-koeln .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--steuerberater-koeln .care-grid,
  .service-page--steuerberater-koeln .image-strip,
  .service-page--steuerberater-koeln .area-link-grid,
  .service-page--steuerberater-koeln .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   v2 Korrektur:
   - Vorteilsblöcke im Abschnitt „Steuerberatung in Köln“ gegen Textüberlauf gesichert
   - Links in den Leistungsblöcken ruhiger als einheitliche Listenzeilen statt Pill-Buttons
====================================================== */

.service-page--steuerberater-koeln .local-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.service-page--steuerberater-koeln .local-benefit-grid .mini-card {
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.service-page--steuerberater-koeln .local-benefit-grid .mini-card h3 {
  font-size: clamp(1.28rem, 1.55vw, 1.7rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-page--steuerberater-koeln .local-benefit-grid .mini-card p {
  overflow-wrap: anywhere;
}

.service-page--steuerberater-koeln .service-card--hub {
  min-width: 0;
  overflow: hidden;
}

.service-page--steuerberater-koeln .service-card--hub h3,
.service-page--steuerberater-koeln .service-card--hub p {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  margin-top: auto;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(13, 41, 72, .10);
}

.service-page--steuerberater-koeln .service-card--hub .link-pills::before {
  content: "Weiterführend";
  display: block;
  margin-bottom: .35rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: "Inter", system-ui, sans-serif;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  padding: .55rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 750;
  line-height: 1.35;
  box-shadow: none;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a + a {
  border-top: 1px solid rgba(13, 41, 72, .075);
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a::after {
  content: "→";
  flex: 0 0 auto;
  margin-left: 1rem;
  color: var(--brass);
  font-weight: 800;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a:hover {
  color: var(--navy-2);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills {
  border-top-color: rgba(255,255,255,.18);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills::before {
  color: rgba(255,255,255,.68);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills a {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.14);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills a + a {
  border-top: 1px solid rgba(255,255,255,.14);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills a::after {
  color: rgba(255,255,255,.82);
}

@media (max-width: 760px) {
  .service-page--steuerberater-koeln .local-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus steuerberaterhaftung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Steuerberaterhaftung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--steuerberaterhaftung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberaterhaftung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--steuerberaterhaftung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--steuerberaterhaftung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--steuerberaterhaftung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--steuerberaterhaftung .hero-copy h1 {
  max-width: 19ch;
  font-size: clamp(1.52rem, 2vw, 2.24rem);
  line-height: 1.08;
}

.service-page--steuerberaterhaftung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .94vw, .99rem);
  line-height: 1.55;
}

.service-page--steuerberaterhaftung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--steuerberaterhaftung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--steuerberaterhaftung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberaterhaftung .media-card--quiet picture,
.service-page--steuerberaterhaftung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--steuerberaterhaftung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--steuerberaterhaftung .question-list--haftung div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--steuerberaterhaftung .question-list--haftung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--steuerberaterhaftung .hub-card-grid .service-card {
  min-height: 360px;
}

.service-page--steuerberaterhaftung .service-card .text-link {
  margin-top: auto;
  padding-top: .95rem;
  align-self: flex-start;
}

.service-page--steuerberaterhaftung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerberaterhaftung .service-target-grid--six article {
  min-height: 215px;
}

.service-page--steuerberaterhaftung .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--steuerberaterhaftung .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberaterhaftung .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--steuerberaterhaftung .documents-list {
  margin-top: 1.4rem;
}

.service-page--steuerberaterhaftung .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--steuerberaterhaftung .service-process-grid--five {
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.service-page--steuerberaterhaftung .service-process-grid--five article {
  min-height: 285px;
}

.service-page--steuerberaterhaftung .section-tax-procedure {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--steuerberaterhaftung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--steuerberaterhaftung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--steuerberaterhaftung .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--steuerberaterhaftung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--steuerberaterhaftung .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--steuerberaterhaftung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--steuerberaterhaftung .hero-banner picture,
  .service-page--steuerberaterhaftung .hero-banner img {
    height: auto;
  }

  .service-page--steuerberaterhaftung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--steuerberaterhaftung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--steuerberaterhaftung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--steuerberaterhaftung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--steuerberaterhaftung .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--steuerberaterhaftung .hub-card-grid .service-card,
  .service-page--steuerberaterhaftung .service-process-grid--five article,
  .service-page--steuerberaterhaftung .service-target-grid--six article {
    min-height: 0;
  }

  .service-page--steuerberaterhaftung .documents-copy {
    padding: 1.45rem;
  }
}

/* ===== Aus steuerstrafrecht.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Steuerstrafrecht
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--steuerstrafrecht .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerstrafrecht .hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(247,242,234,.84) 0%,
    rgba(247,242,234,.66) 34%,
    rgba(247,242,234,.26) 58%,
    rgba(247,242,234,0) 84%);
  z-index: 1;
}

.service-page--steuerstrafrecht .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--steuerstrafrecht .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--steuerstrafrecht .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--steuerstrafrecht .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--steuerstrafrecht .hero-copy h1 {
  max-width: 22ch;
  font-size: clamp(1.45rem, 1.95vw, 2.18rem);
  line-height: 1.08;
}

.service-page--steuerstrafrecht .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--steuerstrafrecht .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--steuerstrafrecht .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--steuerstrafrecht .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerstrafrecht .media-card--quiet picture,
.service-page--steuerstrafrecht .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--steuerstrafrecht .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--steuerstrafrecht .question-list--steuerstrafrecht {
  align-items: stretch;
}

.service-page--steuerstrafrecht .question-list--steuerstrafrecht div {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--steuerstrafrecht .question-list--steuerstrafrecht div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--steuerstrafrecht .card-grid--steuerstrafrecht .service-card {
  min-height: 330px;
}

.service-page--steuerstrafrecht .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--steuerstrafrecht .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerstrafrecht .service-target-grid--six article {
  min-height: 220px;
}

.service-page--steuerstrafrecht .risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-page--steuerstrafrecht .risk-grid article {
  min-width: 0;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerstrafrecht .risk-grid h3 {
  margin-bottom: .75rem;
}

.service-page--steuerstrafrecht .risk-grid p {
  color: var(--muted);
}

.service-page--steuerstrafrecht .service-process-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerstrafrecht .service-process-grid--six article {
  min-height: 295px;
}

.service-page--steuerstrafrecht .faq-list details p {
  line-height: 1.7;
}

.service-page--steuerstrafrecht .cta-box {
  align-items: flex-start;
}

.service-page--steuerstrafrecht .cta-note {
  margin-top: 1rem;
  font-size: .98rem;
  color: rgba(255,255,255,.76) !important;
}

@media (max-width: 1080px) {
  .service-page--steuerstrafrecht .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--steuerstrafrecht .hero-copy {
    width: min(520px, 61%);
  }

  .service-page--steuerstrafrecht .service-target-grid--six,
  .service-page--steuerstrafrecht .risk-grid,
  .service-page--steuerstrafrecht .service-process-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--steuerstrafrecht .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--steuerstrafrecht .hero-banner::after {
    background: linear-gradient(180deg,
      rgba(247,242,234,.52) 0%,
      rgba(247,242,234,.18) 55%,
      rgba(247,242,234,0) 100%);
  }

  .service-page--steuerstrafrecht .hero-banner picture,
  .service-page--steuerstrafrecht .hero-banner img {
    height: auto;
  }

  .service-page--steuerstrafrecht .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--steuerstrafrecht .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--steuerstrafrecht .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--steuerstrafrecht .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--steuerstrafrecht .service-target-grid--six,
  .service-page--steuerstrafrecht .risk-grid,
  .service-page--steuerstrafrecht .service-process-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--steuerstrafrecht .question-list--steuerstrafrecht div {
    min-height: 0;
  }
}

/* ===== Aus ueber-uns.css zentralisiert ===== */
/* ======================================================
   Seite: Über uns
   - nutzt den zentralen Leistungsseiten-Master
   - alle Regeln bewusst seitenbezogen unter .service-page--ueber-uns
   - logo.css bleibt geschützt und wird zuletzt geladen
====================================================== */

.service-page--ueber-uns .hero-banner {
  height: auto;
  min-height: 0;
  display: block;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--ueber-uns .hero-banner picture,
.service-page--ueber-uns .hero-banner img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .hero-banner img {
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.service-page--ueber-uns .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--ueber-uns .hero-card {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--ueber-uns .hero-copy h1 {
  max-width: 21ch;
  font-size: clamp(1.45rem, 2.05vw, 2.18rem);
  line-height: 1.08;
}

.service-page--ueber-uns .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .94vw, .98rem);
  line-height: 1.55;
}

.service-page--ueber-uns .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--ueber-uns .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--ueber-uns .about-profile-card {
  padding: 0;
  overflow: hidden;
}

.service-page--ueber-uns .about-profile-card picture,
.service-page--ueber-uns .about-profile-card img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .about-profile-card img {
  height: auto;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--ueber-uns .about-profile-body {
  padding: 1.55rem;
}

.service-page--ueber-uns .about-profile-body h3 {
  margin-bottom: .35rem;
}

.service-page--ueber-uns .about-profile-body > p {
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.45;
}

.service-page--ueber-uns .about-fact-list {
  display: grid;
  gap: .72rem;
  margin-top: 1.25rem;
}

.service-page--ueber-uns .about-fact-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-page--ueber-uns .about-fact-list li::before {
  position: absolute;
  left: 0;
  top: .52em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.service-page--ueber-uns .service-card {
  min-height: 300px;
}

.service-page--ueber-uns .media-card--quiet,
.service-page--ueber-uns .about-gallery figure {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--ueber-uns .media-card--quiet picture,
.service-page--ueber-uns .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--ueber-uns .quote-panel p small {
  display: block;
  margin-top: .85rem;
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-page--ueber-uns .about-gallery {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 1.1rem;
  align-items: stretch;
}

.service-page--ueber-uns .about-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.service-page--ueber-uns .about-gallery picture,
.service-page--ueber-uns .about-gallery img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .about-gallery img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.service-page--ueber-uns .about-gallery .about-gallery-vertical img {
  object-fit: cover;
  object-position: center;
}

.service-page--ueber-uns .about-gallery-caption {
  padding: 1.25rem;
  background: rgba(255,255,255,.76);
  border-top: 1px solid var(--line);
}

.service-page--ueber-uns .about-gallery-caption h3 {
  margin-bottom: .35rem;
}

.service-page--ueber-uns .about-gallery-caption p {
  color: var(--muted);
}

.service-page--ueber-uns .question-list div {
  min-height: 86px;
  display: flex;
  align-items: center;
}

.service-page--ueber-uns .question-list div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--ueber-uns .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--ueber-uns .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--ueber-uns .service-card {
    min-height: 0;
  }

  .service-page--ueber-uns .about-gallery {
    grid-template-columns: 1fr;
  }

  .service-page--ueber-uns .about-gallery img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
}

@media (max-width: 760px) {
  .service-page--ueber-uns .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--ueber-uns .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--ueber-uns .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--ueber-uns .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--ueber-uns .about-profile-card {
    position: static;
  }
}

/* ===== Aus umwandlung-umstrukturierung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Umwandlung & Umstrukturierung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--umwandlung-umstrukturierung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--umwandlung-umstrukturierung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--umwandlung-umstrukturierung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--umwandlung-umstrukturierung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--umwandlung-umstrukturierung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--umwandlung-umstrukturierung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--umwandlung-umstrukturierung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--umwandlung-umstrukturierung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--umwandlung-umstrukturierung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--umwandlung-umstrukturierung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--umwandlung-umstrukturierung .media-card--quiet picture,
.service-page--umwandlung-umstrukturierung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--umwandlung-umstrukturierung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--umwandlung-umstrukturierung .question-list--umwandlung {
  align-items: stretch;
}

.service-page--umwandlung-umstrukturierung .question-list--umwandlung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--umwandlung-umstrukturierung .question-list--umwandlung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--umwandlung-umstrukturierung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--umwandlung-umstrukturierung .faq-list details p {
  line-height: 1.7;
}

.service-page--umwandlung-umstrukturierung .text-link {
  align-self: flex-start;
}

.service-page--umwandlung-umstrukturierung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--umwandlung-umstrukturierung .split-content p,
.service-page--umwandlung-umstrukturierung .feature-copy p:not(.section-kicker) {
  font-size: 1.03rem;
}

.service-page--umwandlung-umstrukturierung .service-process-grid article {
  min-height: 250px;
}

@media (max-width: 1080px) {
  .service-page--umwandlung-umstrukturierung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--umwandlung-umstrukturierung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--umwandlung-umstrukturierung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--umwandlung-umstrukturierung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--umwandlung-umstrukturierung .hero-banner picture,
  .service-page--umwandlung-umstrukturierung .hero-banner img {
    height: auto;
  }

  .service-page--umwandlung-umstrukturierung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--umwandlung-umstrukturierung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--umwandlung-umstrukturierung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--umwandlung-umstrukturierung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--umwandlung-umstrukturierung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus vermietung-verpachtung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Vermietung und Verpachtung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--vermietung-verpachtung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--vermietung-verpachtung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--vermietung-verpachtung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--vermietung-verpachtung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--vermietung-verpachtung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--vermietung-verpachtung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.92vw, 2.14rem);
  line-height: 1.08;
}

.service-page--vermietung-verpachtung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--vermietung-verpachtung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--vermietung-verpachtung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--vermietung-verpachtung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--vermietung-verpachtung .media-card--quiet picture,
.service-page--vermietung-verpachtung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--vermietung-verpachtung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--vermietung-verpachtung .question-list--vermietung {
  align-items: stretch;
}

.service-page--vermietung-verpachtung .question-list--vermietung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--vermietung-verpachtung .question-list--vermietung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--vermietung-verpachtung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--vermietung-verpachtung .service-target-grid--six article {
  min-height: 218px;
}

.service-page--vermietung-verpachtung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--vermietung-verpachtung .info-panel {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--vermietung-verpachtung .info-panel h2 {
  max-width: 540px;
}

.service-page--vermietung-verpachtung .info-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--vermietung-verpachtung .info-panel p + p {
  margin-top: 1rem;
}

.service-page--vermietung-verpachtung .key-list {
  display: grid;
  gap: .75rem;
  margin-top: 0;
}

.service-page--vermietung-verpachtung .key-list li {
  position: relative;
  padding: .88rem 1rem .88rem 2.45rem;
  border: 1px solid rgba(13,41,72,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  color: var(--ink-soft);
  font-weight: 600;
}

.service-page--vermietung-verpachtung .key-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brass);
  transform: translateY(-50%);
}

.service-page--vermietung-verpachtung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--vermietung-verpachtung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--vermietung-verpachtung .hero-copy {
    width: min(520px, 62%);
  }

  .service-page--vermietung-verpachtung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--vermietung-verpachtung .info-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--vermietung-verpachtung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--vermietung-verpachtung .hero-banner picture,
  .service-page--vermietung-verpachtung .hero-banner img {
    height: auto;
  }

  .service-page--vermietung-verpachtung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--vermietung-verpachtung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--vermietung-verpachtung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--vermietung-verpachtung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--vermietung-verpachtung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Inline-CSS aus blog.html zentralisiert 1 (auf body.article-page gekapselt) ===== */


    body.article-page {
      background: var(--ivory);
    }

    body.article-page .service-main .article-hero {
      padding: 1.6rem 0 4.8rem;
      background:
        linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
    }

    body.article-page .service-main .article-banner {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
      box-shadow: var(--shadow-deep);
    }

    body.article-page .service-main .article-banner picture,
body.article-page .service-main .article-banner img {
      width: 100%;
      display: block;
    }

    body.article-page .service-main .article-banner img {
      object-fit: contain;
      object-position: center;
      background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
    }

    body.article-page .service-main .article-overlay {
      position: absolute;
      left: clamp(1.5rem, 4vw, 3.5rem);
      bottom: clamp(1.5rem, 4vw, 3rem);
      width: min(720px, calc(100% - 3rem));
      z-index: 2;
    }

    body.article-page .service-main .article-card {
      padding: clamp(1.35rem, 2.8vw, 2rem);
      border-radius: 24px;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.7);
      box-shadow: 0 18px 44px rgba(13,41,72,.12);
    }

    body.article-page .service-main .article-eyebrow {
      margin-bottom: .85rem;
      color: var(--brass);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    body.article-page .service-main .article-overlay h1 {
      max-width: 18ch;
      font-size: clamp(2rem, 3vw, 3.1rem);
      line-height: 1.06;
    }

    body.article-page .service-main .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem;
      color: var(--ink-soft);
      font-size: .92rem;
      font-weight: 600;
    }

    body.article-page .service-main .article-wrapper {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }

    body.article-page .service-main .article-content {
      background: rgba(255,255,255,.78);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: clamp(2rem, 4vw, 3.25rem);
      box-shadow: var(--shadow-soft);
    }

    body.article-page .service-main .article-content h2 {
      margin-top: 3rem;
      margin-bottom: 1rem;
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    }

    body.article-page .service-main .article-content h3 {
      margin-top: 2rem;
      margin-bottom: .75rem;
      font-size: clamp(1.35rem, 2vw, 1.7rem);
    }

    body.article-page .service-main .article-content p {
      font-size: 1.03rem;
      color: var(--muted);
    }

    body.article-page .service-main .article-content ul {
      margin-top: 1rem;
      display: grid;
      gap: .8rem;
      padding-left: 1.2rem;
      list-style: disc;
    }

    body.article-page .service-main .article-content li {
      color: var(--muted);
    }

    body.article-page .service-main .article-sidebar {
      position: sticky;
      top: calc(var(--header-compact) + 28px);
      display: grid;
      gap: 1rem;
    }

    body.article-page .service-main .sidebar-card {
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.84);
      box-shadow: var(--shadow-soft);
    }

    body.article-page .service-main .sidebar-card h3 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    body.article-page .service-main .toc-list {
      display: grid;
      gap: .7rem;
    }

    body.article-page .service-main .toc-list a {
      color: var(--ink-soft);
      font-weight: 600;
    }

    body.article-page .service-main .toc-list a:hover {
      color: var(--navy);
    }

    body.article-page .service-main .author-box {
      display: grid;
      gap: .8rem;
    }

    body.article-page .service-main .author-label {
      color: var(--brass);
      font-size: .74rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 800;
    }

    body.article-page .service-main .quote-highlight {
      margin: 2.4rem 0;
      padding: 2rem;
      border-radius: 26px;
      background:
        linear-gradient(145deg, #fff, #fbf8f2);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    body.article-page .service-main .quote-highlight p {
      margin: 0;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(1.6rem, 2.4vw, 2.15rem);
      line-height: 1.25;
      color: var(--navy);
    }

    body.article-page .service-main .article-cta {
      margin-top: 4rem;
      padding: clamp(2rem, 4vw, 3rem);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at top left, rgba(184,135,59,.14), transparent 28%),
        linear-gradient(135deg, var(--navy), #0a213a);
      color: #fff;
      box-shadow: var(--shadow-deep);
    }

    body.article-page .service-main .article-cta h2,
body.article-page .service-main .article-cta p {
      color: #fff;
    }

    body.article-page .service-main .article-cta .btn {
      margin-top: 1.5rem;
      background: #fff;
      color: var(--navy);
      border-color: rgba(255,255,255,.72);
    }

    body.article-page .service-main .article-cta .btn:hover {
      background: var(--ivory);
    }

    @media (max-width: 1040px) {

      body.article-page .service-main .article-wrapper {
        grid-template-columns: 1fr;
      }

      body.article-page .service-main .article-sidebar {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 760px) {

      body.article-page .service-main .article-overlay {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        margin: -24px 14px 14px;
      }

      body.article-page .service-main .article-overlay h1 {
        max-width: none;
      }

      body.article-page .service-main .article-card {
        background: rgba(255,255,255,.9);
      }

      body.article-page .service-main .article-content {
        padding: 1.6rem;
      }
    }

/* ======================================================
   KORREKTUR: HERO-ABSTAND, SVG-DEFS, CTA-BUTTONS
   Stand: 2026-05-18
====================================================== */

body.service-page .service-main .svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

body.service-page .service-main .hero-page {
    padding-top: .65rem;
    padding-bottom: clamp(3.75rem, 6vw, 5rem);
}

body.service-page .service-main .breadcrumbs {
    margin-bottom: .8rem;
}

body.service-page .service-main .final-cta .cta-box > .btn,
body.service-page .service-main .final-cta .cta-box > a.btn,
body.service-page .service-main .cta-box > .btn,
body.service-page .service-main .cta-box > a.btn {
    white-space: nowrap;
    background: #ffffff;
    color: var(--navy);
    border-color: rgba(255,255,255,.9);
    box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

body.service-page .service-main .final-cta .cta-box > .btn:hover,
body.service-page .service-main .final-cta .cta-box > a.btn:hover,
body.service-page .service-main .cta-box > .btn:hover,
body.service-page .service-main .cta-box > a.btn:hover {
    background: #f7f2ea;
    color: var(--navy-2);
}

@media (max-width: 760px) {
    body.service-page .service-main .hero-page {
        padding-top: .55rem;
        padding-bottom: 3.5rem;
    }

    body.service-page .service-main .breadcrumbs {
        margin-bottom: .65rem;
    }

    body.service-page .service-main .cta-box > .btn,
    body.service-page .service-main .cta-box > a.btn {
        width: 100%;
    }
}
/* ======================================================
   HOTFIX V2: HEADERABSTAND + CTA-BUTTON AUF LEISTUNGSSEITEN
   Scope: nur WordPress-Leistungsseiten mit body.service-page
====================================================== */

body.service-page .service-main > svg.svg-defs,
body.service-page .service-main svg.svg-defs,
body.service-page .service-main .svg-defs {
    position: absolute !important;
    inline-size: 0 !important;
    block-size: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    line-height: 0 !important;
    pointer-events: none !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
}

body.service-page .service-main > .hero-page:first-of-type,
body.service-page .service-main > .svg-defs + .hero-page,
body.service-page .service-main .hero-page:first-of-type,
body.service-page .service-main .hero-page {
    padding-top: .35rem !important;
}

body.service-page .service-main .breadcrumbs {
    margin-top: 0 !important;
    margin-bottom: .65rem !important;
}

body.service-page .service-main .hero-banner {
    margin-top: 0 !important;
}

body.service-page .service-main .section.final-cta .container.cta-box > a.btn,
body.service-page .service-main .section.final-cta .cta-box > a.btn,
body.service-page .service-main .final-cta .cta-box > a.btn,
body.service-page .service-main .final-cta .cta-box a.btn:not(.btn-service-secondary),
body.service-page.service-page--umwandlung-umstrukturierung .service-main .final-cta .cta-box a.btn {
    white-space: nowrap !important;
    background: #ffffff !important;
    color: var(--navy) !important;
    border-color: rgba(255,255,255,.9) !important;
    box-shadow: 0 12px 26px rgba(0,0,0,.14) !important;
}

body.service-page .service-main .section.final-cta .container.cta-box > a.btn:hover,
body.service-page .service-main .section.final-cta .cta-box > a.btn:hover,
body.service-page .service-main .final-cta .cta-box > a.btn:hover,
body.service-page .service-main .final-cta .cta-box a.btn:not(.btn-service-secondary):hover,
body.service-page.service-page--umwandlung-umstrukturierung .service-main .final-cta .cta-box a.btn:hover {
    background: #f7f2ea !important;
    color: var(--navy-2) !important;
}

@media (max-width: 760px) {
    body.service-page .service-main > .hero-page:first-of-type,
    body.service-page .service-main > .svg-defs + .hero-page,
    body.service-page .service-main .hero-page:first-of-type,
    body.service-page .service-main .hero-page {
        padding-top: .3rem !important;
    }

    body.service-page .service-main .breadcrumbs {
        margin-bottom: .55rem !important;
    }

    body.service-page .service-main .final-cta .cta-box > a.btn,
    body.service-page .service-main .final-cta .cta-box a.btn:not(.btn-service-secondary) {
        width: 100% !important;
    }
}

/* ======================================================
   FEINSCHLIFF: LEGAL-SEITEN, HERO-TITEL, ÜBER-UNS-BANNER
   Stand: 2026-05-18

   Technische Layoutkorrekturen ohne Inhaltsänderungen:
   - kleinere Dokument-Überschriften auf Datenschutz/Impressum
   - Hero-H1 nutzt die volle Breite der Hero-Textkarte
   - Über-uns-Banner wird an das schmalere 1200x400-Bild angepasst
====================================================== */

/* Hero-Überschriften: keine künstliche Begrenzung auf wenige Zeichen. */
body.service-page .service-main .hero-copy h1 {
    max-width: none !important;
    width: auto !important;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
    text-wrap: balance;
}

/* Text innerhalb der Hero-Karte bleibt ruhig lesbar und definiert die Kartenbreite. */
body.service-page .service-main .hero-copy .lead {
    max-width: 64ch;
}

/* Datenschutz: nummerierte Dokumentüberschriften kleiner als normale Abschnitts-H2. */
body.service-page.service-page--datenschutz .service-main .legal-card h2 {
    margin-bottom: .85rem;
    font-size: clamp(1.28rem, 1.65vw, 1.62rem) !important;
    line-height: 1.18;
    letter-spacing: -.01em;
}

body.service-page.service-page--datenschutz .service-main .legal-card h3 {
    font-size: clamp(1.12rem, 1.35vw, 1.36rem);
    line-height: 1.18;
}

/* Impressum: Dokument- und Rechtstextüberschriften dezenter skalieren. */
body.service-page.service-page--impressum .service-main .legal-document-header h2,
body.service-page.service-page--impressum .service-main .legal-row-content h2,
body.service-page.service-page--impressum .service-main .legal-editorial-copy h2 {
    margin-bottom: .85rem;
    font-size: clamp(1.32rem, 1.75vw, 1.7rem) !important;
    line-height: 1.18;
    letter-spacing: -.01em;
}

body.service-page.service-page--impressum .service-main .legal-document-section h3,
body.service-page.service-page--impressum .service-main .legal-profession-grid h3 {
    font-size: clamp(1.16rem, 1.45vw, 1.45rem) !important;
    line-height: 1.18;
}

body.service-page.service-page--impressum .service-main .legal-profession-grid h4 {
    font-size: clamp(1rem, 1.12vw, 1.12rem);
    line-height: 1.25;
}

/* Über uns: Hero-Banner an das schmalere Kanzlei_Banner-Motiv 1200x400 annähern. */
body.service-page.service-page--ueber-uns .service-main .hero-banner {
    height: clamp(320px, 33vw, 420px) !important;
    min-height: 0 !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner picture {
    height: 100% !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center right !important;
}

@media (max-width: 1080px) {
    body.service-page .service-main .hero-copy {
        width: min(620px, 62%) !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: clamp(300px, 40vw, 380px) !important;
    }
}

@media (max-width: 760px) {
    body.service-page .service-main .hero-copy {
        width: auto !important;
        max-width: none !important;
    }

    body.service-page .service-main .hero-copy h1 {
        text-wrap: normal;
    }

    body.service-page.service-page--datenschutz .service-main .legal-card h2,
    body.service-page.service-page--impressum .service-main .legal-document-header h2,
    body.service-page.service-page--impressum .service-main .legal-row-content h2,
    body.service-page.service-page--impressum .service-main .legal-editorial-copy h2 {
        font-size: clamp(1.22rem, 5vw, 1.45rem) !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: auto !important;
        min-height: 0 !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner picture,
    body.service-page.service-page--ueber-uns .service-main .hero-banner img {
        height: auto !important;
    }
}
/* ======================================================
   Über uns: Bannerbild Besprechungsraum
   Stellt die Hero-Höhe wieder auf das ursprüngliche
   Leistungsseiten-Template zurück und lässt das neue
   16:9-Bild den Bannercontainer sauber füllen.
====================================================== */

body.service-page.service-page--ueber-uns .service-main .hero-banner {
    height: clamp(500px, 50vw, 660px) !important;
    min-height: 0 !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner picture,
body.service-page.service-page--ueber-uns .service-main .hero-banner img {
    width: 100% !important;
    height: 100% !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner img {
    object-fit: cover !important;
    object-position: center center !important;
}

@media (max-width: 1080px) {
    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: clamp(430px, 56vw, 580px) !important;
    }
}

@media (max-width: 760px) {
    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: auto !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner picture,
    body.service-page.service-page--ueber-uns .service-main .hero-banner img {
        height: auto !important;
    }
}
/* ======================================================
   Über uns: kleinere Kanzlei-Bilder
   Reduziert Kanzlei_2.jpg und Kanzlei_3.jpg harmonisch,
   ohne Inhalt oder Bildpfade zu verändern.
====================================================== */

body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-2 {
    max-width: min(360px, 100%) !important;
}

body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-3 {
    max-width: min(430px, 100%) !important;
}

body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-2 img,
body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-3 img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
}

@media (max-width: 760px) {
    body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-2,
    body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-3 {
        max-width: 100% !important;
    }
}
/* ======================================================
   Steuerberatung Unternehmen: Für wen wir arbeiten
   Abschnittsformatierung und Zielgruppen-Kacheln
   Sichtbarer Text bleibt unverändert.
====================================================== */

body.service-page.service-page--steuerberatung-unternehmen .service-main .dark-band {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f2e8dc 100%
        );
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .dark-band .section-heading.inverted h2 {
    color: var(--ink) !important;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .dark-band .section-heading.inverted p.section-kicker,
body.service-page.service-page--steuerberatung-unternehmen .service-main .dark-band .section-heading.inverted .section-kicker {
    color: var(--brass) !important;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    margin-top: 3rem;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid article {
    min-width: 0;
    min-height: 220px;
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 135, 59, .35);
    box-shadow: var(--shadow-deep);
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid h3 {
    margin-bottom: .85rem;
    color: var(--ink) !important;
    font-size: clamp(1.35rem, 1.8vw, 1.9rem);
    line-height: 1.1;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid p {
    color: var(--muted) !important;
    font-size: 1rem;
    line-height: 1.68;
}

@media (max-width: 1080px) {
    body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid {
        grid-template-columns: 1fr;
    }

    body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid article {
        min-height: 0;
        padding: 1.5rem;
    }
}
/* ======================================================
   service-pages.css
   Zentrales Layoutsystem fuer Leistungsseiten

   Grundlage: Referenzlayout „Laufende Steuerberatung“.
   Geltung: nur Seiten mit body.service-page.
   Keine Inhaltssteuerung, keine Inline-Styles, keine seitenindividuellen
   Sonderregeln ausser ueber eindeutige Body-Klassen.
====================================================== */

/* ======================================================
   BASE
====================================================== */

body.service-page .service-main {
    background: var(--ivory);
}

body.service-page .service-main + .site-footer {
    margin-top: 0;
}

body.service-page .section {
    padding:
        clamp(5rem, 8vw, 7rem)
        0;
}

body.service-page .section-heading {
    max-width: 940px;
    margin: 0 0 3rem;
}

body.service-page .section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

body.service-page .section-heading.narrow {
    max-width: 840px;
}

body.service-page .section-heading h2 {
    margin-bottom: 1rem;
}

body.service-page .section-heading p,
body.service-page .split-content p,
body.service-page .feature-copy p,
body.service-page .grid-intro p,
body.service-page .scope-panel p {
    color: var(--muted);
    font-size: 1.03rem;
}

body.service-page .section-kicker,
body.service-page .eyebrow {
    margin-bottom: .85rem;
    color: var(--brass);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.25;
    text-transform: uppercase;
}

body.service-page .lead {
    margin-top: .78rem;
    color: var(--ink-soft);
    font-size: clamp(.87rem, .92vw, .98rem);
    line-height: 1.55;
}

/* ======================================================
   SECTION HEADINGS / KICKER COLOR
   Abschnittsueberschriften auf Leistungsseiten
====================================================== */

body.service-page .service-main h2 {
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

body.service-page .service-main p.section-kicker,
body.service-page .service-main .section-kicker {
    color: var(--brass);
    font-size: clamp(.98rem, 1.05vw, 1.12rem);
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.25;
    text-transform: uppercase;
}

body.service-page .service-main .section-service-navy h2,
body.service-page .service-main .section-service-navy p.section-kicker,
body.service-page .service-main .section-service-navy .section-kicker,
body.service-page .service-main .section-navy h2,
body.service-page .service-main .section-navy p.section-kicker,
body.service-page .service-main .section-navy .section-kicker,
body.service-page .service-main .section-heading.inverted h2,
body.service-page .service-main .section-heading.inverted p.section-kicker,
body.service-page .service-main .section-heading.inverted .section-kicker,
body.service-page .service-main .cta-box h2,
body.service-page .service-main .cta-box p.section-kicker,
body.service-page .service-main .cta-box .section-kicker,
body.service-page .service-main .cta-panel h2,
body.service-page .service-main .cta-panel p.section-kicker,
body.service-page .service-main .cta-panel .section-kicker {
    color: #ffffff;
}

/* ======================================================
   SECTION RHYTHM
====================================================== */

body.service-page .hero-page {
    padding: 1.6rem 0 5rem;
    background:
        linear-gradient(
            180deg,
            var(--ivory) 0%,
            var(--ivory-2) 100%
        );
}

body.service-page .section-intro,
body.service-page .section.muted,
body.service-page .final-cta {
    background: #ffffff;
}

body.service-page .section-service-muted {
    background:
        linear-gradient(
            180deg,
            #f7f2ea 0%,
            #efe5d6 100%
        );
}

body.service-page .section-feature,
body.service-page .section-scope {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f2e8dc 100%
        );
}

body.service-page .internal-links-section {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f7f2ea 100%
        );
}

body.service-page .internal-links-section,
body.service-page .faq-section {
    position: relative;
}

body.service-page .internal-links-section::after,
body.service-page .faq-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 3rem));
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(184,135,59,0) 0%,
            rgba(184,135,59,.22) 20%,
            rgba(184,135,59,.32) 50%,
            rgba(184,135,59,.22) 80%,
            rgba(184,135,59,0) 100%
        );
}

/* ======================================================
   BREADCRUMBS
====================================================== */

body.service-page .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--muted);
    font-size: .9rem;
}

body.service-page .breadcrumbs a {
    color: var(--ink-soft);
    font-weight: 600;
}

body.service-page .breadcrumbs a:hover {
    color: var(--navy);
}

/* ======================================================
   HERO
====================================================== */

body.service-page .hero-banner {
    position: relative;
    overflow: hidden;
    height: clamp(500px, 50vw, 660px);
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #f1e8dc 0%,
            #f8f4ed 100%
        );
    box-shadow: var(--shadow-deep);
}

body.service-page .hero-banner picture {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

body.service-page .hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    background: transparent;
}

body.service-page .hero-copy {
    position: absolute;
    left: clamp(1.25rem, 4vw, 3.35rem);
    top: 50%;
    bottom: auto;
    width: min(590px, 48%);
    transform: translateY(-50%);
    z-index: 2;
}

body.service-page .hero-card {
    padding:
        clamp(1rem, 2vw, 1.55rem)
        clamp(1.05rem, 2.25vw, 1.75rem);
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 22px;
    background: rgba(255,255,255,.70);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 38px rgba(13,41,72,.12);
}

body.service-page .hero-copy h1 {
    max-width: 25ch;
    font-size: clamp(1.42rem, 1.95vw, 2.18rem);
    line-height: 1.08;
}

body.service-page .hero-copy .button-row {
    gap: .65rem;
    margin-top: 1.1rem;
}

body.service-page .hero-copy .btn {
    padding: .7rem .94rem;
    border-radius: 10px;
    font-size: .84rem;
}

body.service-page .btn-service-secondary {
    background: rgba(255,255,255,.7);
    color: var(--navy);
    border-color: rgba(13,41,72,.16);
    box-shadow: none;
}

body.service-page .btn-service-secondary:hover {
    background: #ffffff;
    color: var(--navy);
}

/* ======================================================
   INTRO / SIDE PANEL
====================================================== */

body.service-page .grid-intro {
    display: grid;
    grid-template-columns: minmax(0,1fr) 390px;
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
}

body.service-page .grid-intro h2 {
    margin-bottom: 1.35rem;
}

body.service-page .intro-panel {
    position: sticky;
    top: calc(var(--header-compact) + 28px);
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

body.service-page .intro-panel h3 {
    margin-bottom: 1.1rem;
}

body.service-page .check-list {
    display: grid;
    gap: .8rem;
}

body.service-page .check-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

body.service-page .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .15rem;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(184,135,59,.12);
    color: var(--brass);
    font-size: .78rem;
    font-weight: 900;
}

/* ======================================================
   QUESTION LIST
====================================================== */

body.service-page .question-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: .9rem;
}

body.service-page .question-list div {
    position: relative;
    padding: 1.05rem 1.1rem 1.05rem 3rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.84);
    color: var(--ink-soft);
    line-height: 1.6;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

body.service-page .question-list div:hover {
    transform: translateY(-2px);
    border-color: rgba(184,135,59,.32);
    box-shadow: var(--shadow-soft);
}

body.service-page .question-list div::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid rgba(184,135,59,.45);
    border-radius: 50%;
    background: rgba(184,135,59,.08);
}

body.service-page .question-list--balanced div,
body.service-page .question-list--laufende div {
    min-height: 92px;
    display: flex;
    align-items: center;
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
}

/* ======================================================
   CARDS / SERVICE GRIDS
====================================================== */

body.service-page .card-grid,
body.service-page .service-card-grid {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

body.service-page .card-grid.three-columns,
body.service-page .service-card-grid--3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

body.service-page .service-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 1.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184,135,59,.35);
    box-shadow: var(--shadow-deep);
}

body.service-page .service-card h3 {
    margin-bottom: 1rem;
}

body.service-page .service-card p {
    margin-bottom: .9rem;
    color: var(--muted);
    line-height: 1.7;
}

body.service-page .service-card .btn,
body.service-page .service-card .text-link {
    margin-top: auto;
    align-self: flex-start;
}

body.service-page .text-link {
    display: inline-flex;
    padding-top: .9rem;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.35;
    transition:
        color .2s ease,
        transform .2s ease;
}

body.service-page .text-link:hover {
    color: var(--navy-2);
    transform: translateX(2px);
}

body.service-page .card-number {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--brass);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ======================================================
   FEATURE ROWS / MEDIA
====================================================== */

body.service-page .feature-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(420px,.92fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

body.service-page .feature-row.reverse {
    grid-template-columns: minmax(420px,.92fr) minmax(0,1fr);
}

body.service-page .feature-copy {
    width: 100%;
}

body.service-page .feature-copy p + p {
    margin-top: 1rem;
}

body.service-page .media-card,
body.service-page .media-card--quiet {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #f1e8dc 0%,
            #f8f4ed 100%
        );
    box-shadow: var(--shadow-soft);
}

body.service-page .feature-row.reverse .media-card,
body.service-page .feature-row.reverse .media-card--quiet {
    max-width: 520px;
}

body.service-page .media-card picture,
body.service-page .media-card img,
body.service-page .media-card--quiet picture,
body.service-page .media-card--quiet img {
    display: block;
    width: 100%;
}

body.service-page .media-card img,
body.service-page .media-card--quiet img {
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* ======================================================
   DARK TARGET SECTION
====================================================== */

body.service-page .section-service-navy {
    background:
        linear-gradient(
            180deg,
            #071a30 0%,
            #0b2745 100%
        );
}

body.service-page .section-service-navy .section-heading h2,
body.service-page .section-service-navy .section-heading p,
body.service-page .section-service-navy .section-kicker,
body.service-page .section-heading.inverted h2,
body.service-page .section-heading.inverted p,
body.service-page .section-heading.inverted .section-kicker {
    color: #ffffff;
}

body.service-page .service-target-grid,
body.service-page .target-grid-dark {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

body.service-page .service-target-grid--six,
body.service-page .target-grid-dark {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

body.service-page .service-target-grid article,
body.service-page .target-grid-dark article {
    min-height: 240px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
}

body.service-page .service-target-grid h3,
body.service-page .target-grid-dark h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

body.service-page .service-target-grid p,
body.service-page .target-grid-dark p {
    color: rgba(255,255,255,.82);
}

/* ======================================================
   SPLIT / QUOTE / SCOPE
====================================================== */

body.service-page .split-section {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

body.service-page .split-content h2 {
    margin-bottom: 1.35rem;
}

body.service-page .quote-panel {
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(184,135,59,.16);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            #f8f4ed 0%,
            #efe5d6 100%
        );
    box-shadow: var(--shadow-soft);
}

body.service-page .quote-panel p {
    margin: 0;
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.65rem, 2vw, 2.1rem);
    line-height: 1.25;
    letter-spacing: -.02em;
}

body.service-page .scope-panel {
    display: grid;
    grid-template-columns: minmax(280px,.82fr) minmax(0,1.18fr);
    gap: clamp(1.8rem, 5vw, 4rem);
    align-items: start;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%),
        linear-gradient(145deg, #fff, #fbf8f2);
    box-shadow: var(--shadow-soft);
}

body.service-page .scope-panel h2 {
    max-width: 560px;
}

body.service-page .scope-panel p + p {
    margin-top: 1rem;
}

/* ======================================================
   PROCESS
====================================================== */

body.service-page .service-process-grid,
body.service-page .process-grid-extended {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

body.service-page .service-process-grid article {
    padding: 2rem;
    border: 1px solid rgba(13,41,72,.06);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.82);
    box-shadow: var(--shadow-soft);
}

body.service-page .service-process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: #0d2948;
    color: #ffffff;
    font-size: .95rem;
    font-weight: 700;
}

body.service-page .service-process-grid h3 {
    margin-bottom: .9rem;
}

/* ======================================================
   INTERNAL LINKS
====================================================== */

body.service-page .internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1rem;
}

body.service-page .internal-links-grid a {
    display: grid;
    gap: .45rem;
    min-height: 132px;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page .internal-links-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(184,135,59,.35);
    box-shadow: var(--shadow-deep);
}

body.service-page .internal-links-grid span {
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.35rem, 1.7vw, 1.75rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.02em;
}

body.service-page .internal-links-grid small {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

/* ======================================================
   FAQ
====================================================== */

body.service-page .faq-layout {
    display: grid;
    grid-template-columns: 390px minmax(0,1fr);
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
}

body.service-page .faq-list {
    display: grid;
    gap: .8rem;
}

body.service-page .faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

body.service-page .faq-list summary {
    cursor: pointer;
    padding: 1.2rem 1.35rem;
    color: var(--navy);
    font-weight: 800;
    list-style: none;
}

body.service-page .faq-list summary::-webkit-details-marker {
    display: none;
}

body.service-page .faq-list summary::after {
    content: "+";
    float: right;
    color: var(--brass);
}

body.service-page .faq-list details[open] summary::after {
    content: "–";
}

body.service-page .faq-list details p {
    margin: 0;
    padding: 0 1.35rem 1.35rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ======================================================
   FINAL CTA
====================================================== */

body.service-page .cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #071a30 0%,
            #0b2745 100%
        );
    box-shadow: var(--shadow-deep);
}

body.service-page .cta-copy {
    max-width: 760px;
}

body.service-page .cta-box .section-kicker,
body.service-page .cta-box h2,
body.service-page .cta-box p {
    color: #ffffff;
}

body.service-page .cta-actions {
    flex-shrink: 0;
}

body.service-page .cta-actions .btn {
    white-space: nowrap;
    background: #ffffff;
    color: #0b2745;
    border: 1px solid rgba(255,255,255,.9);
}

body.service-page .cta-actions .btn:hover {
    background: rgba(255,255,255,.92);
    color: #071a30;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1080px) {

    body.service-page .hero-banner {
        height: clamp(430px, 56vw, 580px);
    }

    body.service-page .hero-copy {
        width: min(540px, 62%);
    }

    body.service-page .card-grid.three-columns,
    body.service-page .service-card-grid--3,
    body.service-page .service-target-grid--six,
    body.service-page .target-grid-dark,
    body.service-page .internal-links-grid,
    body.service-page .service-process-grid,
    body.service-page .process-grid-extended {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    body.service-page .scope-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1040px) {

    body.service-page .grid-intro,
    body.service-page .faq-layout {
        grid-template-columns: 1fr;
    }

    body.service-page .intro-panel {
        position: static;
    }
}

@media (max-width: 980px) {

    body.service-page .feature-row,
    body.service-page .feature-row.reverse,
    body.service-page .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    body.service-page .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {

    body.service-page .section {
        padding: 4rem 0;
    }

    body.service-page .hero-page {
        padding: 1.2rem 0 4rem;
    }

    body.service-page .hero-banner {
        height: auto;
        display: grid;
    }

    body.service-page .hero-banner picture,
    body.service-page .hero-banner img {
        height: auto;
    }

    body.service-page .hero-copy {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        transform: none;
        margin: -20px 12px 12px;
    }

    body.service-page .hero-card {
        background: rgba(255,255,255,.9);
    }

    body.service-page .hero-copy h1 {
        max-width: none;
        font-size: clamp(1.75rem, 6vw, 2.2rem);
    }

    body.service-page .question-list,
    body.service-page .card-grid.three-columns,
    body.service-page .service-card-grid--3,
    body.service-page .service-target-grid--six,
    body.service-page .target-grid-dark,
    body.service-page .internal-links-grid,
    body.service-page .service-process-grid,
    body.service-page .process-grid-extended {
        grid-template-columns: 1fr;
    }

    body.service-page .service-card,
    body.service-page .service-target-grid article,
    body.service-page .target-grid-dark article,
    body.service-page .service-process-grid article {
        padding: 1.5rem;
    }

    body.service-page .cta-actions,
    body.service-page .cta-actions .btn {
        width: 100%;
    }
}

/* ======================================================
   FINAL OVERRIDE: SECTION-KICKER AUF LEISTUNGSSEITEN
   Greift auch dann, wenn globale Absatzregeln oder eine abweichende
   Lade-Reihenfolge die Abschnittslabels erneut grau setzen.
====================================================== */

body.service-page .service-main p.section-kicker,
.service-main p.section-kicker {
    color: var(--brass) !important;
    font-size: clamp(.98rem, 1.05vw, 1.12rem) !important;
}

body.service-page .service-main .section-service-navy p.section-kicker,
body.service-page .service-main .section-heading.inverted p.section-kicker,
body.service-page .service-main .cta-box p.section-kicker,
.service-main .section-service-navy p.section-kicker,
.service-main .section-heading.inverted p.section-kicker,
.service-main .cta-box p.section-kicker {
    color: #ffffff !important;
}

/* ======================================================
   ZIELSEITEN-ERGÄNZUNGEN AUS HOMEPAGE.ZIP
   Zentrale Übernahme der vorhandenen Seiten-CSS.
   Keine Inline-Styles; keine separaten Zielseiten-CSS-Dateien.
   Nicht-generische Ausnahmen bleiben über Body-Klassen gekapselt.
====================================================== */

/* ===== Aus 404.css zentralisiert (auf body.service-page--404 gekapselt) ===== */


body.service-page--404 .service-main .hero-banner--404 {
  position: relative;
  overflow: hidden;
}

body.service-page--404 .service-main .hero-banner--404 img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

body.service-page--404 .service-main .hero-card--404 {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.55);
}

body.service-page--404 .hero-copy h1 {
  max-width: 13ch;
}

body.service-page--404 .area-card {
  min-height: 100%;
}

body.service-page--404 .link-list {
  margin-bottom: 1.6rem;
}

@media (max-width: 760px) {

  body.service-page--404 .hero-copy h1 {
    max-width: none;
  }

  body.service-page--404 .service-main .hero-card--404 {
    background: rgba(255,255,255,.88);
  }
}

/* ===== Aus betriebspruefung-steuerstreit.css zentralisiert ===== */
/* ======================================================
   Unterseite Steuerberaterhaftung / Betriebsprüfung & Steuerstreit
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--betriebspruefung-steuerstreit .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung-steuerstreit .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--betriebspruefung-steuerstreit .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--betriebspruefung-steuerstreit .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(610px, 49%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--betriebspruefung-steuerstreit .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--betriebspruefung-steuerstreit .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.42rem, 1.86vw, 2.08rem);
  line-height: 1.08;
}

.service-page--betriebspruefung-steuerstreit .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--betriebspruefung-steuerstreit .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--betriebspruefung-steuerstreit .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--betriebspruefung-steuerstreit .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung-steuerstreit .media-card--quiet picture,
.service-page--betriebspruefung-steuerstreit .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--betriebspruefung-steuerstreit .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--betriebspruefung-steuerstreit .bp-card-grid .service-card {
  min-height: 335px;
}

.service-page--betriebspruefung-steuerstreit .bp-card-grid .service-card p + p {
  margin-top: .75rem;
}

.service-page--betriebspruefung-steuerstreit .question-list--bp div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--betriebspruefung-steuerstreit .question-list--bp div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--betriebspruefung-steuerstreit .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--betriebspruefung-steuerstreit .service-target-grid--six article {
  min-height: 230px;
}

.service-page--betriebspruefung-steuerstreit .bp-target-grid h3 {
  hyphens: auto;
}

.service-page--betriebspruefung-steuerstreit .section-route {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--betriebspruefung-steuerstreit .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--betriebspruefung-steuerstreit .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--betriebspruefung-steuerstreit .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--betriebspruefung-steuerstreit .documents-list {
  margin-top: 1.4rem;
}

.service-page--betriebspruefung-steuerstreit .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--betriebspruefung-steuerstreit .service-process-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.service-page--betriebspruefung-steuerstreit .service-process-grid--six article {
  min-height: 315px;
}

.service-page--betriebspruefung-steuerstreit .faq-list details p {
  line-height: 1.7;
}

.service-page--betriebspruefung-steuerstreit .text-link {
  align-self: flex-start;
  margin-top: 1.1rem;
}

@media (max-width: 1080px) {
  .service-page--betriebspruefung-steuerstreit .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--betriebspruefung-steuerstreit .hero-copy {
    width: min(560px, 64%);
  }

  .service-page--betriebspruefung-steuerstreit .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--betriebspruefung-steuerstreit .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--betriebspruefung-steuerstreit .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--betriebspruefung-steuerstreit .hero-banner picture,
  .service-page--betriebspruefung-steuerstreit .hero-banner img {
    height: auto;
  }

  .service-page--betriebspruefung-steuerstreit .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--betriebspruefung-steuerstreit .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--betriebspruefung-steuerstreit .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--betriebspruefung-steuerstreit .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--betriebspruefung-steuerstreit .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--betriebspruefung-steuerstreit .bp-card-grid .service-card,
  .service-page--betriebspruefung-steuerstreit .service-process-grid--six article,
  .service-page--betriebspruefung-steuerstreit .service-target-grid--six article {
    min-height: 0;
  }

  .service-page--betriebspruefung-steuerstreit .documents-copy {
    padding: 1.45rem;
  }
}

/* ===== Aus betriebspruefung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Betriebsprüfung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--betriebspruefung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--betriebspruefung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--betriebspruefung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(565px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--betriebspruefung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--betriebspruefung .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.42rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-page--betriebspruefung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--betriebspruefung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--betriebspruefung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--betriebspruefung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--betriebspruefung .media-card--quiet picture,
.service-page--betriebspruefung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--betriebspruefung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--betriebspruefung .question-list--betriebspruefung {
  align-items: stretch;
}

.service-page--betriebspruefung .question-list--betriebspruefung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--betriebspruefung .question-list--betriebspruefung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--betriebspruefung .service-card {
  min-height: 300px;
}

.service-page--betriebspruefung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--betriebspruefung .service-target-grid--six {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page--betriebspruefung .service-target-grid--six article {
  min-height: 230px;
}

.service-page--betriebspruefung .service-process-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--betriebspruefung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .service-page--betriebspruefung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-page--betriebspruefung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--betriebspruefung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--betriebspruefung .service-process-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--betriebspruefung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--betriebspruefung .hero-banner picture,
  .service-page--betriebspruefung .hero-banner img {
    height: auto;
  }

  .service-page--betriebspruefung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--betriebspruefung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--betriebspruefung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--betriebspruefung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--betriebspruefung .service-target-grid--six,
  .service-page--betriebspruefung .service-process-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus blog-template.css zentralisiert (auf body.article-page gekapselt) ===== */


body.article-page {
  background: var(--ivory);
}

body.article-page .service-main .article-hero {
  padding: 1.6rem 0 4.8rem;
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
}

body.article-page .service-main .article-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
  box-shadow: var(--shadow-deep);
  line-height: 0;
}

body.article-page .service-main .article-banner picture {
  display: block;
}

body.article-page .service-main .article-banner picture,
body.article-page .service-main .article-banner img {
  width: 100%;
  height: auto;
  display: block;
}

body.article-page .service-main .article-banner img {
  object-fit: contain;
  object-position: center;
}

body.article-page .service-main .article-overlay {
  position: absolute;
  left: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  width: min(700px, calc(100% - 3rem));
}

body.article-page .service-main .article-card {
  padding: clamp(1.3rem, 2.6vw, 2rem);
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 44px rgba(13,41,72,.12);
}

body.article-page .service-main .article-eyebrow {
  margin-bottom: .9rem;
  color: var(--brass);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.article-page .service-main .article-overlay h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

body.article-page .service-main .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.5;
}

body.article-page .service-main .article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

body.article-page .service-main .article-content {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .article-intro {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

body.article-page .service-main .article-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

body.article-page .service-main .article-content p {
  color: var(--muted);
}

body.article-page .service-main .article-content ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: .7rem;
}

body.article-page .service-main .article-content li {
  color: var(--muted);
}

body.article-page .service-main .article-quote {
  margin: 2.5rem 0;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, #fff, #fbf8f2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .article-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.25;
  color: var(--navy);
}

body.article-page .service-main .article-sidebar {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
}

body.article-page .service-main .sidebar-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .sidebar-card h3 {
  margin-bottom: 1rem;
}

body.article-page .service-main .sidebar-nav {
  display: grid;
  gap: .7rem;
}

body.article-page .service-main .sidebar-nav a {
  color: var(--ink-soft);
  font-weight: 600;
}

body.article-page .service-main .sidebar-nav a:hover {
  color: var(--navy);
}

@media (max-width: 1040px) {

  body.article-page .service-main .article-layout {
    grid-template-columns: 1fr;
  }

  body.article-page .service-main .article-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {

  body.article-page .service-main .article-overlay {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -22px 14px 14px;
  }

  body.article-page .service-main .article-overlay h1 {
    max-width: none;
  }

  body.article-page .service-main .article-card {
    background: rgba(255,255,255,.92);
  }

  body.article-page .service-main .article-content {
    padding: 1.6rem;
  }
}

/* ===== Aus datenschutz.css zentralisiert ===== */
/* ======================================================
   Datenschutzseite
   - nutzt den zentralen Website-/Leistungsseiten-Master
   - nur seitenbezogene Ergänzungen
====================================================== */

.service-page--datenschutz .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--datenschutz .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--datenschutz .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--datenschutz .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  width: min(540px, 45%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--datenschutz .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--datenschutz .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 2.15vw, 2.45rem);
  line-height: 1.08;
}

.service-page--datenschutz .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.9rem, .96vw, 1rem);
  line-height: 1.58;
}

.service-page--datenschutz .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--datenschutz .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--datenschutz .legal-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(2.2rem, 6vw, 4.6rem);
  align-items: start;
}

.service-page--datenschutz .legal-intro-grid h2 {
  margin-bottom: 1.35rem;
}

.service-page--datenschutz .legal-summary-card {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--datenschutz .legal-summary-card h3 {
  margin-bottom: 1.1rem;
}

.service-page--datenschutz .legal-section {
  padding-top: clamp(4rem, 6vw, 6rem);
}

.service-page--datenschutz .legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}

.service-page--datenschutz .legal-toc {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}

.service-page--datenschutz .legal-toc nav {
  display: grid;
  gap: .35rem;
}

.service-page--datenschutz .legal-toc a {
  display: block;
  padding: .58rem .72rem;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.32;
}

.service-page--datenschutz .legal-toc a:hover {
  background: rgba(13,41,72,.05);
  color: var(--navy);
}

.service-page--datenschutz .legal-content {
  display: grid;
  gap: 1rem;
}

.service-page--datenschutz .legal-card {
  scroll-margin-top: calc(var(--header-compact) + 24px);
  padding: clamp(1.45rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}

.service-page--datenschutz .legal-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.35vw, 2.25rem);
}

.service-page--datenschutz .legal-card p,
.service-page--datenschutz .legal-card li,
.service-page--datenschutz .legal-card address {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
}

.service-page--datenschutz .legal-card address {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(13,41,72,.035);
  border: 1px solid rgba(13,41,72,.06);
  font-style: normal;
}

.service-page--datenschutz .legal-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-page--datenschutz .legal-card ul {
  display: grid;
  gap: .55rem;
  margin: 1rem 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.service-page--datenschutz .legal-card ul li::marker {
  color: var(--brass);
}

.service-page--datenschutz .warning-card {
  position: relative;
  background: linear-gradient(180deg, #fffaf3 0%, #fcf7ef 100%);
  border-color: rgba(184,135,59,.22);
}

.service-page--datenschutz .legal-card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(184,135,59,.10);
  color: var(--brass);
}

.service-page--datenschutz .legal-card-icon svg {
  width: 25px;
  height: 25px;
}

.service-page--datenschutz .cta-actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .service-page--datenschutz .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--datenschutz .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--datenschutz .legal-intro-grid,
  .service-page--datenschutz .legal-layout {
    grid-template-columns: 1fr;
  }

  .service-page--datenschutz .legal-summary-card,
  .service-page--datenschutz .legal-toc {
    position: static;
  }

  .service-page--datenschutz .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--datenschutz .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .service-page--datenschutz .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--datenschutz .hero-banner picture,
  .service-page--datenschutz .hero-banner img {
    height: auto;
  }

  .service-page--datenschutz .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--datenschutz .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--datenschutz .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--datenschutz .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--datenschutz .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .service-page--datenschutz .legal-card {
    padding: 1.25rem;
  }
}

/* ===== Aus einkommensteuererklaerung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Einkommensteuererklärung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--einkommensteuererklaerung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--einkommensteuererklaerung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--einkommensteuererklaerung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--einkommensteuererklaerung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--einkommensteuererklaerung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--einkommensteuererklaerung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--einkommensteuererklaerung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--einkommensteuererklaerung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--einkommensteuererklaerung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--einkommensteuererklaerung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--einkommensteuererklaerung .media-card--quiet picture,
.service-page--einkommensteuererklaerung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--einkommensteuererklaerung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--einkommensteuererklaerung .question-list--einkommensteuer {
  align-items: stretch;
}

.service-page--einkommensteuererklaerung .question-list--einkommensteuer div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--einkommensteuererklaerung .question-list--einkommensteuer div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--einkommensteuererklaerung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--einkommensteuererklaerung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--einkommensteuererklaerung .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--einkommensteuererklaerung .scope-panel h2 {
  max-width: 560px;
}

.service-page--einkommensteuererklaerung .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--einkommensteuererklaerung .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--einkommensteuererklaerung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--einkommensteuererklaerung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--einkommensteuererklaerung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--einkommensteuererklaerung .service-target-grid--six,
  .service-page--einkommensteuererklaerung .scope-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--einkommensteuererklaerung .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--einkommensteuererklaerung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--einkommensteuererklaerung .hero-banner picture,
  .service-page--einkommensteuererklaerung .hero-banner img {
    height: auto;
  }

  .service-page--einkommensteuererklaerung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--einkommensteuererklaerung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--einkommensteuererklaerung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--einkommensteuererklaerung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--einkommensteuererklaerung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus einspruch-steuerbescheid.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsanwalt Einspruch gegen Steuerbescheid
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--einspruch-steuerbescheid .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--einspruch-steuerbescheid .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--einspruch-steuerbescheid .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.service-page--einspruch-steuerbescheid .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--einspruch-steuerbescheid .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--einspruch-steuerbescheid .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--einspruch-steuerbescheid .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--einspruch-steuerbescheid .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--einspruch-steuerbescheid .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--einspruch-steuerbescheid .question-list--einspruch div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--einspruch-steuerbescheid .question-list--einspruch div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--einspruch-steuerbescheid .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--einspruch-steuerbescheid .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--einspruch-steuerbescheid .media-card--quiet picture,
.service-page--einspruch-steuerbescheid .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--einspruch-steuerbescheid .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--einspruch-steuerbescheid .section-risk {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--einspruch-steuerbescheid .risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--einspruch-steuerbescheid .risk-panel h2 {
  max-width: 560px;
}

.service-page--einspruch-steuerbescheid .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--einspruch-steuerbescheid .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--einspruch-steuerbescheid .risk-list {
  display: grid;
  gap: .75rem;
}

.service-page--einspruch-steuerbescheid .risk-list li {
  position: relative;
  padding: .9rem .95rem .9rem 2.65rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  color: var(--ink-soft);
  font-weight: 600;
}

.service-page--einspruch-steuerbescheid .risk-list li::before {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid rgba(184,135,59,.46);
  border-radius: 50%;
  content: "";
}

.service-page--einspruch-steuerbescheid .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--einspruch-steuerbescheid .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--einspruch-steuerbescheid .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--einspruch-steuerbescheid .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--einspruch-steuerbescheid .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--einspruch-steuerbescheid .risk-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--einspruch-steuerbescheid .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--einspruch-steuerbescheid .hero-banner picture,
  .service-page--einspruch-steuerbescheid .hero-banner img {
    height: auto;
  }

  .service-page--einspruch-steuerbescheid .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--einspruch-steuerbescheid .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--einspruch-steuerbescheid .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--einspruch-steuerbescheid .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--einspruch-steuerbescheid .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus erbschaftsteuer-schenkungsteuer.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Erbschaftsteuer / Schenkungsteuer
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--erbschaftsteuer-schenkungsteuer .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy h1 {
  max-width: 25ch;
  font-size: clamp(1.42rem, 1.9vw, 2.12rem);
  line-height: 1.08;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet picture,
.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--erbschaftsteuer-schenkungsteuer .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--erbschaftsteuer-schenkungsteuer .question-list--erbschaftsteuer div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .question-list--erbschaftsteuer div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--erbschaftsteuer-schenkungsteuer .service-card {
  min-height: 330px;
}

.service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six article {
  min-height: 220px;
}

.service-page--erbschaftsteuer-schenkungsteuer .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel h2 {
  max-width: 560px;
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--erbschaftsteuer-schenkungsteuer .faq-list details p {
  line-height: 1.7;
}

.service-page--erbschaftsteuer-schenkungsteuer .cta-box .cta-note {
  color: rgba(255, 255, 255, .76);
}

@media (max-width: 1080px) {
  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--erbschaftsteuer-schenkungsteuer .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner picture,
  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner img {
    height: auto;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.72rem, 5.8vw, 2.2rem);
  }

  .service-page--erbschaftsteuer-schenkungsteuer .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--erbschaftsteuer-schenkungsteuer .service-card {
    min-height: auto;
  }
}

/* ===== Aus erweiterte-gewerbesteuerkuerzung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Erweiterte Gewerbesteuerkürzung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--erweiterte-gewerbesteuerkuerzung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe7dc 0%, #f8f4ed 100%);
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .question-list--gewerbesteuer div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .question-list--gewerbesteuer div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet {
  background: linear-gradient(180deg, #efe7dc 0%, #f8f4ed 100%);
}

.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet picture,
.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--erweiterte-gewerbesteuerkuerzung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel h2 {
  max-width: 560px;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-list {
  display: grid;
  gap: .85rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-list li {
  position: relative;
  padding: .95rem 1rem .95rem 3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  color: var(--ink-soft);
}

.service-page--erweiterte-gewerbesteuerkuerzung .risk-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(184,135,59,.48);
  background: rgba(184,135,59,.08);
}

.service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six article {
  min-height: 220px;
}

.service-page--erweiterte-gewerbesteuerkuerzung .text-link {
  align-self: flex-start;
}

.service-page--erweiterte-gewerbesteuerkuerzung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--erweiterte-gewerbesteuerkuerzung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .risk-panel {
    grid-template-columns: 1fr;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner picture,
  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner img {
    height: auto;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--erweiterte-gewerbesteuerkuerzung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus finanzbuchfuehrung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Finanzbuchführung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--finanzbuchfuehrung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzbuchfuehrung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--finanzbuchfuehrung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--finanzbuchfuehrung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--finanzbuchfuehrung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--finanzbuchfuehrung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--finanzbuchfuehrung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--finanzbuchfuehrung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--finanzbuchfuehrung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--finanzbuchfuehrung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzbuchfuehrung .media-card--quiet picture,
.service-page--finanzbuchfuehrung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--finanzbuchfuehrung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--finanzbuchfuehrung .question-list--finanzbuchfuehrung {
  align-items: stretch;
}

.service-page--finanzbuchfuehrung .question-list--finanzbuchfuehrung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--finanzbuchfuehrung .question-list--finanzbuchfuehrung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--finanzbuchfuehrung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--finanzbuchfuehrung .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--finanzbuchfuehrung .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--finanzbuchfuehrung .scope-panel h2 {
  max-width: 520px;
}

.service-page--finanzbuchfuehrung .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--finanzbuchfuehrung .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--finanzbuchfuehrung .faq-list details p {
  line-height: 1.7;
}

.service-page--finanzbuchfuehrung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

@media (max-width: 1080px) {
  .service-page--finanzbuchfuehrung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--finanzbuchfuehrung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--finanzbuchfuehrung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--finanzbuchfuehrung .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--finanzbuchfuehrung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--finanzbuchfuehrung .hero-banner picture,
  .service-page--finanzbuchfuehrung .hero-banner img {
    height: auto;
  }

  .service-page--finanzbuchfuehrung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--finanzbuchfuehrung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--finanzbuchfuehrung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--finanzbuchfuehrung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--finanzbuchfuehrung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus finanzgericht.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Finanzgerichtliche Verfahren
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--finanzgericht .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzgericht .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--finanzgericht .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--finanzgericht .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--finanzgericht .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--finanzgericht .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.92vw, 2.12rem);
  line-height: 1.08;
}

.service-page--finanzgericht .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--finanzgericht .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--finanzgericht .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--finanzgericht .media-card--quiet,
.service-page--finanzgericht .media-card--wide {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--finanzgericht .media-card--quiet picture,
.service-page--finanzgericht .media-card--quiet img,
.service-page--finanzgericht .media-card--wide picture,
.service-page--finanzgericht .media-card--wide img {
  display: block;
  width: 100%;
}

.service-page--finanzgericht .media-card--quiet img,
.service-page--finanzgericht .media-card--wide img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--finanzgericht .question-list--finanzgericht div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--finanzgericht .question-list--finanzgericht div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--finanzgericht .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--finanzgericht .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--finanzgericht .service-target-grid--six article {
  min-height: 205px;
}

.service-page--finanzgericht .service-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--finanzgericht .focus-grid .service-card {
  min-height: 240px;
}

.service-page--finanzgericht .evidence-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.11), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--finanzgericht .evidence-panel h2 {
  margin-bottom: 1.25rem;
}

.service-page--finanzgericht .evidence-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--finanzgericht .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--finanzgericht .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--finanzgericht .hero-copy {
    width: min(530px, 62%);
  }

  .service-page--finanzgericht .service-target-grid--six,
  .service-page--finanzgericht .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--finanzgericht .evidence-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--finanzgericht .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--finanzgericht .hero-banner picture,
  .service-page--finanzgericht .hero-banner img {
    height: auto;
  }

  .service-page--finanzgericht .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--finanzgericht .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--finanzgericht .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--finanzgericht .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--finanzgericht .service-target-grid--six,
  .service-page--finanzgericht .service-process-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus fristversaeumnis.css zentralisiert ===== */
/* ======================================================
   Unterseite Steuerberaterhaftung / Fristversäumnis
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--fristversaeumnis .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--fristversaeumnis .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--fristversaeumnis .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--fristversaeumnis .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--fristversaeumnis .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--fristversaeumnis .hero-copy h1 {
  max-width: 21ch;
  font-size: clamp(1.52rem, 2vw, 2.24rem);
  line-height: 1.08;
}

.service-page--fristversaeumnis .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .94vw, .99rem);
  line-height: 1.55;
}

.service-page--fristversaeumnis .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--fristversaeumnis .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--fristversaeumnis .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--fristversaeumnis .media-card--quiet picture,
.service-page--fristversaeumnis .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--fristversaeumnis .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--fristversaeumnis .frist-card-grid .service-card {
  min-height: 350px;
}

.service-page--fristversaeumnis .frist-card-grid .service-card p + p {
  margin-top: .75rem;
}

.service-page--fristversaeumnis .question-list--frist div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--fristversaeumnis .question-list--frist div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--fristversaeumnis .section-wiedereinsetzung {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--fristversaeumnis .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--fristversaeumnis .service-target-grid--six article {
  min-height: 210px;
}

.service-page--fristversaeumnis .frist-target-grid h3 {
  hyphens: auto;
}

.service-page--fristversaeumnis .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--fristversaeumnis .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--fristversaeumnis .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--fristversaeumnis .documents-list {
  margin-top: 1.4rem;
}

.service-page--fristversaeumnis .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--fristversaeumnis .service-process-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.service-page--fristversaeumnis .service-process-grid--six article {
  min-height: 300px;
}

.service-page--fristversaeumnis .faq-list details p {
  line-height: 1.7;
}

.service-page--fristversaeumnis .text-link {
  align-self: flex-start;
  margin-top: 1.1rem;
}

@media (max-width: 1080px) {
  .service-page--fristversaeumnis .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--fristversaeumnis .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--fristversaeumnis .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--fristversaeumnis .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--fristversaeumnis .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--fristversaeumnis .hero-banner picture,
  .service-page--fristversaeumnis .hero-banner img {
    height: auto;
  }

  .service-page--fristversaeumnis .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--fristversaeumnis .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--fristversaeumnis .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--fristversaeumnis .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--fristversaeumnis .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--fristversaeumnis .frist-card-grid .service-card,
  .service-page--fristversaeumnis .service-process-grid--six article,
  .service-page--fristversaeumnis .service-target-grid--six article {
    min-height: 0;
  }

  .service-page--fristversaeumnis .documents-copy {
    padding: 1.45rem;
  }
}

/* ===== Aus geschaeftsfuehrerhaftung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Geschäftsführerhaftung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--geschaeftsfuehrerhaftung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--geschaeftsfuehrerhaftung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--geschaeftsfuehrerhaftung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(575px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--geschaeftsfuehrerhaftung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--geschaeftsfuehrerhaftung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--geschaeftsfuehrerhaftung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--geschaeftsfuehrerhaftung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--geschaeftsfuehrerhaftung .media-card--quiet picture,
.service-page--geschaeftsfuehrerhaftung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--geschaeftsfuehrerhaftung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--geschaeftsfuehrerhaftung .question-list--haftung {
  align-items: stretch;
}

.service-page--geschaeftsfuehrerhaftung .question-list--haftung div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--geschaeftsfuehrerhaftung .question-list--haftung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--geschaeftsfuehrerhaftung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--geschaeftsfuehrerhaftung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--geschaeftsfuehrerhaftung .service-target-grid--six article {
  min-height: 225px;
}

.service-page--geschaeftsfuehrerhaftung .section-risk {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--geschaeftsfuehrerhaftung .risk-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--geschaeftsfuehrerhaftung .risk-panel h2 {
  max-width: 720px;
  margin-bottom: 1.35rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-list {
  display: grid;
  gap: .7rem;
  margin-top: 1.4rem;
}

.service-page--geschaeftsfuehrerhaftung .risk-list li {
  position: relative;
  padding: .85rem .95rem .85rem 2.6rem;
  border: 1px solid rgba(13, 41, 72, .06);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  color: var(--ink-soft);
  font-weight: 600;
}

.service-page--geschaeftsfuehrerhaftung .risk-list li::before {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  content: "›";
  font-weight: 900;
}

.service-page--geschaeftsfuehrerhaftung .document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-page--geschaeftsfuehrerhaftung .document-grid article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--geschaeftsfuehrerhaftung .document-grid h3 {
  margin-bottom: .65rem;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.service-page--geschaeftsfuehrerhaftung .document-grid p {
  color: var(--muted);
}

.service-page--geschaeftsfuehrerhaftung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--geschaeftsfuehrerhaftung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--geschaeftsfuehrerhaftung .hero-copy {
    width: min(535px, 61%);
  }

  .service-page--geschaeftsfuehrerhaftung .risk-panel {
    grid-template-columns: 1fr;
  }

  .service-page--geschaeftsfuehrerhaftung .service-target-grid--six,
  .service-page--geschaeftsfuehrerhaftung .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--geschaeftsfuehrerhaftung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-banner picture,
  .service-page--geschaeftsfuehrerhaftung .hero-banner img {
    height: auto;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--geschaeftsfuehrerhaftung .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--geschaeftsfuehrerhaftung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--geschaeftsfuehrerhaftung .service-target-grid--six,
  .service-page--geschaeftsfuehrerhaftung .document-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus gestaltungsberatung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Gestaltungsberatung
   - nutzt den zentralen Leistungsseiten-Master
   - ergänzt nur seitenbezogene Bild-/Hero-Feinheiten
====================================================== */

.service-page--gestaltungsberatung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gestaltungsberatung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--gestaltungsberatung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--gestaltungsberatung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--gestaltungsberatung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--gestaltungsberatung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--gestaltungsberatung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--gestaltungsberatung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--gestaltungsberatung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--gestaltungsberatung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gestaltungsberatung .media-card--quiet picture,
.service-page--gestaltungsberatung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--gestaltungsberatung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--gestaltungsberatung .question-list--gestaltungsberatung {
  align-items: stretch;
}

.service-page--gestaltungsberatung .question-list--gestaltungsberatung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--gestaltungsberatung .question-list--gestaltungsberatung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--gestaltungsberatung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--gestaltungsberatung .faq-list details p {
  line-height: 1.7;
}

.service-page--gestaltungsberatung .text-link {
  align-self: flex-start;
}

.service-page--gestaltungsberatung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

@media (max-width: 1080px) {
  .service-page--gestaltungsberatung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--gestaltungsberatung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--gestaltungsberatung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--gestaltungsberatung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--gestaltungsberatung .hero-banner picture,
  .service-page--gestaltungsberatung .hero-banner img {
    height: auto;
  }

  .service-page--gestaltungsberatung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--gestaltungsberatung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--gestaltungsberatung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--gestaltungsberatung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--gestaltungsberatung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus gewerblicher-grundstueckshandel.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Gewerblicher Grundstückshandel
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--gewerblicher-grundstueckshandel .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gewerblicher-grundstueckshandel .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--gewerblicher-grundstueckshandel .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--gewerblicher-grundstueckshandel .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--gewerblicher-grundstueckshandel .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--gewerblicher-grundstueckshandel .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--gewerblicher-grundstueckshandel .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--gewerblicher-grundstueckshandel .media-card--quiet picture,
.service-page--gewerblicher-grundstueckshandel .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--gewerblicher-grundstueckshandel .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--gewerblicher-grundstueckshandel .question-list--grundstueckshandel {
  align-items: stretch;
}

.service-page--gewerblicher-grundstueckshandel .question-list--grundstueckshandel div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--gewerblicher-grundstueckshandel .question-list--grundstueckshandel div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--gewerblicher-grundstueckshandel .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--gewerblicher-grundstueckshandel .risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--gewerblicher-grundstueckshandel .risk-panel h2 {
  max-width: 560px;
}

.service-page--gewerblicher-grundstueckshandel .risk-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--gewerblicher-grundstueckshandel .risk-panel p + p {
  margin-top: 1rem;
}

.service-page--gewerblicher-grundstueckshandel .risk-list {
  display: grid;
  gap: .8rem;
}

.service-page--gewerblicher-grundstueckshandel .risk-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--ink-soft);
}

.service-page--gewerblicher-grundstueckshandel .risk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brass);
}

.service-page--gewerblicher-grundstueckshandel .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--gewerblicher-grundstueckshandel .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--gewerblicher-grundstueckshandel .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--gewerblicher-grundstueckshandel .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--gewerblicher-grundstueckshandel .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--gewerblicher-grundstueckshandel .risk-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--gewerblicher-grundstueckshandel .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-banner picture,
  .service-page--gewerblicher-grundstueckshandel .hero-banner img {
    height: auto;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--gewerblicher-grundstueckshandel .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--gewerblicher-grundstueckshandel .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--gewerblicher-grundstueckshandel .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus holdingstrukturen.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Holdingstrukturen
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
   - v6: Bannerbild auf Master-Blockformat gebracht; vollständiges Motiv ohne Verzerrung.
====================================================== */

.service-page--holdingstrukturen .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--holdingstrukturen .hero-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-page--holdingstrukturen .hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.service-page--holdingstrukturen .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(540px, 43%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--holdingstrukturen .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--holdingstrukturen .hero-copy h1 {
  max-width: 25ch;
  font-size: clamp(1.36rem, 1.78vw, 2rem);
  line-height: 1.08;
}

.service-page--holdingstrukturen .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.85rem, .88vw, .94rem);
  line-height: 1.55;
}

.service-page--holdingstrukturen .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--holdingstrukturen .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--holdingstrukturen .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--holdingstrukturen .media-card--quiet picture,
.service-page--holdingstrukturen .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--holdingstrukturen .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--holdingstrukturen .question-list--holdingstrukturen {
  align-items: stretch;
}

.service-page--holdingstrukturen .question-list--holdingstrukturen div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--holdingstrukturen .question-list--holdingstrukturen div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--holdingstrukturen .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--holdingstrukturen .service-target-grid--six article {
  min-height: 230px;
}

.service-page--holdingstrukturen .faq-list details p {
  line-height: 1.7;
}

.service-page--holdingstrukturen .text-link {
  align-self: flex-start;
}

.service-page--holdingstrukturen .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--holdingstrukturen .service-process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-page--holdingstrukturen .service-process-grid article {
  min-height: 300px;
}

@media (max-width: 1180px) {
  .service-page--holdingstrukturen .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-page--holdingstrukturen .hero-banner {
    height: clamp(430px, 56vw, 580px);
    padding: 0;
  }

  .service-page--holdingstrukturen .hero-copy {
    width: min(535px, 61%);
  }

  .service-page--holdingstrukturen .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--holdingstrukturen .hero-banner {
    height: auto;
    display: grid;
    padding: 0;
  }

  .service-page--holdingstrukturen .hero-banner picture,
  .service-page--holdingstrukturen .hero-banner img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .service-page--holdingstrukturen .hero-banner img {
    object-fit: contain;
    object-position: center;
  }

  .service-page--holdingstrukturen .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--holdingstrukturen .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--holdingstrukturen .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--holdingstrukturen .service-target-grid--six,
  .service-page--holdingstrukturen .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-page--holdingstrukturen .service-process-grid article,
  .service-page--holdingstrukturen .service-target-grid--six article {
    min-height: 0;
  }
}

/* ===== Aus immobilien-betriebsvermoegen.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Immobilien im Betriebsvermögen
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--immobilien-betriebsvermoegen .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-betriebsvermoegen .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--immobilien-betriebsvermoegen .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--immobilien-betriebsvermoegen .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--immobilien-betriebsvermoegen .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .69);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--immobilien-betriebsvermoegen .hero-copy h1 {
  max-width: 23ch;
  font-size: clamp(1.45rem, 1.95vw, 2.15rem);
  line-height: 1.08;
}

.service-page--immobilien-betriebsvermoegen .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--immobilien-betriebsvermoegen .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--immobilien-betriebsvermoegen .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--immobilien-betriebsvermoegen .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-betriebsvermoegen .media-card--quiet picture,
.service-page--immobilien-betriebsvermoegen .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--immobilien-betriebsvermoegen .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--immobilien-betriebsvermoegen .question-list--immo-bv {
  align-items: stretch;
}

.service-page--immobilien-betriebsvermoegen .question-list--immo-bv div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--immobilien-betriebsvermoegen .question-list--immo-bv div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--immobilien-betriebsvermoegen .service-card-grid--long .service-card {
  min-height: 350px;
}

.service-page--immobilien-betriebsvermoegen .risk-card-grid .service-card {
  min-height: 245px;
}

.service-page--immobilien-betriebsvermoegen .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--immobilien-betriebsvermoegen .service-target-grid--six article {
  min-height: 210px;
}

.service-page--immobilien-betriebsvermoegen .service-process-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-page--immobilien-betriebsvermoegen .service-process-grid--five article {
  min-height: 290px;
}

.service-page--immobilien-betriebsvermoegen .related-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 16% 16%, rgba(184,135,59,.08), transparent 23%), linear-gradient(180deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--immobilien-betriebsvermoegen .related-panel h2 {
  margin-bottom: 1rem;
}

.service-page--immobilien-betriebsvermoegen .related-panel p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--immobilien-betriebsvermoegen .link-list-panel {
  margin: 0;
}

.service-page--immobilien-betriebsvermoegen .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .service-page--immobilien-betriebsvermoegen .service-process-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .service-page--immobilien-betriebsvermoegen .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--immobilien-betriebsvermoegen .hero-copy {
    width: min(530px, 60%);
  }

  .service-page--immobilien-betriebsvermoegen .service-target-grid--six,
  .service-page--immobilien-betriebsvermoegen .related-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--immobilien-betriebsvermoegen .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--immobilien-betriebsvermoegen .hero-banner picture,
  .service-page--immobilien-betriebsvermoegen .hero-banner img {
    height: auto;
  }

  .service-page--immobilien-betriebsvermoegen .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--immobilien-betriebsvermoegen .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--immobilien-betriebsvermoegen .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--immobilien-betriebsvermoegen .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--immobilien-betriebsvermoegen .service-target-grid--six,
  .service-page--immobilien-betriebsvermoegen .service-process-grid--five {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus immobilien-gbr-grundstuecksgesellschaften.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Immobilien-GbR und Grundstücksgesellschaften
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.9vw, 2.12rem);
  line-height: 1.08;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .question-list--gbr div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .question-list--gbr div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet picture,
.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-card {
  min-width: 0;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-card h3,
.service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid h3,
.service-page--immobilien-gbr-grundstuecksgesellschaften .faq-list summary {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair .media-card {
  height: 100%;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.6rem, 5vw, 3.8rem);
  align-items: start;
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.11), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid h2 {
  max-width: 620px;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links {
  display: grid;
  gap: .8rem;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .92rem 1.05rem;
  border: 1px solid rgba(13,41,72,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.35;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links a::after {
  content: "→";
  color: var(--brass);
  font-weight: 900;
  flex: 0 0 auto;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .related-links a:hover {
  color: var(--navy);
  border-color: rgba(184,135,59,.36);
  background: #fff;
}

.service-page--immobilien-gbr-grundstuecksgesellschaften .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid--six,
  .service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair,
  .service-page--immobilien-gbr-grundstuecksgesellschaften .link-panel-grid {
    grid-template-columns: 1fr;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .visual-pair img {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 760px) {
  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner picture,
  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner img {
    height: auto;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--immobilien-gbr-grundstuecksgesellschaften .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus immobilienverkauf-private-veraeusserungsgeschaefte.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Immobilienverkauf / private Veräußerungsgeschäfte
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy h1 {
  max-width: 26ch;
  font-size: clamp(1.38rem, 1.88vw, 2.08rem);
  line-height: 1.08;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet picture,
.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .question-list--immobilienverkauf {
  align-items: stretch;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .question-list--immobilienverkauf div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .question-list--immobilienverkauf div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-card {
  min-height: 310px;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .faq-list details p {
  line-height: 1.7;
}

.service-page--immobilienverkauf-private-veraeusserungsgeschaefte .quote-panel p {
  color: var(--navy);
}

@media (max-width: 1080px) {
  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner picture,
  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner img {
    height: auto;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.7rem, 5.8vw, 2.15rem);
  }

  .service-page--immobilienverkauf-private-veraeusserungsgeschaefte .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus impressum.css zentralisiert ===== */
/* ======================================================
   Impressum – alternative, ruhigere Gestaltung
   - nutzt den zentralen Website-Master
   - Header/Footer/Logo bleiben unberührt
   - alle Regeln sind auf .service-page--impressum beschränkt
====================================================== */

.service-page--impressum .hero-banner--impressum {
  height: clamp(500px, 50vw, 650px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--impressum .hero-banner--impressum picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--impressum .hero-banner--impressum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.service-page--impressum .hero-banner--impressum::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(247,242,234,.82) 0%,
    rgba(247,242,234,.66) 30%,
    rgba(247,242,234,.28) 55%,
    rgba(247,242,234,0) 78%);
}

.service-page--impressum .hero-copy {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3.35rem);
  top: 50%;
  width: min(530px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--impressum .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--impressum .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(1.7rem, 2.25vw, 2.45rem);
  line-height: 1.08;
}

.service-page--impressum .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.9rem, .94vw, 1rem);
  line-height: 1.58;
}

.service-page--impressum .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--impressum .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

/* Zusammenhängende Hauptfläche statt vieler isolierter Blöcke */
.service-page--impressum .legal-identity-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 1.8rem);
  align-items: start;
}

.service-page--impressum .legal-identity-panel,
.service-page--impressum .legal-document,
.service-page--impressum .legal-continuous-sheet {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-soft);
}

.service-page--impressum .legal-identity-panel {
  position: sticky;
  top: calc(var(--header-compact) + 28px);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background:
    radial-gradient(circle at 84% 16%, rgba(184,135,59,.10), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.service-page--impressum .legal-identity-panel h2 {
  margin-bottom: .25rem;
  font-size: clamp(2rem, 2.75vw, 2.65rem);
}

.service-page--impressum .identity-subline {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-weight: 800;
  letter-spacing: .04em;
}

.service-page--impressum address {
  margin: 0 0 1.15rem;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.7;
}

.service-page--impressum .identity-links {
  display: grid;
  gap: .72rem;
}

.service-page--impressum .identity-links li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: .65rem;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 700;
}

.service-page--impressum .identity-links svg {
  width: 19px;
  height: 19px;
  color: var(--brass);
}

.service-page--impressum .identity-links a {
  overflow-wrap: anywhere;
}

.service-page--impressum .identity-note {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(184,135,59,.18);
  border-radius: 18px;
  background: #fffaf3;
}

.service-page--impressum .identity-note span,
.service-page--impressum .identity-note strong {
  display: block;
}

.service-page--impressum .identity-note span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.service-page--impressum .identity-note strong {
  margin-top: .2rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.service-page--impressum .legal-document {
  overflow: hidden;
}

.service-page--impressum .legal-document-header,
.service-page--impressum .legal-document-section,
.service-page--impressum .legal-profession-grid {
  padding: clamp(1.45rem, 3vw, 2.25rem);
}

.service-page--impressum .legal-document-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(251,248,242,.92)),
    radial-gradient(circle at 88% 8%, rgba(184,135,59,.13), transparent 24%);
}

.service-page--impressum .legal-document-header h2,
.service-page--impressum .legal-row-content h2,
.service-page--impressum .legal-editorial-copy h2 {
  margin-bottom: 1rem;
}

.service-page--impressum .legal-document-section {
  border-top: 1px solid var(--line);
}

.service-page--impressum .legal-document-section h3,
.service-page--impressum .legal-profession-grid h3 {
  margin-bottom: .8rem;
}

.service-page--impressum .legal-keyline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.2rem;
}

.service-page--impressum .legal-keyline span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: .9rem 1rem;
  border: 1px solid rgba(13,41,72,.08);
  border-radius: 16px;
  background: rgba(13,41,72,.035);
  color: var(--ink-soft);
  font-weight: 700;
}

.service-page--impressum .legal-document-section--image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: clamp(1.2rem, 4vw, 2.4rem);
  align-items: center;
}

.service-page--impressum .legal-document-section--image figure,
.service-page--impressum .legal-image-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f1e8dc;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-page--impressum .legal-document-section--image img,
.service-page--impressum .legal-image-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.service-page--impressum .legal-profession-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-page--impressum .legal-profession-grid article {
  min-width: 0;
  padding-right: clamp(1rem, 3vw, 2rem);
}

.service-page--impressum .legal-profession-grid article + article {
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: 0;
  border-left: 1px solid var(--line);
}

.service-page--impressum .legal-profession-grid h4 {
  margin-top: 1rem;
  margin-bottom: .65rem;
}

.service-page--impressum .legal-link-list {
  display: grid;
  gap: .52rem;
  margin-top: .7rem;
}

.service-page--impressum .legal-link-list a {
  display: inline-flex;
  gap: .45rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.service-page--impressum .legal-link-list a::before {
  content: "›";
  color: var(--brass);
  font-weight: 900;
}

/* Editorialer Mittelteil mit zusammenhängendem Bildband */
.service-page--impressum .legal-editorial-section {
  overflow: hidden;
}

.service-page--impressum .legal-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

.service-page--impressum .legal-editorial-copy {
  max-width: 680px;
}

.service-page--impressum .legal-image-stack {
  display: grid;
  grid-template-columns: .95fr .72fr;
  grid-template-rows: auto auto;
  gap: .9rem;
}

.service-page--impressum .legal-image-stack .legal-stack-large {
  grid-row: span 2;
}

.service-page--impressum .legal-image-stack img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.15 / 1;
}

.service-page--impressum .legal-stack-large img {
  aspect-ratio: 1 / 1.42;
}

/* Fortlaufende Rechtstexte als ein Dokument */
.service-page--impressum .legal-continuous-sheet {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.service-page--impressum .legal-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(1.45rem, 3vw, 2.3rem);
}

.service-page--impressum .legal-row + .legal-row {
  border-top: 1px solid var(--line);
}

.service-page--impressum .legal-row-label {
  color: var(--brass);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: "Inter", system-ui, sans-serif;
}

.service-page--impressum .legal-row-content p + p {
  margin-top: 1rem;
}

.service-page--impressum .legal-row--cta {
  background: rgba(13,41,72,.035);
}

.service-page--impressum .legal-row--cta .btn {
  margin-top: 1.2rem;
}

.service-page--impressum .legal-cta-box {
  background: radial-gradient(circle at 12% 22%, rgba(184,135,59,.15), transparent 26%), linear-gradient(135deg, #123862 0%, #0d2948 60%, #0a213b 100%);
}

@media (max-width: 1080px) {
  .service-page--impressum .hero-banner--impressum {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--impressum .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--impressum .legal-identity-shell,
  .service-page--impressum .legal-document-section--image,
  .service-page--impressum .legal-editorial-grid {
    grid-template-columns: 1fr;
  }

  .service-page--impressum .legal-identity-panel {
    position: static;
  }

  .service-page--impressum .legal-profession-grid {
    grid-template-columns: 1fr;
  }

  .service-page--impressum .legal-profession-grid article {
    padding-right: 0;
  }

  .service-page--impressum .legal-profession-grid article + article {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-page--impressum .legal-keyline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--impressum .hero-banner--impressum {
    height: auto;
    display: grid;
  }

  .service-page--impressum .hero-banner--impressum::after {
    background: linear-gradient(180deg, rgba(247,242,234,.72), rgba(247,242,234,.10));
  }

  .service-page--impressum .hero-banner--impressum picture,
  .service-page--impressum .hero-banner--impressum img {
    height: auto;
  }

  .service-page--impressum .hero-banner--impressum img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--impressum .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--impressum .hero-card {
    background: rgba(255,255,255,.92);
  }

  .service-page--impressum .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.85rem, 6.4vw, 2.35rem);
  }

  .service-page--impressum .legal-document-header,
  .service-page--impressum .legal-document-section,
  .service-page--impressum .legal-profession-grid,
  .service-page--impressum .legal-identity-panel,
  .service-page--impressum .legal-row {
    padding: 1.25rem;
  }

  .service-page--impressum .legal-image-stack {
    grid-template-columns: 1fr;
  }

  .service-page--impressum .legal-image-stack .legal-stack-large {
    grid-row: auto;
  }

  .service-page--impressum .legal-image-stack img,
  .service-page--impressum .legal-stack-large img {
    aspect-ratio: auto;
    height: auto;
  }

  .service-page--impressum .legal-row {
    grid-template-columns: 1fr;
    gap: .6rem;
  }
}

/* ===== Aus jahresabschluss-steuererklaerung-buchfuehrung.css zentralisiert ===== */
/* ======================================================
   Unterseite Steuerberaterhaftung / Jahresabschluss, Steuererklärung & Buchführung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--haftung-jahresabschluss .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--haftung-jahresabschluss .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--haftung-jahresabschluss .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--haftung-jahresabschluss .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(640px, 50%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--haftung-jahresabschluss .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--haftung-jahresabschluss .hero-copy h1 {
  max-width: 25ch;
  font-size: clamp(1.36rem, 1.76vw, 2rem);
  line-height: 1.08;
}

.service-page--haftung-jahresabschluss .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--haftung-jahresabschluss .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--haftung-jahresabschluss .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--haftung-jahresabschluss .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--haftung-jahresabschluss .media-card--quiet picture,
.service-page--haftung-jahresabschluss .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--haftung-jahresabschluss .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--haftung-jahresabschluss .abschluss-card-grid .service-card {
  min-height: 330px;
}

.service-page--haftung-jahresabschluss .abschluss-card-grid .service-card p + p {
  margin-top: .75rem;
}

.service-page--haftung-jahresabschluss .question-list--abschluss div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--haftung-jahresabschluss .question-list--abschluss div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--haftung-jahresabschluss .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--haftung-jahresabschluss .service-target-grid--six article {
  min-height: 230px;
}

.service-page--haftung-jahresabschluss .abschluss-target-grid h3 {
  hyphens: auto;
}

.service-page--haftung-jahresabschluss .section-route {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--haftung-jahresabschluss .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--haftung-jahresabschluss .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--haftung-jahresabschluss .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--haftung-jahresabschluss .documents-list {
  margin-top: 1.4rem;
}

.service-page--haftung-jahresabschluss .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--haftung-jahresabschluss .service-process-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.service-page--haftung-jahresabschluss .service-process-grid--six article {
  min-height: 315px;
}

.service-page--haftung-jahresabschluss .related-grid .service-card {
  min-height: 285px;
}

.service-page--haftung-jahresabschluss .related-grid .text-link {
  margin-top: auto;
  padding-top: 1rem;
}

.service-page--haftung-jahresabschluss .faq-list details p {
  line-height: 1.7;
}

.service-page--haftung-jahresabschluss .text-link {
  align-self: flex-start;
  margin-top: 1.1rem;
}

@media (max-width: 1080px) {
  .service-page--haftung-jahresabschluss .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--haftung-jahresabschluss .hero-copy {
    width: min(560px, 64%);
  }

  .service-page--haftung-jahresabschluss .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--haftung-jahresabschluss .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--haftung-jahresabschluss .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--haftung-jahresabschluss .hero-banner picture,
  .service-page--haftung-jahresabschluss .hero-banner img {
    height: auto;
  }

  .service-page--haftung-jahresabschluss .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--haftung-jahresabschluss .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--haftung-jahresabschluss .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--haftung-jahresabschluss .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.65rem, 5.75vw, 2.16rem);
  }

  .service-page--haftung-jahresabschluss .hero-copy .btn {
    width: 100%;
  }

  .service-page--haftung-jahresabschluss .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus jahresabschluss.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Jahresabschluss
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--jahresabschluss .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--jahresabschluss .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--jahresabschluss .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--jahresabschluss .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--jahresabschluss .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .69);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--jahresabschluss .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.18rem);
  line-height: 1.08;
}

.service-page--jahresabschluss .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .99rem);
  line-height: 1.55;
}

.service-page--jahresabschluss .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--jahresabschluss .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--jahresabschluss .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--jahresabschluss .media-card--quiet picture,
.service-page--jahresabschluss .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--jahresabschluss .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--jahresabschluss .question-list--jahresabschluss div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--jahresabschluss .question-list--jahresabschluss div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--jahresabschluss .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--jahresabschluss .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--jahresabschluss .section-records {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--jahresabschluss .records-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 15% 18%, rgba(184,135,59,.11), transparent 26%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--jahresabschluss .records-panel h2 {
  max-width: 720px;
}

.service-page--jahresabschluss .records-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--jahresabschluss .records-panel .media-card {
  box-shadow: none;
}

.service-page--jahresabschluss .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--jahresabschluss .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--jahresabschluss .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--jahresabschluss .service-target-grid--six,
  .service-page--jahresabschluss .records-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--jahresabschluss .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--jahresabschluss .hero-banner picture,
  .service-page--jahresabschluss .hero-banner img {
    height: auto;
  }

  .service-page--jahresabschluss .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--jahresabschluss .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--jahresabschluss .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--jahresabschluss .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--jahresabschluss .service-target-grid--six,
  .service-page--jahresabschluss .records-panel {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus kontakt.css zentralisiert ===== */
/* ======================================================
   Kontaktseite
   nutzt den zentralen Leistungsseiten-Master und ergänzt
   ausschließlich seitenbezogene Regeln.
====================================================== */

/* Bannerhöhe aus dem Leistungsseiten-Template übernommen. */
.service-page--kontakt .hero-banner {
  height: clamp(480px, 50vw, 640px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--kontakt .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--kontakt .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--kontakt .hero-copy {
  width: min(560px, 44%);
}

.service-page--kontakt .hero-card {
  background: rgba(255, 255, 255, .64);
  border-color: rgba(255, 255, 255, .76);
  backdrop-filter: blur(8px);
}

.service-page--kontakt .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 2.25vw, 2.48rem);
}

.service-page--kontakt .quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-page--kontakt .quick-contact-card {
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--kontakt .quick-contact-card h3 {
  margin-bottom: .65rem;
}

.service-page--kontakt .quick-contact-card p,
.service-page--kontakt .quick-contact-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.service-page--kontakt .quick-contact-card a {
  color: var(--navy);
  font-weight: 800;
}

.service-page--kontakt .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 6vw, 4.4rem);
  align-items: start;
}

.service-page--kontakt .contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-deep);
}

.service-page--kontakt .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-page--kontakt .form-row {
  display: grid;
  gap: .46rem;
}

.service-page--kontakt .form-row--full,
.service-page--kontakt .form-row--checkbox,
.service-page--kontakt .form-actions {
  grid-column: 1 / -1;
}

.service-page--kontakt label {
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 800;
}

.service-page--kontakt input,
.service-page--kontakt select,
.service-page--kontakt textarea {
  width: 100%;
  min-height: 48px;
  padding: .8rem .9rem;
  border: 1px solid rgba(13,41,72,.15);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.service-page--kontakt textarea {
  min-height: 170px;
  resize: vertical;
}

.service-page--kontakt input:focus,
.service-page--kontakt select:focus,
.service-page--kontakt textarea:focus {
  border-color: rgba(184,135,59,.65);
  box-shadow: 0 0 0 4px rgba(184,135,59,.12);
}

.service-page--kontakt .form-row--checkbox label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.55;
}

.service-page--kontakt .form-row--checkbox input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: .18rem;
  accent-color: var(--navy);
}

.service-page--kontakt .form-note {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}

.service-page--kontakt .contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.service-page--kontakt .contact-info-list {
  display: grid;
  gap: .85rem;
  margin-top: 1.65rem;
}

.service-page--kontakt .contact-info-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  color: var(--ink-soft);
}

.service-page--kontakt .contact-info-list li::before {
  position: absolute;
  left: 1.05rem;
  top: 1.05rem;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,135,59,.45);
  border-radius: 50%;
  color: var(--brass);
  content: "✓";
  font-size: .72rem;
  font-weight: 900;
}

.service-page--kontakt .image-stack {
  display: grid;
  gap: 1rem;
}

.service-page--kontakt .image-stack .media-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--kontakt .address-panel {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--kontakt .address-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--kontakt .address-card address {
  margin: .8rem 0 1.1rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}

.service-page--kontakt .address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}

.service-page--kontakt .question-list--kontakt div {
  min-height: 86px;
  display: flex;
  align-items: center;
}

.service-page--kontakt .question-list--kontakt div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--kontakt .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--kontakt .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

@media (max-width: 1080px) {
  .service-page--kontakt .hero-banner {
    height: clamp(430px, 56vw, 560px);
  }

  .service-page--kontakt .hero-copy {
    width: min(500px, 58%);
  }

  .service-page--kontakt .quick-contact-grid,
  .service-page--kontakt .contact-layout,
  .service-page--kontakt .address-panel {
    grid-template-columns: 1fr;
  }

  .service-page--kontakt .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--kontakt .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--kontakt .hero-banner picture,
  .service-page--kontakt .hero-banner img {
    height: auto;
  }

  .service-page--kontakt .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--kontakt .hero-copy {
    width: auto;
  }

  .service-page--kontakt .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--kontakt .form-grid,
  .service-page--kontakt .quick-contact-grid,
  .service-page--kontakt .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--kontakt .address-actions .btn {
    width: 100%;
  }
}

.service-page--kontakt .intro-panel address {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}

/* ===== Aus lohnabrechnung-baulohn.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Lohnabrechnung / Baulohn
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--lohnabrechnung-baulohn .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--lohnabrechnung-baulohn .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--lohnabrechnung-baulohn .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--lohnabrechnung-baulohn .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--lohnabrechnung-baulohn .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--lohnabrechnung-baulohn .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--lohnabrechnung-baulohn .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--lohnabrechnung-baulohn .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--lohnabrechnung-baulohn .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--lohnabrechnung-baulohn .media-card--quiet {
  background: linear-gradient(180deg, #f1e8dc 0%, #f8f4ed 100%);
}

.service-page--lohnabrechnung-baulohn .media-card--quiet picture,
.service-page--lohnabrechnung-baulohn .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--lohnabrechnung-baulohn .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--lohnabrechnung-baulohn .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--lohnabrechnung-baulohn .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--lohnabrechnung-baulohn .scope-panel h2 {
  max-width: 520px;
}

.service-page--lohnabrechnung-baulohn .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--lohnabrechnung-baulohn .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--lohnabrechnung-baulohn .service-target-grid--six article {
  min-height: 220px;
}

.service-page--lohnabrechnung-baulohn .question-list--lohn div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--lohnabrechnung-baulohn .question-list--lohn div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--lohnabrechnung-baulohn .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--lohnabrechnung-baulohn .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--lohnabrechnung-baulohn .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--lohnabrechnung-baulohn .scope-panel {
    grid-template-columns: 1fr;
  }

  .service-page--lohnabrechnung-baulohn .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--lohnabrechnung-baulohn .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--lohnabrechnung-baulohn .hero-banner picture,
  .service-page--lohnabrechnung-baulohn .hero-banner img {
    height: auto;
  }

  .service-page--lohnabrechnung-baulohn .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--lohnabrechnung-baulohn .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--lohnabrechnung-baulohn .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--lohnabrechnung-baulohn .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--lohnabrechnung-baulohn .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus rechtsanwalt-koeln.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsanwalt Köln
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--rechtsanwalt-koeln .hero-banner {
  height: clamp(520px, 50vw, 680px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-koeln .hero-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg,
    rgba(247,242,234,.86) 0%,
    rgba(247,242,234,.70) 28%,
    rgba(247,242,234,.34) 48%,
    rgba(247,242,234,.08) 70%,
    rgba(247,242,234,0) 100%);
}

.service-page--rechtsanwalt-koeln .hero-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-page--rechtsanwalt-koeln .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.service-page--rechtsanwalt-koeln .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--rechtsanwalt-koeln .hero-card {
  padding: clamp(1.1rem, 2.2vw, 1.75rem) clamp(1.15rem, 2.45vw, 1.95rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(13, 41, 72, .12);
}

.service-page--rechtsanwalt-koeln .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.55rem, 2.05vw, 2.28rem);
  line-height: 1.08;
}

.service-page--rechtsanwalt-koeln .hero-copy .lead {
  margin-top: .82rem;
  font-size: clamp(.89rem, .96vw, 1rem);
  line-height: 1.58;
}

.service-page--rechtsanwalt-koeln .hero-copy .button-row {
  gap: .7rem;
  margin-top: 1.15rem;
}

.service-page--rechtsanwalt-koeln .hero-copy .btn {
  padding: .72rem .96rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--rechtsanwalt-koeln .question-list--rechtsanwalt {
  align-items: stretch;
}

.service-page--rechtsanwalt-koeln .question-list--rechtsanwalt div {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--rechtsanwalt-koeln .question-list--rechtsanwalt div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--rechtsanwalt-koeln .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-koeln .media-card--quiet picture,
.service-page--rechtsanwalt-koeln .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--rechtsanwalt-koeln .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--rechtsanwalt-koeln .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--rechtsanwalt-koeln .service-target-grid--six article {
  min-height: 210px;
}

.service-page--rechtsanwalt-koeln .law-image-band {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
}

.service-page--rechtsanwalt-koeln .law-image-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.service-page--rechtsanwalt-koeln .law-image-duo .media-card img {
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.service-page--rechtsanwalt-koeln .law-note-panel {
  padding: clamp(1.75rem, 4vw, 2.65rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsanwalt-koeln .law-note-panel h2 {
  margin-bottom: 1.15rem;
}

.service-page--rechtsanwalt-koeln .text-link {
  align-self: flex-start;
}

.service-page--rechtsanwalt-koeln .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--rechtsanwalt-koeln .faq-list details p {
  line-height: 1.7;
}

.service-page--rechtsanwalt-koeln .cta-box--with-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(200px, 310px);
  gap: clamp(1.2rem, 4vw, 2.4rem);
  overflow: hidden;
}

.service-page--rechtsanwalt-koeln .cta-box--with-image figure {
  align-self: stretch;
  min-height: 180px;
  margin: -1.1rem -1.1rem -1.1rem 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
}

.service-page--rechtsanwalt-koeln .cta-box--with-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

@media (max-width: 1080px) {
  .service-page--rechtsanwalt-koeln .hero-banner {
    height: clamp(440px, 58vw, 590px);
  }

  .service-page--rechtsanwalt-koeln .hero-copy {
    width: min(530px, 62%);
  }

  .service-page--rechtsanwalt-koeln .law-image-band,
  .service-page--rechtsanwalt-koeln .cta-box--with-image {
    grid-template-columns: 1fr;
  }

  .service-page--rechtsanwalt-koeln .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--rechtsanwalt-koeln .cta-box--with-image figure {
    min-height: 220px;
    margin: 0;
  }
}

@media (max-width: 760px) {
  .service-page--rechtsanwalt-koeln .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--rechtsanwalt-koeln .hero-banner::after {
    display: none;
  }

  .service-page--rechtsanwalt-koeln .hero-banner picture,
  .service-page--rechtsanwalt-koeln .hero-banner img {
    height: auto;
  }

  .service-page--rechtsanwalt-koeln .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--rechtsanwalt-koeln .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--rechtsanwalt-koeln .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--rechtsanwalt-koeln .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--rechtsanwalt-koeln .service-target-grid--six,
  .service-page--rechtsanwalt-koeln .law-image-duo {
    grid-template-columns: 1fr;
  }

  .service-page--rechtsanwalt-koeln .law-image-duo .media-card img {
    height: auto;
    object-fit: contain;
  }
}

/* ===== Aus rechtsanwalt-steuerrecht.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsanwalt im Steuerrecht
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--rechtsanwalt-steuerrecht .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-steuerrecht .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--rechtsanwalt-steuerrecht .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(575px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--rechtsanwalt-steuerrecht .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--rechtsanwalt-steuerrecht .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.18rem);
  line-height: 1.08;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--rechtsanwalt-steuerrecht .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--rechtsanwalt-steuerrecht .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsanwalt-steuerrecht .media-card--quiet picture,
.service-page--rechtsanwalt-steuerrecht .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--rechtsanwalt-steuerrecht .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--rechtsanwalt-steuerrecht .question-list--steuerrecht div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--rechtsanwalt-steuerrecht .question-list--steuerrecht div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--rechtsanwalt-steuerrecht .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--rechtsanwalt-steuerrecht .service-target-grid--six article {
  min-height: 230px;
}

.service-page--rechtsanwalt-steuerrecht .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--rechtsanwalt-steuerrecht .section-scope {
  background: linear-gradient(180deg, #fbf8f2 0%, #f2e8dc 100%);
}

.service-page--rechtsanwalt-steuerrecht .scope-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsanwalt-steuerrecht .scope-panel h2 {
  max-width: 540px;
}

.service-page--rechtsanwalt-steuerrecht .scope-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--rechtsanwalt-steuerrecht .scope-panel p + p {
  margin-top: 1rem;
}

.service-page--rechtsanwalt-steuerrecht .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--rechtsanwalt-steuerrecht .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--rechtsanwalt-steuerrecht .hero-copy {
    width: min(530px, 62%);
  }

  .service-page--rechtsanwalt-steuerrecht .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--rechtsanwalt-steuerrecht .scope-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--rechtsanwalt-steuerrecht .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-banner picture,
  .service-page--rechtsanwalt-steuerrecht .hero-banner img {
    height: auto;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--rechtsanwalt-steuerrecht .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--rechtsanwalt-steuerrecht .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--rechtsanwalt-steuerrecht .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus rechtsformwahl.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Rechtsformwahl
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--rechtsformwahl .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsformwahl .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--rechtsformwahl .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--rechtsformwahl .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--rechtsformwahl .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--rechtsformwahl .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.45rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--rechtsformwahl .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--rechtsformwahl .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--rechtsformwahl .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--rechtsformwahl .question-list--rechtsformwahl {
  align-items: stretch;
}

.service-page--rechtsformwahl .question-list--rechtsformwahl div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--rechtsformwahl .question-list--rechtsformwahl div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--rechtsformwahl .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--rechtsformwahl .media-card--quiet picture,
.service-page--rechtsformwahl .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--rechtsformwahl .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--rechtsformwahl .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--rechtsformwahl .service-target-grid--six article {
  min-height: 210px;
}

.service-page--rechtsformwahl .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2.2rem;
}

.service-page--rechtsformwahl .comparison-card {
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsformwahl .comparison-card h3 {
  margin-bottom: .75rem;
}

.service-page--rechtsformwahl .comparison-card p {
  color: var(--muted);
}

.service-page--rechtsformwahl .decision-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--rechtsformwahl .decision-panel h2 {
  max-width: 520px;
}

.service-page--rechtsformwahl .decision-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--rechtsformwahl .decision-panel p + p {
  margin-top: 1rem;
}

.service-page--rechtsformwahl .text-link {
  align-self: flex-start;
}

.service-page--rechtsformwahl .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--rechtsformwahl .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--rechtsformwahl .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--rechtsformwahl .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--rechtsformwahl .service-target-grid--six,
  .service-page--rechtsformwahl .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--rechtsformwahl .decision-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--rechtsformwahl .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--rechtsformwahl .hero-banner picture,
  .service-page--rechtsformwahl .hero-banner img {
    height: auto;
  }

  .service-page--rechtsformwahl .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--rechtsformwahl .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--rechtsformwahl .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--rechtsformwahl .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--rechtsformwahl .service-target-grid--six,
  .service-page--rechtsformwahl .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus steuerberater-koeln.css zentralisiert ===== */
/* ======================================================
   Lokale Hub-Seite: Steuerberater Köln
   Ergänzung zum zentralen Leistungsseiten-Master.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--steuerberater-koeln .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberater-koeln .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--steuerberater-koeln .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--steuerberater-koeln .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 45%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--steuerberater-koeln .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--steuerberater-koeln .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 2.25vw, 2.45rem);
  line-height: 1.08;
}

.service-page--steuerberater-koeln .hero-copy .lead {
  margin-top: .82rem;
  font-size: clamp(.9rem, .96vw, 1rem);
  line-height: 1.58;
}

.service-page--steuerberater-koeln .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--steuerberater-koeln .hero-copy .btn {
  padding: .72rem .96rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--steuerberater-koeln .local-benefit-grid {
  margin-top: 2.2rem;
}

.service-page--steuerberater-koeln .service-card--hub {
  min-height: 330px;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills,
.service-page--steuerberater-koeln .hub-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.15rem;
}

.service-page--steuerberater-koeln .link-pills a,
.service-page--steuerberater-koeln .hub-link-list a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .46rem .62rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 41, 72, .11);
  background: rgba(255, 255, 255, .68);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
}

.service-page--steuerberater-koeln .link-pills a::after,
.service-page--steuerberater-koeln .hub-link-list a::after {
  content: "→";
  color: var(--brass);
}

.service-page--steuerberater-koeln .service-card-emphasis .link-pills a {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.10);
  color: #fff;
}

.service-page--steuerberater-koeln .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberater-koeln .media-card--quiet picture,
.service-page--steuerberater-koeln .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--steuerberater-koeln .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--steuerberater-koeln .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerberater-koeln .service-target-grid--six article {
  min-height: 230px;
}

.service-page--steuerberater-koeln .question-list--steuerberater div {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--steuerberater-koeln .question-list--steuerberater div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--steuerberater-koeln .care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-page--steuerberater-koeln .care-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberater-koeln .care-card h3 {
  margin-bottom: .7rem;
}

.service-page--steuerberater-koeln .care-card p {
  color: var(--muted);
}

.service-page--steuerberater-koeln .care-card .hub-link-list {
  margin-top: 1.3rem;
  padding-top: 0;
}

.service-page--steuerberater-koeln .image-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}

.service-page--steuerberater-koeln .image-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #efe5d6;
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberater-koeln .image-strip img {
  width: 100%;
  height: auto;
  display: block;
}

.service-page--steuerberater-koeln .area-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-page--steuerberater-koeln .area-link-card {
  padding: 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberater-koeln .area-link-card h3 {
  margin-bottom: .75rem;
}

.service-page--steuerberater-koeln .area-link-card .link-list {
  margin-bottom: 0;
}

.service-page--steuerberater-koeln .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--steuerberater-koeln .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--steuerberater-koeln .hero-copy {
    width: min(520px, 58%);
  }

  .service-page--steuerberater-koeln .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--steuerberater-koeln .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--steuerberater-koeln .hero-banner picture,
  .service-page--steuerberater-koeln .hero-banner img {
    height: auto;
  }

  .service-page--steuerberater-koeln .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--steuerberater-koeln .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--steuerberater-koeln .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--steuerberater-koeln .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--steuerberater-koeln .care-grid,
  .service-page--steuerberater-koeln .image-strip,
  .service-page--steuerberater-koeln .area-link-grid,
  .service-page--steuerberater-koeln .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   v2 Korrektur:
   - Vorteilsblöcke im Abschnitt „Steuerberatung in Köln“ gegen Textüberlauf gesichert
   - Links in den Leistungsblöcken ruhiger als einheitliche Listenzeilen statt Pill-Buttons
====================================================== */

.service-page--steuerberater-koeln .local-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.service-page--steuerberater-koeln .local-benefit-grid .mini-card {
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.service-page--steuerberater-koeln .local-benefit-grid .mini-card h3 {
  font-size: clamp(1.28rem, 1.55vw, 1.7rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-page--steuerberater-koeln .local-benefit-grid .mini-card p {
  overflow-wrap: anywhere;
}

.service-page--steuerberater-koeln .service-card--hub {
  min-width: 0;
  overflow: hidden;
}

.service-page--steuerberater-koeln .service-card--hub h3,
.service-page--steuerberater-koeln .service-card--hub p {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  margin-top: auto;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(13, 41, 72, .10);
}

.service-page--steuerberater-koeln .service-card--hub .link-pills::before {
  content: "Weiterführend";
  display: block;
  margin-bottom: .35rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: "Inter", system-ui, sans-serif;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  padding: .55rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 750;
  line-height: 1.35;
  box-shadow: none;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a + a {
  border-top: 1px solid rgba(13, 41, 72, .075);
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a::after {
  content: "→";
  flex: 0 0 auto;
  margin-left: 1rem;
  color: var(--brass);
  font-weight: 800;
}

.service-page--steuerberater-koeln .service-card--hub .link-pills a:hover {
  color: var(--navy-2);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills {
  border-top-color: rgba(255,255,255,.18);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills::before {
  color: rgba(255,255,255,.68);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills a {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.14);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills a + a {
  border-top: 1px solid rgba(255,255,255,.14);
}

.service-page--steuerberater-koeln .service-card-emphasis.service-card--hub .link-pills a::after {
  color: rgba(255,255,255,.82);
}

@media (max-width: 760px) {
  .service-page--steuerberater-koeln .local-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus steuerberaterhaftung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Steuerberaterhaftung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--steuerberaterhaftung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberaterhaftung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--steuerberaterhaftung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--steuerberaterhaftung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(590px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--steuerberaterhaftung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--steuerberaterhaftung .hero-copy h1 {
  max-width: 19ch;
  font-size: clamp(1.52rem, 2vw, 2.24rem);
  line-height: 1.08;
}

.service-page--steuerberaterhaftung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .94vw, .99rem);
  line-height: 1.55;
}

.service-page--steuerberaterhaftung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--steuerberaterhaftung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--steuerberaterhaftung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerberaterhaftung .media-card--quiet picture,
.service-page--steuerberaterhaftung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--steuerberaterhaftung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--steuerberaterhaftung .question-list--haftung div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--steuerberaterhaftung .question-list--haftung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--steuerberaterhaftung .hub-card-grid .service-card {
  min-height: 360px;
}

.service-page--steuerberaterhaftung .service-card .text-link {
  margin-top: auto;
  padding-top: .95rem;
  align-self: flex-start;
}

.service-page--steuerberaterhaftung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerberaterhaftung .service-target-grid--six article {
  min-height: 215px;
}

.service-page--steuerberaterhaftung .documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1.75rem, 6vw, 4.5rem);
  align-items: center;
}

.service-page--steuerberaterhaftung .documents-copy {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerberaterhaftung .documents-copy h2 {
  margin-bottom: 1.2rem;
}

.service-page--steuerberaterhaftung .documents-list {
  margin-top: 1.4rem;
}

.service-page--steuerberaterhaftung .documents-image img {
  width: 100%;
  height: auto;
}

.service-page--steuerberaterhaftung .service-process-grid--five {
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.service-page--steuerberaterhaftung .service-process-grid--five article {
  min-height: 285px;
}

.service-page--steuerberaterhaftung .section-tax-procedure {
  background: linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.service-page--steuerberaterhaftung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--steuerberaterhaftung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--steuerberaterhaftung .hero-copy {
    width: min(540px, 62%);
  }

  .service-page--steuerberaterhaftung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--steuerberaterhaftung .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--steuerberaterhaftung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--steuerberaterhaftung .hero-banner picture,
  .service-page--steuerberaterhaftung .hero-banner img {
    height: auto;
  }

  .service-page--steuerberaterhaftung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--steuerberaterhaftung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--steuerberaterhaftung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--steuerberaterhaftung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--steuerberaterhaftung .service-target-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--steuerberaterhaftung .hub-card-grid .service-card,
  .service-page--steuerberaterhaftung .service-process-grid--five article,
  .service-page--steuerberaterhaftung .service-target-grid--six article {
    min-height: 0;
  }

  .service-page--steuerberaterhaftung .documents-copy {
    padding: 1.45rem;
  }
}

/* ===== Aus steuerstrafrecht.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Steuerstrafrecht
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--steuerstrafrecht .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerstrafrecht .hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(247,242,234,.84) 0%,
    rgba(247,242,234,.66) 34%,
    rgba(247,242,234,.26) 58%,
    rgba(247,242,234,0) 84%);
  z-index: 1;
}

.service-page--steuerstrafrecht .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--steuerstrafrecht .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--steuerstrafrecht .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--steuerstrafrecht .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--steuerstrafrecht .hero-copy h1 {
  max-width: 22ch;
  font-size: clamp(1.45rem, 1.95vw, 2.18rem);
  line-height: 1.08;
}

.service-page--steuerstrafrecht .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--steuerstrafrecht .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--steuerstrafrecht .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--steuerstrafrecht .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--steuerstrafrecht .media-card--quiet picture,
.service-page--steuerstrafrecht .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--steuerstrafrecht .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--steuerstrafrecht .question-list--steuerstrafrecht {
  align-items: stretch;
}

.service-page--steuerstrafrecht .question-list--steuerstrafrecht div {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--steuerstrafrecht .question-list--steuerstrafrecht div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--steuerstrafrecht .card-grid--steuerstrafrecht .service-card {
  min-height: 330px;
}

.service-page--steuerstrafrecht .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--steuerstrafrecht .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerstrafrecht .service-target-grid--six article {
  min-height: 220px;
}

.service-page--steuerstrafrecht .risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-page--steuerstrafrecht .risk-grid article {
  min-width: 0;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}

.service-page--steuerstrafrecht .risk-grid h3 {
  margin-bottom: .75rem;
}

.service-page--steuerstrafrecht .risk-grid p {
  color: var(--muted);
}

.service-page--steuerstrafrecht .service-process-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--steuerstrafrecht .service-process-grid--six article {
  min-height: 295px;
}

.service-page--steuerstrafrecht .faq-list details p {
  line-height: 1.7;
}

.service-page--steuerstrafrecht .cta-box {
  align-items: flex-start;
}

.service-page--steuerstrafrecht .cta-note {
  margin-top: 1rem;
  font-size: .98rem;
  color: rgba(255,255,255,.76) !important;
}

@media (max-width: 1080px) {
  .service-page--steuerstrafrecht .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--steuerstrafrecht .hero-copy {
    width: min(520px, 61%);
  }

  .service-page--steuerstrafrecht .service-target-grid--six,
  .service-page--steuerstrafrecht .risk-grid,
  .service-page--steuerstrafrecht .service-process-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--steuerstrafrecht .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--steuerstrafrecht .hero-banner::after {
    background: linear-gradient(180deg,
      rgba(247,242,234,.52) 0%,
      rgba(247,242,234,.18) 55%,
      rgba(247,242,234,0) 100%);
  }

  .service-page--steuerstrafrecht .hero-banner picture,
  .service-page--steuerstrafrecht .hero-banner img {
    height: auto;
  }

  .service-page--steuerstrafrecht .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--steuerstrafrecht .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--steuerstrafrecht .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--steuerstrafrecht .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--steuerstrafrecht .service-target-grid--six,
  .service-page--steuerstrafrecht .risk-grid,
  .service-page--steuerstrafrecht .service-process-grid--six {
    grid-template-columns: 1fr;
  }

  .service-page--steuerstrafrecht .question-list--steuerstrafrecht div {
    min-height: 0;
  }
}

/* ===== Aus ueber-uns.css zentralisiert ===== */
/* ======================================================
   Seite: Über uns
   - nutzt den zentralen Leistungsseiten-Master
   - alle Regeln bewusst seitenbezogen unter .service-page--ueber-uns
   - logo.css bleibt geschützt und wird zuletzt geladen
====================================================== */

.service-page--ueber-uns .hero-banner {
  height: auto;
  min-height: 0;
  display: block;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--ueber-uns .hero-banner picture,
.service-page--ueber-uns .hero-banner img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .hero-banner img {
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.service-page--ueber-uns .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(560px, 48%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--ueber-uns .hero-card {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--ueber-uns .hero-copy h1 {
  max-width: 21ch;
  font-size: clamp(1.45rem, 2.05vw, 2.18rem);
  line-height: 1.08;
}

.service-page--ueber-uns .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.88rem, .94vw, .98rem);
  line-height: 1.55;
}

.service-page--ueber-uns .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--ueber-uns .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--ueber-uns .about-profile-card {
  padding: 0;
  overflow: hidden;
}

.service-page--ueber-uns .about-profile-card picture,
.service-page--ueber-uns .about-profile-card img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .about-profile-card img {
  height: auto;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--ueber-uns .about-profile-body {
  padding: 1.55rem;
}

.service-page--ueber-uns .about-profile-body h3 {
  margin-bottom: .35rem;
}

.service-page--ueber-uns .about-profile-body > p {
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.45;
}

.service-page--ueber-uns .about-fact-list {
  display: grid;
  gap: .72rem;
  margin-top: 1.25rem;
}

.service-page--ueber-uns .about-fact-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-page--ueber-uns .about-fact-list li::before {
  position: absolute;
  left: 0;
  top: .52em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.service-page--ueber-uns .service-card {
  min-height: 300px;
}

.service-page--ueber-uns .media-card--quiet,
.service-page--ueber-uns .about-gallery figure {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--ueber-uns .media-card--quiet picture,
.service-page--ueber-uns .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--ueber-uns .quote-panel p small {
  display: block;
  margin-top: .85rem;
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-page--ueber-uns .about-gallery {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 1.1rem;
  align-items: stretch;
}

.service-page--ueber-uns .about-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.service-page--ueber-uns .about-gallery picture,
.service-page--ueber-uns .about-gallery img {
  display: block;
  width: 100%;
}

.service-page--ueber-uns .about-gallery img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.service-page--ueber-uns .about-gallery .about-gallery-vertical img {
  object-fit: cover;
  object-position: center;
}

.service-page--ueber-uns .about-gallery-caption {
  padding: 1.25rem;
  background: rgba(255,255,255,.76);
  border-top: 1px solid var(--line);
}

.service-page--ueber-uns .about-gallery-caption h3 {
  margin-bottom: .35rem;
}

.service-page--ueber-uns .about-gallery-caption p {
  color: var(--muted);
}

.service-page--ueber-uns .question-list div {
  min-height: 86px;
  display: flex;
  align-items: center;
}

.service-page--ueber-uns .question-list div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--ueber-uns .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--ueber-uns .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--ueber-uns .service-card {
    min-height: 0;
  }

  .service-page--ueber-uns .about-gallery {
    grid-template-columns: 1fr;
  }

  .service-page--ueber-uns .about-gallery img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
}

@media (max-width: 760px) {
  .service-page--ueber-uns .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--ueber-uns .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--ueber-uns .hero-card {
    background: rgba(255, 255, 255, .92);
  }

  .service-page--ueber-uns .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--ueber-uns .about-profile-card {
    position: static;
  }
}

/* ===== Aus umwandlung-umstrukturierung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Umwandlung & Umstrukturierung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--umwandlung-umstrukturierung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--umwandlung-umstrukturierung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--umwandlung-umstrukturierung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--umwandlung-umstrukturierung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--umwandlung-umstrukturierung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--umwandlung-umstrukturierung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.95vw, 2.16rem);
  line-height: 1.08;
}

.service-page--umwandlung-umstrukturierung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--umwandlung-umstrukturierung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--umwandlung-umstrukturierung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--umwandlung-umstrukturierung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--umwandlung-umstrukturierung .media-card--quiet picture,
.service-page--umwandlung-umstrukturierung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--umwandlung-umstrukturierung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--umwandlung-umstrukturierung .question-list--umwandlung {
  align-items: stretch;
}

.service-page--umwandlung-umstrukturierung .question-list--umwandlung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--umwandlung-umstrukturierung .question-list--umwandlung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--umwandlung-umstrukturierung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--umwandlung-umstrukturierung .faq-list details p {
  line-height: 1.7;
}

.service-page--umwandlung-umstrukturierung .text-link {
  align-self: flex-start;
}

.service-page--umwandlung-umstrukturierung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
}

.service-page--umwandlung-umstrukturierung .split-content p,
.service-page--umwandlung-umstrukturierung .feature-copy p:not(.section-kicker) {
  font-size: 1.03rem;
}

.service-page--umwandlung-umstrukturierung .service-process-grid article {
  min-height: 250px;
}

@media (max-width: 1080px) {
  .service-page--umwandlung-umstrukturierung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--umwandlung-umstrukturierung .hero-copy {
    width: min(520px, 60%);
  }

  .service-page--umwandlung-umstrukturierung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-page--umwandlung-umstrukturierung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--umwandlung-umstrukturierung .hero-banner picture,
  .service-page--umwandlung-umstrukturierung .hero-banner img {
    height: auto;
  }

  .service-page--umwandlung-umstrukturierung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--umwandlung-umstrukturierung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--umwandlung-umstrukturierung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--umwandlung-umstrukturierung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--umwandlung-umstrukturierung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Aus vermietung-verpachtung.css zentralisiert ===== */
/* ======================================================
   Leistungsseite Vermietung und Verpachtung
   Ergänzungsdatei zur zentralen styles.css.

   Wichtig:
   - Header, Footer und Logo-System bleiben unangetastet.
   - logo.css wird in der HTML-Datei nach dieser Datei geladen.
   - Alle Regeln sind seitenbezogen gekapselt.
====================================================== */

.service-page--vermietung-verpachtung .hero-banner {
  height: clamp(500px, 50vw, 660px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--vermietung-verpachtung .hero-banner picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.service-page--vermietung-verpachtung .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: transparent;
}

.service-page--vermietung-verpachtung .hero-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.35rem);
  top: 50%;
  bottom: auto;
  width: min(570px, 47%);
  transform: translateY(-50%);
  z-index: 2;
}

.service-page--vermietung-verpachtung .hero-card {
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.05rem, 2.25vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(13, 41, 72, .12);
}

.service-page--vermietung-verpachtung .hero-copy h1 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 1.92vw, 2.14rem);
  line-height: 1.08;
}

.service-page--vermietung-verpachtung .hero-copy .lead {
  margin-top: .78rem;
  font-size: clamp(.87rem, .92vw, .98rem);
  line-height: 1.55;
}

.service-page--vermietung-verpachtung .hero-copy .button-row {
  gap: .65rem;
  margin-top: 1.1rem;
}

.service-page--vermietung-verpachtung .hero-copy .btn {
  padding: .7rem .94rem;
  border-radius: 10px;
  font-size: .84rem;
}

.service-page--vermietung-verpachtung .media-card--quiet {
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

.service-page--vermietung-verpachtung .media-card--quiet picture,
.service-page--vermietung-verpachtung .media-card--quiet img {
  display: block;
  width: 100%;
}

.service-page--vermietung-verpachtung .media-card--quiet img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-page--vermietung-verpachtung .question-list--vermietung {
  align-items: stretch;
}

.service-page--vermietung-verpachtung .question-list--vermietung div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.service-page--vermietung-verpachtung .question-list--vermietung div::before {
  top: 50%;
  transform: translateY(-50%);
}

.service-page--vermietung-verpachtung .service-target-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--vermietung-verpachtung .service-target-grid--six article {
  min-height: 218px;
}

.service-page--vermietung-verpachtung .service-card .text-link {
  margin-top: auto;
  padding-top: .9rem;
  align-self: flex-start;
}

.service-page--vermietung-verpachtung .info-panel {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%), linear-gradient(145deg, #fff, #fbf8f2);
  box-shadow: var(--shadow-soft);
}

.service-page--vermietung-verpachtung .info-panel h2 {
  max-width: 540px;
}

.service-page--vermietung-verpachtung .info-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-page--vermietung-verpachtung .info-panel p + p {
  margin-top: 1rem;
}

.service-page--vermietung-verpachtung .key-list {
  display: grid;
  gap: .75rem;
  margin-top: 0;
}

.service-page--vermietung-verpachtung .key-list li {
  position: relative;
  padding: .88rem 1rem .88rem 2.45rem;
  border: 1px solid rgba(13,41,72,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  color: var(--ink-soft);
  font-weight: 600;
}

.service-page--vermietung-verpachtung .key-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brass);
  transform: translateY(-50%);
}

.service-page--vermietung-verpachtung .faq-list details p {
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .service-page--vermietung-verpachtung .hero-banner {
    height: clamp(430px, 56vw, 580px);
  }

  .service-page--vermietung-verpachtung .hero-copy {
    width: min(520px, 62%);
  }

  .service-page--vermietung-verpachtung .service-target-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page--vermietung-verpachtung .info-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-page--vermietung-verpachtung .hero-banner {
    height: auto;
    display: grid;
  }

  .service-page--vermietung-verpachtung .hero-banner picture,
  .service-page--vermietung-verpachtung .hero-banner img {
    height: auto;
  }

  .service-page--vermietung-verpachtung .hero-banner img {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page--vermietung-verpachtung .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin: -18px 12px 12px;
  }

  .service-page--vermietung-verpachtung .hero-card {
    background: rgba(255, 255, 255, .9);
  }

  .service-page--vermietung-verpachtung .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .service-page--vermietung-verpachtung .service-target-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ===== Inline-CSS aus blog.html zentralisiert 1 (auf body.article-page gekapselt) ===== */


    body.article-page {
      background: var(--ivory);
    }

    body.article-page .service-main .article-hero {
      padding: 1.6rem 0 4.8rem;
      background:
        linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
    }

    body.article-page .service-main .article-banner {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
      box-shadow: var(--shadow-deep);
    }

    body.article-page .service-main .article-banner picture,
body.article-page .service-main .article-banner img {
      width: 100%;
      display: block;
    }

    body.article-page .service-main .article-banner img {
      object-fit: contain;
      object-position: center;
      background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
    }

    body.article-page .service-main .article-overlay {
      position: absolute;
      left: clamp(1.5rem, 4vw, 3.5rem);
      bottom: clamp(1.5rem, 4vw, 3rem);
      width: min(720px, calc(100% - 3rem));
      z-index: 2;
    }

    body.article-page .service-main .article-card {
      padding: clamp(1.35rem, 2.8vw, 2rem);
      border-radius: 24px;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.7);
      box-shadow: 0 18px 44px rgba(13,41,72,.12);
    }

    body.article-page .service-main .article-eyebrow {
      margin-bottom: .85rem;
      color: var(--brass);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    body.article-page .service-main .article-overlay h1 {
      max-width: 18ch;
      font-size: clamp(2rem, 3vw, 3.1rem);
      line-height: 1.06;
    }

    body.article-page .service-main .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem;
      color: var(--ink-soft);
      font-size: .92rem;
      font-weight: 600;
    }

    body.article-page .service-main .article-wrapper {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }

    body.article-page .service-main .article-content {
      background: rgba(255,255,255,.78);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: clamp(2rem, 4vw, 3.25rem);
      box-shadow: var(--shadow-soft);
    }

    body.article-page .service-main .article-content h2 {
      margin-top: 3rem;
      margin-bottom: 1rem;
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    }

    body.article-page .service-main .article-content h3 {
      margin-top: 2rem;
      margin-bottom: .75rem;
      font-size: clamp(1.35rem, 2vw, 1.7rem);
    }

    body.article-page .service-main .article-content p {
      font-size: 1.03rem;
      color: var(--muted);
    }

    body.article-page .service-main .article-content ul {
      margin-top: 1rem;
      display: grid;
      gap: .8rem;
      padding-left: 1.2rem;
      list-style: disc;
    }

    body.article-page .service-main .article-content li {
      color: var(--muted);
    }

    body.article-page .service-main .article-sidebar {
      position: sticky;
      top: calc(var(--header-compact) + 28px);
      display: grid;
      gap: 1rem;
    }

    body.article-page .service-main .sidebar-card {
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.84);
      box-shadow: var(--shadow-soft);
    }

    body.article-page .service-main .sidebar-card h3 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    body.article-page .service-main .toc-list {
      display: grid;
      gap: .7rem;
    }

    body.article-page .service-main .toc-list a {
      color: var(--ink-soft);
      font-weight: 600;
    }

    body.article-page .service-main .toc-list a:hover {
      color: var(--navy);
    }

    body.article-page .service-main .author-box {
      display: grid;
      gap: .8rem;
    }

    body.article-page .service-main .author-label {
      color: var(--brass);
      font-size: .74rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 800;
    }

    body.article-page .service-main .quote-highlight {
      margin: 2.4rem 0;
      padding: 2rem;
      border-radius: 26px;
      background:
        linear-gradient(145deg, #fff, #fbf8f2);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    body.article-page .service-main .quote-highlight p {
      margin: 0;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(1.6rem, 2.4vw, 2.15rem);
      line-height: 1.25;
      color: var(--navy);
    }

    body.article-page .service-main .article-cta {
      margin-top: 4rem;
      padding: clamp(2rem, 4vw, 3rem);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at top left, rgba(184,135,59,.14), transparent 28%),
        linear-gradient(135deg, var(--navy), #0a213a);
      color: #fff;
      box-shadow: var(--shadow-deep);
    }

    body.article-page .service-main .article-cta h2,
body.article-page .service-main .article-cta p {
      color: #fff;
    }

    body.article-page .service-main .article-cta .btn {
      margin-top: 1.5rem;
      background: #fff;
      color: var(--navy);
      border-color: rgba(255,255,255,.72);
    }

    body.article-page .service-main .article-cta .btn:hover {
      background: var(--ivory);
    }

    @media (max-width: 1040px) {

      body.article-page .service-main .article-wrapper {
        grid-template-columns: 1fr;
      }

      body.article-page .service-main .article-sidebar {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 760px) {

      body.article-page .service-main .article-overlay {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        margin: -24px 14px 14px;
      }

      body.article-page .service-main .article-overlay h1 {
        max-width: none;
      }

      body.article-page .service-main .article-card {
        background: rgba(255,255,255,.9);
      }

      body.article-page .service-main .article-content {
        padding: 1.6rem;
      }
    }

/* ======================================================
   KORREKTUR: HERO-ABSTAND, SVG-DEFS, CTA-BUTTONS
   Stand: 2026-05-18
====================================================== */

body.service-page .service-main .svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

body.service-page .service-main .hero-page {
    padding-top: .65rem;
    padding-bottom: clamp(3.75rem, 6vw, 5rem);
}

body.service-page .service-main .breadcrumbs {
    margin-bottom: .8rem;
}

body.service-page .service-main .final-cta .cta-box > .btn,
body.service-page .service-main .final-cta .cta-box > a.btn,
body.service-page .service-main .cta-box > .btn,
body.service-page .service-main .cta-box > a.btn {
    white-space: nowrap;
    background: #ffffff;
    color: var(--navy);
    border-color: rgba(255,255,255,.9);
    box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

body.service-page .service-main .final-cta .cta-box > .btn:hover,
body.service-page .service-main .final-cta .cta-box > a.btn:hover,
body.service-page .service-main .cta-box > .btn:hover,
body.service-page .service-main .cta-box > a.btn:hover {
    background: #f7f2ea;
    color: var(--navy-2);
}

@media (max-width: 760px) {
    body.service-page .service-main .hero-page {
        padding-top: .55rem;
        padding-bottom: 3.5rem;
    }

    body.service-page .service-main .breadcrumbs {
        margin-bottom: .65rem;
    }

    body.service-page .service-main .cta-box > .btn,
    body.service-page .service-main .cta-box > a.btn {
        width: 100%;
    }
}
/* ======================================================
   HOTFIX V2: HEADERABSTAND + CTA-BUTTON AUF LEISTUNGSSEITEN
   Scope: nur WordPress-Leistungsseiten mit body.service-page
====================================================== */

body.service-page .service-main > svg.svg-defs,
body.service-page .service-main svg.svg-defs,
body.service-page .service-main .svg-defs {
    position: absolute !important;
    inline-size: 0 !important;
    block-size: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    line-height: 0 !important;
    pointer-events: none !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
}

body.service-page .service-main > .hero-page:first-of-type,
body.service-page .service-main > .svg-defs + .hero-page,
body.service-page .service-main .hero-page:first-of-type,
body.service-page .service-main .hero-page {
    padding-top: .35rem !important;
}

body.service-page .service-main .breadcrumbs {
    margin-top: 0 !important;
    margin-bottom: .65rem !important;
}

body.service-page .service-main .hero-banner {
    margin-top: 0 !important;
}

body.service-page .service-main .section.final-cta .container.cta-box > a.btn,
body.service-page .service-main .section.final-cta .cta-box > a.btn,
body.service-page .service-main .final-cta .cta-box > a.btn,
body.service-page .service-main .final-cta .cta-box a.btn:not(.btn-service-secondary),
body.service-page.service-page--umwandlung-umstrukturierung .service-main .final-cta .cta-box a.btn {
    white-space: nowrap !important;
    background: #ffffff !important;
    color: var(--navy) !important;
    border-color: rgba(255,255,255,.9) !important;
    box-shadow: 0 12px 26px rgba(0,0,0,.14) !important;
}

body.service-page .service-main .section.final-cta .container.cta-box > a.btn:hover,
body.service-page .service-main .section.final-cta .cta-box > a.btn:hover,
body.service-page .service-main .final-cta .cta-box > a.btn:hover,
body.service-page .service-main .final-cta .cta-box a.btn:not(.btn-service-secondary):hover,
body.service-page.service-page--umwandlung-umstrukturierung .service-main .final-cta .cta-box a.btn:hover {
    background: #f7f2ea !important;
    color: var(--navy-2) !important;
}

@media (max-width: 760px) {
    body.service-page .service-main > .hero-page:first-of-type,
    body.service-page .service-main > .svg-defs + .hero-page,
    body.service-page .service-main .hero-page:first-of-type,
    body.service-page .service-main .hero-page {
        padding-top: .3rem !important;
    }

    body.service-page .service-main .breadcrumbs {
        margin-bottom: .55rem !important;
    }

    body.service-page .service-main .final-cta .cta-box > a.btn,
    body.service-page .service-main .final-cta .cta-box a.btn:not(.btn-service-secondary) {
        width: 100% !important;
    }
}

/* ======================================================
   FEINSCHLIFF: LEGAL-SEITEN, HERO-TITEL, ÜBER-UNS-BANNER
   Stand: 2026-05-18

   Technische Layoutkorrekturen ohne Inhaltsänderungen:
   - kleinere Dokument-Überschriften auf Datenschutz/Impressum
   - Hero-H1 nutzt die volle Breite der Hero-Textkarte
   - Über-uns-Banner wird an das schmalere 1200x400-Bild angepasst
====================================================== */

/* Hero-Überschriften: keine künstliche Begrenzung auf wenige Zeichen. */
body.service-page .service-main .hero-copy h1 {
    max-width: none !important;
    width: auto !important;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
    text-wrap: balance;
}

/* Text innerhalb der Hero-Karte bleibt ruhig lesbar und definiert die Kartenbreite. */
body.service-page .service-main .hero-copy .lead {
    max-width: 64ch;
}

/* Datenschutz: nummerierte Dokumentüberschriften kleiner als normale Abschnitts-H2. */
body.service-page.service-page--datenschutz .service-main .legal-card h2 {
    margin-bottom: .85rem;
    font-size: clamp(1.28rem, 1.65vw, 1.62rem) !important;
    line-height: 1.18;
    letter-spacing: -.01em;
}

body.service-page.service-page--datenschutz .service-main .legal-card h3 {
    font-size: clamp(1.12rem, 1.35vw, 1.36rem);
    line-height: 1.18;
}

/* Impressum: Dokument- und Rechtstextüberschriften dezenter skalieren. */
body.service-page.service-page--impressum .service-main .legal-document-header h2,
body.service-page.service-page--impressum .service-main .legal-row-content h2,
body.service-page.service-page--impressum .service-main .legal-editorial-copy h2 {
    margin-bottom: .85rem;
    font-size: clamp(1.32rem, 1.75vw, 1.7rem) !important;
    line-height: 1.18;
    letter-spacing: -.01em;
}

body.service-page.service-page--impressum .service-main .legal-document-section h3,
body.service-page.service-page--impressum .service-main .legal-profession-grid h3 {
    font-size: clamp(1.16rem, 1.45vw, 1.45rem) !important;
    line-height: 1.18;
}

body.service-page.service-page--impressum .service-main .legal-profession-grid h4 {
    font-size: clamp(1rem, 1.12vw, 1.12rem);
    line-height: 1.25;
}

/* Über uns: Hero-Banner an das schmalere Kanzlei_Banner-Motiv 1200x400 annähern. */
body.service-page.service-page--ueber-uns .service-main .hero-banner {
    height: clamp(320px, 33vw, 420px) !important;
    min-height: 0 !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner picture {
    height: 100% !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center right !important;
}

@media (max-width: 1080px) {
    body.service-page .service-main .hero-copy {
        width: min(620px, 62%) !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: clamp(300px, 40vw, 380px) !important;
    }
}

@media (max-width: 760px) {
    body.service-page .service-main .hero-copy {
        width: auto !important;
        max-width: none !important;
    }

    body.service-page .service-main .hero-copy h1 {
        text-wrap: normal;
    }

    body.service-page.service-page--datenschutz .service-main .legal-card h2,
    body.service-page.service-page--impressum .service-main .legal-document-header h2,
    body.service-page.service-page--impressum .service-main .legal-row-content h2,
    body.service-page.service-page--impressum .service-main .legal-editorial-copy h2 {
        font-size: clamp(1.22rem, 5vw, 1.45rem) !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: auto !important;
        min-height: 0 !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner picture,
    body.service-page.service-page--ueber-uns .service-main .hero-banner img {
        height: auto !important;
    }
}
/* ======================================================
   Über uns: Bannerbild Besprechungsraum
   Stellt die Hero-Höhe wieder auf das ursprüngliche
   Leistungsseiten-Template zurück und lässt das neue
   16:9-Bild den Bannercontainer sauber füllen.
====================================================== */

body.service-page.service-page--ueber-uns .service-main .hero-banner {
    height: clamp(500px, 50vw, 660px) !important;
    min-height: 0 !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner picture,
body.service-page.service-page--ueber-uns .service-main .hero-banner img {
    width: 100% !important;
    height: 100% !important;
}

body.service-page.service-page--ueber-uns .service-main .hero-banner img {
    object-fit: cover !important;
    object-position: center center !important;
}

@media (max-width: 1080px) {
    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: clamp(430px, 56vw, 580px) !important;
    }
}

@media (max-width: 760px) {
    body.service-page.service-page--ueber-uns .service-main .hero-banner {
        height: auto !important;
    }

    body.service-page.service-page--ueber-uns .service-main .hero-banner picture,
    body.service-page.service-page--ueber-uns .service-main .hero-banner img {
        height: auto !important;
    }
}
/* ======================================================
   Über uns: kleinere Kanzlei-Bilder
   Reduziert Kanzlei_2.jpg und Kanzlei_3.jpg harmonisch,
   ohne Inhalt oder Bildpfade zu verändern.
====================================================== */

body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-2 {
    max-width: min(360px, 100%) !important;
}

body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-3 {
    max-width: min(430px, 100%) !important;
}

body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-2 img,
body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-3 img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
}

@media (max-width: 760px) {
    body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-2,
    body.service-page.service-page--ueber-uns .service-main .media-card--kanzlei-3 {
        max-width: 100% !important;
    }
}
/* ======================================================
   Steuerberatung Unternehmen: Für wen wir arbeiten
   Abschnittsformatierung und Zielgruppen-Kacheln
   Sichtbarer Text bleibt unverändert.
====================================================== */

body.service-page.service-page--steuerberatung-unternehmen .service-main .dark-band {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f2e8dc 100%
        );
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .dark-band .section-heading.inverted h2 {
    color: var(--ink) !important;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .dark-band .section-heading.inverted p.section-kicker,
body.service-page.service-page--steuerberatung-unternehmen .service-main .dark-band .section-heading.inverted .section-kicker {
    color: var(--brass) !important;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    margin-top: 3rem;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid article {
    min-width: 0;
    min-height: 220px;
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 135, 59, .35);
    box-shadow: var(--shadow-deep);
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid h3 {
    margin-bottom: .85rem;
    color: var(--ink) !important;
    font-size: clamp(1.35rem, 1.8vw, 1.9rem);
    line-height: 1.1;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid p {
    color: var(--muted) !important;
    font-size: 1rem;
    line-height: 1.68;
}

@media (max-width: 1080px) {
    body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid {
        grid-template-columns: 1fr;
    }

    body.service-page.service-page--steuerberatung-unternehmen .service-main .target-grid article {
        min-height: 0;
        padding: 1.5rem;
    }
}

/* ======================================================
   Steuerberatung Unternehmen: Ablauf-Kacheln
   Formatiert den vorhandenen .process-grid-Abschnitt als abgesetzte Karten.
   Sichtbarer Text und PHP-Markup bleiben unverändert.
====================================================== */

body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    margin-top: 3rem;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid article {
    min-width: 0;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border: 1px solid rgba(13, 41, 72, .08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 135, 59, .35);
    box-shadow: var(--shadow-deep);
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--navy);
    color: #ffffff;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid h3 {
    margin-bottom: .85rem;
    color: var(--ink);
    font-size: clamp(1.35rem, 1.75vw, 1.85rem);
    line-height: 1.1;
}

body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.68;
}

@media (max-width: 1180px) {
    body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid article {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    body.service-page.service-page--steuerberatung-unternehmen .service-main .process-grid article {
        padding: 1.5rem;
    }
}
/* ======================================================
   KONTAKTSEITE: KACHELN UNTER „ANLIEGEN SCHILDERN“
   Reine Darstellungsanpassung; keine Inhaltssteuerung.
====================================================== */

body.service-page.service-page--kontakt .service-main .contact-immediate-section .contact-layout--immediate {
    align-items: start;
}

body.service-page.service-page--kontakt .service-main .contact-immediate-section .contact-info-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: .95rem;
    margin-top: 1.8rem;
}

body.service-page.service-page--kontakt .service-main .contact-immediate-section .contact-info-list li {
    position: relative;
    min-height: 94px;
    display: flex;
    align-items: center;
    padding: 1.15rem 1.15rem 1.15rem 3.35rem;
    border: 1px solid rgba(13,41,72,.08);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(251,248,242,.88) 100%);
    color: var(--ink-soft);
    font-weight: 600;
    line-height: 1.55;
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background .18s ease;
}

body.service-page.service-page--kontakt .service-main .contact-immediate-section .contact-info-list li:hover {
    transform: translateY(-2px);
    border-color: rgba(184,135,59,.34);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-deep);
}

body.service-page.service-page--kontakt .service-main .contact-immediate-section .contact-info-list li::before {
    position: absolute;
    left: 1.15rem;
    top: 50%;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(184,135,59,.48);
    border-radius: 999px;
    background: rgba(184,135,59,.10);
    color: var(--brass);
    content: "✓";
    font-size: .76rem;
    font-weight: 900;
    line-height: 1;
}

/* Kontaktseite: Abschnitt „Ihre Anfrage“ als ruhigere, abgesetzte Karten */
body.service-page.service-page--kontakt .service-main [aria-labelledby="anfrage-title"] .card-grid.three-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

body.service-page.service-page--kontakt .service-main [aria-labelledby="anfrage-title"] .service-card {
    min-height: 100%;
    padding: 1.75rem;
    border: 1px solid rgba(13,41,72,.08);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.9);
    box-shadow: var(--shadow-soft);
}

body.service-page.service-page--kontakt .service-main [aria-labelledby="anfrage-title"] .service-card-emphasis {
    border-color: rgba(184,135,59,.28);
    background:
        radial-gradient(circle at 12% 18%, rgba(184,135,59,.10), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

body.service-page.service-page--kontakt .service-main [aria-labelledby="anfrage-title"] .card-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--navy);
    color: #ffffff;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
}

@media (max-width: 1080px) {
    body.service-page.service-page--kontakt .service-main [aria-labelledby="anfrage-title"] .card-grid.three-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.service-page.service-page--kontakt .service-main .contact-immediate-section .contact-info-list li {
        min-height: 0;
        padding: 1rem 1rem 1rem 3rem;
    }

    body.service-page.service-page--kontakt .service-main [aria-labelledby="anfrage-title"] .card-grid.three-columns {
        grid-template-columns: 1fr;
    }
}
/* ======================================================
   404-Seite
   Kann am Ende von service-pages.css eingefügt werden,
   falls die 404-Regeln dort noch nicht vorhanden sind.
====================================================== */

body.service-page--404 .hero-banner--404 {
    position: relative;
    overflow: hidden;
}

body.service-page--404 .hero-banner--404 img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

body.service-page--404 .hero-card--404 {
    background: rgba(255,255,255,.68);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.55);
}

body.service-page--404 .hero-copy h1 {
    max-width: 13ch;
}

body.service-page--404 .area-card {
    min-height: 100%;
}

body.service-page--404 .link-list {
    margin-bottom: 1.6rem;
}

@media (max-width: 760px) {

    body.service-page--404 .hero-copy h1 {
        max-width: none;
    }

    body.service-page--404 .hero-card--404 {
        background: rgba(255,255,255,.88);
    }
}
   STEUERBERATER-HUB: ABLAUF UND LOKALER HINWEIS
   Technische Formatkorrektur fuer page-steuerberater.php.
   Keine Inhaltssteuerung.
====================================================== */

body.service-page.service-page--steuerberater .service-main .service-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

body.service-page.service-page--steuerberater .service-main .service-process-grid article {
    min-width: 0;
    height: 100%;
    padding: clamp(1.35rem, 2vw, 1.7rem);
    overflow: hidden;
    border: 1px solid rgba(13, 41, 72, .08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-soft);
}

body.service-page.service-page--steuerberater .service-main .service-process-grid h3,
body.service-page.service-page--steuerberater .service-main .service-process-grid p {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

body.service-page.service-page--steuerberater .service-main .service-process-grid h3 {
    margin-bottom: .8rem;
    font-size: clamp(1.28rem, 1.45vw, 1.62rem);
    line-height: 1.12;
}

body.service-page.service-page--steuerberater .service-main .service-process-grid p {
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.62;
}

body.service-page.service-page--steuerberater .service-main .service-process-grid span {
    width: 38px;
    height: 38px;
    margin-bottom: .95rem;
    background: var(--navy);
    color: #ffffff;
    font-size: .9rem;
}

body.service-page.service-page--steuerberater .service-main .local-note {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

body.service-page.service-page--steuerberater .service-main .local-card,
body.service-page.service-page--steuerberater .service-main .local-note .quote-panel {
    min-width: 0;
    height: 100%;
    padding: clamp(1.65rem, 3.5vw, 2.6rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-soft);
}

body.service-page.service-page--steuerberater .service-main .local-card {
    background:
        radial-gradient(circle at 12% 18%, rgba(184,135,59,.10), transparent 26%),
        linear-gradient(145deg, #fff, #fbf8f2);
}

body.service-page.service-page--steuerberater .service-main .local-card .section-kicker,
body.service-page.service-page--steuerberater .service-main .local-card p.section-kicker {
    color: var(--brass) !important;
}

body.service-page.service-page--steuerberater .service-main .local-card h2 {
    margin-bottom: 1.25rem;
    color: var(--ink) !important;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

body.service-page.service-page--steuerberater .service-main .local-card p:not(.section-kicker) {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.72;
}

body.service-page.service-page--steuerberater .service-main .local-card .text-link {
    margin-top: 1.15rem;
}

body.service-page.service-page--steuerberater .service-main .local-note .quote-panel {
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 14% 18%, rgba(184,135,59,.12), transparent 28%),
        linear-gradient(145deg, #f8f4ed 0%, #efe5d6 100%);
}

body.service-page.service-page--steuerberater .service-main .local-note .quote-panel p {
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.55rem, 2vw, 2.08rem);
    line-height: 1.25;
    letter-spacing: -.02em;
}

@media (max-width: 1180px) {
    body.service-page.service-page--steuerberater .service-main .service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    body.service-page.service-page--steuerberater .service-main .local-note {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body.service-page.service-page--steuerberater .service-main .service-process-grid {
        grid-template-columns: 1fr;
    }

    body.service-page.service-page--steuerberater .service-main .local-card,
    body.service-page.service-page--steuerberater .service-main .local-note .quote-panel {
        padding: 1.45rem;
    }
}
/* ======================================================
   service-pages.css
   Zentrales Layoutsystem fuer Leistungsseiten

   Grundlage: Referenzlayout „Laufende Steuerberatung“.
   Geltung: nur Seiten mit body.service-page.
   Keine Inhaltssteuerung, keine Inline-Styles, keine seitenindividuellen
   Sonderregeln ausser ueber eindeutige Body-Klassen.
====================================================== */

/* ======================================================
   BASE
====================================================== */

body.service-page .service-main {
    background: var(--ivory);
}

body.service-page .service-main + .site-footer {
    margin-top: 0;
}

body.service-page .section {
    padding:
        clamp(5rem, 8vw, 7rem)
        0;
}

body.service-page .section-heading {
    max-width: 940px;
    margin: 0 0 3rem;
}

body.service-page .section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

body.service-page .section-heading.narrow {
    max-width: 840px;
}

body.service-page .section-heading h2 {
    margin-bottom: 1rem;
}

body.service-page .section-heading p,
body.service-page .split-content p,
body.service-page .feature-copy p,
body.service-page .grid-intro p,
body.service-page .scope-panel p {
    color: var(--muted);
    font-size: 1.03rem;
}

body.service-page .section-kicker,
body.service-page .eyebrow {
    margin-bottom: .85rem;
    color: var(--brass);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.25;
    text-transform: uppercase;
}

body.service-page .lead {
    margin-top: .78rem;
    color: var(--ink-soft);
    font-size: clamp(.87rem, .92vw, .98rem);
    line-height: 1.55;
}

/* ======================================================
   SECTION RHYTHM
====================================================== */

body.service-page .hero-page {
    padding: 1.6rem 0 5rem;
    background:
        linear-gradient(
            180deg,
            var(--ivory) 0%,
            var(--ivory-2) 100%
        );
}

body.service-page .section-intro,
body.service-page .section.muted,
body.service-page .final-cta {
    background: #ffffff;
}

body.service-page .section-service-muted {
    background:
        linear-gradient(
            180deg,
            #f7f2ea 0%,
            #efe5d6 100%
        );
}

body.service-page .section-feature,
body.service-page .section-scope {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f2e8dc 100%
        );
}

body.service-page .internal-links-section {
    background:
        linear-gradient(
            180deg,
            #fbf8f2 0%,
            #f7f2ea 100%
        );
}

body.service-page .internal-links-section,
body.service-page .faq-section {
    position: relative;
}

body.service-page .internal-links-section::after,
body.service-page .faq-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 3rem));
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(184,135,59,0) 0%,
            rgba(184,135,59,.22) 20%,
            rgba(184,135,59,.32) 50%,
            rgba(184,135,59,.22) 80%,
            rgba(184,135,59,0) 100%
        );
}

/* ======================================================
   BREADCRUMBS
====================================================== */

body.service-page .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--muted);
    font-size: .9rem;
}

body.service-page .breadcrumbs a {
    color: var(--ink-soft);
    font-weight: 600;
}

body.service-page .breadcrumbs a:hover {
    color: var(--navy);
}

/* ======================================================
   HERO
====================================================== */

body.service-page .hero-banner {
    position: relative;
    overflow: hidden;
    height: clamp(500px, 50vw, 660px);
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #f1e8dc 0%,
            #f8f4ed 100%
        );
    box-shadow: var(--shadow-deep);
}

body.service-page .hero-banner picture {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

body.service-page .hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    background: transparent;
}

body.service-page .hero-copy {
    position: absolute;
    left: clamp(1.25rem, 4vw, 3.35rem);
    top: 50%;
    bottom: auto;
    width: min(590px, 48%);
    transform: translateY(-50%);
    z-index: 2;
}

body.service-page .hero-card {
    padding:
        clamp(1rem, 2vw, 1.55rem)
        clamp(1.05rem, 2.25vw, 1.75rem);
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 22px;
    background: rgba(255,255,255,.70);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 38px rgba(13,41,72,.12);
}

body.service-page .hero-copy h1 {
    max-width: 25ch;
    font-size: clamp(1.42rem, 1.95vw, 2.18rem);
    line-height: 1.08;
}

body.service-page .hero-copy .button-row {
    gap: .65rem;
    margin-top: 1.1rem;
}

body.service-page .hero-copy .btn {
    padding: .7rem .94rem;
    border-radius: 10px;
    font-size: .84rem;
}

body.service-page .btn-service-secondary {
    background: rgba(255,255,255,.7);
    color: var(--navy);
    border-color: rgba(13,41,72,.16);
    box-shadow: none;
}

body.service-page .btn-service-secondary:hover {
    background: #ffffff;
    color: var(--navy);
}

/* ======================================================
   INTRO / SIDE PANEL
====================================================== */

body.service-page .grid-intro {
    display: grid;
    grid-template-columns: minmax(0,1fr) 390px;
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
}

body.service-page .grid-intro h2 {
    margin-bottom: 1.35rem;
}

body.service-page .intro-panel {
    position: sticky;
    top: calc(var(--header-compact) + 28px);
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

body.service-page .intro-panel h3 {
    margin-bottom: 1.1rem;
}

body.service-page .check-list {
    display: grid;
    gap: .8rem;
}

body.service-page .check-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

body.service-page .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .15rem;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(184,135,59,.12);
    color: var(--brass);
    font-size: .78rem;
    font-weight: 900;
}

/* ======================================================
   QUESTION LIST
====================================================== */

body.service-page .question-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: .9rem;
}

body.service-page .question-list div {
    position: relative;
    padding: 1.05rem 1.1rem 1.05rem 3rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.84);
    color: var(--ink-soft);
    line-height: 1.6;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

body.service-page .question-list div:hover {
    transform: translateY(-2px);
    border-color: rgba(184,135,59,.32);
    box-shadow: var(--shadow-soft);
}

body.service-page .question-list div::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid rgba(184,135,59,.45);
    border-radius: 50%;
    background: rgba(184,135,59,.08);
}

body.service-page .question-list--balanced div,
body.service-page .question-list--laufende div {
    min-height: 92px;
    display: flex;
    align-items: center;
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
}

/* ======================================================
   CARDS / SERVICE GRIDS
====================================================== */

body.service-page .card-grid,
body.service-page .service-card-grid {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

body.service-page .card-grid.three-columns,
body.service-page .service-card-grid--3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

body.service-page .service-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 1.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184,135,59,.35);
    box-shadow: var(--shadow-deep);
}

body.service-page .service-card h3 {
    margin-bottom: 1rem;
}

body.service-page .service-card p {
    margin-bottom: .9rem;
    color: var(--muted);
    line-height: 1.7;
}

body.service-page .service-card .btn,
body.service-page .service-card .text-link {
    margin-top: auto;
    align-self: flex-start;
}

body.service-page .text-link {
    display: inline-flex;
    padding-top: .9rem;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.35;
    transition:
        color .2s ease,
        transform .2s ease;
}

body.service-page .text-link:hover {
    color: var(--navy-2);
    transform: translateX(2px);
}

body.service-page .card-number {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--brass);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ======================================================
   FEATURE ROWS / MEDIA
====================================================== */

body.service-page .feature-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(420px,.92fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

body.service-page .feature-row.reverse {
    grid-template-columns: minmax(420px,.92fr) minmax(0,1fr);
}

body.service-page .feature-copy {
    width: 100%;
}

body.service-page .feature-copy p + p {
    margin-top: 1rem;
}

body.service-page .media-card,
body.service-page .media-card--quiet {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #f1e8dc 0%,
            #f8f4ed 100%
        );
    box-shadow: var(--shadow-soft);
}

body.service-page .feature-row.reverse .media-card,
body.service-page .feature-row.reverse .media-card--quiet {
    max-width: 520px;
}

body.service-page .media-card picture,
body.service-page .media-card img,
body.service-page .media-card--quiet picture,
body.service-page .media-card--quiet img {
    display: block;
    width: 100%;
}

body.service-page .media-card img,
body.service-page .media-card--quiet img {
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* ======================================================
   DARK TARGET SECTION
====================================================== */

body.service-page .section-service-navy {
    background:
        linear-gradient(
            180deg,
            #071a30 0%,
            #0b2745 100%
        );
}

body.service-page .section-service-navy .section-heading h2,
body.service-page .section-service-navy .section-heading p,
body.service-page .section-service-navy .section-kicker,
body.service-page .section-heading.inverted h2,
body.service-page .section-heading.inverted p,
body.service-page .section-heading.inverted .section-kicker {
    color: #ffffff;
}

body.service-page .service-target-grid,
body.service-page .target-grid-dark {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

body.service-page .service-target-grid--six,
body.service-page .target-grid-dark {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

body.service-page .service-target-grid article,
body.service-page .target-grid-dark article {
    min-height: 240px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
}

body.service-page .service-target-grid h3,
body.service-page .target-grid-dark h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

body.service-page .service-target-grid p,
body.service-page .target-grid-dark p {
    color: rgba(255,255,255,.82);
}

/* ======================================================
   SPLIT / QUOTE / SCOPE
====================================================== */

body.service-page .split-section {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

body.service-page .split-content h2 {
    margin-bottom: 1.35rem;
}

body.service-page .quote-panel {
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(184,135,59,.16);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            #f8f4ed 0%,
            #efe5d6 100%
        );
    box-shadow: var(--shadow-soft);
}

body.service-page .quote-panel p {
    margin: 0;
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.65rem, 2vw, 2.1rem);
    line-height: 1.25;
    letter-spacing: -.02em;
}

body.service-page .scope-panel {
    display: grid;
    grid-template-columns: minmax(280px,.82fr) minmax(0,1.18fr);
    gap: clamp(1.8rem, 5vw, 4rem);
    align-items: start;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%),
        linear-gradient(145deg, #fff, #fbf8f2);
    box-shadow: var(--shadow-soft);
}

body.service-page .scope-panel h2 {
    max-width: 560px;
}

body.service-page .scope-panel p + p {
    margin-top: 1rem;
}

/* ======================================================
   PROCESS
====================================================== */

body.service-page .service-process-grid,
body.service-page .process-grid-extended {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

body.service-page .service-process-grid article {
    padding: 2rem;
    border: 1px solid rgba(13,41,72,.06);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.82);
    box-shadow: var(--shadow-soft);
}

body.service-page .service-process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: #0d2948;
    color: #ffffff;
    font-size: .95rem;
    font-weight: 700;
}

body.service-page .service-process-grid h3 {
    margin-bottom: .9rem;
}

/* ======================================================
   INTERNAL LINKS
====================================================== */

body.service-page .internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1rem;
}

body.service-page .internal-links-grid a {
    display: grid;
    gap: .45rem;
    min-height: 132px;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow-soft);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.service-page .internal-links-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(184,135,59,.35);
    box-shadow: var(--shadow-deep);
}

body.service-page .internal-links-grid span {
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.35rem, 1.7vw, 1.75rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.02em;
}

body.service-page .internal-links-grid small {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

/* ======================================================
   FAQ
====================================================== */

body.service-page .faq-layout {
    display: grid;
    grid-template-columns: 390px minmax(0,1fr);
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
}

body.service-page .faq-list {
    display: grid;
    gap: .8rem;
}

body.service-page .faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

body.service-page .faq-list summary {
    cursor: pointer;
    padding: 1.2rem 1.35rem;
    color: var(--navy);
    font-weight: 800;
    list-style: none;
}

body.service-page .faq-list summary::-webkit-details-marker {
    display: none;
}

body.service-page .faq-list summary::after {
    content: "+";
    float: right;
    color: var(--brass);
}

body.service-page .faq-list details[open] summary::after {
    content: "–";
}

body.service-page .faq-list details p {
    margin: 0;
    padding: 0 1.35rem 1.35rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ======================================================
   FINAL CTA
====================================================== */

body.service-page .cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #071a30 0%,
            #0b2745 100%
        );
    box-shadow: var(--shadow-deep);
}

body.service-page .cta-copy {
    max-width: 760px;
}

body.service-page .cta-box .section-kicker,
body.service-page .cta-box h2,
body.service-page .cta-box p {
    color: #ffffff;
}

body.service-page .cta-actions {
    flex-shrink: 0;
}

body.service-page .cta-actions .btn {
    white-space: nowrap;
    background: #ffffff;
    color: #0b2745;
    border: 1px solid rgba(255,255,255,.9);
}

body.service-page .cta-actions .btn:hover {
    background: rgba(255,255,255,.92);
    color: #071a30;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1080px) {

    body.service-page .hero-banner {
        height: clamp(430px, 56vw, 580px);
    }

    body.service-page .hero-copy {
        width: min(540px, 62%);
    }

    body.service-page .card-grid.three-columns,
    body.service-page .service-card-grid--3,
    body.service-page .service-target-grid--six,
    body.service-page .target-grid-dark,
    body.service-page .internal-links-grid,
    body.service-page .service-process-grid,
    body.service-page .process-grid-extended {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    body.service-page .scope-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1040px) {

    body.service-page .grid-intro,
    body.service-page .faq-layout {
        grid-template-columns: 1fr;
    }

    body.service-page .intro-panel {
        position: static;
    }
}

@media (max-width: 980px) {

    body.service-page .feature-row,
    body.service-page .feature-row.reverse,
    body.service-page .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    body.service-page .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {

    body.service-page .section {
        padding: 4rem 0;
    }

    body.service-page .hero-page {
        padding: 1.2rem 0 4rem;
    }

    body.service-page .hero-banner {
        height: auto;
        display: grid;
    }

    body.service-page .hero-banner picture,
    body.service-page .hero-banner img {
        height: auto;
    }

    body.service-page .hero-copy {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        transform: none;
        margin: -20px 12px 12px;
    }

    body.service-page .hero-card {
        background: rgba(255,255,255,.9);
    }

    body.service-page .hero-copy h1 {
        max-width: none;
        font-size: clamp(1.75rem, 6vw, 2.2rem);
    }

    body.service-page .question-list,
    body.service-page .card-grid.three-columns,
    body.service-page .service-card-grid--3,
    body.service-page .service-target-grid--six,
    body.service-page .target-grid-dark,
    body.service-page .internal-links-grid,
    body.service-page .service-process-grid,
    body.service-page .process-grid-extended {
        grid-template-columns: 1fr;
    }

    body.service-page .service-card,
    body.service-page .service-target-grid article,
    body.service-page .target-grid-dark article,
    body.service-page .service-process-grid article {
        padding: 1.5rem;
    }

    body.service-page .cta-actions,
    body.service-page .cta-actions .btn {
        width: 100%;
    }
}


/* ======================================================
   RECHTSANWALT KÖLN: FINAL CTA MIT BILD UND BUTTON
   Button steht rechts unter dem Bild; Text bleibt links.
====================================================== */

body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-box--with-image {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-box--with-image > div:first-child {
    max-width: 760px;
}

body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-media-actions {
    display: grid;
    gap: 1rem;
    justify-items: stretch;
    align-content: start;
}

body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-media-actions figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    box-shadow: 0 18px 38px rgba(0,0,0,.16);
}

body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-media-actions picture,
body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-media-actions img {
    display: block;
    width: 100%;
}

body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-media-actions img {
    height: auto;
    object-fit: cover;
    object-position: center;
}

body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-media-actions .btn {
    justify-self: stretch;
    width: 100%;
    background: #ffffff;
    color: #0b2745;
    border-color: rgba(255,255,255,.9);
    box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-media-actions .btn:hover {
    background: rgba(255,255,255,.92);
    color: #071a30;
}

@media (max-width: 900px) {
    body.service-page.service-page--rechtsanwalt-koeln .service-main .cta-box--with-image {
        grid-template-columns: 1fr;
    }
}
/* ======================================================
   Rechtsanwalt-Hub: Abschnittsdesign
   Seite: /rechtsanwalt/
====================================================== */

body.service-page--rechtsanwalt .intro-law-grid,
body.service-page--rechtsanwalt .law-overview-grid,
body.service-page--rechtsanwalt .process-image-grid,
body.service-page--rechtsanwalt .closing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

/* Steuerrechtliche Vertretung */
body.service-page--rechtsanwalt .intro-law-copy {
    min-width: 0;
}

body.service-page--rechtsanwalt .intro-law-copy > p:not(.section-kicker),
body.service-page--rechtsanwalt .law-overview-copy p,
body.service-page--rechtsanwalt .process-copy p,
body.service-page--rechtsanwalt .closing-copy p {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.72;
}

body.service-page--rechtsanwalt .intro-law-copy .intro-panel {
    position: static;
    margin-top: 2rem;
    padding: clamp(1.4rem, 3vw, 1.9rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}

/* Leistungsübersicht */
body.service-page--rechtsanwalt .law-overview-card,
body.service-page--rechtsanwalt .process-copy,
body.service-page--rechtsanwalt .closing-copy {
    padding: clamp(1.75rem, 4vw, 2.6rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 12% 18%, rgba(184,135,59,.10), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #fbf8f2 100%);
    box-shadow: var(--shadow-soft);
}

body.service-page--rechtsanwalt .law-overview-card h2,
body.service-page--rechtsanwalt .process-copy h2,
body.service-page--rechtsanwalt .closing-copy h2 {
    margin-bottom: 1.2rem;
}

/* Medienkarten */
body.service-page--rechtsanwalt .law-overview-media,
body.service-page--rechtsanwalt .process-media,
body.service-page--rechtsanwalt .closing-media,
body.service-page--rechtsanwalt .intro-law-grid > .media-card {
    width: 100%;
    max-width: none;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
    box-shadow: var(--shadow-soft);
}

body.service-page--rechtsanwalt .law-overview-media picture,
body.service-page--rechtsanwalt .process-media picture,
body.service-page--rechtsanwalt .closing-media picture,
body.service-page--rechtsanwalt .law-overview-media img,
body.service-page--rechtsanwalt .process-media img,
body.service-page--rechtsanwalt .closing-media img,
body.service-page--rechtsanwalt .intro-law-grid > .media-card picture,
body.service-page--rechtsanwalt .intro-law-grid > .media-card img {
    display: block;
    width: 100%;
}

body.service-page--rechtsanwalt .law-overview-media img,
body.service-page--rechtsanwalt .process-media img,
body.service-page--rechtsanwalt .closing-media img,
body.service-page--rechtsanwalt .intro-law-grid > .media-card img {
    height: clamp(340px, 33vw, 470px);
    object-fit: cover;
    object-position: center;
}

/* Ablauf */
body.service-page--rechtsanwalt .process-image-grid {
    margin-bottom: 3rem;
}

body.service-page--rechtsanwalt .process-media {
    order: 1;
}

body.service-page--rechtsanwalt .process-copy {
    order: 2;
}

/* Schlussbereich / CTA */
body.service-page--rechtsanwalt .closing-panel {
    padding: clamp(1.75rem, 4vw, 3rem);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            180deg,
            #071a30 0%,
            #0b2745 100%
        );
    box-shadow: var(--shadow-deep);
}

body.service-page--rechtsanwalt .closing-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

body.service-page--rechtsanwalt .closing-copy {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

body.service-page--rechtsanwalt .closing-copy .section-kicker,
body.service-page--rechtsanwalt .closing-copy h2,
body.service-page--rechtsanwalt .closing-copy p {
    color: #ffffff;
}

body.service-page--rechtsanwalt .closing-copy .closing-note {
    color: rgba(255,255,255,.78);
}

body.service-page--rechtsanwalt .closing-copy .btn {
    margin-top: 1.4rem;
    background: #ffffff;
    color: #0b2745;
    border-color: rgba(255,255,255,.9);
}

body.service-page--rechtsanwalt .closing-copy .btn:hover {
    background: rgba(255,255,255,.92);
    color: #071a30;
}

body.service-page--rechtsanwalt .closing-media {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    box-shadow: none;
}

/* Responsive */
@media (max-width: 980px) {
    body.service-page--rechtsanwalt .intro-law-grid,
    body.service-page--rechtsanwalt .law-overview-grid,
    body.service-page--rechtsanwalt .process-image-grid,
    body.service-page--rechtsanwalt .closing-grid {
        grid-template-columns: 1fr;
    }

    body.service-page--rechtsanwalt .law-overview-media img,
    body.service-page--rechtsanwalt .process-media img,
    body.service-page--rechtsanwalt .closing-media img,
    body.service-page--rechtsanwalt .intro-law-grid > .media-card img {
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    body.service-page--rechtsanwalt .closing-panel {
        padding: clamp(1.5rem, 5vw, 2rem);
    }
}
/* ======================================================
   Rechtsanwalt-Hub: Steuerrechtliche Vertretung
====================================================== */

body.service-page--rechtsanwalt .intro-law-grid--panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: clamp(2.2rem, 5vw, 4.5rem);
    align-items: start;
}

body.service-page--rechtsanwalt .intro-law-copy {
    min-width: 0;
}

body.service-page--rechtsanwalt .intro-law-copy p:not(.section-kicker) {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.72;
}

body.service-page--rechtsanwalt .intro-law-grid--panel .intro-panel {
    position: sticky;
    top: calc(var(--header-compact) + 28px);
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 88% 12%, rgba(184,135,59,.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
    box-shadow: var(--shadow-soft);
}
/* ======================================================
   Rechtsanwalt-Hub: Leistungsübersicht
====================================================== */

body.service-page--rechtsanwalt .law-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 12% 18%, rgba(184,135,59,.10), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #fbf8f2 100%);
    box-shadow: var(--shadow-soft);
}

body.service-page--rechtsanwalt .law-overview-card {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.service-page--rechtsanwalt .law-overview-card h2 {
    margin-bottom: 1.2rem;
}

body.service-page--rechtsanwalt .law-overview-card p {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.72;
}

body.service-page--rechtsanwalt .law-overview-media {
    width: 100%;
    max-width: none;
    overflow: hidden;
    border: 1px solid rgba(13,41,72,.08);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
    box-shadow: var(--shadow-soft);
}

body.service-page--rechtsanwalt .law-overview-media picture,
body.service-page--rechtsanwalt .law-overview-media img {
    display: block;
    width: 100%;
}

body.service-page--rechtsanwalt .law-overview-media img {
    height: clamp(320px, 30vw, 440px);
    object-fit: cover;
    object-position: center;
}
body.service-page--rechtsanwalt #leistungen .card-grid {
    margin-top: clamp(3rem, 5vw, 4.5rem);
}

body.service-page--rechtsanwalt #leistungen .service-card {
    padding: clamp(1.75rem, 3vw, 2.2rem);
    border: 1px solid rgba(13,41,72,.08);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 45px rgba(18,35,57,.08);
}

body.service-page--rechtsanwalt #leistungen .service-card h3 {
    margin-bottom: 1rem;
}

body.service-page--rechtsanwalt #leistungen .service-card p {
    color: var(--muted);
    line-height: 1.7;
}
@media (max-width: 980px) {
    body.service-page--rechtsanwalt .intro-law-grid--panel,
    body.service-page--rechtsanwalt .law-overview-grid {
        grid-template-columns: 1fr;
    }

    body.service-page--rechtsanwalt .intro-law-grid--panel .intro-panel {
        position: static;
    }

    body.service-page--rechtsanwalt .law-overview-media img {
        height: auto;
        object-fit: contain;
    }
}
/* ======================================================
   Header Dropdown: Hover-Lücke schließen
====================================================== */

.site-header .main-nav .nav-item.has-dropdown {
    position: relative;
}

.site-header .main-nav .nav-item.has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 22px;
    display: block;
}

.site-header .main-nav .sub-menu {
    top: calc(100% + 6px);
}

.site-header .main-nav .nav-item.has-dropdown:hover > .sub-menu,
.site-header .main-nav .nav-item.has-dropdown:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* ======================================================
   WISSENSBEITRÄGE / SINGLE POSTS
   Korrektur Beitragsbanner
   - kompaktere Bannerhöhe
   - Bild verhält sich wie in den Seiten-Templates
====================================================== */

body.article-page .service-main .article-hero {
  padding: 1.4rem 0 3.4rem;
}

body.article-page .service-main .article-banner {
  height: clamp(360px, 34vw, 460px);
  display: grid;
  place-items: center;
}

body.article-page .service-main .article-banner picture {
  width: 100%;
  height: 100%;
}

body.article-page .service-main .article-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: linear-gradient(180deg, #efe5d6 0%, #f8f4ed 100%);
}

@media (max-width: 1080px) {
  body.article-page .service-main .article-banner {
    height: clamp(330px, 46vw, 430px);
  }
}

@media (max-width: 760px) {
  body.article-page .service-main .article-hero {
    padding: 1.2rem 0 3rem;
  }

  body.article-page .service-main .article-banner {
    height: clamp(260px, 58vw, 360px);
  }

  body.article-page .service-main .article-banner img {
    object-position: center;
  }
}
/* ======================================================
   WISSENSBEITRÄGE: SCHNELLÜBERBLICK
====================================================== */

body.article-page .service-main .article-summary {
  margin: 2.5rem 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(184,135,59,.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(184,135,59,.12), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #fbf8f2 100%);
  box-shadow: var(--shadow-soft);
}

body.article-page .service-main .article-summary .section-kicker {
  margin-bottom: .7rem;
}

body.article-page .service-main .article-summary h2 {
  margin-top: 0;
  margin-bottom: 1.1rem;
  font-size: clamp(1.75rem, 2.35vw, 2.35rem);
}

body.article-page .service-main .article-summary ul {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

body.article-page .service-main .article-summary li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

body.article-page .service-main .article-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brass);
}
/* ======================================================
   WISSENSBEITRÄGE: PRAXISHINWEIS
====================================================== */

body.article-page .service-main .article-note {
  margin: 2.5rem 0;
  padding: clamp(1.35rem, 2.6vw, 2rem);
  border-left: 5px solid var(--brass);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: rgba(13,41,72,.045);
}

body.article-page .service-main .article-note h2,
body.article-page .service-main .article-note h3 {
  margin-top: 0;
  margin-bottom: .75rem;
  color: var(--navy);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

body.article-page .service-main .article-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}