  :root {
    --orange: #D95C1A;
    --orange-light: #F0721E;
    --orange-pale: #FAE9DC;
    --orange-deep: #A8430F;
    --ink: #15130F;
    --graphite: #57534C;
    --mist: #F5F2ED;
    --paper: #FFFFFF;
    --white: #FFFFFF;
    --rule: #E1DAD0;
    --rule-dark: #38342C;
    --font-sans: 'Roboto', sans-serif;
    --maxw: 1360px;

    /* Beige-Flächen: Stufen des Sektionsverlaufs */
    --beige-1: #FEFCF9;
    --beige-2: #F1EDE4;
    --beige-3: #DCD3C2;

    /* Radien */
    --r-btn: 12px;
    --r-md: 14px;
    --r-lg: 20px;

    /* Schatten */
    --sh-sm: 0 2px 10px rgba(21,19,15,0.05);
    --sh-md: 0 10px 28px rgba(21,19,15,0.08);
    --sh-lg: 0 20px 48px rgba(21,19,15,0.13);
    --sh-orange: 0 8px 22px rgba(217,92,26,0.26);
    --sh-orange-hi: 0 14px 32px rgba(217,92,26,0.36);
    --sh-dark: 0 20px 44px rgba(0,0,0,0.45);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 400;
    overflow-x: hidden;
  }

  a { color: inherit; }
  img { max-width: 100%; }

  :focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
  }

  .page-width {
    max-width: var(--maxw);
    margin: 0 auto;
    width: 100%;
  }

  /* ── UTILITY TYPE (mono = labels, meta, interaction) ── */
  .eyebrow, .section-eyebrow {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .eb-ring {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    flex-shrink: 0;
    display: block;
  }

  /* ── NAV ── */
  /* Vor dem Scrollen liegt die Navigation transparent auf dem Hero-Bild,
     ab .is-stuck wird daraus die weiße Sticky-Leiste. */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    height: 76px;
    display: flex;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
  nav.is-stuck {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 8px 30px rgba(21,19,15,0.14);
  }


  .logo-wrap { display: flex; align-items: center; text-decoration: none; }
  .logo-img {
    height: 53px; width: auto; display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
  }
  nav.is-stuck .logo-img { filter: none; }

  nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }

  nav ul a {
    font-family: var(--font-sans);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  nav.is-stuck ul a { color: var(--ink); }
  nav ul a:hover, nav.is-stuck ul a:hover { color: var(--orange-light); }
  nav.is-stuck ul a:hover { color: var(--orange); }

  .nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 14px 26px !important;
    border-radius: var(--r-btn);
    box-shadow: var(--sh-orange);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .nav-cta:hover {
    background: var(--orange-light) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--sh-orange-hi);
  }

  /* ── BUTTONS ── */
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 18px 38px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    display: inline-block;
    cursor: pointer;
    border: none;
    border-radius: var(--r-btn);
    box-shadow: var(--sh-orange);
  }
  .btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: var(--sh-orange-hi);
  }
  .btn-primary:active { transform: translateY(-1px); }

  .btn-text {
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s, color 0.2s;
    border-bottom: 2px solid var(--rule);
    padding-bottom: 4px;
  }
  .btn-text:hover { color: var(--orange); gap: 12px; border-color: var(--orange); }
  .btn-text::after { content: '→'; font-size: 13px; }

  /* ── HERO ── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--ink) url('leistungen.jpg') center center / cover no-repeat;
    isolation: isolate;
  }
  /* Abdunkelung: links dicht genug für weiße Headline, rechts bleibt das Bild sichtbar */
  #hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(100deg,
      rgba(15,13,10,0.84) 0%,
      rgba(15,13,10,0.78) 38%,
      rgba(15,13,10,0.66) 62%,
      rgba(15,13,10,0.56) 100%);
  }
  #hero > .page-width {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    padding: 140px 60px 40px;
  }

  /* Das Bild ist bewusst hell gehalten. Damit heller Text auch über den
     unruhigen Stellen (Bokeh, Bildschirm) sicher lesbar bleibt, bekommt er
     einen weichen Schatten — sichtbar wird er nicht, er hebt nur den Kontrast. */
  #hero .eyebrow,
  .hero-title,
  .hero-sub,
  .thread-head,
  .thread-label,
  .thread-sub,
  #hero .btn-text,
  .hero-badge,
  .page-hero h1,
  .hero-lead {
    text-shadow: 0 1px 4px rgba(0,0,0,0.55);
  }
  .hero-title,
  .page-hero h1 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  /* Kernaussage, dauerhaft auf dem Startbild */
  .hero-statement {
    position: relative;
    z-index: 1;
    padding: 0 60px 48px;
  }
  .hero-statement-inner {
    background: rgba(15,13,10,0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--r-lg);
    padding: 30px 42px;
  }
  .hero-statement-text {
    font-family: var(--font-sans);
    font-size: clamp(19px, 2.3vw, 34px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
  }
  .hero-statement-text em { font-style: normal; color: var(--orange-light); }

  #hero .eyebrow { color: var(--orange-light); }
  #hero .eb-ring { border-color: var(--orange-light); }

  .hero-title {
    font-family: var(--font-sans);
    font-weight: 900;
    font-size: clamp(30px, 7vw, 82px);
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 26px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
  }
  .hero-title .accent { color: var(--orange-light); font-style: italic; }

  .hero-sub {
    font-size: 19px;
    line-height: 1.65;
    color: #D6D0C6;
    margin-bottom: 40px;
    max-width: 480px;
  }

  .hero-actions { display: flex; gap: 32px; align-items: center; }

  /* ── HERO THREAD (signature: die Bande) ── */
  .hero-thread { position: relative; padding-left: 30px; }
  .thread-line {
    position: absolute;
    left: 7px; top: 8px; bottom: 68px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange-light), rgba(255,255,255,0.15));
  }
  .thread-item { position: relative; padding-bottom: 34px; }
  .thread-item:last-of-type { padding-bottom: 0; }
  .thread-node {
    position: absolute; left: -30px; top: 2px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid var(--orange-light);
  }
  .thread-head {
    font-family: var(--font-sans);
    font-size: 13px; font-weight: 900;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange-light); margin-bottom: 6px;
  }
  .thread-label { font-size: 21px; font-weight: 900; color: var(--white); margin-bottom: 6px; line-height: 1.2; letter-spacing: -0.01em; }
  .thread-sub { font-size: 15px; line-height: 1.55; color: #D6D0C6; max-width: 340px; }
  .thread-more { margin-top: 30px; display: inline-flex; }
  #hero .btn-text { color: var(--white); border-bottom-color: rgba(255,255,255,0.4); }
  #hero .btn-text:hover { color: var(--orange-light); border-bottom-color: var(--orange-light); }

  /* ── SECTIONS SHARED ── */
  section > .page-width { padding: 104px 60px; }

  .section-title {
    font-family: var(--font-sans);
    font-weight: 900;
    font-size: clamp(30px, 3.4vw, 50px);
    line-height: 1.1;
    color: var(--ink);
    max-width: 780px;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }
  .section-sub { font-size: 18px; line-height: 1.65; color: var(--graphite); max-width: 620px; }
  .section-header { margin-bottom: 56px; }

  /* ── CTA-BAND: schließt eine Sektion mit der Einladung zum Gespräch ── */
  .cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px 40px;
    flex-wrap: wrap;
    margin-top: 56px;
    padding: 34px 40px;
    background: linear-gradient(135deg, var(--paper) 0%, var(--mist) 100%);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
  }
  .cta-band-text {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    max-width: 640px;
  }
  .cta-band-text span { color: var(--orange); }
  .cta-band .btn-primary { flex-shrink: 0; }

  .cta-band--dark {
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.12);
    box-shadow: var(--sh-dark);
  }
  .cta-band--dark .cta-band-text { color: var(--white); }
  .cta-band--dark .cta-band-text span { color: var(--orange-light); }

  /* ── PROBLEM (no false sequence — ring marks, not numbers) ── */
  #problem {
    background: linear-gradient(180deg, var(--paper) 0%, #FDFBF8 60%, var(--mist) 100%);
    border-bottom: 1px solid var(--rule);
  }

  .problem-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
  .pain-row {
    display: flex;
    gap: 22px;
    padding: 26px 30px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .pain-row:hover {
    transform: translateX(8px);
    box-shadow: var(--sh-md);
    border-color: var(--orange);
  }
  .pain-mark {
    width: 12px; height: 12px; margin-top: 8px;
    border-radius: 50%; border: 2px solid var(--orange);
    flex-shrink: 0;
    transition: background 0.25s, box-shadow 0.25s;
  }
  .pain-row:hover .pain-mark { background: var(--orange); box-shadow: 0 0 0 5px var(--orange-pale); }
  .pain-title { font-size: 22px; font-weight: 900; color: var(--ink); margin-bottom: 8px; line-height: 1.2; letter-spacing: -0.01em; }
  .pain-text { font-size: 16px; line-height: 1.6; color: var(--graphite); max-width: 680px; }

  /* ── ANSATZ / RAIL (real sequence — numbering earned) ── */
  #ansatz {
    background: linear-gradient(165deg, var(--beige-1) 0%, var(--beige-2) 42%, var(--beige-3) 100%);
    border-bottom: 1px solid var(--rule);
  }

  .ansatz-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; margin-bottom: 68px; align-items: end;
  }
  .ansatz-right-text { font-size: 18px; line-height: 1.65; color: var(--graphite); }

  .rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
  .rail-track {
    position: absolute; top: 23px; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, var(--orange) 0%, var(--rule) 100%);
    z-index: 0;
  }
  .rail-step { position: relative; z-index: 1; cursor: default; }
  .rail-node {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(145deg, #2E2A23, var(--ink));
    border: 2px solid var(--orange);
    color: var(--white);
    font-family: var(--font-sans); font-size: 15px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    box-shadow: var(--sh-md);
    transition: transform 0.28s, box-shadow 0.28s, background 0.28s;
  }
  .rail-step:hover .rail-node {
    transform: scale(1.12) translateY(-3px);
    background: linear-gradient(145deg, var(--orange-light), var(--orange));
    box-shadow: var(--sh-orange-hi);
  }
  .step-label {
    font-family: var(--font-sans);
    font-size: 17px; font-weight: 900; color: var(--orange);
    margin-bottom: 12px; letter-spacing: 0.02em; text-transform: uppercase;
  }
  .step-desc { font-size: 15px; line-height: 1.6; color: var(--graphite); }

  /* ── LEISTUNGEN ── */
  #leistungen {
    background: linear-gradient(180deg, var(--paper) 0%, #FDFBF8 100%);
    border-bottom: 1px solid var(--rule);
  }

  .leistungen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }

  .leistung-card {
    background: linear-gradient(160deg, var(--paper) 0%, #FBF8F4 100%);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 38px 32px;
    box-shadow: var(--sh-sm);
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
    display: flex; flex-direction: column; gap: 18px;
  }
  .leistung-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: var(--sh-lg);
  }

  .leistung-icon {
    width: 54px; height: 54px; border-radius: 50%;
    border: 2px solid var(--orange);
    background: var(--paper);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.28s, transform 0.28s, box-shadow 0.28s;
  }
  .leistung-icon svg { width: 24px; height: 24px; transition: transform 0.28s; }
  .leistung-icon svg [stroke] { transition: stroke 0.28s; }
  .leistung-icon svg [fill]:not([fill="none"]) { transition: fill 0.28s; }
  .leistung-card:hover .leistung-icon {
    background: var(--orange);
    transform: scale(1.06);
    box-shadow: var(--sh-orange);
  }
  .leistung-card:hover .leistung-icon svg [stroke] { stroke: #FFFFFF; }
  .leistung-card:hover .leistung-icon svg [fill]:not([fill="none"]) { fill: #FFFFFF; }

  .leistung-title { font-family: var(--font-sans); font-size: 23px; font-weight: 900; color: var(--ink); line-height: 1.13; letter-spacing: -0.01em; text-transform: uppercase; }
  .leistung-text { font-size: 15px; line-height: 1.6; color: var(--graphite); flex: 1; }

  .leistung-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; padding-top: 16px; border-top: 1px solid var(--rule); }
  .leistung-bullets li { font-size: 14px; font-weight: 700; color: var(--ink); padding-left: 18px; position: relative; }
  .leistung-bullets li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: 11px; }

  .leistung-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 4px;
    font-family: var(--font-sans); font-size: 14px; font-weight: 900;
    letter-spacing: 0.01em; text-transform: uppercase;
    color: var(--orange); text-decoration: none; transition: gap 0.2s;
  }
  .leistung-link:hover { gap: 10px; }

  /* ── WIRKUNG (dark) ── */
  #wirkung {
    background:
      radial-gradient(ellipse 1000px 600px at 82% 8%, rgba(217,92,26,0.14), transparent 62%),
      linear-gradient(158deg, #262119 0%, var(--ink) 52%, #0C0A07 100%);
    border-bottom: 1px solid var(--rule-dark);
  }
  #wirkung .section-eyebrow { color: var(--orange-light); }
  #wirkung .eb-ring { border-color: var(--orange-light); }
  #wirkung .section-title { color: var(--white); }

  .outcomes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
  .outcome {
    padding: 36px 30px 34px;
    background: linear-gradient(155deg, rgba(255,255,255,0.075) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: var(--r-lg);
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  }
  .outcome:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: var(--sh-dark);
  }
  .outcome-bar {
    width: 32px; height: 3px; border-radius: 2px;
    background: var(--orange); margin-bottom: 26px;
    transition: width 0.28s;
  }
  .outcome:hover .outcome-bar { width: 56px; }
  .outcome-title { font-family: var(--font-sans); font-size: 21px; font-weight: 900; color: var(--white); margin-bottom: 12px; line-height: 1.15; letter-spacing: -0.01em; text-transform: uppercase; }
  .outcome-text { font-size: 15px; line-height: 1.6; color: #9A958C; }

  /* ── TEAM (Die Bande — literal link between the two) ── */
  #team {
    background: linear-gradient(180deg, var(--paper) 0%, #FDFBF8 100%);
    border-bottom: 1px solid var(--rule);
  }

  .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; position: relative; }

  .bande-link {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 54px; height: 54px; border-radius: 50%;
    background: linear-gradient(145deg, var(--orange-light), var(--orange));
    border: none;
    box-shadow: 0 0 0 10px var(--paper), var(--sh-orange);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-sans); font-weight: 900; font-size: 22px;
    color: var(--white); z-index: 2;
  }

  .team-card {
    background: linear-gradient(160deg, #FBF8F4 0%, var(--mist) 100%);
    padding: 50px 44px;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    transition: transform 0.28s, box-shadow 0.28s;
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
  .team-name { font-family: var(--font-sans); font-size: 34px; font-weight: 900; color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: -0.02em; }
  .team-role { font-family: var(--font-sans); font-size: 14px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); margin-bottom: 22px; }
  .team-bio { font-size: 15px; line-height: 1.75; color: var(--graphite); }

  /* ── TESTIMONIALS ── */
  #testimonials {
    background: linear-gradient(200deg, var(--beige-1) 0%, var(--beige-2) 45%, var(--beige-3) 100%);
    border-bottom: 1px solid var(--rule);
  }

  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
  .testimonial {
    background: linear-gradient(160deg, var(--paper) 0%, #FCFAF7 100%);
    padding: 34px 30px;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    display: flex; flex-direction: column; gap: 18px;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  }
  .testimonial:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--orange); }
  .quote-mark { font-family: var(--font-sans); font-size: 44px; line-height: 0.6; color: var(--orange); font-weight: 900; }
  .testimonial-text { font-size: 17px; font-weight: 500; line-height: 1.5; color: var(--ink); }
  .testimonial-source { font-family: var(--font-sans); font-size: 13px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); }

  /* ── KONTAKT ── */
  #kontakt { background: linear-gradient(180deg, var(--paper) 0%, #FDFBF8 100%); }
  #kontakt > .page-width { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

  .kontakt-heading {
    font-family: var(--font-sans); font-weight: 900;
    font-size: clamp(32px, 3.6vw, 54px); line-height: 1.08;
    margin-bottom: 20px; color: var(--ink); letter-spacing: -0.02em;
  }
  .kontakt-heading span { color: var(--orange); font-style: italic; }
  .kontakt-sub { font-size: 18px; line-height: 1.65; color: var(--graphite); margin-bottom: 40px; }

  .contact-items { display: flex; flex-direction: column; gap: 12px; }
  .contact-item {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .contact-items a.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--sh-md);
    border-color: var(--orange);
  }

  .ci-icon {
    width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
    border: 2px solid var(--orange); background: var(--paper);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .ci-icon svg { width: 16px; height: 16px; fill: var(--orange); transition: fill 0.25s; }
  .contact-items a.contact-item:hover .ci-icon { background: var(--orange); transform: scale(1.07); box-shadow: var(--sh-orange); }
  .contact-items a.contact-item:hover .ci-icon svg { fill: #FFFFFF; }

  .ci-label { font-family: var(--font-sans); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
  .ci-value { font-family: var(--font-sans); font-size: 21px; font-weight: 900; color: var(--ink); letter-spacing: -0.01em; }

  .kontakt-right {
    background: linear-gradient(160deg, #FBF8F4 0%, var(--mist) 100%);
    padding: 50px 44px;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
  }
  .kontakt-right h3 { font-family: var(--font-sans); font-size: 26px; font-weight: 900; color: var(--ink); margin-bottom: 14px; text-transform: uppercase; letter-spacing: -0.01em; }
  .kontakt-right p { font-size: 16px; line-height: 1.65; color: var(--graphite); margin-bottom: 24px; }

  .kontakt-bullets { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
  .kontakt-bullets li { font-size: 16px; font-weight: 700; color: var(--ink); padding-left: 24px; position: relative; }
  .kontakt-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); }

  /* ── FOOTER ──
     Gleiche Bildfläche wie der Hero, darauf drei Glaskästen. Bild und
     Abdunklung sind bewusst identisch zum Hero aufgebaut, damit Kopf und Fuß
     der Seite als Klammer zusammengehören. */
  footer {
    position: relative;
    background: var(--ink) url("leistungen.jpg") center center / cover no-repeat;
    isolation: isolate;
  }
  footer::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(100deg,
      rgba(15,13,10,0.88) 0%,
      rgba(15,13,10,0.82) 38%,
      rgba(15,13,10,0.72) 62%,
      rgba(15,13,10,0.64) 100%);
  }

  .footer-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    padding: 88px 60px 40px;
  }

  .footer-box {
    background: rgba(15,13,10,0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--r-lg);
    padding: 36px 38px;
  }
  .footer-box h3 {
    font-family: var(--font-sans);
    font-size: 15px; font-weight: 900;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 22px;
  }

  .footer-logo-img {
    height: 53px; width: auto; display: block;
    filter: brightness(0) invert(1);
    margin-bottom: 26px;
  }
  .footer-adresse {
    font-style: normal;
    font-size: 16px; line-height: 1.7; color: #D6D0C6;
    margin-bottom: 22px;
  }
  .footer-adresse strong { color: var(--white); font-weight: 900; }

  .footer-kontakt { display: flex; flex-direction: column; gap: 10px; }
  .footer-kontakt a,
  .footer-kontakt span {
    font-family: var(--font-sans);
    font-size: 17px; font-weight: 900;
    color: var(--white); text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }
  .footer-kontakt a:hover { color: var(--orange-light); }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .footer-links li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-links li:last-child { border-bottom: none; }
  .footer-links a {
    display: block; padding: 11px 0;
    font-family: var(--font-sans);
    font-size: 15px; font-weight: 700;
    color: #D6D0C6; text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
  }
  .footer-links a:hover { color: var(--orange-light); padding-left: 8px; }

  /* Partnerlogos sitzen auf hellen Kacheln. Das ist keine Stilfrage, sondern
     nötig: Schubotz.jpg ist ein JPEG und hat damit keinen Alphakanal — der
     weiße Hintergrund ist Teil des Bildes und würde auf dunklem Grund als
     Kasten stehen. */
  .footer-partner { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-partner a {
    display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
    background: var(--paper);
    border-radius: var(--r-md);
    padding: 18px 20px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .footer-partner a:hover { transform: translateX(6px); box-shadow: var(--sh-md); }
  .footer-partner img {
    height: 34px; width: auto; max-width: 100%;
    object-fit: contain; display: block;
  }
  /* Vorläufig: von diesem Logo liegt nur die weiße Fassung vor, die auf der
     hellen Kachel unsichtbar wäre. brightness(0) macht daraus eine schwarze
     Wortmarke — der orange Punkt geht dabei verloren. Sobald die farbige
     Fassung da ist, diese Zeile entfernen. */
  .footer-partner img.logo-nur-weiss { filter: brightness(0); }
  .footer-partner .p-name {
    font-family: var(--font-sans);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--graphite);
  }
  .footer-partner a:hover .p-name { color: var(--orange); }

  .footer-bottom {
    position: relative; z-index: 1;
    padding: 0 60px 36px;
    display: flex; justify-content: center;
  }
  .footer-copy { font-family: var(--font-sans); font-size: 13px; font-weight: 700; color: #A8A299; }

  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 18px; padding: 64px 28px 32px; }
    .footer-box { padding: 28px 26px; }
    .footer-bottom { padding: 0 28px 32px; }
  }

  /* ── LOAD-IN MOTION (hero only, restrained, off for reduced-motion) ── */
  @media (prefers-reduced-motion: no-preference) {
    @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
    .eyebrow, .hero-title, .hero-sub, .hero-actions { animation: rise 0.7s ease both; }
    .hero-title { animation-delay: 0.08s; }
    .hero-sub { animation-delay: 0.16s; }
    .hero-actions { animation-delay: 0.24s; }
    .thread-item, .thread-more { animation: rise 0.6s ease both; }
    .thread-item:nth-of-type(1) { animation-delay: 0.2s; }
    .thread-item:nth-of-type(2) { animation-delay: 0.32s; }
    .thread-item:nth-of-type(3) { animation-delay: 0.44s; }
    .thread-more { animation-delay: 0.56s; }
  }

  /* Wer weniger Bewegung eingestellt hat, bekommt Farb- und Schattenwechsel, aber kein Verschieben */
  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition-duration: 0.01ms !important; }
    .pain-row:hover, .leistung-card:hover, .outcome:hover, .testimonial:hover,
    .team-card:hover, .contact-items a.contact-item:hover, .btn-primary:hover,
    .btn-primary:active, .nav-cta:hover, .rail-step:hover .rail-node,
    .leistung-card:hover .leistung-icon, .contact-items a.contact-item:hover .ci-icon {
      transform: none !important;
    }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    nav .page-width { padding: 0 28px !important; }
    section > .page-width { padding: 76px 28px; }
    #hero > .page-width { padding: 118px 28px 32px !important; grid-template-columns: 1fr; gap: 56px; }
    /* schmale Viewports: Text steht über der ganzen Breite, daher flächig abdunkeln */
    #hero::before {
      background: linear-gradient(180deg,
        rgba(15,13,10,0.84) 0%,
        rgba(15,13,10,0.80) 55%,
        rgba(15,13,10,0.76) 100%);
    }
    .hero-thread { padding-left: 30px; margin-top: 8px; }
    .hero-statement { padding: 0 28px 36px; }
    .hero-statement-inner { padding: 24px 26px; }
    .rail { grid-template-columns: 1fr 1fr; row-gap: 48px; }
    .rail-track { display: none; }
    .outcomes { grid-template-columns: 1fr 1fr; }
    .leistungen-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { gap: 32px; }
  }

  /* Navi verkleinern, solange sie neben dem Logo stehen muss */
  @media (max-width: 1000px) {
    nav ul { gap: 20px; }
    nav ul a { font-size: 13px; }
    .nav-cta { padding: 11px 18px !important; }
  }

  @media (max-width: 768px) {
    .rail { grid-template-columns: 1fr; }
    .problem-list { margin-top: 0; }
    .leistungen-grid, .testimonials-grid, .team-grid, #kontakt > .page-width, .ansatz-intro, .outcomes { grid-template-columns: 1fr; }
    .bande-link { display: none; }
    .cta-band { margin-top: 40px; padding: 28px 24px; }
    .cta-band-text { font-size: 20px; }
    .cta-band .btn-primary { width: 100%; text-align: center; }
    .btn-text { color: var(--orange); border-color: var(--orange); }
  }

  /* ── Mobile Nav ── */
  /* Umschaltpunkt bei 900px statt 768px: mit dem größeren Logo bräuchte die
     waagerechte Navigation daneben mehr Platz, als knapp über 768px vorhanden
     ist — dort standen Logo und Menü direkt aneinander. Die Inhaltsraster
     bleiben davon unberührt und schalten weiterhin bei 768px um. */
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; }
  .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
  nav.is-stuck .nav-hamburger span { background: var(--ink); }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 900px) {
    nav ul { display: none; }
    .nav-hamburger { display: flex; }
    nav .page-width { padding: 0 20px !important; }
    .logo-img { height: 40px !important; }

    /* Bei geöffnetem Menü liegt eine Abdunklung über der Seite. Dadurch blendet
       die milchige Menüfläche immer denselben dunklen Grund durch — egal ob man
       oben steht oder schon gescrollt hat. Die Leiste wird dafür wieder
       transparent, sonst stünde ein weißer Balken auf dem Dunkel.
       Bewusst nur hier: auf Desktop-Breite gibt es kein Klappmenü, und eine
       hängengebliebene Klasse dürfte dort nichts verdunkeln. */
    nav.is-open {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      box-shadow: none;
      border-bottom-color: transparent;
    }
    nav.is-open .logo-img { filter: brightness(0) invert(1); }
    nav.is-open .nav-hamburger span { background: var(--white); }
    nav::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      background: rgba(10,9,7,0.78);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    nav.is-open::after { opacity: 1; visibility: visible; }
    /* Klappmenü als schwebende, milchige Fläche mit Abstand zum Bildschirmrand */
    nav ul {
      display: none; position: fixed;
      top: 88px; left: 16px; right: 16px;
      background: rgba(255,255,255,0.78);
      backdrop-filter: blur(20px) saturate(140%);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: var(--r-lg);
      box-shadow: var(--sh-lg);
      overflow: hidden;
      flex-direction: column; gap: 0; padding: 6px 0; z-index: 150;
    }
    nav ul.nav-open { display: flex; }
    nav ul li { border-bottom: 1px solid rgba(21,19,15,0.07); }
    nav ul li:last-child { border-bottom: none; }
    /* Im aufgeklappten weißen Panel müssen die Links dunkel bleiben,
       auch solange die Leiste selbst noch transparent ist. */
    nav ul a, nav.is-stuck ul a { display: block; padding: 18px 24px; font-size: 19px; color: var(--ink); }
    nav ul a:hover, nav.is-stuck ul a:hover { color: var(--orange); }
    .nav-cta { margin: 16px 24px !important; padding: 16px 24px !important; text-align: center; display: block !important; }
  }

  /* ── Nav Dropdown ── */
  .nav-has-dropdown { position: relative; }
  .nav-dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--paper); border: 1px solid var(--rule);
    border-radius: var(--r-md);
    min-width: 260px; z-index: 200; flex-direction: column; gap: 0; padding: 10px 0;
    box-shadow: var(--sh-md);
  }
  .nav-has-dropdown:hover .nav-dropdown { display: flex; }
  .nav-dropdown li { border: none; }
  .nav-dropdown a {
    display: block; padding: 12px 22px; font-size: 14px; font-weight: 900; letter-spacing: 0.01em;
    text-transform: uppercase; color: var(--ink); text-decoration: none; white-space: nowrap;
    transition: color 0.2s, background 0.2s;
  }
  .nav-dropdown a:hover { color: var(--orange); background: var(--mist); }
  @media (max-width: 900px) {
    /* Das Untermenü ist ebenfalls ein <ul> in der Navigation und erbt sonst
       den Weichzeichner der Menüfläche — doppelt angewandt würde er den
       Bereich sichtbar aufhellen. Hier also ausdrücklich abschalten. */
    .nav-dropdown {
      display: flex; position: static; border: none; box-shadow: none;
      min-width: auto; padding: 0; background: transparent;
      backdrop-filter: none; -webkit-backdrop-filter: none;
      border-radius: 0; overflow: visible;
    }
    .nav-dropdown li { border-bottom: 1px solid rgba(21,19,15,0.07); }
    .nav-dropdown li:last-child { border-bottom: none; }
    /* Die Untereinträge müssen kleiner bleiben als die Hauptpunkte. Weil
       "nav.is-stuck ul a" spezifischer ist als ".nav-dropdown a", würden sie
       sonst nach dem Scrollen auf die große Schrift springen — deshalb hier
       dieselbe Kombination mitführen.
       nowrap gilt nur für das Aufklappmenü am Desktop: im schmalen Panel
       müssen lange Einträge umbrechen dürfen, sonst laufen sie seitlich raus. */
    .nav-dropdown a,
    nav.is-stuck .nav-dropdown a,
    nav.is-open .nav-dropdown a {
      padding: 13px 20px;
      font-size: 15px;
      color: var(--graphite);
      text-align: center;
      white-space: normal;
    }
    .nav-dropdown a:hover { background: transparent; }
    nav ul li { text-align: center; }
    nav ul a { text-align: center; }
    .nav-has-dropdown { border-bottom: 1px solid rgba(21,19,15,0.07); }
  }

  /* ═══════════════════════════════════════════════════════════
     UNTERSEITEN
     Eigene Komponenten der Leistungsseiten, auf dieselbe
     Gestaltungssprache gebracht wie die Startseite.
     ═══════════════════════════════════════════════════════════ */

  /* ── Sektionsflächen ── */
  .sec-light { background: linear-gradient(180deg, var(--paper) 0%, #FDFBF8 100%); border-bottom: 1px solid var(--rule); }
  .sec-beige { background: linear-gradient(165deg, var(--beige-1) 0%, var(--beige-2) 42%, var(--beige-3) 100%); border-bottom: 1px solid var(--rule); }
  .sec-dark {
    background:
      radial-gradient(ellipse 1000px 600px at 82% 8%, rgba(217,92,26,0.14), transparent 62%),
      linear-gradient(158deg, #262119 0%, var(--ink) 52%, #0C0A07 100%);
    border-bottom: 1px solid var(--rule-dark);
  }
  .sec-inner { padding: 104px 60px; }

  .sec-dark .section-eyebrow { color: var(--orange-light); }
  .sec-dark .eb-ring { border-color: var(--orange-light); }
  .section-title.light { color: var(--white); }
  .section-sub.light { color: #9A958C; }

  /* ── Seiten-Hero (gleiches Bild wie auf der Startseite) ── */
  .page-hero {
    position: relative;
    background: var(--ink) url("leistungen.jpg") center center / cover no-repeat;
    isolation: isolate;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(100deg,
      rgba(15,13,10,0.84) 0%,
      rgba(15,13,10,0.78) 38%,
      rgba(15,13,10,0.66) 62%,
      rgba(15,13,10,0.56) 100%);
  }
  .hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    align-items: center; gap: 72px;
    min-height: 620px;
    padding: 168px 60px 88px;
    max-width: var(--maxw); margin: 0 auto;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans); font-size: 14px; font-weight: 900;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange-light); margin-bottom: 20px;
  }
  .hero-badge .eb-ring { border-color: var(--orange-light); }
  .page-hero h1 {
    font-family: var(--font-sans); font-weight: 900;
    font-size: clamp(30px, 4.4vw, 62px);
    line-height: 1.04; color: var(--white);
    letter-spacing: -0.03em; margin-bottom: 22px; text-transform: uppercase;
  }
  .page-hero h1 span { color: var(--orange-light); font-style: italic; }
  .hero-lead { font-size: 19px; line-height: 1.65; color: #D6D0C6; margin-bottom: 36px; max-width: 540px; }

  .hero-right-box {
    background: rgba(15,13,10,0.45);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--r-lg);
    padding: 36px 40px;
  }
  .hero-right-box h3 {
    font-family: var(--font-sans); font-weight: 900; font-size: 15px;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--orange-light); margin-bottom: 20px;
  }
  .hero-right-box ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .hero-right-box ul li { font-size: 15px; color: #D6D0C6; padding-left: 22px; position: relative; line-height: 1.5; }
  .hero-right-box ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange-light); }

  /* ── Karten ── */
  .cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .cards-4-dark { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

  .card {
    background: linear-gradient(160deg, var(--paper) 0%, #FBF8F4 100%);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 38px 34px;
    box-shadow: var(--sh-sm);
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  }
  .card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: var(--sh-lg); }

  .card-light {
    background: linear-gradient(160deg, #FBF8F4 0%, var(--mist) 100%);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 38px 34px;
    box-shadow: var(--sh-sm);
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  }
  .card-light:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: var(--sh-lg); }

  .card-dark {
    background: linear-gradient(155deg, rgba(255,255,255,0.075) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: var(--r-lg);
    padding: 36px 30px;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  }
  .card-dark:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: var(--sh-dark); }

  .card-num {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(145deg, #2E2A23, var(--ink));
    border: 2px solid var(--orange);
    color: var(--white);
    font-size: 15px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    box-shadow: var(--sh-md);
    transition: transform 0.28s, background 0.28s, box-shadow 0.28s;
  }
  .card:hover .card-num {
    transform: scale(1.12) translateY(-3px);
    background: linear-gradient(145deg, var(--orange-light), var(--orange));
    box-shadow: var(--sh-orange-hi);
  }

  .card-bar { width: 32px; height: 3px; border-radius: 2px; background: var(--orange); margin-bottom: 26px; transition: width 0.28s; }
  .card-dark:hover .card-bar { width: 56px; }

  .card-tag {
    font-family: var(--font-sans); font-size: 13px; font-weight: 900;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 14px;
  }

  .card h3, .card-light h3, .card-dark h3 {
    font-family: var(--font-sans); font-weight: 900; font-size: 21px;
    text-transform: uppercase; letter-spacing: -0.01em;
    color: var(--ink); margin-bottom: 12px; line-height: 1.15;
  }
  .card-dark h3 { color: var(--white); }
  .card p, .card-light p { font-size: 15px; line-height: 1.6; color: var(--graphite); }
  .card-dark p { font-size: 15px; line-height: 1.6; color: #9A958C; }

  /* ── Vorgehensschritte ── */
  .steps-h { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .step-h { position: relative; cursor: default; }
  .step-num {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(145deg, #2E2A23, var(--ink));
    border: 2px solid var(--orange);
    color: var(--white);
    font-size: 15px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    box-shadow: var(--sh-md);
    transition: transform 0.28s, background 0.28s, box-shadow 0.28s;
  }
  .step-h:hover .step-num {
    transform: scale(1.12) translateY(-3px);
    background: linear-gradient(145deg, var(--orange-light), var(--orange));
    box-shadow: var(--sh-orange-hi);
  }
  .step-label {
    font-family: var(--font-sans); font-size: 17px; font-weight: 900;
    color: var(--orange); margin-bottom: 12px;
    letter-spacing: 0.02em; text-transform: uppercase;
  }
  .step-h p { font-size: 15px; line-height: 1.6; color: var(--graphite); }

  /* ── Kundenstimmen (Markup der Unterseiten) ── */
  .testimonials-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .testimonial p { font-size: 17px; font-weight: 500; line-height: 1.5; color: var(--ink); }
  .testimonial span {
    font-family: var(--font-sans); font-size: 13px; font-weight: 900;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange);
  }

  /* ── Fragen & Antworten ── */
  .faq-list { display: flex; flex-direction: column; gap: 14px; }
  .faq-item {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    padding: 26px 30px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .faq-item:hover { transform: translateX(8px); box-shadow: var(--sh-md); border-color: var(--orange); }
  .faq-q { font-family: var(--font-sans); font-weight: 900; font-size: 20px; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
  .faq-a { font-size: 16px; line-height: 1.65; color: var(--graphite); }

  /* ── Fließtext & Listen ── */
  .two-col { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }

  /* Kasten neben dem Fließtext. Die Oberkante steht 10px über der ersten
     Textzeile — so wirkt der Kasten trotz Innenabstand auf gleicher Höhe. */
  .side-box {
    background: linear-gradient(160deg, #FBF8F4 0%, var(--mist) 100%);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 36px 40px;
    box-shadow: var(--sh-sm);
    margin-top: -10px;
    transition: box-shadow 0.28s, border-color 0.28s;
  }
  .side-box:hover { box-shadow: var(--sh-md); border-color: var(--orange); }
  .side-box > div + div { margin-top: 30px; }
  .side-box ul + .card-tag { margin-top: 30px; }
  .side-box .card-tag { margin-bottom: 14px; }
  .side-box ul:last-child { margin-bottom: 0; }
  .sec-dark .side-box {
    background: linear-gradient(155deg, rgba(255,255,255,0.075) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.11);
    box-shadow: none;
  }
  .sec-dark .side-box li { color: var(--white); }

  .prose { font-size: 17px; line-height: 1.75; color: var(--graphite); }
  .prose p { margin-bottom: 18px; }
  .prose p:last-child { margin-bottom: 0; }
  .check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
  .check-list li { font-size: 16px; line-height: 1.55; color: var(--ink); font-weight: 700; padding-left: 24px; position: relative; }
  .check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); }
  .arrow-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .arrow-list li { font-size: 15px; line-height: 1.55; color: var(--ink); font-weight: 700; padding-left: 20px; position: relative; }
  .arrow-list li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: 12px; }

  /* ── Abschluss-Kontaktblock ── */
  .cta-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
  .cta-wrap h2 {
    font-family: var(--font-sans); font-weight: 900;
    font-size: clamp(28px, 3.2vw, 48px); color: var(--white);
    text-transform: uppercase; letter-spacing: -0.02em;
    line-height: 1.08; margin-bottom: 18px;
  }
  .cta-wrap h2 span { color: var(--orange-light); font-style: italic; }
  .cta-wrap > div > p { font-size: 18px; line-height: 1.65; color: #9A958C; margin-bottom: 30px; }
  .cta-right { display: flex; flex-direction: column; gap: 12px; }
  .cta-item {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px;
    background: linear-gradient(155deg, rgba(255,255,255,0.075) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: var(--r-md);
    transition: transform 0.25s, border-color 0.25s;
  }
  .cta-item:hover { transform: translateX(8px); border-color: var(--orange); }
  .cta-icon { width: 20px; height: 20px; fill: var(--orange-light); flex-shrink: 0; }
  .cta-label {
    font-family: var(--font-sans); font-size: 12px; font-weight: 900;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange-light); margin-bottom: 4px;
  }
  .cta-val { font-family: var(--font-sans); font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: -0.01em; }

  /* ── Zweitbutton auf dunklem Grund ── */
  .btn-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
  .btn-ghost {
    border: 2px solid rgba(255,255,255,0.35);
    color: var(--white);
    padding: 16px 34px;
    font-family: var(--font-sans); font-size: 16px; font-weight: 900;
    letter-spacing: 0.01em; text-transform: uppercase; text-decoration: none;
    display: inline-block; border-radius: var(--r-btn);
    transition: border-color 0.25s, color 0.25s, transform 0.25s, background 0.25s;
  }
  .btn-ghost:hover {
    border-color: var(--orange-light); color: var(--orange-light);
    background: rgba(255,255,255,0.05); transform: translateY(-3px);
  }

  /* ── CTA-Band auf dunklem Grund (Unterseiten) ── */
  .sec-dark .cta-band {
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.12);
    box-shadow: var(--sh-dark);
  }
  .sec-dark .cta-band .cta-band-text { color: var(--white); }
  .sec-dark .cta-band .cta-band-text span { color: var(--orange-light); }

  /* ── Unterseiten: schmalere Viewports ── */
  @media (max-width: 1100px) {
    .sec-inner { padding: 76px 28px; }
    .hero-inner { grid-template-columns: 1fr; gap: 44px; min-height: auto; padding: 128px 28px 64px; }
    .page-hero::before {
      background: linear-gradient(180deg,
        rgba(15,13,10,0.84) 0%,
        rgba(15,13,10,0.80) 55%,
        rgba(15,13,10,0.76) 100%);
    }
    .cards-3, .cards-4-dark, .steps-h, .testimonials-g { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .cards-2, .cards-3, .cards-4-dark, .steps-h, .two-col, .cta-wrap, .testimonials-g { grid-template-columns: 1fr; }
    .hero-right-box { padding: 26px 24px; }
    .side-box { margin-top: 0; padding: 28px 26px; }
    .btn-ghost, .btn-actions .btn-primary { width: 100%; text-align: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    .card:hover, .card-light:hover, .card-dark:hover, .faq-item:hover,
    .cta-item:hover, .btn-ghost:hover, .card:hover .card-num, .step-h:hover .step-num {
      transform: none !important;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     RECHTLICHE SEITEN (Impressum, Datenschutz)
     ═══════════════════════════════════════════════════════════ */

  /* Kompakter Bild-Hero: hier steht .page-width direkt im .page-hero,
     nicht wie auf den Leistungsseiten ein .hero-inner. */
  .page-hero > .page-width {
    position: relative; z-index: 1;
    padding: 156px 60px 76px;
    max-width: var(--maxw); margin: 0 auto;
  }
  .page-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans); font-size: 14px; font-weight: 900;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange-light); margin-bottom: 18px;
  }
  .page-eyebrow .eb-ring { border-color: var(--orange-light); }

  .content-wrap {
    max-width: 900px; margin: 0 auto;
    padding: 88px 60px;
  }
  .content-section {
    margin-bottom: 24px;
    padding: 36px 40px;
    background: linear-gradient(160deg, var(--paper) 0%, #FBF8F4 100%);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    transition: box-shadow 0.28s, border-color 0.28s;
  }
  .content-section:hover { box-shadow: var(--sh-md); border-color: var(--orange); }
  .content-section:last-child { margin-bottom: 0; }

  .content-section h2 {
    font-family: var(--font-sans); font-weight: 900;
    font-size: 24px; line-height: 1.2; letter-spacing: -0.01em;
    text-transform: uppercase; color: var(--ink);
    margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
  }
  .content-section h2::before {
    content: ''; width: 10px; height: 10px; border-radius: 50%;
    border: 2px solid var(--orange); flex-shrink: 0;
  }
  .content-section h3 {
    font-family: var(--font-sans); font-weight: 900; font-size: 16px;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--ink); margin-top: 28px; margin-bottom: 10px;
  }
  .content-section p { font-size: 16px; line-height: 1.75; color: var(--graphite); margin-bottom: 14px; }
  .content-section p:last-child { margin-bottom: 0; }
  .content-section a {
    color: var(--orange); text-decoration: none; font-weight: 700;
    border-bottom: 1px solid transparent; transition: border-color 0.2s;
  }
  .content-section a:hover { border-bottom-color: var(--orange); }
  .content-section ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
  .content-section ul li {
    font-size: 16px; line-height: 1.65; color: var(--graphite);
    padding-left: 22px; position: relative;
  }
  .content-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: 12px; }

  .info-box {
    background: linear-gradient(160deg, #FBF8F4 0%, var(--mist) 100%);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    padding: 26px 30px;
    margin: 20px 0;
  }
  .info-box .label {
    font-family: var(--font-sans); font-size: 12px; font-weight: 900;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 8px; display: block;
  }

  @media (max-width: 1100px) {
    .page-hero > .page-width { padding: 128px 28px 60px; }
    .content-wrap { padding: 64px 28px; }
    .content-section { padding: 28px 26px; }
  }
