/* =====================================================================
   IT-Haus Westerwald – gemeinsames Stylesheet der Unterseiten

   Der erste Teil ist eine 1:1-Uebernahme des Design-Systems aus dem
   Inline-<style> der Startseite (index.html): Farben, Schriften,
   Abstaende, Header, Footer, Buttons, Karten, Animationen.
   Die Startseite laedt dieses Stylesheet NICHT – sie bleibt
   unveraendert und dient hier ausschliesslich als Referenz.

   Der zweite Teil ("UNTERSEITEN") ergaenzt Komponenten, die nur die
   neuen Landingpages benoetigen.
   ===================================================================== */

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-600.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-700.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-var.woff2') format('woff2');
    font-weight: 100 900; font-style: normal; font-display: swap;
  }

  :root {
    --bg: #f7f7f4;
    --surface: #ffffff;
    --ink: #101918;
    --ink-2: #2c3a38;
    --muted: #5f6b69;
    --teal: #0c645c;
    --teal-dark: #00403e;
    --lime: #85c50c;
    --lime-dark: #72a909;
    --lime-tint: #f3f9e3;
    --line: rgba(16, 25, 24, 0.09);
    --radius: 20px;
    --shadow-sm: 0 1px 2px rgba(16,25,24,.04), 0 8px 24px rgba(16,25,24,.05);
    --shadow-md: 0 2px 4px rgba(16,25,24,.05), 0 20px 48px rgba(16,25,24,.10);
    --font-display: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', -apple-system, sans-serif;
  }

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

  body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-x: clip;
  }
  body.menu-open { overflow: hidden; }

  ::selection { background: var(--lime); color: var(--teal-dark); }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

  h1, h2, h3 { font-family: var(--font-display); }

  /* ---------- Header ---------- */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: border-color .3s;
    border-bottom: 1px solid transparent;
    padding: 14px 0;
  }
  /* Glas-Effekt liegt auf einem Pseudo-Element, damit der Header kein
     Containing Block fuer das fixierte Mobilmenue wird */
  header::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: rgba(247, 247, 244, .85);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    opacity: 0; transition: opacity .3s;
  }
  header.scrolled { border-bottom-color: var(--line); }
  header.scrolled::before { opacity: 1; }
  .nav { display: flex; align-items: center; justify-content: space-between; }
  .logo { display: flex; align-items: center; text-decoration: none; }
  .logo img { height: 72px; width: auto; display: block; }

  .nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
  .nav-links a {
    color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: .95rem;
    padding: 9px 16px; border-radius: 999px; transition: background .2s, color .2s;
  }
  .nav-links a:hover { background: rgba(16,25,24,.05); color: var(--ink); }
  .nav-links a.active:not(.nav-cta) { background: var(--lime-tint); color: var(--teal-dark); font-weight: 600; }
  .nav-links a.nav-cta {
    background: var(--teal-dark); color: #fff; font-weight: 600; margin-left: 10px;
    padding: 10px 20px; transition: background .2s, transform .2s;
  }
  .nav-links a.nav-cta:hover { background: var(--teal); transform: translateY(-1px); }

  .burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
  .burger span {
    display: block; width: 25px; height: 2.5px; background: var(--ink); border-radius: 2px;
    margin: 5px 0; transition: transform .3s, opacity .3s, background .3s;
  }
  .burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding: 168px 0 96px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
  }
  .hero-bg::before {
    content: ""; position: absolute; width: 720px; height: 720px;
    right: -200px; top: -240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(133,197,12,.13) 0%, transparent 65%);
  }
  .hero-bg::after {
    content: ""; position: absolute; width: 600px; height: 600px;
    left: -260px; bottom: -300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(12,100,92,.10) 0%, transparent 65%);
  }
  .hero-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(16,25,24,.13) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse 60% 55% at 78% 36%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 78% 36%, #000 0%, transparent 70%);
  }

  .hero .container {
    position: relative;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5.2vw, 3.9rem);
    line-height: 1.08; font-weight: 700; letter-spacing: -1.5px;
    margin-bottom: 26px; color: var(--ink);
  }
  .hero h1 .mark {
    position: relative; white-space: nowrap; color: var(--teal);
  }
  .hero h1 .mark svg {
    position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: .26em;
  }

  .hero p.lead {
    font-size: 1.13rem; color: var(--muted); max-width: 520px; margin-bottom: 38px;
  }

  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 30px; border-radius: 999px; text-decoration: none;
    font-weight: 600; font-size: 1rem; font-family: var(--font-body);
    transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  }
  .btn-primary {
    background: var(--teal-dark); color: #fff;
    box-shadow: 0 10px 28px rgba(0,64,62,.28);
  }
  .btn-primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,64,62,.34); }
  .btn-primary .arr { transition: transform .2s; }
  .btn-primary:hover .arr { transform: translateX(3px); }
  .btn-ghost {
    background: transparent; color: var(--ink); border: 1.5px solid rgba(16,25,24,.18);
  }
  .btn-ghost:hover { border-color: var(--ink); background: rgba(16,25,24,.03); }

  .hero-trust { display: flex; gap: 26px; flex-wrap: wrap; }
  .hero-trust span {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: .9rem; font-weight: 500; color: var(--ink-2);
  }
  .hero-trust .tick {
    width: 19px; height: 19px; border-radius: 50%; flex-shrink: 0;
    background: var(--lime-tint); display: grid; place-items: center;
  }
  .hero-trust .tick svg { width: 11px; height: 11px; stroke: var(--lime-dark); stroke-width: 3.4; }

  /* Hero visual: monitoring composition */
  .hero-visual { position: relative; min-height: 460px; }
  .hero-visual .ww-mark {
    position: absolute; width: 130%; max-width: none; top: 50%; left: 55%;
    transform: translate(-50%, -50%);
    opacity: .08; pointer-events: none; user-select: none;
  }
  .panel {
    position: relative;
    background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
    box-shadow: var(--shadow-md); padding: 28px;
    max-width: 420px; margin: 0 auto;
  }
  .panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 6px;
  }
  .panel-head b { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
  .live {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .76rem; font-weight: 600; color: var(--lime-dark);
    background: var(--lime-tint); padding: 5px 12px; border-radius: 999px;
  }
  .live i {
    width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
    animation: pulse 2s ease-out infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(133,197,12,.5); }
    70% { box-shadow: 0 0 0 7px rgba(133,197,12,0); }
    100% { box-shadow: 0 0 0 0 rgba(133,197,12,0); }
  }
  .panel-row {
    display: flex; align-items: center; gap: 14px; padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .panel-row:last-child { border-bottom: 0; }
  .panel-ic {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: rgba(12,100,92,.07); display: grid; place-items: center;
  }
  .panel-ic svg { width: 20px; height: 20px; stroke: var(--teal); }
  .panel-row .t { flex: 1; }
  .panel-row .t b { display: block; font-size: .92rem; font-weight: 600; }
  .panel-row .t small { color: var(--muted); font-size: .8rem; }
  .status {
    font-size: .74rem; font-weight: 600; padding: 4px 11px; border-radius: 999px;
    background: var(--lime-tint); color: var(--lime-dark); white-space: nowrap;
  }

  .float-chip {
    position: absolute; display: flex; align-items: center; gap: 12px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow-md); padding: 13px 18px;
    animation: floaty 6s ease-in-out infinite;
  }
  .float-chip .ic {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    display: grid; place-items: center;
    background: var(--lime); color: var(--teal-dark);
  }
  .float-chip .ic svg { width: 18px; height: 18px; stroke: var(--teal-dark); }
  .float-chip b { display: block; font-size: .85rem; }
  .float-chip small { color: var(--muted); font-size: .76rem; }
  .chip-1 { top: -52px; right: -14px; animation-delay: 0s; }
  .chip-2 { bottom: -20px; left: -14px; animation-delay: 3s; }
  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
  }

  /* ---------- Marquee ---------- */
  .marquee {
    background: var(--surface);
    border-block: 1px solid var(--line);
    overflow: hidden; padding: 20px 0;
  }
  .marquee-track {
    display: flex; gap: 0; width: max-content;
    animation: scrollx 46s linear infinite;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes scrollx { to { transform: translateX(-50%); } }
  .marquee-group { display: flex; align-items: center; }
  .marquee-group span {
    font-family: var(--font-display); font-weight: 600; font-size: .88rem;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-2);
    padding: 0 14px; white-space: nowrap;
  }
  .marquee-group i {
    width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
    display: inline-block; margin: 0 14px; flex-shrink: 0;
  }

  /* ---------- Sections ---------- */
  section { padding: 110px 0; }
  .sec-head {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: end;
    margin-bottom: 64px;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--teal); font-weight: 600; font-size: .82rem;
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px;
  }
  .eyebrow::before {
    content: ""; width: 26px; height: 2px; background: var(--lime); border-radius: 2px;
  }
  .sec-head h2, .sec-title {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700;
    letter-spacing: -1px; line-height: 1.15; color: var(--ink);
  }
  .sec-head p { color: var(--muted); font-size: 1.05rem; padding-bottom: 6px; }

  /* ---------- Leistungen ---------- */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .service-card {
    position: relative;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 28px 30px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .service-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-md);
    border-color: rgba(133,197,12,.55);
  }
  .service-ic {
    width: 52px; height: 52px; border-radius: 14px; margin-bottom: 22px;
    background: rgba(12,100,92,.07); display: grid; place-items: center;
    transition: background .25s;
  }
  .service-card:hover .service-ic { background: var(--lime); }
  .service-ic svg { width: 25px; height: 25px; stroke: var(--teal); transition: stroke .25s; }
  .service-card:hover .service-ic svg { stroke: var(--teal-dark); }
  .service-card h3 { font-size: 1.13rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -.2px; }
  .service-card p { color: var(--muted); font-size: .93rem; line-height: 1.6; }

  /* ---------- Prozess (dark) ---------- */
  .process { background: transparent; padding-top: 0; }
  .process-inner {
    background: linear-gradient(135deg, #07221f 0%, var(--teal-dark) 60%, #0a4f46 100%);
    border-radius: 32px; padding: 84px 64px;
    position: relative; overflow: hidden;
  }
  .process-inner::before {
    content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%;
    right: -140px; top: -200px;
    background: radial-gradient(circle, rgba(133,197,12,.16) 0%, transparent 65%);
  }
  .process .eyebrow { color: var(--lime); }
  .process h2 { color: #fff; margin-bottom: 18px; }
  .process .sub { color: rgba(255,255,255,.66); max-width: 560px; margin-bottom: 58px; }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; position: relative; }
  .step { position: relative; }
  .step .n {
    font-family: var(--font-display); font-weight: 700; font-size: 2.6rem;
    line-height: 1; margin-bottom: 18px;
    color: transparent; -webkit-text-stroke: 1.5px rgba(133,197,12,.85);
  }
  .step h3 { color: #fff; font-size: 1.08rem; font-weight: 600; margin-bottom: 10px; }
  .step p { color: rgba(255,255,255,.62); font-size: .92rem; line-height: 1.6; }

  /* ---------- Partner ---------- */
  .partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .partner-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 32px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .partner-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-md);
    border-color: rgba(133,197,12,.55);
  }
  .partner-card.wide { grid-column: 1 / -1; }
  .partner-logo {
    height: 60px; display: flex; align-items: center; margin-bottom: 22px;
  }
  .partner-logo img { max-height: 100%; max-width: 210px; width: auto; object-fit: contain; }
  .partner-card h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -.2px; margin-bottom: 4px; }
  .partner-card .role {
    display: block; color: var(--teal); font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
  }
  .partner-card p { color: var(--muted); font-size: .94rem; line-height: 1.65; }
  .partner-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
  .partner-tags span {
    font-size: .78rem; font-weight: 600; color: var(--teal);
    background: rgba(12,100,92,.07); border: 1px solid rgba(12,100,92,.10);
    padding: 5px 13px; border-radius: 999px; white-space: nowrap;
  }
  .partner-note {
    margin-top: 28px; text-align: center; color: var(--muted); font-size: .86rem;
  }

  /* ---------- Über uns ---------- */
  .about .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
  .about h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 22px; }
  .about p { color: var(--muted); margin-bottom: 18px; font-size: 1.02rem; }
  .checklist { list-style: none; margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px; }
  .checklist li {
    display: flex; gap: 11px; align-items: flex-start; padding: 9px 0;
    font-weight: 500; font-size: .95rem;
  }
  .checklist .tick {
    width: 21px; height: 21px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
    background: var(--lime-tint); display: grid; place-items: center;
  }
  .checklist .tick svg { width: 11px; height: 11px; stroke: var(--lime-dark); stroke-width: 3.4; }

  .about-visual { position: relative; }
  .about-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 28px;
    box-shadow: var(--shadow-md); overflow: hidden;
  }
  .about-card .top {
    background: linear-gradient(140deg, #07221f, var(--teal-dark) 55%, #0c5a50);
    padding: 44px 40px 40px; position: relative; overflow: hidden;
  }
  .about-card .top img {
    position: absolute; width: 75%; right: -12%; top: 50%; transform: translateY(-50%);
    opacity: .2;
  }
  .about-card .top .pin {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
    color: #fff; font-size: .8rem; font-weight: 600;
    padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
    backdrop-filter: blur(4px);
  }
  .about-card .top .pin svg { width: 13px; height: 13px; stroke: var(--lime); }
  .about-card .top b {
    display: block; color: #fff; font-family: var(--font-display);
    font-size: 1.45rem; font-weight: 600; letter-spacing: -.4px; line-height: 1.3;
    position: relative; max-width: 320px;
  }
  .about-card .bottom { padding: 10px 40px 14px; }
  .about-fact {
    display: flex; align-items: center; gap: 16px; padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .about-fact:last-child { border-bottom: 0; }
  .about-fact .ic {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: rgba(12,100,92,.07); display: grid; place-items: center;
  }
  .about-fact .ic svg { width: 20px; height: 20px; stroke: var(--teal); }
  .about-fact b { display: block; font-size: .95rem; }
  .about-fact small { color: var(--muted); font-size: .84rem; }

  /* ---------- CTA ---------- */
  .cta { padding-top: 0; }
  .cta-band {
    background: var(--ink);
    background: linear-gradient(120deg, #0b1514 0%, #07221f 55%, var(--teal-dark) 100%);
    border-radius: 32px; padding: 72px 64px; color: #fff;
    display: flex; align-items: center; justify-content: space-between; gap: 48px;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
    right: -100px; bottom: -200px;
    background: radial-gradient(circle, rgba(133,197,12,.2) 0%, transparent 65%);
  }
  .cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; letter-spacing: -.8px; margin-bottom: 12px; }
  .cta-band p { color: rgba(255,255,255,.66); max-width: 480px; }
  .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; position: relative; }
  .btn-lime {
    background: var(--lime); color: var(--teal-dark);
    box-shadow: 0 10px 28px rgba(133,197,12,.3);
  }
  .btn-lime:hover { background: #97da17; transform: translateY(-2px); }
  .btn-white-ghost { border: 1.5px solid rgba(255,255,255,.32); color: #fff; }
  .btn-white-ghost:hover { border-color: #fff; background: rgba(255,255,255,.07); }

  /* ---------- Kontakt ---------- */
  .contact .container { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
  .contact h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 18px; }
  .contact .intro { color: var(--muted); font-size: 1.04rem; margin-bottom: 26px; }
  .contact-note {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--lime-tint); border: 1px solid rgba(133,197,12,.3);
    border-radius: 14px; padding: 16px 18px; font-size: .9rem; color: var(--ink-2);
  }
  .contact-note svg { width: 18px; height: 18px; stroke: var(--lime-dark); flex-shrink: 0; margin-top: 2px; }
  .contact-cards { display: grid; gap: 18px; }
  .contact-card {
    display: flex; align-items: center; gap: 20px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 28px; text-decoration: none; color: var(--ink);
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .contact-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md);
    border-color: rgba(133,197,12,.55);
  }
  .contact-card .ic {
    width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
    background: rgba(12,100,92,.07); display: grid; place-items: center;
    transition: background .25s;
  }
  .contact-card:hover .ic { background: var(--lime); }
  .contact-card .ic svg { width: 24px; height: 24px; stroke: var(--teal); transition: stroke .25s; }
  .contact-card:hover .ic svg { stroke: var(--teal-dark); }
  .contact-card { min-width: 0; }
  .contact-card > span:not(.ic) { min-width: 0; }
  .contact-card small { display: block; color: var(--muted); font-size: .84rem; margin-bottom: 2px; }
  .contact-card b { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; letter-spacing: -.2px; overflow-wrap: anywhere; }
  .contact-card .go { margin-left: auto; color: var(--muted); transition: transform .25s, color .25s; }
  .contact-card:hover .go { transform: translateX(4px); color: var(--teal); }

  /* ---------- Footer ---------- */
  footer {
    background: #0b1514; color: rgba(255,255,255,.7); padding: 64px 0 30px;
  }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
  .footer-logo {
    display: inline-flex; background: #fff; border-radius: 14px; padding: 10px 16px;
    margin-bottom: 20px;
  }
  .footer-logo img { height: 46px; width: auto; display: block; }
  footer h4 {
    color: #fff; font-family: var(--font-display); font-weight: 600;
    font-size: .98rem; margin-bottom: 18px;
  }
  footer p { font-size: .93rem; max-width: 320px; }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 10px; }
  footer a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; font-size: .93rem; }
  footer a:hover { color: var(--lime); }
  .social {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
    color: rgba(255,255,255,.85) !important; font-weight: 600;
  }
  .social svg { width: 19px; height: 19px; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    font-size: .85rem; color: rgba(255,255,255,.45);
  }
  .footer-bottom .legal a { margin-left: 20px; font-size: .85rem; }

  /* ---------- Mobile Slider (Leistungen & Partner) ---------- */
  .slider-nav { display: none; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }
  .slider-btn {
    width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
    background: var(--surface); border: 1.5px solid rgba(16,25,24,.18);
    display: grid; place-items: center; color: var(--ink);
    transition: background .2s, border-color .2s, opacity .2s;
  }
  .slider-btn svg { width: 20px; height: 20px; }
  .slider-btn:active { background: var(--lime); border-color: var(--lime); }
  .slider-btn.disabled { opacity: .3; pointer-events: none; }

  /* Sprungziele: fixierten Header beim Anker-Scroll freihalten */
  #prozess, #kontakt { scroll-margin-top: 90px; }

  /* ---------- Reveal ---------- */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .float-chip, .live i { animation: none; }
    .marquee-track { animation: none; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1020px) {
    .hero .container { grid-template-columns: 1fr; gap: 70px; }
    .hero { padding: 150px 0 80px; }
    .hero-visual { min-height: 0; max-width: 480px; margin: 0 auto; width: 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .sec-head { grid-template-columns: 1fr; gap: 14px; }
    .about .container, .contact .container { grid-template-columns: 1fr; gap: 52px; }
    .process-inner { padding: 64px 40px; }
    .cta-band { flex-direction: column; text-align: center; padding: 56px 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    /* Ab Tablet-Breite: Burger-Menü statt horizontaler Navigation */
    .burger { display: block; position: relative; }
    .nav-links {
      position: fixed; inset: 0; height: 100dvh; background: var(--bg);
      flex-direction: column; justify-content: center; gap: 14px;
      transform: translateX(100%); transition: transform .35s ease;
      z-index: 105;
    }
    .nav-links.open { transform: none; }
    .nav-links a { font-size: 1.3rem; }
    .nav-links a.nav-cta { margin-left: 0; margin-top: 10px; }
  }
  @media (max-width: 680px) {
    body { font-size: 16px; }
    section { padding: 80px 0; }
    .steps, .checklist { grid-template-columns: 1fr; }

    /* Leistungen & Partner als Slider mit Pfeiltasten */
    .services-grid, .partner-grid {
      display: flex; gap: 18px; overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none; -webkit-overflow-scrolling: touch;
    }
    .services-grid::-webkit-scrollbar, .partner-grid::-webkit-scrollbar { display: none; }
    .services-grid > .service-card, .partner-grid > .partner-card {
      flex: 0 0 100%; min-width: 0; scroll-snap-align: start;
    }
    /* Karten im Slider nicht per Scroll-Animation ausblenden */
    .services-grid > .reveal, .partner-grid > .reveal { opacity: 1; transform: none; }
    .slider-nav { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .process-inner { padding: 52px 26px; border-radius: 24px; }
    .cta-band { padding: 48px 26px; border-radius: 24px; }
    .chip-1 { right: -4px; top: -44px; }
    .chip-2 { left: -4px; }
    .logo img { height: 58px; }

    /* Hero-Inhalt am Handy mittig ausrichten */
    .hero .container > div:first-child { text-align: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
  }
/* =====================================================================
   UNTERSEITEN – zusaetzliche Komponenten
   Ergaenzt das oben stehende Design-System der Startseite.
   Wird ausschliesslich von den Unterseiten geladen; die Startseite
   nutzt weiterhin ihr eigenes, unveraendertes Inline-CSS.
   ===================================================================== */

/* ---------- Navigation: Leistungen-Dropdown ---------- */
.nav-links .has-drop { position: relative; }
.nav-links .has-drop > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-links .has-drop > a .chev { width: 13px; height: 13px; transition: transform .2s; opacity: .7; }
.nav-links .has-drop:hover > a .chev,
.nav-links .has-drop:focus-within > a .chev { transform: rotate(180deg); }

.drop {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 120;
  min-width: 320px; padding: 10px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-md);
  display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
/* .open kommt vom Skript: Geraete ohne Hover (Tablet im Querformat)
   koennen das Menue sonst gar nicht oeffnen. */
.has-drop:hover .drop,
.has-drop:focus-within .drop,
.has-drop.open .drop { opacity: 1; visibility: visible; transform: none; }
.nav-links .has-drop.open > a .chev { transform: rotate(180deg); }
.drop a {
  display: block; padding: 11px 14px; border-radius: 12px;
  font-size: .92rem; font-weight: 600; color: var(--ink-2); text-decoration: none;
  transition: background .18s, color .18s;
}
.drop a small {
  display: block; font-weight: 400; font-size: .8rem; color: var(--muted);
  margin-top: 2px; line-height: 1.45;
}
.drop a:hover { background: rgba(16,25,24,.045); color: var(--ink); }
.drop a[aria-current="page"] { background: var(--lime-tint); color: var(--teal-dark); }

/* Grid-Kinder duerfen nicht durch breite Inhalte (Tabellen, Panels) den
   Track ueber die Containerbreite dehnen – sonst wird Inhalt abgeschnitten,
   weil html/body overflow-x: clip setzen. */
.subhero .container > *,
.split > * { min-width: 0; }
.tablewrap { min-width: 0; }

/* ---------- Sub-Hero ---------- */
.subhero { position: relative; padding: 146px 0 84px; overflow: hidden; }
.subhero .container {
  position: relative;
  display: grid; grid-template-columns: 1.06fr .94fr; gap: 68px; align-items: center;
}
.subhero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  line-height: 1.12; font-weight: 700; letter-spacing: -1.3px;
  margin-bottom: 22px; color: var(--ink);
}
.subhero p.lead { font-size: 1.11rem; color: var(--muted); max-width: 540px; margin-bottom: 34px; }
.subhero .hero-actions { margin-bottom: 34px; }

/* ---------- Breadcrumb ---------- */
.crumbs { margin-bottom: 20px; }
.crumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; font-size: .84rem; color: var(--muted);
}
.crumbs a { color: var(--muted); text-decoration: none; transition: color .2s; }
.crumbs a:hover { color: var(--teal); }
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .45; }
.crumbs [aria-current="page"] { color: var(--ink-2); font-weight: 600; }

/* ---------- Antwort-Block ("Kurz gesagt") ---------- */
.answer { padding-top: 0; }
.answer-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 46px 50px;
  max-width: 940px; margin: 0 auto; text-align: center;
}
.answer-card p {
  font-size: 1.09rem; color: var(--ink-2); line-height: 1.68;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.answer-card p + p { margin-top: 14px; }
.answer-card p strong { color: var(--ink); font-weight: 600; }

/* Mit drei Kontaktwegen (Telefon, WhatsApp, E-Mail) braucht der Knopfblock
   mehr Platz. Etwas kompaktere Knoepfe und ein kleinerer Abstand lassen der
   Ueberschrift genug Raum. */
.cta-band { gap: 36px; }
.cta-actions .btn { padding: 15px 24px; }

/* ---------- Abschnittsleiste (bleibt unter dem Kopf stehen) ----------
   --secnav-top und --anchor-offset setzt site.js exakt anhand der
   gemessenen Kopfhoehe. Die Werte hier sind der Rueckfall ohne
   JavaScript und beruecksichtigen die Logohoehe (72px + 2*14px Padding). */
:root { --secnav-top: 100px; --anchor-offset: 176px; }

/* Helles Band wie das Marquee der Startseite, nur halbtransparent, damit
   der Inhalt darunter durchscheint.

   Die Leiste steht im Markup direkt hinter dem Kopf. Weil der Kopf
   position:fixed ist und damit aus dem Fluss faellt, liegt die natuerliche
   Position der Leiste bei y=0 – also oberhalb der sticky-Schwelle. Sie
   klebt deshalb bereits beim Laden unter der Kopfzeile und bleibt dort.
   Ihre 59px im Fluss halten gleichzeitig den Platz frei, den der Hero
   darunter braucht. */
.sectionnav {
  position: sticky; top: var(--secnav-top); z-index: 90;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-block: 1px solid var(--line);
  transition: border-top-color .3s;
}
/* Sobald der Kopf seinen Rahmen zeigt, stossen dort zwei 1px-Linien
   aneinander – dann den oberen Rahmen der Leiste ausblenden. */
header.scrolled + .sectionnav { border-top-color: transparent; }
.sectionnav-track {
  position: relative;
  max-width: 1200px; margin: 0 auto; padding: 9px 28px;
  display: flex; align-items: center; gap: 6px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.sectionnav-track::-webkit-scrollbar { display: none; }
.sectionnav a {
  flex: 0 0 auto;
  padding: 8px 16px; border-radius: 999px; text-decoration: none;
  font-size: .875rem; font-weight: 600; color: var(--ink-2);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.sectionnav a:hover { background: rgba(16,25,24,.055); color: var(--ink); }
.sectionnav a.active { background: var(--lime-tint); color: var(--teal-dark); }
.sectionnav a:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ---------- Zweispaltige Inhaltsbloecke ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.split.rev .split-text { order: 2; }
.split-text h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.35rem); font-weight: 700;
  letter-spacing: -.9px; line-height: 1.16; margin-bottom: 20px;
}
.split-text p { color: var(--muted); margin-bottom: 16px; font-size: 1.02rem; }
.split-text p:last-child { margin-bottom: 0; }
.split-text p strong { color: var(--ink-2); font-weight: 600; }

/* Abschnitt ohne Schaubild: mittig gesetzt statt mit halb leerer Spalte */
.split.solo {
  grid-template-columns: 1fr; max-width: 880px;
  margin-left: auto; margin-right: auto; text-align: center;
}
.split.solo .split-text p { max-width: 740px; margin-left: auto; margin-right: auto; }
/* Liste als Block zentriert, Einträge darin linksbündig – so liegen die
   Häkchen auf einer Linie, statt zu zickzacken. */
.split.solo .checklist {
  max-width: 620px; margin-left: auto; margin-right: auto;
  gap: 4px 36px; text-align: left;
}

/* Info-Karte als visueller Anker in .split */
.info-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow-md); padding: 30px 32px;
}
.info-card .info-head {
  display: flex; align-items: center; gap: 13px;
  padding-bottom: 18px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
}
.info-card .info-head .ic {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0;
  background: rgba(12,100,92,.07); display: grid; place-items: center;
}
.info-card .info-head .ic svg { width: 21px; height: 21px; stroke: var(--teal); }
.info-card .info-head b {
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; letter-spacing: -.2px;
}
.info-row {
  display: flex; align-items: flex-start; gap: 13px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 0; }
