/* ============================================
   BESA Kfz-Gutachter — Design-Tokens
   Bestehendes System aus dem IONOS-Aufbau übernommen
   ============================================ */
:root {
    --color-navy: #0B2545;
    --color-blue: #2E6FD4;
    --color-cream: #F4F7FC;
    --color-border: #D8E5F5;
    --color-white: #FFFFFF;
    --color-text: #1A2B42;
    --color-text-muted: #5A6B85;

    --radius: 10px;
    --max-width: 1200px;

    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--color-navy);
    line-height: 1.25;
    font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem); }
h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

a { color: var(--color-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 2px; }

ul { list-style: none; }

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

/* Bildlogo. height fest + width auto = Seitenverhaeltnis bleibt immer
   erhalten, unabhaengig von den width/height-Attributen im HTML.
   min-width:0 erlaubt dem Logo zu schrumpfen, damit auf schmalen Displays
   nicht der CTA-Button aus dem Bildschirm gedrueckt wird. */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}
.logo img {
    height: 42px;
    width: auto;
    max-width: 100%;
    display: block;
}
.logo:hover { text-decoration: none; }

.main-nav { flex: 1; }
.main-nav > ul {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    color: var(--color-text);
    font-weight: 600;
    padding: var(--space-xs) 0;
    display: inline-block;
}
.main-nav > ul > li.is-active > a,
.main-nav > ul > li > a:hover {
    color: var(--color-blue);
    text-decoration: none;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    min-width: 220px;
    padding: var(--space-xs);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
}
.has-children:hover .dropdown,
.has-children:focus-within .dropdown {
    display: block;
}
.dropdown li a {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: calc(var(--radius) - 4px);
    color: var(--color-text);
    font-weight: 400;
}
.dropdown li a:hover {
    background: var(--color-cream);
    text-decoration: none;
}

.cta-button {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    white-space: nowrap;
}
.cta-button:hover {
    background: var(--color-navy);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    display: block;
}

/* ============================================
   Main content
   ============================================ */
main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    min-height: 50vh;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-navy);
    color: var(--color-cream);
    margin-top: var(--space-lg);
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}
.footer-col h3 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}
.footer-col p, .footer-col li { margin-bottom: 0.4rem; color: var(--color-cream); }
.footer-col a { color: var(--color-cream); opacity: 0.85; }
.footer-col a:hover { opacity: 1; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.875rem;
    opacity: 0.8;
}
.footer-social { display: flex; gap: var(--space-sm); }

/* Rechtliches im Footer (Impressum / Datenschutz).
   Muss von jeder Seite aus erreichbar sein. */
.footer-legal { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.footer-legal a { color: var(--color-cream); opacity: 0.85; }
.footer-legal a:hover { opacity: 1; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 860px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-border);
        padding: var(--space-sm);
    }
    .main-nav.is-open { display: block; }
    .main-nav > ul { flex-direction: column; gap: 0; }
    .main-nav > ul > li { border-bottom: 1px solid var(--color-border); }
    .main-nav > ul > li > a { display: block; padding: var(--space-sm) 0; }
    .dropdown { position: static; border: none; box-shadow: none; display: none; padding-left: var(--space-sm); }
    .has-children.is-expanded .dropdown { display: block; }

    .nav-toggle { display: flex; }

    /* Reihenfolge per flex order: Logo links, CTA mittig, Menue rechts.
       Kein Eingriff ins HTML noetig. */
    .logo       { order: 1; }
    .cta-button { order: 2; }
    .nav-toggle { order: 3; }
    .main-nav   { order: 4; }

    .header-inner { gap: 8px; padding: var(--space-sm) 12px; flex-wrap: nowrap; }
    .logo img { height: 32px; }

    /* flex-shrink:0 - diese beiden duerfen nicht schrumpfen, sonst bricht
       der Button um oder verschwindet. Platz gibt das Logo her. */
    .cta-button { flex-shrink: 0; white-space: nowrap; padding: 0.5rem 0.75rem; font-size: 0.8rem; }
    .nav-toggle { flex-shrink: 0; padding: 6px; margin: 0; }

    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
    .logo img  { height: 28px; }
    .cta-button { font-size: 0.75rem; padding: 0.45rem 0.6rem; }
    .header-inner { gap: 6px; padding: 0.7rem 10px; }
}

@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   Consent-Banner (minimal, unaufdringlich)
   ============================================ */
.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-navy);
    color: var(--color-cream);
    padding: 0.85rem var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: 0.875rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}
.consent-bar a { color: var(--color-white); text-decoration: underline; }
.consent-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.consent-btn {
    border-radius: calc(var(--radius) - 4px);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
}
.consent-btn-accept { background: var(--color-blue); color: var(--color-white); }
.consent-btn-accept:hover { background: var(--color-white); color: var(--color-navy); }
.consent-btn-ghost { background: transparent; color: var(--color-cream); border-color: rgba(255,255,255,0.3); }
.consent-btn-ghost:hover { border-color: var(--color-white); }

/* ============================================
   FAB — Schwebende Kontakt-Buttons
   ============================================ */
.besa-fab-wrap {
    position: fixed;
    z-index: 9000;
    display: flex;
    gap: 6px;
}
@media (min-width: 769px) {
    .besa-fab-wrap { right: 20px; top: 50%; transform: translateY(-50%); flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
    .besa-fab-wrap { right: 16px; bottom: 20px; flex-direction: row; align-items: center; }
}
.besa-fab-btn {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--color-blue);
    border: none;
    box-shadow: 0 2px 8px rgba(11,37,69,0.25);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}
