/* =============================================
   LEONOVA DESIGN SYSTEM v2
   Shared stylesheet for all pages
============================================= */
/* =============================================
       LEONOVA DESIGN SYSTEM v2
    ============================================= */
    :root {
      --blue:       #586E87;
      --blue-dark:  #3e5166;
      --blue-mid:   #4d6178;
      --blue-light: #7a96af;
      --cream:      #F3EFE8;
      --sand:       #D6CDBF;
      --sand-dark:  #c4b9a9;
      --yellow:     #E5BE05;
      --yellow-dark:#c9a804;
      --yellow-pale: rgba(229,190,5,0.12);
      --white:      #ffffff;
      --off-white:  #fdfcfa;
      --dark:       #1a2530;
      --bg:         #f4f2ee;
      --mid:        #3a4a5a;
      --text:       #1a2530;
      --text-mid:   #3a4a5a;
      --text-muted: #5d6a7a; /* darkened for WCAG AA contrast ≥ 4.5:1 */
      --border:     #e0dbd2;
      --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
      --r-sm: 6px;
      --r-md: 10px;
      --r-lg: 18px;
      --r-xl: 28px;
      --sh-sm: 0 2px 8px rgba(26,37,48,.07);
      --sh-md: 0 6px 24px rgba(26,37,48,.10);
      --sh-lg: 0 16px 48px rgba(26,37,48,.13);
      --nav-h: 68px;
      --w: 1100px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

    /* ── SKIP LINK ── */
    .skip-link {
      position: absolute; top: -100%; left: 16px;
      background: var(--yellow); color: var(--dark);
      padding: 10px 20px; border-radius: 0 0 var(--r-sm) var(--r-sm);
      font-weight: 700; font-size: .9rem; z-index: 9999;
      transition: top .15s;
    }
    .skip-link:focus { top: 0; }

    /* ── GLOBAL FOCUS INDICATOR ── */
    :focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 3px;
      border-radius: 3px;
    }
    /* Override outline:none on inputs – use border-based focus instead */
    .form-g input:focus-visible,
    .form-g textarea:focus-visible,
    .rc-field input:focus-visible,
    .rc-field select:focus-visible,
    .rc-modal__input:focus-visible,
    .rc-modal__textarea:focus-visible {
      outline: none;
      border-color: var(--yellow) !important;
      box-shadow: 0 0 0 3px rgba(229,190,5,.25);
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    .container { max-width: var(--w); margin: 0 auto; padding: 0 28px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    /* ── SVG icons ── */
    .icon {
      display: inline-block;
      flex-shrink: 0;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
    }
    .icon-wrap {
      display: flex; align-items: center; justify-content: center;
      border-radius: var(--r-md);
      flex-shrink: 0;
    }
    .iw-40 { width: 40px; height: 40px; }
    .iw-48 { width: 48px; height: 48px; }
    .iw-blue  { background: rgba(88,110,135,.10); color: var(--blue); }
    .iw-yellow { background: rgba(229,190,5,.14); border: 1px solid rgba(229,190,5,.3); color: var(--yellow); }
    .iw-white { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
    .iw-round { border-radius: 50%; }

    /* ── Scroll reveal ── */
    .rev { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
    .rev.vis { opacity: 1; transform: none; }
    .d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
    .d4 { transition-delay: .32s; } .d5 { transition-delay: .40s; } .d6 { transition-delay: .48s; }

    /* ── Buttons ── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: var(--r-sm);
      font-family: var(--font); font-size: .95rem; font-weight: 600;
      letter-spacing: .01em; cursor: pointer; border: none;
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn--yellow  { background: var(--yellow); color: var(--text); }
    .btn--yellow:hover  { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(229,190,5,.3); }
    .btn--ghost   { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.45); }
    .btn--ghost:hover   { border-color: var(--white); background: rgba(255,255,255,.08); }
    .btn--blue    { background: var(--blue); color: var(--white); }
    .btn--blue:hover    { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--sh-md); }

    /* ── Section labels ── */
    .label {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .74rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; margin-bottom: 14px;
    }
    .label::before { content: ''; width: 18px; height: 2px; background: var(--yellow); border-radius: 2px; }
    .label--blue  { color: var(--blue); }
    .label--white { color: rgba(255,255,255,.75); }
    .label--yellow { color: var(--yellow); }

    .h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 700; line-height: 1.15;
      letter-spacing: -.02em; margin-bottom: 14px;
    }
    .h2--light { color: var(--white); }
    .lead {
      font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
      max-width: 560px; margin-bottom: 52px;
    }
    .lead--light { color: rgba(255,255,255,.68); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       HEADER / NAVIGATION
       – Fixed top bar, Leonova Blau (#586E87)
       – Logo zentriert mit ausreichend Innenabstand
       – Mobile Hamburger ab 720px
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      height: var(--nav-h); background: var(--blue); z-index: 100;
      transition: box-shadow .3s;
    }
    .nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.22); }

    /* Inner row: logo left, links right - with vertical padding so logo breathes */
    .nav__i {
      display: flex; align-items: center; justify-content: space-between;
      height: 100%;
      padding-top: 10px;
      padding-bottom: 10px;
    }
    .nav__logo { height: 28px; width: auto; display: block; }
    .nav__back {
      display: inline-flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,.75); font-size: .9rem; text-decoration: none;
      transition: color .2s;
    }
    .nav__back:hover { color: var(--white); }

    .nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav__links a { color: rgba(255,255,255,.92); font-size: .9rem; letter-spacing: .01em; transition: color .2s; }
    .nav__links a:hover { color: var(--white); }
    .nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav__toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       HERO
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .hero {
      background: var(--blue);
      padding: calc(var(--nav-h) + 88px) 0 0;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 75% 35%, rgba(62,81,102,.5) 0%, transparent 60%);
      pointer-events: none;
    }
    /* Decorative ring (uses logo motif – but no yellow circle: subtle white only) */
    .hero__deco {
      position: absolute; right: -80px; top: -80px;
      width: 580px; height: 580px; border-radius: 50%;
      border: 80px solid rgba(255,255,255,.04);
      pointer-events: none;
    }

    .hero__content { position: relative; z-index: 1; max-width: 680px; }

    .hero__eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      color: var(--yellow); font-size: .9rem; font-weight: 600;
      letter-spacing: .02em; margin-bottom: 22px;
    }
    .hero__eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--yellow); border-radius: 2px; }

    .hero__h1 {
      font-size: clamp(2.2rem, 4.8vw, 3.6rem);
      font-weight: 300; color: var(--white); line-height: 1.12;
      letter-spacing: -.02em; margin-bottom: 22px;
    }
    .hero__h1 strong { font-weight: 800; display: block; }

    .hero__kw {
      font-size: .85rem; color: rgba(255,255,255,.45);
      letter-spacing: .02em; margin: 6px 0 20px; font-weight: 400;
    }
    .hero__sub {
      font-size: 1.08rem; color: rgba(255,255,255,.72);
      line-height: 1.68; max-width: 520px; margin-bottom: 36px;
    }
    .hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

    /* Trust strip */
    .hero__trust {
      margin-top: 72px;
      border-top: 1px solid rgba(255,255,255,.10);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      position: relative; z-index: 1;
    }
    .hero__trust-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 28px 24px;
    }
    .hero__trust-item + .hero__trust-item {
      border-left: 1px solid rgba(255,255,255,.10);
    }
    .hero__trust-icon { color: var(--yellow); }
    .hero__trust-label { font-size: .95rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 3px; }
    .hero__trust-desc  { font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.45; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       PROBLEM
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .problem { background: var(--cream); padding: 96px 0; }
    .problem__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
    }
    .problem__card {
      background: var(--white); border-radius: var(--r-md);
      padding: 28px 24px; border-top: 3px solid transparent;
      box-shadow: var(--sh-sm);
      transition: border-color .25s, box-shadow .25s, transform .25s;
    }
    .problem__card:hover { border-top-color: var(--yellow); box-shadow: var(--sh-md); transform: translateY(-3px); }
    .problem__card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin: 16px 0 8px; }
    .problem__card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.62; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ZÄSUR PROBLEME → LEISTUNGEN
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .zaesur-divider {
      height: 2px;
      background: #E5BE05;
      transform-origin: left center;
      transform: scaleX(0);
      animation: draw-line 1.2s cubic-bezier(.4,0,.2,1) 1 forwards;
    }
    @keyframes draw-line {
      to { transform: scaleX(1); }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       LEISTUNGEN
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .leistungen { background: var(--white); padding: 96px 0; }
    .leistungen__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 1100px) {
      .leistungen__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .leistungen__grid { grid-template-columns: 1fr; }
    }
    .leist-card {
      padding: 32px 28px; border-radius: var(--r-md);
      border: 1.5px solid var(--border);
      transition: border-color .25s, box-shadow .25s, transform .25s;
      position: relative; overflow: hidden;
    }
    .leist-card::after {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
      transform: scaleX(0); transform-origin: left;
      transition: transform .3s ease;
    }
    .leist-card:hover { border-color: transparent; box-shadow: var(--sh-md); transform: translateY(-4px); }
    .leist-card:hover::after { transform: scaleX(1); }
    .leist-card__num { font-size: 2.4rem; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 20px; }
    .leist-card h3   { font-size: 1rem; font-weight: 700; color: var(--text); margin: 14px 0 8px; }
    .leist-card p    { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ARBEITSWEISE
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .arbeitsweise { background: var(--blue); padding: 96px 0; }

    .aw-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.08);
      border-radius: var(--r-md);
      overflow: hidden;
    }
    .aw-item {
      background: var(--blue); padding: 36px 28px;
      display: flex; gap: 18px; align-items: flex-start;
      transition: background .2s;
    }
    .aw-item:hover { background: var(--blue-dark); }
    .aw-item__body h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 7px; }
    .aw-item__body p  { font-size: .85rem; color: rgba(255,255,255,.62); line-height: 1.62; }
    .aw-item__body strong { color: var(--yellow); font-weight: 600; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       PROZESS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .prozess { background: var(--cream); padding: 96px 0; }
    .prozess__steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0; position: relative;
    }
    .prozess__steps::before {
      content: ''; position: absolute;
      top: 26px; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(to right, var(--sand), var(--yellow), var(--sand));
    }
    .prozess__step { padding: 0 12px 28px; text-align: center; }
    .prozess__num {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--white); border: 1.5px solid var(--sand);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px; font-size: .9rem; font-weight: 700;
      color: var(--blue); position: relative; z-index: 1;
      transition: background .2s, border-color .2s, color .2s;
    }
    .prozess__step:hover .prozess__num { background: var(--blue); border-color: var(--blue); color: var(--white); }
    .prozess__step h4 { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
    .prozess__step p  { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       STIMMEN & REFERENZEN (side-by-side)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .sr-section { background: var(--blue); padding: 96px 0; }
    .sr-layout {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 64px;
      align-items: start;
    }
    /* Left column */
    .sr-left .h2  { color: var(--white); }
    .sr-left .lead { color: rgba(255,255,255,.68); }
    .sr-left .label--blue { color: rgba(255,255,255,.75); }
    .sr-left .label--blue::before { background: var(--yellow); }
    /* Right column */
    .sr-right .label--blue { color: rgba(255,255,255,.75); }
    .sr-right .label--blue::before { background: var(--yellow); }
    .sr-right__sub { font-size: .88rem; color: rgba(255,255,255,.5); margin: 4px 0 24px; }
    .sr-logos { display: flex; flex-direction: column; gap: 14px; }
    /* Testi card */
    .testi-card {
      background: rgba(255,255,255,.07);
      border: 1.5px solid rgba(255,255,255,.12);
      border-radius: var(--r-md);
      padding: 32px 28px;
      display: flex; flex-direction: column; gap: 20px;
      transition: box-shadow .25s, transform .25s;
    }
    .testi-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.25); transform: translateY(-3px); }
    .testi-card__quote-icon { color: var(--yellow); }
    .testi-card__text {
      font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.72;
      font-style: italic; flex: 1;
    }
    .testi-card__text strong { font-style: normal; color: var(--yellow); font-weight: 600; }
    .testi-card__footer { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); }
    .testi-name  { font-size: .88rem; font-weight: 700; color: var(--white); display: block; }
    .testi-role  { font-size: .78rem; color: rgba(255,255,255,.55); }
    /* Ref logos */
    .ref-logo {
      background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15);
      border-radius: var(--r-md); min-height: 90px;
      display: flex; align-items: center; justify-content: center;
      padding: 16px 24px; color: var(--white);
      transition: border-color .2s, box-shadow .2s, background .2s;
    }
    .ref-logo:hover { border-color: var(--yellow); background: rgba(255,255,255,.13); }
    .ref-logo__img { max-height: 52px; max-width: 100%; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
    /* Logo placeholder */
    .ref-logo--placeholder { cursor: default; }
    .ref-logo__placeholder {
      display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
      color: rgba(255,255,255,.45);
    }
    .ref-logo__placeholder svg { opacity: .5; }
    .ref-logo__placeholder span { font-size: .78rem; line-height: 1.4; }
    .ref-logo__placeholder em { font-size: .72rem; opacity: .7; }

    /* Testimonial Slider */
    .testi-slider { overflow: hidden; }
    .testi-slider__track {
      display: flex;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
    }
    .testi-slider__track .testi-card {
      flex: 0 0 100%;
      min-width: 100%;
      opacity: .35;
      transition: opacity .45s;
    }
    .testi-slider__track .testi-card.active { opacity: 1; }
    .testi-slider__controls {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; margin-top: 20px;
    }
    .testi-slider__btn {
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
      border-radius: 50%; width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      color: var(--white); cursor: pointer;
      transition: background .2s;
    }
    .testi-slider__btn:hover { background: rgba(255,255,255,.25); }
    .testi-slider__dots { display: flex; gap: 8px; }
    .testi-slider__dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.3); border: none; cursor: pointer;
      transition: background .25s, transform .25s;
    }
    .testi-slider__dot.active { background: var(--yellow); transform: scale(1.3); }

    @media (max-width: 860px) {
      .sr-layout { grid-template-columns: 1fr; gap: 48px; }
      .sr-logos { flex-direction: row; flex-wrap: wrap; }
      .sr-logos .ref-logo { flex: 1 1 140px; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       TEAM
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .team { background: var(--white); padding: 96px 0; }
    .team__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }
    /* 2-Personen-Layout: Cards werden etwas breiter, aber nicht voll-breit */
    .team__grid--two {
      grid-template-columns: repeat(2, minmax(280px, 420px));
      justify-content: center;
    }
    .team-card {
      border-radius: var(--r-lg); overflow: hidden;
      border: 1.5px solid var(--border);
      transition: box-shadow .25s, transform .25s;
    }
    .team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
    .team-photo {
      width: 100%; aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .team-photo::after {
      content: '';
      position: absolute; bottom: -30px; right: -30px;
      width: 120px; height: 120px; border-radius: 50%;
      background: rgba(229,190,5,.12);
    }
    .team-initials {
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; font-weight: 700; color: var(--white);
      position: relative; z-index: 1;
    }
    /* When real photo is available, just set .team-photo img instead */
    .team-photo img { width: 100%; height: 100%; object-fit: cover; }
    .team-body { padding: 24px; }
    .team-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
    .team-role    { font-size: .8rem; color: var(--yellow-dark); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: 10px; }
    .team-body p  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       WARUM LEONOVA
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .warum { background: var(--white); padding: 96px 0; }
    .warum__rows { display: flex; flex-direction: column; margin-top: 48px; }
    .warum__row {
      display: grid; grid-template-columns: 260px 1fr; gap: 40px;
      align-items: baseline; padding: 28px 16px;
      border-top: 1px solid rgba(88,110,135,.12);
      border-left: 3px solid transparent;
      transition: background .2s ease, border-color .2s ease;
      cursor: default;
    }
    .warum__row:last-child { border-bottom: 1px solid rgba(88,110,135,.12); }
    .warum__row:hover { background: rgba(88,110,135,.04); border-left-color: var(--yellow); }
    .warum__row-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 0; transition: color .2s ease; }
    .warum__row:hover .warum__row-title { color: var(--blue); }
    .warum__row-text  { font-size: .93rem; color: var(--text-mid); line-height: 1.65; margin: 0; }
    @media (max-width: 640px) {
      .warum__row { grid-template-columns: 1fr; gap: 8px; }
    }

    .warum__card {
      background: var(--blue); border-radius: var(--r-xl);
      padding: 44px 40px; position: relative; overflow: hidden;
    }
    .warum__card-deco {
      position: absolute; bottom: -50px; right: -50px;
      width: 200px; height: 200px; border-radius: 50%;
      border: 32px solid rgba(255,255,255,.06);
      pointer-events: none;
    }
    .warum__quote {
      font-size: 1.25rem; font-weight: 300; line-height: 1.55;
      color: var(--white); position: relative; z-index: 1;
    }
    .warum__quote em { font-style: normal; font-weight: 700; color: var(--yellow); }
    .warum__attr   { margin-top: 20px; font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; position: relative; z-index: 1; }
    .warum__tags   { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; position: relative; z-index: 1; }
    .warum__tag {
      padding: 7px 16px;
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px; font-size: .78rem; color: rgba(255,255,255,.72);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       KONTAKT
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .kontakt { background: var(--sand); padding: 96px 0; }
    .kontakt__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .kontakt__promises { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
    .kontakt__promise  { display: flex; gap: 12px; align-items: center; font-size: .9rem; color: var(--text-mid); }
    .kontakt__promise-check {
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
      background: var(--blue); color: var(--white);
      display: flex; align-items: center; justify-content: center;
    }
    .form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-g { display: flex; flex-direction: column; gap: 5px; }
    .form-g label { font-size: .78rem; font-weight: 700; color: var(--text); letter-spacing: .04em; }
    .form-g input, .form-g textarea, .form-g select {
      font-family: var(--font); font-size: .93rem; color: var(--text);
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--r-sm); padding: 11px 14px; width: 100%;
      transition: border-color .2s, box-shadow .2s;
    }
    .form-g input:focus, .form-g textarea:focus {
      border-color: var(--blue); box-shadow: 0 0 0 3px rgba(88,110,135,.12);
    }
    .form-g textarea { resize: vertical; min-height: 110px; }
    .form__btn { align-self: flex-start; }

    /* Formular: Erfolg / Fehler */
    .form__alert {
      padding: 14px 18px;
      border-radius: 8px;
      font-size: .9rem;
      line-height: 1.5;
      margin-bottom: 4px;
    }
    .form__alert p { margin: 4px 0 0; }
    .form__alert--error {
      background: rgba(220,50,50,.08);
      border: 1px solid rgba(220,50,50,.25);
      color: #c0392b;
    }
    .form--success {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 48px 24px;
      gap: 12px;
    }
    .form--success h3 { font-size: 1.4rem; color: var(--dark); margin: 0; }
    .form--success p  { color: var(--mid); margin: 0; }

    .kontakt__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; justify-content: center; padding: 48px 40px; background: var(--cream); border-radius: 16px; }
    .kontakt__cta-hint { font-size: .9rem; color: var(--text-mid); margin: 0; line-height: 1.6; }
    .btn--lg { padding: 16px 32px; font-size: 1rem; }
    .kontakt__cta-direct { font-size: .85rem; color: var(--text-mid); margin: 0; }
    .kontakt__cta-direct a { color: var(--blue); text-decoration: none; }
    .kontakt__cta-direct a:hover { text-decoration: underline; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       FOOTER
       – Zweistufig: main row (Brand / Adresse / Nav / Legal)
         + bottom bar (Copyright)
       – Hintergrund: Leonova Blau dunkel (#3e5166)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .footer {
      background: var(--blue-dark);
      color: rgba(255,255,255,.55);
      padding: 56px 0 0;
    }

    /* Main row: 4 columns */
    .footer__main {
      display: grid;
      grid-template-columns: 2fr 1.2fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    /* Brand column */
    .footer__logo  { height: 26px; opacity: .85; margin-bottom: 14px; }
    .footer__claim { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.5; }

    /* Address column */
    .footer__address { font-size: .85rem; line-height: 1.8; }
    .footer__address p { color: rgba(255,255,255,.6); }
    .footer__address a { color: rgba(255,255,255,.6); transition: color .2s; }
    .footer__address a:hover { color: var(--yellow); }

    /* Nav column */
    .footer__nav {
      display: flex; flex-direction: column; gap: 10px; font-size: .85rem;
    }
    .footer__nav a { color: rgba(255,255,255,.55); transition: color .2s; }
    .footer__nav a:hover { color: var(--white); }

    /* Legal links column */
    .footer__legal-links {
      display: flex; flex-direction: column; gap: 10px; font-size: .85rem;
    }
    .footer__legal-links a { color: rgba(255,255,255,.45); transition: color .2s; }
    .footer__legal-links a:hover { color: var(--white); }
    .footer__linkedin {
      display: inline-flex; align-items: center; gap: 7px;
      margin-top: 16px; font-size: .85rem;
      color: rgba(255,255,255,.55); transition: color .2s;
    }
    .footer__linkedin:hover { color: var(--yellow); }

    /* Bottom bar */
    .footer__bottom {
      padding: 20px 0;
      font-size: .78rem;
      color: rgba(255,255,255,.35);
      text-align: center;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       DARK MODE
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    @media (prefers-color-scheme: dark) {
      :root {
        --text: #edf1f5; --text-mid: #c0cdd8; --text-muted: #8a9aaa;
        --cream: #1b2a3a; --sand: #1f3040; --sand-dark: #3a4f60;
        --border: #2d4055; --white: #152030; --off-white: #182535;
      }
      .problem__card, .form-g input, .form-g textarea { background: #1a2c3d; }
      .leist-card { background: #182535; }
      .warum__card { background: #1b3050; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       RESPONSIVE
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    @media (max-width: 960px) {
      .aw-grid { grid-template-columns: repeat(2, 1fr); }
      .warum__layout, .kontakt__layout { grid-template-columns: 1fr; gap: 40px; }
      .prozess__steps { grid-template-columns: repeat(3, 1fr); }
      .prozess__steps::before { display: none; }
      .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 720px) {
      :root { --nav-h: 60px; }
      section, .problem, .leistungen, .arbeitsweise, .prozess,
      .sr-section, .team, .warum, .kontakt { padding: 64px 0; }
      .nav__links { display: none; }
      .nav__links.open {
        display: flex; flex-direction: column;
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: var(--blue-dark); padding: 24px; gap: 18px;
        border-top: 1px solid rgba(255,255,255,.1);
        box-shadow: 0 8px 24px rgba(0,0,0,.25);
      }
      .nav__links.open a { color: var(--white); font-size: 1rem; }
      .nav__toggle { display: flex; }
      .footer__main { grid-template-columns: 1fr 1fr; gap: 28px; }
      .team__grid--two { grid-template-columns: 1fr; }
      .hero__trust { grid-template-columns: 1fr; }
      .hero__trust-item + .hero__trust-item { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
      .form-row { grid-template-columns: 1fr; }
      .aw-grid  { grid-template-columns: 1fr; }
      .hero__actions { flex-direction: column; align-items: flex-start; }
      .prozess__steps { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .prozess__steps { grid-template-columns: 1fr; }
      .hero__h1 { font-size: 2rem; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       BLOG VORSCHAU
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .blog-vorschau { background: var(--white); padding: 96px 0; }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .blog-card {
      border: 1.5px solid var(--border); border-radius: var(--r-md);
      padding: 28px; display: flex; flex-direction: column; gap: 12px;
      transition: box-shadow .25s, transform .25s;
      background: var(--off-white);
    }
    .blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
    .blog-card__date { font-size: .75rem; color: var(--text-muted); letter-spacing: .04em; }
    .blog-card__title { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.35; }
    .blog-card__teaser { font-size: .875rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
    .blog-card__link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .85rem; font-weight: 600; color: var(--blue);
      margin-top: 4px; transition: gap .2s;
    }
    .blog-card__link:hover { gap: 10px; }
    /* Blog card image (real + placeholder) */
    .blog-card { padding: 0; overflow: hidden; }
    .blog-card__img {
      width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
    }
    .blog-card__img-placeholder {
      width: 100%; aspect-ratio: 16/9;
      background: var(--cream); border-bottom: 1.5px dashed var(--border);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 8px; color: var(--text-muted);
    }
    .blog-card__img-placeholder span { font-size: .75rem; }
    .blog-card__date,
    .blog-card__title,
    .blog-card__teaser,
    .blog-card__link { padding-left: 24px; padding-right: 24px; }
    .blog-card__date { padding-top: 20px; }
    .blog-card__link { padding-bottom: 20px; }
    /* Blog article hero image (real + placeholder) */
    .blog-hero-img-wrap { line-height: 0; }
    .blog-hero-img {
      width: 100%; max-height: 480px; object-fit: cover; display: block;
    }
    .blog-hero-img-placeholder {
      background: #e8edf2; border-bottom: 2px dashed #c5cdd6;
      min-height: 220px; display: flex; align-items: center;
    }
    .blog-hero-img-placeholder__inner {
      max-width: 1100px; margin: 0 auto; padding: 60px 24px;
      display: flex; flex-direction: column; align-items: center; gap: 12px;
      color: #8a99aa; text-align: center;
    }
    .blog-hero-img-placeholder__inner span { font-size: .85rem; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       RECHNER
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .rechner { background: var(--blue); padding: 96px 0; }
    .rechner .h2  { color: var(--white); }
    .rechner .lead { color: rgba(255,255,255,.65); }

    .rc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .rc-step {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 12px;
      padding: 28px 30px;
      margin-bottom: 16px;
    }
    .rc-step-label {
      font-size: .72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .1em;
      color: rgba(255,255,255,.5);
      margin-bottom: 20px;
    }
    .rc-field { display: flex; flex-direction: column; gap: 6px; }
    .rc-field label { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.4; }
    .rc-field input, .rc-field select {
      width: 100%; padding: 10px 13px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      background: rgba(255,255,255,.07);
      color: var(--white);
      font-size: .92rem; font-family: var(--font);
      outline: none; transition: border-color .2s;
    }
    .rc-field input:focus, .rc-field select:focus { border-color: var(--yellow); }
    .rc-field select option { background: var(--blue-dark); color: var(--white); }

    .rc-slider-row { display: flex; align-items: center; gap: 14px; }
    .rc-slider-row input[type=range] {
      flex: 1; -webkit-appearance: none;
      height: 5px; background: rgba(255,255,255,.2);
      border-radius: 3px; border: none; padding: 0;
    }
    .rc-slider-row input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none; width: 20px; height: 20px;
      background: var(--yellow); border-radius: 50%; cursor: pointer;
      box-shadow: 0 1px 6px rgba(0,0,0,.25);
    }
    .rc-slider-row input[type=range]::-moz-range-thumb {
      width: 20px; height: 20px;
      background: var(--yellow); border-radius: 50%; cursor: pointer; border: none;
    }
    .rc-slider-val {
      font-size: .9rem; font-weight: 700;
      min-width: 76px; text-align: right; color: var(--yellow);
    }
    .rc-hint { font-size: .78rem; color: var(--text-mid); margin: 8px 0 0; line-height: 1.5; }
    .rc-metric-sub { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 4px; }
    .rc-label-note { font-weight: 400; font-size: .75rem; opacity: .6; }

    .rc-results {
      background: rgba(0,0,0,.18);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px;
      padding: 32px; margin-top: 8px;
    }
    .rc-metrics {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 12px; margin-bottom: 24px;
    }
    .rc-metric {
      background: rgba(255,255,255,.07);
      border-radius: 10px; padding: 18px 14px; text-align: center;
    }
    .rc-metric-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: 8px; }
    .rc-metric-val { font-size: 1.3rem; font-weight: 700; color: var(--white); }
    .rc-metric-val.rc-hl { color: var(--yellow); }

    .rc-bar-label { display: flex; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 5px; }
    .rc-bar-track { height: 8px; background: rgba(255,255,255,.12); border-radius: 4px; overflow: hidden; margin-bottom: 12px; }
    .rc-bar-fill { height: 100%; border-radius: 4px; transition: width .4s ease; }
    .rc-bar-fill.rc-before { background: rgba(255,255,255,.3); }
    .rc-bar-fill.rc-after  { background: var(--yellow); }

    .btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.45); }
    .btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

    .rc-cta {
      margin-top: 24px; padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 14px;
    }
    .rc-cta-text { font-size: .88rem; color: rgba(255,255,255,.65); max-width: 380px; line-height: 1.55; }
    .rc-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
    .rc-note { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: 16px; font-style: italic; line-height: 1.5; }

    /* ── Modal ── */
    .rc-modal {
      display: none; position: fixed; inset: 0;
      background: rgba(20,30,45,.65); backdrop-filter: blur(4px);
      z-index: 900; align-items: center; justify-content: center; padding: 20px;
    }
    .rc-modal--open { display: flex; }
    .rc-modal__box {
      background: var(--white); border-radius: 12px;
      padding: 36px 40px; max-width: 520px; width: 100%;
      box-shadow: 0 20px 60px rgba(0,0,0,.2); position: relative;
    }
    .rc-modal__close {
      position: absolute; top: 14px; right: 18px;
      background: none; border: none; font-size: 1.4rem; cursor: pointer;
      color: var(--grey); line-height: 1;
    }
    .rc-modal__close:hover { color: var(--dark); }
    .rc-modal__title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 0 0 8px; }
    .rc-modal__lead  { font-size: .9rem; color: var(--grey); margin: 0 0 22px; }
    .rc-modal__label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
    .rc-modal__input,
    .rc-modal__textarea {
      width: 100%; box-sizing: border-box;
      border: 1.5px solid rgba(88,110,135,.25); border-radius: 8px;
      padding: 10px 14px; font-size: .95rem; color: var(--dark);
      font-family: inherit; margin-bottom: 16px;
      transition: border-color .2s;
    }
    .rc-modal__input:focus,
    .rc-modal__textarea:focus { outline: none; border-color: var(--blue); }
    .rc-modal__textarea { resize: vertical; }
    .rc-modal__actions { display: flex; gap: 12px; margin-top: 4px; }
    .rc-modal-status { font-size: .85rem; min-height: 18px; margin-bottom: 8px; }
    .rc-modal-status--ok    { color: #2a7a3b; }
    .rc-modal-status--error { color: #c0392b; }

    @media (max-width: 640px) {
      .rc-grid { grid-template-columns: 1fr; }
      .rc-metrics { grid-template-columns: 1fr 1fr; }
      .rc-cta { flex-direction: column; align-items: flex-start; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       FAQ
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .faq { background: var(--cream); padding: 96px 0; }
    .faq__list { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
    .faq__item {
      border-bottom: 1px solid var(--border);
    }
    .faq__item:first-child { border-top: 1px solid var(--border); }
    .faq__q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; gap: 16px; text-align: left;
      font-family: var(--font); font-size: .97rem; font-weight: 700;
      color: var(--text); transition: color .2s;
    }
    .faq__q:hover { color: var(--blue); }
    .faq__icon {
      flex-shrink: 0; width: 22px; height: 22px;
      border: 1.5px solid var(--border); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: transform .3s, border-color .2s, background .2s;
      color: var(--blue);
    }
    .faq__item.open .faq__icon { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); color: var(--white); }
    .faq__a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
    }
    .faq__item.open .faq__a { max-height: 300px; padding-bottom: 20px; }
    .faq__a p { font-size: .9rem; color: var(--text-muted); line-height: 1.72; }

    @media (max-width: 720px) {
      .blog-vorschau, .faq { padding: 64px 0; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       BLOG — Übersichtsseite
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .page-hero { background: var(--blue); color: var(--white); padding: calc(var(--nav-h) + 48px) 0 64px; }
    /* Subpage footer */
    .footer__links { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-bottom: 16px; }
    .footer__links a { color: rgba(255,255,255,.6); font-size: .875rem; text-decoration: none; transition: color .2s; }
    .footer__links a:hover { color: var(--white); }
    .footer__copy { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
    .page-hero--small { padding: calc(var(--nav-h) + 32px) 0 48px; }
    .page-hero__label { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
    .page-hero__back { display: inline-flex; align-items: center; gap: 6px; font-size: .875rem; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 20px; transition: color .2s; }
    .page-hero__back:hover { color: var(--yellow); }
    .page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--white); line-height: 1.2; margin: 0 0 16px; max-width: 780px; }
    .page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 640px; margin: 0; line-height: 1.65; }
    .page-hero__lead { font-size: 1.1rem !important; color: rgba(255,255,255,.75) !important; }

    /* Page title — used on impressum, datenschutz etc. */
    .page-title {
      background: var(--blue);
      padding: calc(var(--nav-h) + 40px) 0 36px;
    }
    .page-title h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin: 0 0 8px; }
    .page-title p { color: rgba(255,255,255,.75); font-size: .95rem; margin: 0; }

    .blog-article__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

    .blog { padding: 80px 0; background: var(--bg); }
    .blog__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .blog__card {
      background: var(--white);
      border-radius: 12px;
      border: 1px solid var(--border);
      overflow: hidden;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: box-shadow .2s, transform .2s;
    }
    .blog__card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
    .blog__card--featured { grid-column: span 2; flex-direction: row; }
    .blog__card-img {
      background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      min-height: 160px;
    }
    .blog__card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .blog__card-img--placeholder { padding: 32px; background: var(--bg); }
    .blog__card--featured .blog__card-img { width: 220px; flex-shrink: 0; min-height: unset; }
    .blog__card-img svg { width: 64px; height: 64px; opacity: .5; }
    .blog__card-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .blog__card-meta { display: flex; align-items: center; gap: 10px; }
    .blog__tag { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; background: rgba(88,110,135,.1); color: var(--blue); padding: 3px 8px; border-radius: 4px; }
    .blog__date { font-size: .8rem; color: var(--text-muted); }
    .blog__card-title { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.35; margin: 0; }
    .blog__card--featured .blog__card-title { font-size: 1.25rem; }
    .blog__card-text { font-size: .875rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin: 0; }
    .blog__card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
    .blog__read-time { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--text-muted); }
    .blog__cta { display: flex; align-items: center; gap: 6px; font-size: .875rem; font-weight: 600; color: var(--blue); }

    .blog-cta { background: var(--dark); padding: 72px 0; text-align: center; }
    .blog-cta__inner { max-width: 560px; margin: 0 auto; }
    .blog-cta h2 { color: var(--white); font-size: 1.6rem; margin: 0 0 12px; }
    .blog-cta p { color: rgba(255,255,255,.65); margin: 0 auto 28px; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       BLOG — Artikel-Seite
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .blog-article { padding: 72px 0 96px; background: var(--bg); }
    .blog-article__container { display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: start; }
    .blog-article__content { font-size: .97rem; line-height: 1.8; color: var(--text); }
    .blog-article__content h2 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin: 40px 0 14px; }
    .blog-article__content p { margin: 0 0 18px; }
    .blog-article__content p:last-child { margin-bottom: 0; }
    .blog-article__content strong { color: var(--dark); font-weight: 700; }
    .blog-article__list { padding-left: 20px; margin: 0 0 18px; display: flex; flex-direction: column; gap: 8px; }
    .blog-article__list li { color: var(--text-muted); line-height: 1.65; }
    .blog-article__cta { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; margin-top: 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .blog-article__cta p { margin: 0; font-weight: 600; color: var(--dark); }

    .blog-article__sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 24px; }
    .blog-article__author { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
    .blog-article__author-info { display: flex; flex-direction: column; gap: 2px; }
    .blog-article__author-info strong { font-size: .95rem; color: var(--dark); }
    .blog-article__author-info span { font-size: .82rem; color: var(--text-muted); }
    .blog-article__related { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
    .blog-article__related h3 { font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 14px; }
    .blog-article__related-link { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: .875rem; color: var(--blue); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--border); }
    .blog-article__related-link:last-child { border-bottom: none; }
    .blog-article__related-link:hover { color: var(--dark); }

    @media (max-width: 900px) {
      .blog__grid { grid-template-columns: 1fr; }
      .blog__card--featured { flex-direction: column; grid-column: span 1; }
      .blog__card--featured .blog__card-img { width: 100%; }
      .blog-article__container { grid-template-columns: 1fr; }
      .blog-article__sidebar { position: static; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CONTENT PAGES (Impressum, Datenschutz etc.)
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .content {
      padding: 64px 0 96px;
      background: var(--bg);
    }
    .content section {
      margin-bottom: 40px;
    }
    .content h2 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--dark);
      margin: 0 0 10px;
    }
    .content p {
      font-size: .95rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0 0 10px;
    }
    .content a { color: var(--blue); }

    /* Info-Block (Impressum Firmendaten) */
    .info-block {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 48px;
      background: var(--white);
    }
    .info-block__item {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
    }
    .info-block__item:last-child { border-bottom: none; }
    .info-block__label {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .info-block__value {
      font-size: .95rem;
      color: var(--dark);
      line-height: 1.6;
    }
    .info-block__value a { color: var(--blue); }