.info-row .tick {
  width: 21px; height: 21px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: var(--lime-tint); display: grid; place-items: center;
}
.info-row .tick svg { width: 11px; height: 11px; stroke: var(--lime-dark); stroke-width: 3.4; fill: none; }
.info-row .t b { display: block; font-size: .93rem; font-weight: 600; margin-bottom: 1px; }
.info-row .t small { color: var(--muted); font-size: .84rem; line-height: 1.55; display: block; }

/* ---------- Kernaussage ---------- */
.keynote {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--lime-tint); border: 1px solid rgba(133,197,12,.32);
  border-radius: var(--radius); padding: 32px 36px;
}
.keynote > svg { width: 26px; height: 26px; stroke: var(--lime-dark); flex-shrink: 0; margin-top: 3px; fill: none; }
.keynote p {
  font-family: var(--font-display); font-weight: 600; font-size: 1.18rem;
  line-height: 1.5; letter-spacing: -.3px; color: var(--teal-dark);
}

/* ---------- Vergleichstabelle ---------- */
.tablewrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
table.cmp { width: 100%; border-collapse: collapse; min-width: 580px; font-size: .95rem; }
/* In der schmalen Spalte eines .split-Blocks passt die Tabelle ohne
   seitliches Scrollen – die 580px gelten nur fuer volle Containerbreite. */