.besa-fab-btn:hover { background: var(--color-navy); }
.besa-fab-photo {
    width: 44px; height: 44px;
    border-radius: 8px;
    overflow: visible;
    position: relative;
    display: block;
    box-shadow: 0 0 0 2.5px #25D366, 0 2px 8px rgba(11,37,69,0.25);
    flex-shrink: 0;
}
.besa-fab-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; display: block; }
.besa-wa-badge {
    position: absolute; bottom: -2px; left: -2px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex; align-items: center; justify-content: center;
}
.besa-status-dot {
    position: absolute; top: -2px; right: -2px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #bdc3c7;
    border: 1.5px solid var(--color-white);
}
.besa-status-dot.online { background: #2ecc71; }


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

/* ============================================
   Hero — gemeinsame Basis (Buttons, Kicker, Shimmer)
   ============================================ */
.hero-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.875rem; font-weight: 700;
    padding: 0.8rem 1.35rem;
    border-radius: 9px;
    transition: background 0.15s;
}
.hero-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.hero-btn-primary { background: var(--color-blue); color: var(--color-white); }
.hero-btn-primary:hover { background: #1A3A6B; text-decoration: none; }
.hero-btn-whatsapp { background: #22c55e; color: var(--color-white); }
.hero-btn-whatsapp:hover { background: #16a34a; text-decoration: none; }
.hero-btn-ghost { background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); border: 1.5px solid rgba(255,255,255,.2); }
.hero-btn-ghost:hover { background: rgba(255,255,255,.14); color: var(--color-white); text-decoration: none; }

.hero-kicker {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 999px;
    padding: 4px 13px 4px 9px;
    margin-bottom: 18px;
    width: fit-content;
}
.hero-kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.hero-kicker-text { font-size: 10.5px; font-weight: 700; color: #4ade80; letter-spacing: .05em; text-transform: uppercase; }
/* Startseite nutzt eine dezentere Variante (Original-Hero-Code): türkiser Punkt,
   gräulich-weißer statt grüner Text, kaum sichtbarer Rand statt kräftigem Rand. */
.hero-kicker--home { border-color: rgba(255,255,255,.18); }
.hero-kicker--home .hero-kicker-dot { background: #00B4D8; }
.hero-kicker--home .hero-kicker-text { color: rgba(255,255,255,.7); }

.hero-glow {
    font-style: normal;
    display: inline-block;
    background: linear-gradient(90deg, #2E6FD4, #4A90E8, #00B4D8, #2E6FD4, #4A90E8);
    background-size: 300% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
    animation: besa-shimmer 4s linear infinite;
}
@keyframes besa-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-glow { animation: none; -webkit-text-fill-color: #4A90E8; color: #4A90E8; }
}

/* ============================================
   Hero — Startseite (zweispaltig mit Trust-Panel)
   ============================================ */
.hero-home {
    background: var(--color-navy);
    padding: 0 clamp(16px, 4vw, 40px);
    position: relative;
    left: 50%;
    right: 50%;
    margin-top: calc(-1 * var(--space-lg));
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin-bottom: var(--space-lg);
}
.hero-home-in {
    max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 462px;
    gap: clamp(8px, 2vw, 20px); min-height: 389px;
}
.hero-home-left { padding: clamp(20px, 5vw, 36px) 0; display: flex; flex-direction: column; justify-content: center; }
.hero-home h1 {
    font-size: clamp(24px, 4.5vw, 50px); font-weight: 800;
    line-height: 1.06; letter-spacing: -.03em;
    color: var(--color-white); margin-bottom: 14px;
}
.hero-home-sub { font-size: clamp(14px, 1.5vw, 15.5px); color: rgba(255,255,255,.62); line-height: 1.8; margin-bottom: 18px; }
.hero-checks { display: flex; flex-direction: column; gap: 7px; margin-bottom: 26px; list-style: none; }
.hero-check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.82); }
.hero-check-icon {
    width: 17px; height: 17px; flex-shrink: 0;
    background: rgba(26,88,52,.4); border: 1px solid rgba(74,222,128,.4);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.hero-check-icon svg { width: 9px; height: 9px; stroke: #4ade80; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.hero-btns { display: flex; gap: 9px; flex-wrap: wrap; }

.hero-home-right {
    background: #152d52; display: flex; flex-direction: column; overflow: hidden;
    padding: 12px 10px 12px;
    box-shadow: 0 0 60px rgba(46,111,212,.55), 0 0 30px rgba(0,180,216,.3), inset 0 0 0 1px rgba(255,255,255,.1);
}
.hero-team { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
.hero-person { background: var(--color-navy); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; }
.hero-person img { width: 100%; flex: 1; min-height: 0; object-fit: cover; object-position: center 20%; display: block; }
.hero-person-info { padding: 8px 10px 9px; text-align: center; flex-shrink: 0; }
.hero-person-name { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.85); display: block; }
.hero-person-role { font-size: 9.5px; color: rgba(255,255,255,.38); line-height: 1.4; display: block; }
.hero-tagline { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 12px; background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.07); font-size: 11px; color: rgba(255,255,255,.6); font-weight: 500; }
.hero-ratings { display: grid; grid-template-columns: repeat(3, 1fr); flex-shrink: 0; background: var(--color-white); margin: 10px -10px 0; }
.hero-rating { padding: 11px 6px; text-align: center; display: block; transition: background 0.15s; }
.hero-rating:hover { background: #f0f6ff; text-decoration: none; }
.hero-rating:not(:last-child) { border-right: 1px solid var(--color-border); }
.hero-rating-stars { color: #F4A528; font-size: 10px; letter-spacing: .5px; display: block; }
.hero-rating-score { font-size: 18px; font-weight: 800; color: var(--color-navy); line-height: 1; display: block; margin: 3px 0; }
.hero-rating-platform { font-size: 9px; color: var(--color-text-muted); font-weight: 600; letter-spacing: .03em; display: block; }

@media (max-width: 820px) {
    .hero-home-in { grid-template-columns: 1fr; gap: 0; }
    .hero-home-left { padding: clamp(32px, 5vw, 48px) 0; }
    .hero-home-right { min-height: 300px; }
    .hero-team { min-height: 220px; }
}
@media (max-width: 520px) {
    .hero-btns { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-btns a:last-child { grid-column: 1 / -1; }
}

/* ============================================
   Hero — Unterseiten (Kicker + H1 + Intro links, Bild rechts — eine Zeile)
   ============================================ */
.hero-page {
    background: var(--color-navy);
    padding: 0 clamp(16px, 4vw, 40px);
    position: relative;
    left: 50%;
    right: 50%;
    margin-top: calc(-1 * var(--space-lg));
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin-bottom: var(--space-lg);
}
.hero-page-in {
    max-width: var(--max-width); margin: 0 auto;
    padding: clamp(28px, 6vw, 48px) 0;
    display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-md);
    align-items: center;
}
.hero-page-left h1 {
    font-size: clamp(24px, 4.5vw, 37px); font-weight: 800;
    line-height: 1.25; letter-spacing: -.03em; color: var(--color-white);
    margin-bottom: 16px;
}
.hero-page-intro { color: rgba(255,255,255,.75); font-size: 0.95rem; line-height: 1.75; }
.hero-page-intro a { color: #7FB0F5; text-decoration: underline; }
.hero-page-image { border-radius: var(--radius); overflow: hidden; max-width: 70%; margin-left: auto; }
.hero-page-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 820px) {
    .hero-page-in { grid-template-columns: 1fr; }
    .hero-page-image { max-width: 100%; margin-left: 0; }
}

/* ProvenExpert ProSeal-Widget verkleinern (Original-Anpassung aus dem Head-Code) */
div.pe-front-page.pe-front-page--scenarioA {
    transform: scale(0.85) !important;
    transform-origin: bottom right !important;
}

/* ============================================
   LOCAL PRO Header-Banner
   ============================================ */
.lp-banner {
    background: var(--color-navy);
    padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 40px) clamp(20px, 3vw, 32px);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}
.lp-banner-in { text-align: center; max-width: 520px; margin: 0 auto; }
.lp-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: #4ade80; margin-bottom: 6px; display: block;
}
.lp-banner-h {
    font-size: clamp(20px, 2.8vw, 30px); font-weight: 800;
    color: var(--color-white); letter-spacing: -.02em; line-height: 1.15; margin-bottom: 6px;
}
.lp-banner-sub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ============================================
   LOCAL PRO CTA-Widget (Formular)
   ============================================ */
#lp-widget * { box-sizing: border-box; }
.lp-widget-section {
    background: var(--color-navy);
    padding-bottom: clamp(40px, 6vw, 64px);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin-bottom: var(--space-lg);
}
#lp-widget {
    max-width: 780px; margin: 0 auto; padding: 1.5rem var(--space-md);
    color: #1C2B39;
}
#lp-widget .lp-card { background: var(--color-white); border-radius: 18px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); overflow: hidden; }
#lp-widget .lp-grid { display: grid; grid-template-columns: 1fr 1fr; }
#lp-widget .lp-left { padding: 2rem; border-right: 1px solid var(--color-border); }
#lp-widget .lp-right { padding: 2rem; background: var(--color-cream); }
#lp-widget .lp-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
#lp-widget .lp-logo { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; flex-shrink: 0; }
#lp-widget .lp-brand { font-size: 13px; font-weight: 600; color: #1C2B39; }
#lp-widget .lp-badge { font-size: 11px; padding: 3px 10px; border-radius: 20px; background: #dcfce7; color: #166534; font-weight: 700; margin-left: auto; white-space: nowrap; }
#lp-widget .lp-h2 { font-size: 22px; font-weight: 800; line-height: 1.25; margin: 0 0 0.5rem; color: #1C2B39; }
#lp-widget .lp-sub { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; margin: 0 0 1.25rem; }
#lp-widget .lp-sub a { color: var(--color-blue); text-decoration: none; font-weight: 600; }
#lp-widget .lp-sub a:hover { text-decoration: underline; }
#lp-widget .lp-field {
    width: 100%; padding: 13px 15px; margin-bottom: 10px; border-radius: 8px;
    border: 1px solid #cbd5e1; font-size: 14px; outline: none; background: var(--color-white);
    transition: border-color 0.2s; color: #1C2B39; font-family: inherit;
}
#lp-widget .lp-field:focus { border-color: var(--color-blue); }
#lp-widget .lp-field-upper { text-transform: uppercase; }
#lp-widget .lp-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.25rem; }
#lp-widget .lp-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--color-blue); }
#lp-widget .lp-check label { font-size: 12px; color: var(--color-text-muted); line-height: 1.5; cursor: pointer; }
#lp-widget .lp-check a { color: var(--color-blue); font-weight: 600; }
#lp-widget .lp-submit {
    width: 100%; padding: 14px; font-size: 15px; font-weight: 700; border-radius: 10px;
    background: var(--color-blue); border: none; cursor: pointer; color: var(--color-white);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.2s; font-family: inherit;
}
#lp-widget .lp-submit:hover { background: var(--color-navy); }
#lp-widget .lp-err { display: none; font-size: 12px; color: #ef4444; margin-top: 0.5rem; text-align: center; font-weight: 700; }
#lp-widget .lp-trust { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; padding: 1rem 2rem; border-top: 1px solid var(--color-border); }
#lp-widget .lp-trust span { font-size: 12px; font-weight: 700; color: var(--color-blue); }
#lp-widget .lp-section-label { font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.07em; margin: 0 0 1rem; }
#lp-widget .lp-steps { border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; margin-bottom: 1rem; }
#lp-widget .lp-step { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; background: var(--color-white); border-bottom: 1px solid var(--color-border); }
#lp-widget .lp-step:last-child { border-bottom: none; }
#lp-widget .lp-step-n { width: 22px; height: 22px; border-radius: 50%; background: #f1f5f9; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--color-text-muted); flex-shrink: 0; }
#lp-widget .lp-step-title { font-size: 14px; font-weight: 700; margin: 0 0 2px; color: #1C2B39; }
#lp-widget .lp-step-sub { font-size: 12px; color: var(--color-text-muted); margin: 0; }
#lp-widget .lp-note { border: 1px solid var(--color-border); border-radius: 10px; padding: 12px 14px; background: var(--color-white); font-size: 12px; color: var(--color-text-muted); line-height: 1.6; margin: 0; }
@media (max-width: 580px) {
    #lp-widget .lp-grid { grid-template-columns: 1fr; }
    #lp-widget .lp-left { border-right: none; border-bottom: 1px solid var(--color-border); padding: 1.5rem; }
    #lp-widget .lp-right { padding: 1.5rem; }
    #lp-widget .lp-trust { padding: 1rem 1.5rem; }
}

/* ============================================
   Content-Sections — gemeinsame Bausteine
   ============================================ */
.content-section { padding: var(--space-lg) 0; }
/* Full-Bleed-Modifier: Hintergrundfarbe reicht bis zum Bildschirmrand, Inhalt bleibt zentriert.
   Gilt als Standard fuer JEDE farbige Content-Sektion (Regel, keine Ausnahme). */
.content-section--cream, .content-section--navy {
    position: relative; left: 50%; right: 50%;
    margin-left: -50vw; margin-right: -50vw;
    width: 100vw;
}
.content-section--cream { background: var(--color-cream); }
.content-section--navy { background: var(--color-navy); color: var(--color-white); }
.content-section--navy .section-eyebrow { color: #7FB0F5; }
.content-section--navy h2 { color: var(--color-white); }
.content-section--navy .section-intro { color: rgba(255,255,255,.75); }
.content-section-in { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md); }
.section-eyebrow {
    font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--color-blue); margin-bottom: 8px;
}
.section-intro { color: var(--color-text-muted); max-width: 68ch; line-height: 1.75; margin-bottom: var(--space-md); }
.section-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--color-blue); margin-top: var(--space-sm); }
.section-cta:hover { text-decoration: none; color: var(--color-navy); }

/* Trust-Leiste (navy, eigenständiger Block wie Hero/LOCAL-PRO-Banner) */
.trust-strip {
    background: var(--color-navy);
    padding: var(--space-sm) clamp(16px, 4vw, 40px);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}