.split table.cmp { min-width: 0; }
.split table.cmp th, .split table.cmp td { padding: 15px 18px; }
table.cmp th, table.cmp td {
  padding: 17px 24px; text-align: left; border-bottom: 1px solid var(--line);
  vertical-align: top;
  /* lange deutsche Komposita duerfen umbrechen, statt die Tabelle zu dehnen */
  overflow-wrap: break-word;
}
table.cmp thead th {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--teal-dark); background: rgba(12,100,92,.045); white-space: nowrap;
}
table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp td:first-child { font-weight: 600; color: var(--ink); }
table.cmp td { color: var(--muted); }

/* ---------- Einsatzgebiet ---------- */
.region-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 46px 50px;
  max-width: 880px; margin: 0 auto; text-align: center;
}
.region-card h2 {
  font-size: clamp(1.55rem, 2.6vw, 1.95rem); font-weight: 700;
  letter-spacing: -.7px; line-height: 1.2; margin-bottom: 16px;
}
.region-card p {
  color: var(--muted); font-size: 1rem;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.region-card p + p { margin-top: 14px; }
.region-card p strong { color: var(--ink-2); font-weight: 600; }
.region-hint {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; max-width: 900px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] { border-color: rgba(133,197,12,.55); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 26px; font-family: var(--font-display); font-weight: 600;
  font-size: 1.03rem; letter-spacing: -.2px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:focus-visible { outline: 2px solid var(--teal); outline-offset: -2px; border-radius: 18px; }
.faq-item summary .chev {
  margin-left: auto; flex-shrink: 0; width: 20px; height: 20px; margin-top: 3px;
  stroke: var(--teal); transition: transform .25s; fill: none;
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .a { padding: 0 26px 24px; color: var(--muted); font-size: .97rem; line-height: 1.7; }
.faq-item .a p + p { margin-top: 12px; }
.faq-item .a strong { color: var(--ink-2); font-weight: 600; }

/* ---------- Verwandte Leistungen ---------- */
a.service-card { display: block; text-decoration: none; color: var(--ink); }
a.service-card h3 { color: var(--ink); }
.card-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  color: var(--teal); font-weight: 600; font-size: .89rem;
}
.card-more svg { width: 15px; height: 15px; transition: transform .2s; fill: none; stroke: currentColor; }
a.service-card:hover .card-more svg { transform: translateX(3px); }

/* ---------- Karten-Grid-Varianten ---------- */
.services-grid.two { grid-template-columns: repeat(2, 1fr); }
.services-grid.four { grid-template-columns: repeat(4, 1fr); }

/* ---------- Checklist-Variante ---------- */
.checklist.one { grid-template-columns: 1fr; }

/* ---------- Redaktionshinweis (vor Veroeffentlichung entfernen) ---------- */
.editnote {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff8e1; border: 1.5px dashed #e0b400; border-radius: 16px;
  padding: 22px 26px; margin-bottom: 40px; font-size: .94rem; color: #5c4600;
}
.editnote svg { width: 22px; height: 22px; stroke: #b78900; flex-shrink: 0; margin-top: 2px; fill: none; }
.editnote b { display: block; font-family: var(--font-display); margin-bottom: 4px; color: #4a3800; }
.ph-card {
  background: var(--surface); border: 1.5px dashed rgba(16,25,24,.18);
  border-radius: var(--radius); padding: 32px 28px;
}
.ph-card .ph-tag {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  background: rgba(16,25,24,.05); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.ph-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; color: var(--ink-2); }
.ph-card dl { display: grid; gap: 10px; font-size: .9rem; }
.ph-card dt { font-weight: 600; color: var(--ink-2); }
.ph-card dd { color: var(--muted); }

/* ---------- Sprungziele: fixierten Header freihalten ---------- */
/* Sprungziele: Kopf UND Abschnittsleiste freihalten. Ohne den
   ":not(.subhero)"-Ausschluss wuerde auch der Hero versetzt springen.
   (Die frueher hier stehende Regel begann mit "main " und griff nie –
   die generierten Seiten haben kein <main>-Element.) */
section[id]:not(.subhero) { scroll-margin-top: var(--anchor-offset); }

/* ---------- Responsive: Unterseiten ---------- */
@media (max-width: 1020px) {
  .subhero { padding: 132px 0 68px; }
  .subhero .container { grid-template-columns: 1fr; gap: 56px; }
  .answer-card { padding: 34px 30px; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 48px; }
  .split.rev .split-text { order: 0; }
  .region-card { padding: 36px 30px; }
  .services-grid.four { grid-template-columns: repeat(2, 1fr); }

  /* Vollbild-Menue: Dropdown dauerhaft als Gruppe sichtbar, zentriert wie
     die uebrigen Menuepunkte (Startseiten-Optik). */
  .nav-links {
    justify-content: flex-start; overflow-y: auto;
    padding: 104px 26px 48px; gap: 6px;
  }
  /* Im Vollbild-Menue ist die Gruppe eingeklappt und oeffnet sich beim
     Tippen auf "Leistungen" (siehe site.js). Der Pfeil zeigt den Zustand. */
  .nav-links .has-drop { align-self: stretch; }
  .nav-links .has-drop > a { display: block; text-align: center; }
  .nav-links .has-drop > a .chev {
    display: inline-block; margin-left: 8px; vertical-align: -2px;
    width: 15px; height: 15px; opacity: .55;
  }
  .nav-links .has-drop.open > a .chev { transform: rotate(180deg); opacity: .8; }
  .drop {
    position: static; min-width: 0; width: 100%;
    background: rgba(16,25,24,.035); border: 0; box-shadow: none;
    border-radius: 16px; gap: 2px;
    opacity: 1; visibility: visible; transform: none;
    /* eingeklappter Ausgangszustand */
    max-height: 0; padding: 0 8px; margin: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease, margin .3s ease;
  }
  .nav-links .has-drop.open .drop {
    max-height: 520px; padding: 8px; margin: 4px 0 10px;
  }
  .drop a { padding: 9px 12px; font-size: 1.02rem; text-align: center; }
  .drop a small { display: none; }

  @media (prefers-reduced-motion: reduce) {
    .drop { transition: none; }
  }
}

@media (max-width: 680px) {
  /* In der Mobilansicht entfaellt die Abschnittsleiste: Kopf plus Leiste
     haetten dort rund 23% der Bildschirmhoehe belegt. Die Abschnitte sind
     ueber normales Scrollen erreichbar, die Seiten sind ueber das
     Burger-Menue navigierbar.
     Ohne Leiste braucht das Sprungziel nur den Kopf freizuhalten. */
  .sectionnav { display: none; }
  :root { --secnav-top: 86px; --anchor-offset: 106px; }
  .subhero { padding: 122px 0 60px; }
  .subhero .container > div:first-child { text-align: left; }
  /* Einspaltig gibt es keine leere Spalte zu füllen – linksbündig liest
     sich bei kurzen Zeilen deutlich ruhiger als zentriert. */
  .answer-card, .split.solo { text-align: left; }
  .split.solo .checklist { max-width: none; }
  .answer-card { padding: 28px 24px; }
  .split { gap: 40px; }
  .region-card { padding: 30px 24px; text-align: left; }
  .info-card { padding: 26px 24px; }
  .keynote { padding: 26px 24px; gap: 15px; }
  .keynote p { font-size: 1.06rem; }
  .faq-item summary { padding: 19px 20px; font-size: .99rem; gap: 14px; }
  .faq-item .a { padding: 0 20px 21px; }
  table.cmp th, table.cmp td { padding: 14px 18px; }

  /* Auf Unterseiten stapeln die Karten statt horizontal zu scrollen */
  .services-grid.stack {
    display: grid; grid-template-columns: 1fr; gap: 18px;
    overflow: visible; scroll-snap-type: none;
  }
  .services-grid.stack > .service-card { flex: initial; }
  .services-grid.stack > .reveal { opacity: 0; transform: translateY(28px); }
  .services-grid.stack > .reveal.visible { opacity: 1; transform: none; }
}