.trust-strip-in {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
    max-width: var(--max-width); margin: 0 auto;
    background: transparent;
}
.trust-item {
    background: var(--color-white);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px clamp(8px, 1.5vw, 16px);
    white-space: nowrap;
}
.trust-icon { color: var(--color-blue); flex-shrink: 0; display: flex; }
.trust-icon svg { width: 18px; height: 18px; stroke: var(--color-blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: block; }
.trust-item-title { font-size: 12.5px; font-weight: 700; color: var(--color-navy); display: block; line-height: 1.3; }
.trust-item-sub { font-size: 10.5px; color: var(--color-text-muted); display: block; line-height: 1.3; }

@media (max-width: 1080px) {
    .trust-strip-in { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
    .trust-strip-in { grid-template-columns: repeat(2, 1fr); }
    .trust-item { justify-content: flex-start; padding-left: clamp(16px, 4vw, 32px); }
}
@media (max-width: 480px) {
    .trust-strip-in { grid-template-columns: 1fr; }
}

/* Card-Grid (Leistungen) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin-bottom: var(--space-md); }
.service-card { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; position: relative; }
.service-card--featured { border-color: var(--color-blue); background: #EBF3FD; box-shadow: 0 0 0 1px var(--color-blue), 0 4px 16px rgba(46,111,212,.12); }
.featured-badge {
    display: inline-flex; align-items: center; background: var(--color-blue); color: var(--color-white);
    font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    border-radius: 999px; padding: 3px 9px; margin: var(--space-sm) var(--space-sm) 0; width: fit-content;
}
.service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.service-card-body { padding: var(--space-sm); flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-card p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 10px; }
.service-card ul { margin: 0 0 12px; }
.service-card li { font-size: 0.82rem; color: var(--color-text-muted); padding-left: 1.1em; position: relative; margin-bottom: 3px; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: #1a5834; font-weight: 700; }
.service-card a { font-weight: 700; margin-top: auto; }
.more-services { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.more-services a {
    display: inline-flex; align-items: center; gap: 6px;
    background: #EBF3FD; border: 1px solid #BDD5F5; border-radius: 999px;
    padding: 7px 14px; font-size: 0.85rem; font-weight: 600; color: var(--color-blue);
    transition: background .15s;
}
.more-services a:hover { background: #BDD5F5; text-decoration: none; }
.more-services svg { stroke: var(--color-blue); flex-shrink: 0; }
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.testimonial-grid--2 { grid-template-columns: repeat(2, 1fr); }
.testimonial-card { background: var(--color-cream); border-radius: var(--radius); padding: var(--space-sm); }
.testimonial-stars { color: #F4A528; letter-spacing: 2px; margin-bottom: 8px; display: block; }
.testimonial-card p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 10px; }
.testimonial-author { font-size: 0.82rem; color: var(--color-text-muted); font-weight: 600; }
@media (max-width: 820px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* Team (Original-Design: Foto-Body-Grid mit Zitat-Stil) */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.team-card {
    background: var(--color-cream); border: 1px solid var(--color-border);
    border-radius: 14px; overflow: hidden;
    display: grid; grid-template-columns: 160px 1fr;
}
.team-photo { background: var(--color-navy); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; min-height: 220px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-body { padding: 20px 18px; display: flex; flex-direction: column; justify-content: center; }
.team-card h3 { font-size: 16px; font-weight: 800; color: var(--color-navy); margin-bottom: 2px; }
.team-card .team-role { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--color-blue); margin-bottom: 10px; display: block; }
.team-card p { font-size: 12.5px; color: #6B7C9A; line-height: 1.7; border-left: 3px solid var(--color-border); padding-left: 11px; font-style: italic; }
.team-card .section-cta { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 11px; }
.team-card .section-cta::before {
    content: "✓"; background: #1a5834; color: var(--color-white);
    width: 13px; height: 13px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 7px; font-weight: 800; flex-shrink: 0;
}
@media (max-width: 580px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 1fr; }
    .team-photo { min-height: 200px; }
}

/* Zertifizierungen */
.badge-row { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }
.badge-item { display: flex; align-items: center; gap: 10px; }
.badge-item img { width: 44px; height: 44px; object-fit: contain; }
.badge-item span { font-size: 0.85rem; font-weight: 700; color: var(--color-navy); }

/* Warum BESA — Feature-Spalten + Gesetzes-Box */
.feature-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin-bottom: var(--space-md); }
.feature-col h3 { font-size: 1rem; margin-bottom: 6px; }
.feature-col p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.65; }
.law-box {
    background: var(--color-cream); border-left: 4px solid var(--color-blue);
    border-radius: calc(var(--radius) - 4px); padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem; line-height: 1.7; color: var(--color-text);
}
@media (max-width: 820px) { .feature-cols { grid-template-columns: 1fr; } }

/* Infocenter-Teaser-Grid */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin-bottom: var(--space-sm); }
.teaser-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-sm); }
.teaser-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--color-blue); margin-bottom: 6px; display: block; }
.teaser-card h3 { font-size: 0.95rem; line-height: 1.4; margin-bottom: 8px; }
.teaser-card a { font-size: 0.85rem; font-weight: 700; }
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .teaser-grid { grid-template-columns: 1fr; } }

/* Unfallradar */
.hotspot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.hotspot-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-sm); }
.hotspot-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.hotspot-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }
.tip-box {
    background: var(--color-cream); border-radius: var(--radius);
    padding: var(--space-sm) var(--space-md); font-size: 0.88rem; color: var(--color-text); line-height: 1.7;
}
@media (max-width: 700px) { .hotspot-grid { grid-template-columns: 1fr; } }

/* CTA-Button-Reihe (falls noch anderswo genutzt) */

/* Expertise-Modul (Original-Design: Icon-CTA-Grid, Warnbox, finaler Button) */
.expertise-cta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: var(--space-md) 0 var(--space-sm); }
.expertise-cta-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 500px; }
.expertise-cta-grid--3 { grid-template-columns: repeat(3, 1fr); }
.expertise-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; padding: 20px 12px;
    background: var(--color-cream); border: 1px solid var(--color-border);
    border-radius: var(--radius); color: var(--color-blue);
    font-size: 13px; font-weight: 600; text-align: center;
    transition: .15s;
}
.expertise-btn:hover { background: #EBF3FD; border-color: #BDD5F5; transform: translateY(-2px); text-decoration: none; }
.expertise-btn svg { display: block; stroke: var(--color-blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; width: 22px; height: 22px; }

.expertise-warning {
    background: #FEF5E7; border: 1px solid #e9c876; border-left: 4px solid #F4A528;
    border-radius: var(--radius); padding: 22px 24px;
    display: flex; gap: 18px; align-items: flex-start;
    margin-bottom: var(--space-sm);
}
.expertise-warning svg { display: block; flex-shrink: 0; stroke: #F4A528; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; width: 24px; height: 24px; margin-top: 2px; }
.expertise-warning h3 { font-size: 14px; font-weight: 700; color: #3d2a04; margin-bottom: 7px; }
.expertise-warning p { font-size: 13.5px; line-height: 1.7; color: #5a3e06; }
.expertise-warning p strong { color: #3d2a04; font-weight: 700; }

.expertise-final-cta {
    display: block; width: 100%;
    background: var(--color-blue); color: var(--color-white);
    padding: 16px 32px; border-radius: var(--radius);
    font-size: 16px; font-weight: 700; text-align: center;
    transition: background .15s;
}
.expertise-final-cta:hover { background: #1a5ab8; text-decoration: none; }

@media (max-width: 860px) { .expertise-cta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .expertise-warning { flex-direction: column; gap: 12px; } }

/* Fallbeispiel-Karten */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.case-card { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; position: relative; }
.case-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.case-price {
    position: absolute; top: 10px; right: 10px;
    background: var(--color-navy); color: var(--color-white);
    font-size: 0.78rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.case-card-body { padding: var(--space-sm); }
.case-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.case-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .case-grid { grid-template-columns: 1fr; } }

/* Vergleichstabelle */
.compare-table { width: 100%; border-collapse: collapse; margin: var(--space-md) 0; font-size: 0.9rem; }
.compare-table th, .compare-table td { padding: 10px 12px; border-bottom: 1px solid var(--color-border); text-align: left; }
.compare-table th { color: var(--color-navy); font-weight: 800; }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { text-align: center; }
.compare-check { color: #16a34a; font-weight: 800; }
.compare-cross { color: #cbd5e1; font-weight: 800; }

/* ============================================
   BESA Schaden-Assistent (interaktiver Navigator)
   ============================================ */
.bnav-bar {
    background: var(--color-navy);
    padding: 10px clamp(12px, 3vw, 24px);
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}
.bnav-bar-in { max-width: var(--max-width); margin: 0 auto; }
.bnav-bar-in { display: flex; gap: 8px; flex-wrap: wrap; }
.bnav-btn {
    flex: 1; min-width: 140px;
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px; padding: 11px 14px;
    cursor: pointer; font-family: inherit;
    text-align: left; transition: .15s;
    color: rgba(255,255,255,.85);
}
.bnav-btn:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.28); color: var(--color-white); }
.bnav-btn--ai { border-left: 3px solid #00AEEF; }
.bnav-ico { width: 22px; height: 22px; flex-shrink: 0; stroke: rgba(255,255,255,.6); transition: .15s; }
.bnav-btn:hover .bnav-ico { stroke: var(--color-white); }
.bnav-lbl { font-size: 13px; font-weight: 700; display: block; line-height: 1.2; }
.bnav-hint { font-size: 10.5px; color: rgba(255,255,255,.45); display: block; margin-top: 2px; }

.bnav-panel { display: none; background: #f8fafc; border: 1px solid var(--color-border); border-top: none; }
.bnav-panel.open { display: block; }
.bnav-panel-in { max-width: 640px; margin: 0 auto; padding: 20px clamp(16px, 4vw, 32px); }
.bnav-msg { font-size: 14px; font-weight: 700; color: #1C2B39; margin: 0 0 12px; display: block; line-height: 1.4; }
.bnav-bar-prog { background: var(--color-border); height: 5px; border-radius: 3px; overflow: hidden; margin-bottom: 18px; }
.bnav-bar-fill { background: var(--color-blue); height: 100%; transition: width 0.4s ease; }

.besa-g { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.besa-b { background: var(--color-blue); color: var(--color-white); padding: 14px; border-radius: 8px; cursor: pointer; transition: .2s; border: 2px solid var(--color-blue); min-height: 72px; display: flex; flex-direction: column; justify-content: center; }
.besa-b:hover { background: #1e3f5e; border-color: #1e3f5e; transform: translateY(-2px); }
.besa-b strong { display: block; font-size: 15px; margin-bottom: 3px; color: var(--color-white); }
.besa-b span { font-size: 12px; opacity: .85; color: var(--color-white); line-height: 1.2; }
.besa-in { width: 100%; padding: 12px; margin-bottom: 10px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 14px; display: block; font-family: inherit; outline: none; transition: border-color .2s; }
.besa-in:focus { border-color: var(--color-blue); }
.besa-btn-main, .besa-btn-blue, .besa-btn-green {
    display: flex; width: 100%; padding: 15px; color: var(--color-white); border-radius: 8px;
    font-weight: 700; text-align: center; cursor: pointer; margin-top: 10px; border: none;
    font-size: 16px; font-family: inherit; align-items: center; justify-content: center; gap: 8px;
}
.besa-btn-main, .besa-btn-blue { background: var(--color-blue); }
.besa-btn-main:hover, .besa-btn-blue:hover { background: #1e3f5e; text-decoration: none; }
.besa-btn-green { background: #25D366; }
.besa-res-box { background: var(--color-white); padding: 20px; border-radius: 8px; border: 1px solid var(--color-border); margin-bottom: 14px; }
.besa-res-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.besa-res-actions a { flex: 1; min-width: 120px; }
.besa-back { text-align: center; margin-top: 20px; color: #94a3b8; cursor: pointer; text-decoration: underline; font-size: 13px; display: block; }

.lp-form-wrap { background: var(--color-white); border: 1px solid var(--color-border); border-radius: 12px; padding: 22px; }
.lp-form-header { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.lp-logo-sm { width: 28px; height: 28px; border-radius: 6px; object-fit: contain; flex-shrink: 0; }
.lp-brand-sm { font-size: 13px; font-weight: 600; color: #1C2B39; }
.lp-badge-sm { font-size: 11px; padding: 2px 9px; border-radius: 20px; background: #dcfce7; color: #166534; font-weight: 700; margin-left: auto; white-space: nowrap; }
.lp-form-sub { font-size: 13px; color: #374845; line-height: 1.55; margin: 0 0 14px; }
.lp-form-sub a { color: var(--color-blue); font-weight: 600; }
.lp-in { width: 100%; padding: 10px 13px; margin-bottom: 8px; border: 1px solid var(--color-border); border-radius: 8px; font-size: 13.5px; display: block; font-family: inherit; outline: none; transition: border-color .2s; color: #1C2B39; background: var(--color-white); }
.lp-in:focus { border-color: var(--color-blue); }
.lp-check-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 14px; font-size: 12px; color: var(--color-text-muted); line-height: 1.5; }
.lp-check-row a { color: var(--color-blue); font-weight: 600; }
.lp-trust-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--color-border); }
.lp-trust-row span { font-size: 12px; font-weight: 700; color: var(--color-blue); }
.besa-ki-ui { display: flex; flex-direction: column; gap: 8px; }

@media (max-width: 580px) {
    .bnav-btn { min-width: calc(50% - 4px); }
    .bnav-hint { display: none; }
    .besa-g { grid-template-columns: 1fr; }
    .besa-res-actions { flex-direction: column; }
}
@media (max-width: 380px) {
    .bnav-btn { min-width: 100%; }
}

/* ============================================
   Stat-Reihe (große Kennzahlen)
   ============================================ */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); text-align: center; margin: var(--space-md) 0; }
.stat-item { padding: var(--space-sm); }
.stat-number { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--color-blue); line-height: 1.1; display: block; }
.stat-label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 4px; }
@media (max-width: 600px) { .stat-row { grid-template-columns: 1fr; } }

/* Feature-Grid (Checkliste ohne Icons, beliebige Spaltenzahl) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin: var(--space-md) 0; }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid > div { background: #EAECEF; border-radius: var(--radius); padding: var(--space-sm); }
.feature-grid h3 { font-size: 1rem; margin-bottom: 6px; }
.feature-grid p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.65; }
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* Ablauf-Schritte (nummeriert) */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); margin: var(--space-md) 0; }
.step-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-sm); position: relative; }
.step-num { font-size: 1.6rem; font-weight: 800; color: #BDD5F5; display: block; margin-bottom: 6px; }
.step-card h3 { font-size: 1rem; margin-bottom: 6px; }
.step-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }
@media (max-width: 900px) { .step-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .step-grid { grid-template-columns: 1fr; } }

/* Unabhängigkeits-Check (4-Spalten-Vergleich, jede Spalte eigene Punkte) */
.indep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); margin: var(--space-md) 0; }
.indep-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-sm); }
.indep-card--best { border-color: var(--color-blue); background: #EBF3FD; box-shadow: 0 0 0 1px var(--color-blue); }
.indep-card h3 { font-size: 0.98rem; margin-bottom: 10px; }
.indep-card ul { list-style: none; }
.indep-card li { font-size: 0.82rem; line-height: 1.6; padding-left: 1.3em; position: relative; margin-bottom: 6px; color: var(--color-text-muted); }
.indep-card li.is-good::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 800; }
.indep-card li.is-bad::before { content: "✗"; position: absolute; left: 0; color: #cbd5e1; font-weight: 800; }
@media (max-width: 900px) { .indep-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .indep-grid { grid-template-columns: 1fr; } }

/* Ressourcen-Cross-Link-Karten */
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); margin: var(--space-md) 0; }
.resource-grid--3 { grid-template-columns: repeat(3, 1fr); }
.resource-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-sm); }
.resource-card h3 { font-size: 1rem; margin-bottom: 6px; }
.resource-card p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 8px; }
@media (max-width: 700px) { .resource-grid { grid-template-columns: 1fr; } }

/* FAQ-Akkordeon-Struktur (nutzt <details>, kein JS noetig) */
.faq-list { margin: var(--space-md) 0; }
.faq-item { border-bottom: 1px solid var(--color-border); padding: 14px 0; }
.faq-item summary { font-weight: 700; cursor: pointer; color: var(--color-navy); font-size: 0.98rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+"; display: inline-block; width: 1.2em; color: var(--color-blue); font-weight: 800; }
.faq-item[open] summary::before { content: "–"; }
.faq-item p { margin-top: 10px; padding-left: 1.2em; color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.7; }

/* Ressourcen-Karten: optionales Thumbnail oben */
.resource-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: calc(var(--radius) - 4px); margin-bottom: 10px; display: block; }

/* Testimonial mit Plattform-Badge */
.testimonial-card-with-badge { display: flex; gap: var(--space-sm); align-items: flex-start; }
.testimonial-badge { width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0; object-fit: contain; }

/* Bildunterschrift-Figure (z.B. Vor-Ort-Aufnahme) */
.figure-caption { margin: var(--space-md) 0; }
.figure-caption img { width: 100%; border-radius: var(--radius); display: block; margin-bottom: 8px; aspect-ratio: 16/9; object-fit: cover; }
.figure-caption figcaption { font-size: 0.82rem; color: var(--color-text-muted); text-align: center; }

/* Einfache Textliste (Bullet-Punkte mit fettem Lead-in, normale Inline-Links) */
.text-list { list-style: none; padding: 0; }
.text-list li { position: relative; padding-left: 1.4em; margin-bottom: 12px; font-size: 0.95rem; line-height: 1.7; color: var(--color-text); }
.text-list li::before { content: "•"; position: absolute; left: 0; color: var(--color-blue); font-weight: 800; }

/* Icon-Karten (Emoji statt Bild) */
.icon-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin: var(--space-md) 0; }
.icon-card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.icon-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-sm); }
.icon-card-emoji { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.icon-card h3 { font-size: 1rem; margin-bottom: 6px; }
.icon-card p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }
@media (max-width: 820px) { .icon-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .icon-card-grid { grid-template-columns: 1fr; } }

/* Emoji-Badge-Reihe (wie badge-row, aber Emoji statt Bild) */
.emoji-badge-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); margin: var(--space-md) 0; }
.emoji-badge { display: flex; align-items: center; gap: 10px; }
.emoji-badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.emoji-badge-title { font-size: 0.85rem; font-weight: 700; color: var(--color-navy); display: block; }
.emoji-badge-sub { font-size: 0.75rem; color: var(--color-text-muted); display: block; }
@media (max-width: 820px) { .emoji-badge-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .emoji-badge-row { grid-template-columns: 1fr; } }

/* Ratgeber-Highlight-Karte */
.ratgeber-highlight { border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-md); background: var(--color-cream); }
.ratgeber-highlight h3 { font-size: 1.1rem; margin-bottom: 6px; }
.ratgeber-highlight p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 10px; }

/* Pin-Liste (Städte) */
.pin-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.pin-list a { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 600; }

/* Autoren-Box (nur für redaktionelle Inhalte mit Byline, nicht für reine Leistungsseiten) */
.author-box { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); margin: var(--space-sm) 0 var(--space-md); font-style: normal; }
.author-box-name { font-weight: 700; color: var(--color-navy); }
.author-box-role { font-size: 0.85rem; color: var(--color-text-muted); display: block; }

/* Einfache Fallbeispiel-Karten ohne Bild (Text + Betrag) */
.result-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin: var(--space-md) 0; }
.result-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-sm); border-left: 4px solid #16a34a; }
.result-card-amount { font-size: 1.3rem; font-weight: 800; color: #16a34a; display: block; margin-bottom: 6px; }
.result-card p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }
@media (max-width: 820px) { .result-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .result-card-grid { grid-template-columns: 1fr; } }

/* Standort-Karten (Original-Design: Icon+Text-Karten mit Hover, Callout-Box) */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0; }
.loc-card {
    background: var(--color-cream); border: 1px solid var(--color-border);
    border-radius: var(--radius); padding: 20px 16px;
    display: flex; align-items: flex-start; gap: 14px;
    transition: .15s;
}
.loc-card:hover { background: var(--color-white); border-color: #BDD5F5; transform: translateY(-2px); }
.loc-icon { flex-shrink: 0; display: flex; }
.loc-icon svg { width: 22px; height: 22px; stroke: var(--color-blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.loc-card-text strong { font-size: 13.5px; font-weight: 700; color: var(--color-navy); display: block; margin-bottom: 4px; }
.loc-card-text p { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.6; }

.loc-footer {
    background: var(--color-cream); border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-blue); border-radius: var(--radius);
    padding: 20px 24px 20px 28px; margin-top: 28px;
}
.loc-footer p { font-size: 14px; line-height: 1.75; color: #374845; font-weight: 500; }
.loc-footer p strong { color: var(--color-navy); font-weight: 700; }

@media (max-width: 680px) { .loc-grid { grid-template-columns: 1fr; } }

/* ============================================
   LOCAL PRO Partner-Verzeichnis (pro Stadt befuellt)
   Eigene Farbpalette wie im Original-Modul (dunkleres Blau als Site-Standard)
   ============================================ */
.lpdir { --lpdir-blue: #004a99; --lpdir-dark: #1a1a1a; --lpdir-gray: #666; font-family: inherit; }
.lpdir-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 30px; }
.lpdir-card {
    background: var(--color-white); border-radius: 16px; padding: 30px 20px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex; flex-direction: column; justify-content: space-between; position: relative;
}
.lpdir-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); border-color: var(--lpdir-blue); }
.lpdir-card--main { border: 2px solid var(--lpdir-blue); }
.lpdir-badge { width: 90px; height: auto; margin: 0 auto 20px; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1)); }
.lpdir-category { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--lpdir-blue); margin-bottom: 10px; font-weight: 800; }
.lpdir-title { font-size: 1.15rem; color: var(--lpdir-dark); margin-bottom: 15px; font-weight: 700; line-height: 1.2; min-height: 50px; display: flex; align-items: center; justify-content: center; }
.lpdir-data { font-size: 0.85rem; color: #4a4a4a; line-height: 1.6; margin-bottom: 20px; padding: 12px; background: #f4f7fa; border-radius: 8px; text-align: left; }
.lpdir-hr { border: 0; border-top: 1px solid #eee; margin: 10px 0; }
.lpdir-contact-bar { display: flex; justify-content: space-around; margin-top: 10px; padding-top: 10px; border-top: 1px solid #eee; }
.lpdir-contact-icon { transition: transform 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.lpdir-contact-icon:hover { transform: scale(1.2); }
.lpdir-link {
    display: inline-block; padding: 10px 20px;
    background: linear-gradient(135deg, var(--lpdir-blue) 0%, #003366 100%);
    color: var(--color-white); border-radius: 8px; font-weight: 700; font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.2);
}
.lpdir-link:hover { text-decoration: none; opacity: .92; }

.lpdir-divider {
    margin: 40px 0 20px; font-size: 0.9rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; color: var(--lpdir-gray); text-align: center;
    display: flex; align-items: center; justify-content: center;
}
.lpdir-divider::before, .lpdir-divider::after { content: ""; height: 1px; background: #ddd; flex: 1; margin: 0 20px; }

.lpdir-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; }
.lpdir-mini-card {
    background: var(--color-white); border-radius: 12px; padding: 15px 20px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03); transition: all 0.3s ease;
}
.lpdir-mini-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-color: var(--lpdir-blue); }
.lpdir-mini-info { display: flex; align-items: center; gap: 15px; }
.lpdir-mini-icon-circle { width: 40px; height: 40px; background: #f0f4f8; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lpdir-mini-text { text-align: left; }
.lpdir-mini-label { font-size: 0.65rem; font-weight: 800; color: var(--lpdir-blue); text-transform: uppercase; }
.lpdir-mini-name { font-size: 0.95rem; font-weight: 700; color: var(--lpdir-dark); }
.lpdir-mini-btn { background: var(--lpdir-blue); color: var(--color-white); width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lpdir-mini-btn:hover { background: var(--lpdir-dark); text-decoration: none; }

@media (max-width: 600px) { .lpdir-grid, .lpdir-mini-grid { grid-template-columns: 1fr; } }

/* ============================================
   Unfall-Radar Hotspot-Modul (Original-Design)
   ============================================ */
.radar-hotspot-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-md); }
.radar-hotspot-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--color-cream); border: 1px solid var(--color-border);
    border-radius: var(--radius); padding: 16px 18px; transition: .2s;
}
.radar-hotspot-item:hover { border-color: #BDD5F5; transform: translateX(4px); background: var(--color-white); }
.radar-hotspot-ico { flex-shrink: 0; display: flex; margin-top: 2px; }
.radar-hotspot-ico svg { width: 20px; height: 20px; stroke: var(--color-blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.radar-hotspot-info { flex: 1; min-width: 0; }
.radar-hotspot-info strong { font-size: 13.5px; font-weight: 700; color: var(--color-navy); margin-bottom: 5px; display: block; }
.radar-hotspot-info p { font-size: 13px; color: #374845; line-height: 1.65; }

.radar-safety-box {
    display: flex; align-items: flex-start; gap: 16px;
    background: #EBF3FD; border: 1px solid #BDD5F5; border-left: 4px solid var(--color-blue);
    border-radius: var(--radius); padding: 18px 20px; margin-bottom: var(--space-md);
}
.radar-safety-box svg { width: 24px; height: 24px; flex-shrink: 0; stroke: var(--color-blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; margin-top: 1px; }
.radar-safety-box p { font-size: 13.5px; color: #374845; line-height: 1.75; }
.radar-safety-box strong { color: var(--color-navy); font-weight: 700; }

.radar-cta { text-align: center; }
.radar-cta a {
    display: inline-block; background: var(--color-blue); color: var(--color-white);
    padding: 14px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 700; transition: background .15s;
}
.radar-cta a:hover { background: #1a5ab8; text-decoration: none; }

@media (max-width: 580px) {
    .radar-safety-box { flex-direction: column; }
    .radar-cta a { display: block; width: 100%; text-align: center; }
}

/* Textliste mit Häkchen statt Punkt (z.B. persönliche Vorteile-Liste) */
.text-list--check li::before { content: "✓"; color: #16a34a; }

/* ============================================
   LocalPro Partner-Profilseite (generisches Template)
   ============================================ */
.partner-contact-card {
    background: var(--color-cream); border: 1px solid var(--color-border);
    border-radius: var(--radius); padding: var(--space-md); margin: var(--space-md) 0;
    display: flex; gap: var(--space-md); align-items: flex-start;
}
.partner-contact-icon {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
    background: var(--color-white); border: 1px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
}
.partner-contact-icon svg { width: 26px; height: 26px; stroke: var(--color-blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.partner-contact-details p { font-size: 0.95rem; color: var(--color-text); line-height: 1.8; margin-bottom: 4px; }
.partner-contact-details a { color: var(--color-blue); font-weight: 600; }
.partner-badge-row { display: flex; align-items: center; gap: 14px; margin: var(--space-sm) 0 var(--space-md); }
.partner-badge-row img { width: 64px; height: 64px; object-fit: contain; }

/* ============================================
   LocalPro Partner-Zertifikat (Original-Design, 1:1 uebernommen)
   ============================================ */
.besa-localpro-section { --besa-blue: #2c5a85; --besa-dark-blue: #003366; --besa-gold: #c5a059; --light-grey: #f9f9f9; --dark-text: #222; }
.besa-localpro-section * { font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif; box-sizing: border-box; }

.besa-cert-wrapper { max-width: 850px; margin: 0 auto 40px auto; padding: 10px; background: #fff; position: relative; }
.besa-cert-border { border: 12px solid var(--besa-dark-blue); padding: 3px; }
.besa-cert-inner { border: 2px solid var(--besa-gold); padding: 40px 60px 50px 60px; text-align: center; background-color: #fff; }
.cert-logo-inside { display: block; margin: 0 auto 15px auto; width: 80px; height: auto; }
.cert-partner-status { font-size: 1rem; letter-spacing: 3px; color: var(--besa-gold); text-transform: uppercase; margin-bottom: 5px; display: block; font-weight: 700; }
.cert-partner-name { font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--besa-dark-blue); font-weight: 800; margin: 10px 0 5px 0; line-height: 1.1; }
.cert-partner-title { font-size: 1.2rem; color: var(--dark-text); margin-bottom: 15px; display: block; font-weight: 600; }
.cert-divider { width: 80px; height: 2px; background: var(--besa-gold); margin: 20px auto; }
.cert-description { font-size: 1.1rem; line-height: 1.6; color: var(--dark-text); max-width: 650px; margin: 0 auto; }
.cert-footer-meta { margin-top: 40px; display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid #eee; padding-top: 20px; }
.signature-area { text-align: left; }
.signature-name { font-weight: bold; color: var(--besa-dark-blue); border-bottom: 1px solid var(--dark-text); padding-bottom: 2px; }
.cert-id-info { text-align: right; font-size: 0.75rem; color: #999; line-height: 1.4; }

.partner-profile-grid { max-width: 850px; margin: 0 auto; display: flex; gap: 0; background: var(--light-grey); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.partner-image-box { flex: 0 0 300px; position: relative; }
.partner-image-box::before { content: ""; display: block; padding-top: 100%; }
.partner-image-box img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
.partner-content-box { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.partner-statement { font-size: 1.05rem; line-height: 1.6; color: var(--dark-text); margin-bottom: 25px; font-style: italic; }
.cta-heading { font-weight: bold; margin-bottom: 20px; color: var(--besa-dark-blue); font-size: 1.1rem; display: block; }

.contact-button-container { display: flex; gap: 10px; }
.new-btn { flex: 1; padding: 14px 10px; text-align: center; text-decoration: none; font-weight: bold; border-radius: 6px; font-size: 0.85rem; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; background: var(--besa-blue); color: #ffffff; }
.new-btn svg { width: 18px; height: 18px; margin-right: 8px; fill: #ffffff; }
.new-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); color: #ffffff; text-decoration: none; }

@media (max-width: 800px) {
    .partner-profile-grid { flex-direction: column; }
    .partner-image-box { flex: 0 0 auto; width: 100%; }
    .besa-cert-inner { padding: 30px 20px; }
    .contact-button-container { flex-direction: column; }
    .cert-footer-meta { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .signature-area, .cert-id-info { text-align: center; }
    .cert-logo-inside { width: 70px; }
}

/* ============================================
   Ratgeber-Artikel: gemeinsame Bausteine
   (ersetzt die pro-Modul-ID-Scopes der IONOS-Version,
   hier global wiederverwendbar da jede Seite eigenes PHP-File ist)
   ============================================ */
.rat-block { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 22px; margin-bottom: 14px; }
.rat-block--cream { background: var(--color-cream); }
.rat-author-line { font-size: 12px; color: var(--color-text-muted); margin-bottom: 10px; display: block; }
.rat-h3 { font-size: 15px; font-weight: 700; color: var(--color-navy); margin-bottom: 10px; padding-left: 10px; border-left: 3px solid var(--color-blue); display: block; }
.rat-h3--green { border-left-color: #22c55e; }
.rat-p { font-size: 13.5px; color: #374845; line-height: 1.8; margin-bottom: 10px; }
.rat-p:last-child { margin-bottom: 0; }
.rat-p strong { color: var(--color-navy); font-weight: 700; }

.rat-list { display: flex; flex-direction: column; gap: 8px; margin: 10px 0; list-style: none; padding: 0; }
.rat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #374845; line-height: 1.65; background: var(--color-cream); border: 1px solid var(--color-border); border-radius: 8px; padding: 10px 14px; min-width: 0; overflow-wrap: anywhere; }
.rat-list li::before { content: "✓"; color: var(--color-blue); font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.rat-list li strong { color: var(--color-navy); font-weight: 700; }

.rat-step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 12px 0; }
.rat-step-card { background: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 14px; text-align: center; }
.rat-step-ico { font-size: 20px; display: block; margin-bottom: 8px; }
.rat-step-card p { font-size: 12px; color: var(--color-navy); line-height: 1.5; }
.rat-step-card p strong { font-weight: 700; }

.rat-cta-banner { background: var(--color-navy); border-radius: var(--radius); padding: 24px; text-align: center; margin-bottom: 14px; }
.rat-cta-banner .cta-h { font-size: clamp(18px, 2.5vw, 24px); font-weight: 800; color: #fff; margin-bottom: 8px; display: block; }
.rat-cta-banner .cta-sub { font-size: 13.5px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 16px; }
.rat-cta-banner .cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.rat-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 700; transition: .15s; }
.rat-cta-btn--white { background: #fff; color: var(--color-navy); }
.rat-cta-btn--white:hover { background: var(--color-cream); }
.rat-cta-btn--wa { background: #25D366; color: #fff; }
.rat-cta-btn--wa:hover { background: #1da851; }

.rat-cluster { background: #EBF3FD; border: 1px solid #BDD5F5; border-left: 4px solid var(--color-blue); border-radius: var(--radius); padding: 18px 22px; }
.rat-cluster-h { font-size: 13px; font-weight: 700; color: var(--color-navy); margin-bottom: 12px; display: block; }
.rat-cluster-list { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; }
.rat-cluster-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; min-width: 0; overflow-wrap: anywhere; }
.rat-cluster-list li::before { content: "👉"; flex-shrink: 0; }
.rat-cluster-list a { color: var(--color-blue); font-weight: 600; text-decoration: underline; }

/* Vergleichs-Karten (z.B. technisch vs. wirtschaftlich) */
.rat-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.rat-type-card { border-radius: var(--radius); padding: 16px 18px; }
.rat-type-card--a { background: #fee2e2; border: 1px solid #fca5a5; }
.rat-type-card--b { background: #FEF5E7; border: 1px solid #fcd34d; }
.rat-type-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-bottom: 6px; }
.rat-type-card--a .rat-type-badge { background: #991b1b; color: #fff; }
.rat-type-card--b .rat-type-badge { background: #92400e; color: #fff; }
.rat-type-ico { font-size: 24px; display: block; margin-bottom: 8px; }
.rat-type-h { font-size: 13.5px; font-weight: 800; margin-bottom: 6px; display: block; }
.rat-type-card--a .rat-type-h { color: #991b1b; }
.rat-type-card--b .rat-type-h { color: #854d0e; }
.rat-type-card p { font-size: 12.5px; line-height: 1.65; }
.rat-type-card--a p { color: #7f1d1d; }
.rat-type-card--b p { color: #78350f; }

/* Definitions-/Zitat-Box mit Gesetzestext */
.rat-def-box { background: #EBF3FD; border: 1px solid #BDD5F5; border-left: 4px solid var(--color-blue); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 12px; }
.rat-def-h { font-size: 13px; font-weight: 700; color: var(--color-navy); margin-bottom: 8px; display: block; text-transform: uppercase; letter-spacing: .04em; }
.rat-def-box p { font-size: 13.5px; color: #374845; line-height: 1.8; margin-bottom: 6px; }
.rat-def-box p strong { color: var(--color-navy); font-weight: 700; }
.rat-def-cite { font-size: 11px; color: var(--color-text-muted); display: block; }

/* Berechnungs-Box mit Zeilen-Summe */
.rat-calc-box { background: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 14px 16px; margin: 12px 0; }
.rat-calc-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 6px 0; border-bottom: 1px dashed var(--color-border); }
.rat-calc-row:last-child { border-bottom: none; font-weight: 700; font-size: 14px; }
.rat-calc-label { color: #374845; }
.rat-calc-val { font-weight: 700; color: var(--color-navy); }
.rat-calc-val--blue { color: var(--color-blue); }
.rat-calc-val--red { color: #991b1b; }
.rat-calc-val--green { color: #166534; }

@media (max-width: 680px) {
    .rat-step-grid { grid-template-columns: repeat(2, 1fr); }
    .rat-type-grid { grid-template-columns: 1fr; }
    .rat-cta-banner .cta-btns { flex-direction: column; align-items: center; }
    .rat-cta-btn { width: 100%; justify-content: center; }
}

/* Urteils-Verdict-Karte (navy, mit Zitat + Ergebnis-Box) */
.rat-verdict-card { background: var(--color-navy); border-radius: var(--radius); padding: 24px; margin-bottom: 14px; position: relative; overflow: hidden; }
.rat-verdict-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #4ade80; margin-bottom: 10px; display: block; }
.rat-verdict-h { font-size: clamp(16px, 2vw, 22px); font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.2; display: block; }
.rat-verdict-meta { font-size: 11px; color: rgba(255,255,255,.55); margin-bottom: 16px; display: block; }
.rat-verdict-quote { border-left: 3px solid #4ade80; padding-left: 14px; font-size: 14px; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 14px; }
.rat-verdict-result { background: rgba(74,222,128,.15); border: 1px solid rgba(74,222,128,.3); border-radius: 8px; padding: 12px 16px; }
.rat-verdict-result-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #4ade80; margin-bottom: 6px; display: block; }
.rat-verdict-result-p { font-size: 13.5px; color: #fff; line-height: 1.7; font-weight: 600; }
.rat-verdict-result-p strong { color: #4ade80; font-weight: 800; }

/* Fakten-Tabelle */
.rat-fact-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 12px 0; }
.rat-fact-table th { background: var(--color-navy); color: #fff; padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.rat-fact-table td { padding: 10px 14px; border-bottom: 1px solid var(--color-border); color: #374845; vertical-align: middle; }
.rat-fact-table tr:last-child td { border-bottom: none; }
.rat-fact-table tr:nth-child(even) td { background: var(--color-cream); }
.rat-fact-table td a { color: var(--color-blue); font-weight: 700; text-decoration: underline; }
.rat-tag-ok { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; background: #dcfce7; color: #166534; }
.rat-tag-no { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; background: #fee2e2; color: #991b1b; }

@media (max-width: 580px) {
    .rat-fact-table thead { display: none; }
    .rat-fact-table tr { display: block; margin-bottom: 12px; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; }
    .rat-fact-table td { display: block; text-align: right; padding: 10px 12px; border-bottom: 1px solid var(--color-border); }
    .rat-fact-table td:first-child { background: var(--color-cream); text-align: left; font-weight: 700; }
    .rat-fact-table td:not(:first-child)::before { content: attr(data-label); float: left; font-weight: 700; color: var(--color-navy); font-size: 10px; text-transform: uppercase; }
}

/* Szenario-Ampel-Karten (z.B. 100%/130%-Regel) */
.rat-comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 12px 0; }
.rat-comp-card { border-radius: var(--radius); padding: 14px 16px; text-align: center; }
.rat-comp-card--a { background: #dcfce7; border: 1px solid #86efac; }
.rat-comp-card--b { background: #FEF5E7; border: 1px solid #e9c876; }
.rat-comp-card--c { background: #fee2e2; border: 1px solid #fca5a5; }
.rat-comp-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; display: block; }
.rat-comp-pct { font-size: 26px; font-weight: 800; color: var(--color-navy); margin-bottom: 4px; display: block; }
.rat-comp-desc { font-size: 11px; color: #374845; line-height: 1.5; }

@media (max-width: 680px) { .rat-comp-grid { grid-template-columns: 1fr; } }

/* Anspruchs-Checkliste (nummerierte Karten mit Tag) */
.rat-claim-list { display: flex; flex-direction: column; gap: 10px; }
.rat-claim-item { display: flex; gap: 14px; align-items: flex-start; background: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 14px 16px; transition: .15s; }
.rat-claim-item:hover { border-color: #BDD5F5; background: var(--color-white); }
.rat-claim-num { background: var(--color-navy); color: #fff; font-size: 11px; font-weight: 800; min-width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rat-claim-body { flex: 1; }
.rat-claim-h { font-size: 13.5px; font-weight: 700; color: var(--color-navy); margin-bottom: 4px; display: block; }
.rat-claim-body p { font-size: 12.5px; color: #374845; line-height: 1.65; margin-bottom: 4px; }
.rat-claim-body p strong { color: var(--color-navy); font-weight: 700; }
.rat-claim-cite { font-size: 10.5px; color: var(--color-blue); font-weight: 600; }
.rat-claim-tag { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; float: right; }
.rat-claim-tag--oft { background: #fee2e2; color: #991b1b; }
.rat-claim-tag--ok { background: #dcfce7; color: #166534; }

/* Nutzungsausfall-Klassen-Grid */
.rat-nfa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 12px 0; }
.rat-nfa-card { background: var(--color-cream); border: 1px solid var(--color-border); border-radius: 8px; padding: 12px; text-align: center; }
.rat-nfa-class { font-size: 10px; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; margin-bottom: 4px; display: block; }
.rat-nfa-val { font-size: 18px; font-weight: 800; color: var(--color-navy); display: block; }
.rat-nfa-desc { font-size: 10.5px; color: var(--color-text-muted); margin-top: 4px; line-height: 1.4; }

@media (max-width: 680px) {
    .rat-nfa-grid { grid-template-columns: repeat(2, 1fr); }
    .rat-claim-tag { float: none; display: inline-block; margin-top: 4px; }
}

/* Länder-Vergleichszeilen (z.B. Auslandsunfall) */
.rat-country-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.rat-country-row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; align-items: start; background: var(--color-cream); border: 1px solid var(--color-border); border-radius: 8px; padding: 12px 14px; }
.rat-country-name { font-size: 13px; font-weight: 700; color: var(--color-navy); }
.rat-country-detail { font-size: 13px; color: #374845; line-height: 1.65; }
.rat-country-detail strong { color: var(--color-navy); font-weight: 700; }
.rat-tag { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; margin-right: 4px; vertical-align: middle; }
.rat-tag--ok { background: #dcfce7; color: #166534; }
.rat-tag--warn { background: #FEF5E7; color: #854d0e; }
.rat-tag--bad { background: #fee2e2; color: #991b1b; }

@media (max-width: 680px) { .rat-country-row { grid-template-columns: 1fr; gap: 4px; } }

/* Szenario-Karten (3-farbig: grün/gelb/rot) */
.rat-scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.rat-scenario-card { border-radius: var(--radius); padding: 18px; }
.rat-scenario-card--green { background: #f0fdf4; border: 1px solid #86efac; }
.rat-scenario-card--yellow { background: #FEF5E7; border: 1px solid #fcd34d; }
.rat-scenario-card--red { background: #fef2f2; border: 1px solid #fca5a5; }
.rat-scenario-ico { font-size: 22px; display: block; margin-bottom: 8px; }
.rat-scenario-h { font-size: 13px; font-weight: 800; color: var(--color-navy); margin-bottom: 6px; display: block; }
.rat-scenario-who { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; display: block; }
.rat-scenario-card--green .rat-scenario-who { color: #166534; }
.rat-scenario-card--yellow .rat-scenario-who { color: #92400e; }
.rat-scenario-card--red .rat-scenario-who { color: #991b1b; }
.rat-scenario-card p { font-size: 12px; color: #374845; line-height: 1.6; }

/* Prozess-Streifen (horizontale Schritte mit Pfeil) */
.rat-process-strip { display: flex; gap: 0; margin-bottom: 14px; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--color-border); }
.rat-process-step { flex: 1; padding: 14px 12px; text-align: center; position: relative; background: var(--color-white); }
.rat-process-step + .rat-process-step::before { content: '›'; position: absolute; left: -10px; top: 50%; transform: translateY(-50%); color: var(--color-text-muted); font-size: 18px; font-weight: 700; }
.rat-process-step:first-child { background: #EBF3FD; }
.rat-ps-num { font-size: 10px; font-weight: 700; color: var(--color-blue); margin-bottom: 4px; display: block; }
.rat-ps-text { font-size: 11.5px; font-weight: 600; color: var(--color-navy); line-height: 1.4; }

@media (max-width: 680px) {
    .rat-scenario-grid { grid-template-columns: 1fr; }
    .rat-process-strip { flex-direction: column; }
    .rat-process-step + .rat-process-step::before { display: none; }
}

/* Interaktiver Rechner (Wertminderung) */
.rat-calc-block { background: var(--color-navy); border-radius: var(--radius); padding: 24px; margin-bottom: 14px; }
.rat-calc-title { font-size: clamp(16px, 2vw, 20px); font-weight: 800; color: #fff; margin-bottom: 6px; display: block; }
.rat-calc-sub { font-size: 12.5px; color: rgba(255,255,255,.6); margin-bottom: 20px; display: block; }
.rat-calc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
.rat-calc-field label { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; display: block; }
.rat-calc-field input, .rat-calc-field select { width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; color: #fff; padding: 10px 14px; font-size: 14px; font-weight: 600; outline: none; appearance: none; -webkit-appearance: none; display: block; }
.rat-calc-field input::placeholder { color: rgba(255,255,255,.3); }
.rat-calc-field input:focus, .rat-calc-field select:focus { border-color: #4ade80; }
.rat-calc-field select option { background: var(--color-navy); color: #fff; }
.rat-calc-btn { width: 100%; padding: 13px; border-radius: var(--radius); background: var(--color-blue); color: #fff; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: background .15s; margin-bottom: 16px; }
.rat-calc-btn:hover { background: #1a5ab8; }
.rat-calc-result { display: none; }
.rat-calc-result.visible { display: block; }
.rat-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rat-result-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 14px; text-align: center; }
.rat-result-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 6px; display: block; }
.rat-result-val { font-size: clamp(18px, 3vw, 26px); font-weight: 800; color: #fff; display: block; }
.rat-result-val--green { color: #4ade80; }
.rat-result-note { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 12px; display: block; text-align: center; line-height: 1.6; }

/* Methoden-Vergleichskarten */
.rat-method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 12px; }
.rat-method-card { background: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 16px; }
.rat-method-h { font-size: 13.5px; font-weight: 700; color: var(--color-navy); margin-bottom: 8px; display: block; }
.rat-method-card p { font-size: 12.5px; color: #374845; line-height: 1.65; }
.rat-method-card p strong { color: var(--color-navy); font-weight: 700; }
.rat-method-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-bottom: 6px; }
.rat-method-badge--blue { background: #EBF3FD; color: var(--color-blue); }
.rat-method-badge--green { background: #dcfce7; color: #166534; }

@media (max-width: 680px) {
    .rat-calc-grid, .rat-result-grid, .rat-method-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .rat-calc-field input, .rat-calc-field select { font-size: 16px; }
    .rat-calc-btn { font-size: 16px; padding: 15px; }
    .rat-result-val { font-size: 20px; }
}

/* FAQ-Akkordeon im Ratgeber-Stil (kein <details>, offene Karten mit Q-Badge)

   Hinweis zu min-width:0 / overflow-wrap:anywhere bei den li-Elementen:
   Diese Listen sind Flex-Container. Flex-Elemente haben per Default
   min-width:auto und schrumpfen dadurch nicht unter ihre Mindestbreite -
   das ist die Breite des laengsten unteilbaren Wortes. Lange deutsche
   Komposita sprengen so auf schmalen Displays den Container. Da die
   farbigen Sektionen mit width:100vw arbeiten, entsteht daraus
   horizontaler Scroll auf der gesamten Seite. */
.rat-faq-list { display: flex; flex-direction: column; gap: 8px; }
.rat-faq-item { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 20px 22px; transition: .2s; }
.rat-faq-item:hover { border-color: #BDD5F5; transform: translateY(-1px); }
.rat-faq-q { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.rat-faq-badge { background: var(--color-navy); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 5px; flex-shrink: 0; margin-top: 2px; }
.rat-faq-q-text { font-size: 14px; font-weight: 700; color: var(--color-navy); line-height: 1.4; }
.rat-faq-a { font-size: 13.5px; color: #374845; line-height: 1.8; padding-left: 30px; margin-bottom: 8px; }
.rat-faq-a:last-child { margin-bottom: 0; }
.rat-faq-a strong { color: var(--color-navy); font-weight: 700; }
.rat-faq-ul { display: flex; flex-direction: column; gap: 5px; margin: 8px 0; padding-left: 30px; list-style: none; }
.rat-faq-ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #374845; line-height: 1.6; min-width: 0; overflow-wrap: anywhere; }
.rat-faq-ul li::before { content: "•"; color: var(--color-blue); font-weight: 700; font-size: 16px; flex-shrink: 0; line-height: 1.2; }
.rat-faq-ul li strong { color: var(--color-navy); font-weight: 700; }
.rat-faq-highlight { background: #EBF3FD; border-left: 3px solid var(--color-blue); border-radius: 0 6px 6px 0; padding: 10px 14px; margin: 8px 0 8px 30px; font-size: 13px; color: #374845; line-height: 1.7; }
.rat-faq-highlight strong { color: var(--color-navy); font-weight: 700; }
.rat-faq-warn { background: #FEF5E7; border-left: 3px solid #F4A528; border-radius: 0 6px 6px 0; padding: 10px 14px; margin: 8px 0 8px 30px; font-size: 13px; color: #5a3e06; line-height: 1.7; }
.rat-faq-warn strong { color: #3d2a04; font-weight: 700; }
.rat-faq-tag-ok { display: inline-block; background: #dcfce7; color: #166534; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-right: 4px; }
.rat-faq-tag-no { display: inline-block; background: #fee2e2; color: #991b1b; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-right: 4px; }
.rat-faq-cite { font-size: 10.5px; color: var(--color-blue); font-weight: 600; padding-left: 30px; display: block; }

.rat-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 8px 0 8px 30px; }
.rat-mini-col { border-radius: 8px; padding: 10px 12px; }
.rat-mini-col--ok { background: #f0fdf4; border: 1px solid #86efac; }
.rat-mini-col--warn { background: #FEF5E7; border: 1px solid #fcd34d; }
.rat-mini-h { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; display: block; }
.rat-mini-col--ok .rat-mini-h { color: #166534; }
.rat-mini-col--warn .rat-mini-h { color: #854d0e; }
.rat-mini-col p { font-size: 12px; line-height: 1.6; }
.rat-mini-col--ok p { color: #14532d; }
.rat-mini-col--warn p { color: #78350f; }

@media (max-width: 580px) {
    .rat-faq-a, .rat-faq-ul { padding-left: 0; }
    .rat-mini-grid, .rat-faq-highlight, .rat-faq-warn { margin-left: 0; }
    .rat-mini-grid { grid-template-columns: 1fr; }
    .rat-faq-cite { padding-left: 0; }
}

/* Rot-Disclaimer-Box (z.B. Tatortprinzip-Warnung) */
.rat-disclaimer { background: #fff5f5; border: 1px solid #fca5a5; border-left: 5px solid #dc2626; border-radius: var(--radius); padding: 18px 20px; margin-bottom: 24px; font-size: 13.5px; color: #450a0a; line-height: 1.75; }
.rat-disclaimer strong { color: #450a0a; font-weight: 700; }
.rat-disclaimer a { color: #dc2626; font-weight: 600; text-decoration: underline; }

/* Länder-Karte mit Kopfzeile (Flagge/Name/Rechtsgrundlage) */
.rat-country-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.rat-country-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--color-navy); border-bottom: 3px solid var(--color-blue); }
.rat-country-flag { font-size: 22px; flex-shrink: 0; }
.rat-country-head .rat-country-name { font-size: 16px; font-weight: 800; color: #fff; }
.rat-country-law { font-size: 10.5px; color: rgba(255,255,255,.55); margin-left: auto; font-weight: 600; text-align: right; flex-shrink: 0; max-width: 220px; line-height: 1.4; }
.rat-country-body { padding: 16px 18px; }
.rat-country-ctx { font-size: 13px; color: #374845; line-height: 1.75; margin-bottom: 6px; }
.rat-country-ctx strong { color: var(--color-navy); font-weight: 700; }
.rat-country-ctx a { color: var(--color-blue); font-weight: 600; text-decoration: underline; }
.rat-country-cite { font-size: 10.5px; color: var(--color-blue); font-weight: 600; display: block; margin-top: 4px; }
.rat-multi-ctx { font-size: 13px; color: #374845; line-height: 1.8; margin-bottom: 8px; }
.rat-multi-ctx strong { color: var(--color-navy); font-weight: 700; }

/* Ok/No Vergleichsspalten innerhalb einer Länderkarte */
.rat-cc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.rat-cc-col { border-radius: 8px; padding: 12px 14px; }
.rat-cc-col--ok { background: #dcfce7; border: 1px solid #86efac; }
.rat-cc-col--no { background: #fee2e2; border: 1px solid #fca5a5; }
.rat-cc-head { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; display: block; }
.rat-cc-col--ok .rat-cc-head { color: #166534; }
.rat-cc-col--no .rat-cc-head { color: #991b1b; }
.rat-cc-list { display: flex; flex-direction: column; gap: 4px; list-style: none; padding: 0; }
.rat-cc-list li { display: flex; align-items: flex-start; gap: 6px; font-size: 12.5px; line-height: 1.55; min-width: 0; overflow-wrap: anywhere; }
.rat-cc-list li::before { font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.rat-cc-col--ok .rat-cc-list li { color: #14532d; }
.rat-cc-col--ok .rat-cc-list li::before { content: "✓"; color: #166534; font-weight: 700; }
.rat-cc-col--no .rat-cc-list li { color: #7f1d1d; }
.rat-cc-col--no .rat-cc-list li::before { content: "✗"; color: #991b1b; font-weight: 700; }

/* BESA-Tipp-Box + Zurück-Link */
.rat-besa-tip { background: #EBF3FD; border: 1px solid #BDD5F5; border-left: 4px solid var(--color-blue); border-radius: var(--radius); padding: 16px 20px; margin-top: 20px; }
.rat-besa-tip-h { font-size: 13px; font-weight: 700; color: var(--color-navy); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; display: block; }
.rat-besa-tip p { font-size: 13.5px; color: #374845; line-height: 1.8; }
.rat-besa-tip p strong { color: var(--color-navy); font-weight: 700; }
.rat-besa-tip p a { color: var(--color-blue); font-weight: 600; text-decoration: underline; }
.rat-back-nav { margin-top: 24px; }
.rat-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--color-blue); text-decoration: underline; }

@media (max-width: 580px) {
    .rat-cc-grid { grid-template-columns: 1fr; }
    .rat-country-law { display: none; }
}

/* ============================================
   Glossar A-Z (Gutachter-ABC)
   ============================================ */
.glo-header { text-align: center; margin-bottom: 24px; }
.glo-header .sec-sub { max-width: 680px; margin: 0 auto; }

.glo-search-wrap { position: sticky; top: 0; z-index: 100; background: var(--color-cream); padding: 12px 0; margin-bottom: 10px; }
.glo-search { width: 100%; padding: 13px 18px 13px 46px; border: 2px solid var(--color-border); border-radius: var(--radius); font-size: 15px; color: var(--color-navy); background: var(--color-white); outline: none; transition: border-color .2s; }
.glo-search:focus { border-color: var(--color-blue); }
.glo-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; z-index: 2; }
.glo-search-icon svg { width: 18px; height: 18px; stroke: var(--color-text-muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.glo-search-count { font-size: 12px; color: var(--color-text-muted); text-align: right; margin-top: 4px; display: block; }

.glo-nav { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 28px; }
.glo-nav a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid var(--color-border); border-radius: 6px; color: var(--color-blue); font-size: 12px; font-weight: 700; transition: .15s; }
.glo-nav a:hover { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }

.glo-empty { display: none; text-align: center; padding: 40px; }
.glo-empty.visible { display: block; }
.glo-empty p { font-size: 14px; color: var(--color-text-muted); }

.glo-section-head { display: flex; align-items: center; gap: 12px; margin: 28px 0 14px; }
.glo-letter-badge { background: var(--color-navy); color: #fff; font-size: 16px; font-weight: 800; width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.glo-section-head hr { flex: 1; border: none; border-top: 1px solid var(--color-border); }
.glo-section.hidden { display: none; }

.glo-term-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.glo-term-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; transition: .2s; }
.glo-term-card:hover { border-color: #BDD5F5; transform: translateY(-2px); }
.glo-term-card.hidden { display: none; }
.glo-term-title { font-size: 14px; font-weight: 700; color: var(--color-navy); margin-bottom: 8px; display: block; padding-bottom: 8px; border-bottom: 1px solid var(--color-border); }
.glo-term-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.glo-term-tag { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 2px 6px; border-radius: 4px; }
.glo-term-tag--recht { background: #ede9fe; color: #5b21b6; }
.glo-term-tag--tech { background: #dcfce7; color: #166534; }
.glo-term-tag--digit { background: #EBF3FD; color: var(--color-blue); }
.glo-term-tag--finanzen { background: #FEF5E7; color: #854d0e; }
.glo-term-body { font-size: 12.5px; color: #374845; line-height: 1.7; flex: 1; margin-bottom: 10px; }
.glo-term-body strong { color: var(--color-navy); font-weight: 700; }
.glo-term-cite { font-size: 10px; color: var(--color-blue); font-weight: 600; margin-bottom: 8px; display: block; }
.glo-term-solution { background: #EBF3FD; border-left: 3px solid var(--color-blue); padding: 8px 10px; font-size: 11.5px; color: #374845; line-height: 1.6; border-radius: 0 4px 4px 0; }
.glo-term-solution strong { color: var(--color-navy); font-weight: 700; }
.glo-term-solution a { color: var(--color-blue); font-weight: 600; text-decoration: underline; }

@media (max-width: 860px) { .glo-term-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .glo-term-grid { grid-template-columns: 1fr; } }

/* ============================================
   Ratgeber-Hub (Übersichtsseite) — Mini-Card + Sidebar-Link-Bloecke
   ============================================ */
.hub-row { display: flex; align-items: stretch; gap: 24px; width: 100%; margin-bottom: 24px; }
.hub-col-hero { flex: 0 0 300px; }
.hub-col-links { flex: 1; }
.hub-mini-card { height: 100%; border-radius: 10px; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hub-mini-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15,23,42,.12); }
.hub-mini-card a { display: block; height: 100%; text-decoration: none; color: inherit; }
.hub-mini-card-body { padding: 24px; height: 100%; display: flex; flex-direction: column; }
.hub-badge { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; border-radius: 4px; margin-bottom: 12px; width: fit-content; }
.hub-mini-card h3 { font-size: 17px; font-weight: 800; margin: 0 0 10px; line-height: 1.25; }
.hub-mini-card p { font-size: 13px; line-height: 1.6; margin: 0 0 16px; flex: 1; }
.hub-btn-text { font-size: 13px; font-weight: 700; margin-top: auto; }

.hub-mini-card--gold { background: linear-gradient(135deg, #7a5c1e 0%, #b08e4d 100%); }
.hub-mini-card--gold h3, .hub-mini-card--gold p, .hub-mini-card--gold .hub-btn-text { color: #fff; }
.hub-mini-card--gold .hub-badge { background: rgba(255,255,255,.2); color: #fff; }

.hub-mini-card--blue { background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%); }
.hub-mini-card--blue h3, .hub-mini-card--blue p, .hub-mini-card--blue .hub-btn-text { color: #fff; }
.hub-mini-card--blue .hub-badge { background: rgba(255,255,255,.2); color: #fff; }

.hub-mini-card--dark { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
.hub-mini-card--dark h3, .hub-mini-card--dark p, .hub-mini-card--dark .hub-btn-text { color: #fff; }
.hub-mini-card--dark .hub-badge { background: rgba(255,255,255,.15); color: #fff; }

.hub-link-sidebar { height: 100%; background: var(--color-cream); border: 1px solid var(--color-border); border-radius: 10px; padding: 20px 22px; display: flex; flex-direction: column; }
.hub-link-sidebar h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--color-navy); margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--color-border); }
.hub-link-sidebar a { display: block; font-size: 13px; color: var(--color-blue); text-decoration: none; padding: 7px 0; border-bottom: 1px solid var(--color-border); line-height: 1.4; transition: color .15s; }
.hub-link-sidebar a:last-child { border-bottom: none; }
.hub-link-sidebar a:hover { color: var(--color-navy); }

@media (max-width: 720px) {
    .hub-row { flex-direction: column; }
    .hub-col-hero { flex: none; }
}