  /* Inter Variable – selbst gehostet (DSGVO-konform) */
  @font-face { font-family: "Inter"; font-style: normal; font-weight: 100 900; font-display: swap; src: url("/assets/fonts/InterVariable.woff2") format("woff2"); }
  @font-face { font-family: "Inter"; font-style: italic; font-weight: 100 900; font-display: swap; src: url("/assets/fonts/InterVariable-Italic.woff2") format("woff2"); }
  /* ============ Tokens – Markenschema haas-consulting.ch / EasyWeb (hell) ============ */
  :root {
    --bg:        #ffffff;
    --bg-soft:   #f5f7fb;
    --surface:   #ffffff;
    --border:    #e7ebf2;
    --border-soft:#eef1f7;
    --text:      #0c1424;
    --text-soft: #3f4a5f;
    --text-mut:  #6b7689;
    --accent:    #4f46e5;   /* Indigo (Marke) */
    --accent-strong:#4338ca;
    --violet:    #7c3aed;
    --cyan:      #06b6d4;
    --accent-soft: rgba(79,70,229,.08);
    --glow:      rgba(79,70,229,.16);
    --good:      #16a34a;
    --shadow-sm: 0 4px 14px rgba(15,23,42,.06);
    --shadow-md: 0 14px 40px rgba(15,23,42,.09);
    --shadow-lg: 0 30px 70px rgba(15,23,42,.13);
    --shadow-glow: 0 20px 50px -12px rgba(79,70,229,.35);
    --maxw: 1160px;
    --r: 16px;
    --r-lg: 24px;
    --fs-display: clamp(2.5rem, 5.8vw, 4.4rem);
    --fs-h2: clamp(1.85rem, 3.3vw, 2.7rem);
    --font-display: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'Inter', system-ui, sans-serif;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--bg); color: var(--text);
    font-family: var(--font-body); font-size: 17px; line-height: 1.65;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
  }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

  h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; text-wrap: balance; margin: 0; color: var(--text); }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

  .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .eyebrow { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .55rem; }
  .eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); opacity: .6; }
  .muted { color: var(--text-mut); }
  .soft { color: var(--text-soft); }
  .grad { background: linear-gradient(100deg, var(--accent) 0%, var(--violet) 55%, var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }

  /* ============ Buttons ============ */
  .btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-body); font-weight: 600; font-size: .98rem; padding: .85rem 1.4rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease; white-space: nowrap; }
  .btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-glow); }
  .btn-primary:hover { transform: translateY(-2px); background: var(--accent-strong); }
  .btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
  .btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }

  /* ============ Nav ============ */
  header.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: color-mix(in srgb, var(--bg) 82%, transparent); border-bottom: 1px solid var(--border-soft); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--text); }
  .brand .mark { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--cyan)); color: #fff; font-weight: 800; font-size: .9rem; }
  .logo-img { height: 34px; width: auto; display: block; }
  .nav-links { display: flex; align-items: center; gap: 2rem; }
  .nav-links a.link { font-size: .95rem; color: var(--text-soft); transition: color .16s; }
  .nav-links a.link:hover { color: var(--text); }
  .nav-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--border); background: var(--surface); border-radius: 12px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
  .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  @media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .nav-links {
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: .2rem;
      background: var(--surface); border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-md); padding: .8rem 24px 1.3rem; display: none;
    }
    .nav-links.is-open { display: flex; }
    .nav-links a.link { font-size: 1.05rem; padding: .75rem .2rem; color: var(--text); border-bottom: 1px solid var(--border-soft); }
    .nav-links a.link:hover { color: var(--accent); }
    .nav-links .btn { margin-top: .8rem; justify-content: center; padding: .85rem 1.4rem; }
  }

  /* ============ Hero ============ */
  .hero { position: relative; padding: clamp(3.2rem, 7vw, 5.5rem) 0 clamp(2.6rem, 5vw, 4rem); overflow: hidden; }
  .hero::before { content: ""; position: absolute; inset: -10% 0 auto 0; height: 640px; background: radial-gradient(50% 55% at 20% 25%, var(--glow), transparent 70%), radial-gradient(42% 48% at 90% 8%, rgba(6,182,212,.12), transparent 70%); pointer-events: none; z-index: 0; }
  .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
  @media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

  .hero h1 { font-size: var(--fs-display); font-weight: 800; margin: 1.25rem 0 0; }
  .hero .sub { margin-top: 1.35rem; font-size: 1.16rem; color: var(--text-soft); max-width: 40ch; }

  .promptlabel { margin-top: 1.9rem; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: var(--text-mut); text-transform: uppercase; }
  .promptcard { margin-top: .7rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: .8rem; box-shadow: var(--shadow-md); }
  .promptcard .field { display: flex; align-items: center; gap: .7rem; background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: 16px; padding: .95rem 1.05rem; }
  .promptcard .field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); background: var(--surface); }
  .promptcard .caret { color: var(--accent); font-family: var(--font-mono); }
  .promptcard input { flex: 1; background: transparent; border: 0; outline: 0; color: var(--text); font-family: var(--font-mono); font-size: .95rem; min-width: 0; }
  .promptcard input::placeholder { color: var(--text-mut); }
  .promptcard .go { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; border: 0; cursor: pointer; display: grid; place-items: center; background: var(--accent); color: #fff; transition: transform .16s, background .16s; }
  .promptcard .go:hover { transform: translateX(2px); background: var(--accent-strong); }
  .chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: .8rem .3rem .2rem; }
  .chip { font-family: var(--font-mono); font-size: .74rem; color: var(--text-soft); background: transparent; border: 1px solid var(--border); border-radius: 999px; padding: .4rem .8rem; cursor: pointer; transition: .16s; }
  .chip:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
  .hero .hint { margin-top: 1rem; font-family: var(--font-mono); font-size: .76rem; color: var(--text-mut); display: flex; align-items: center; gap: .5rem; }
  .hero .hint .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px color-mix(in srgb, var(--good) 20%, transparent); }

  /* Browser-Frame mit "sich bauender" Website */
  .frame { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
  .frame .bar { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; border-bottom: 1px solid var(--border-soft); background: var(--bg-soft); }
  .frame .bar i { width: 11px; height: 11px; border-radius: 50%; background: #d3dae7; }
  .frame .url { margin-left: .6rem; font-family: var(--font-mono); font-size: .72rem; color: var(--text-mut); }
  .site { padding: 1.15rem; display: flex; flex-direction: column; gap: .8rem; }
  .site .b { border-radius: 8px; background: linear-gradient(90deg, #eef1f7, #e3e8f2); opacity: 0; transform: translateY(8px); animation: build .5s ease forwards; }
  .site .b1 { height: 30px; width: 46%; animation-delay: .2s; }
  .site .b2 { height: 54px; width: 88%; background: linear-gradient(100deg, color-mix(in srgb, var(--accent) 30%, #eef1f7), #eef1f7); animation-delay: .45s; }
  .site .b3 { height: 12px; width: 74%; animation-delay: .7s; }
  .site .row { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; }
  .site .card { height: 74px; border-radius: 10px; background: #eef1f7; opacity: 0; transform: translateY(8px) scale(.98); animation: build .5s ease forwards; }
  .site .card:nth-child(1){ animation-delay: .95s; } .site .card:nth-child(2){ animation-delay: 1.08s; } .site .card:nth-child(3){ animation-delay: 1.21s; }
  @keyframes build { to { opacity: 1; transform: none; } }

  /* ============ Trust strip ============ */
  .trust { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--bg-soft); }
  .trust-inner { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; align-items: center; justify-content: space-between; padding: 1.1rem 0; }
  .trust .lbl { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mut); }
  .trust .items { display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; }
  .trust .items b { font-family: var(--font-display); font-weight: 700; color: var(--text); }
  .trust .items span { color: var(--text-soft); font-size: .95rem; }

  /* ============ Sections ============ */
  section.block { padding: clamp(3.6rem, 8vw, 6.5rem) 0; }
  .band { background: var(--bg-soft); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
  .head { max-width: 660px; margin-bottom: 2.8rem; }
  .head h2 { font-size: var(--fs-h2); margin-top: 1rem; }
  .head p { margin-top: 1rem; color: var(--text-soft); font-size: 1.1rem; }

  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  @media (max-width: 820px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

  .card2 { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.7rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
  .card2:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); box-shadow: var(--shadow-md); }
  .card2 h3 { font-size: 1.32rem; margin-bottom: .6rem; }
  .card2 p { color: var(--text-soft); font-size: .98rem; }
  .ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1.2rem; background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); color: var(--accent); }
  .ico svg { width: 22px; height: 22px; }
  ul.ticks { list-style: none; padding: 0; margin: 1.1rem 0 0; display: flex; flex-direction: column; gap: .55rem; }
  ul.ticks li { display: flex; gap: .6rem; font-size: .95rem; color: var(--text-soft); }
  ul.ticks li::before { content: "→"; color: var(--accent); font-family: var(--font-mono); }

  /* Produkt-Beweis */
  .proof { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  @media (max-width: 820px) { .proof { grid-template-columns: 1fr; } }
  .product { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.9rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
  .product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .product::after { content: ""; position: absolute; right: -50px; top: -50px; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(circle, var(--glow), transparent 70%); }
  .product .tag { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); position: relative; z-index: 1; }
  .product h3 { font-size: 1.5rem; margin: .7rem 0 .6rem; position: relative; z-index: 1; }
  .product p { color: var(--text-soft); font-size: 1rem; position: relative; z-index: 1; }
  .product .lnk { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-weight: 600; color: var(--accent); position: relative; z-index: 1; }
  .product .lnk:hover { text-decoration: underline; }

  /* Prozess */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: s; }
  @media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }
  .step { counter-increment: s; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 1.4rem; box-shadow: var(--shadow-sm); }
  .step .n { font-family: var(--font-mono); font-size: .8rem; color: var(--accent); }
  .step .n::before { content: "0" counter(s) " /"; }
  .step h3 { font-size: 1.13rem; margin: .7rem 0 .4rem; }
  .step p { font-size: .92rem; color: var(--text-soft); }

  /* Testimonial + Über */
  .quote { background: linear-gradient(135deg, var(--surface), var(--bg-soft)); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.2rem; box-shadow: var(--shadow-sm); }
  .quote p { font-family: var(--font-display); font-weight: 500; font-size: 1.32rem; line-height: 1.4; letter-spacing: -.01em; color: var(--text); }
  .quote .who { margin-top: 1.3rem; display: flex; align-items: center; gap: .8rem; color: var(--text-soft); font-size: .92rem; }
  .quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--cyan)); }
  .ph { font-family: var(--font-mono); font-size: .68rem; color: var(--text-mut); border: 1px dashed var(--border); border-radius: 6px; padding: .1rem .45rem; }

  .founder { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; align-items: center; }
  @media (max-width: 700px) { .founder { grid-template-columns: 1fr; } }
  .founder .photo { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: var(--bg-soft); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
  .photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* Final CTA */
  .cta-final { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(2.4rem, 5vw, 4rem); text-align: center; box-shadow: var(--shadow-md); }
  .cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 130% at 50% 0%, var(--glow), transparent 60%); pointer-events: none; }
  .cta-final h2 { position: relative; font-size: var(--fs-h2); }
  .cta-final p { position: relative; margin: 1rem auto 0; max-width: 46ch; color: var(--text-soft); font-size: 1.12rem; }
  .cta-actions { position: relative; display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
  .cta-final .meta { position: relative; margin-top: 1.3rem; font-family: var(--font-mono); font-size: .78rem; color: var(--text-mut); }

  footer.foot { border-top: 1px solid var(--border-soft); padding: 2.4rem 0; }
  .foot-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; color: var(--text-mut); font-size: .9rem; }
  .foot-inner a:hover { color: var(--text); }

  /* Preise / Zwei Wege */
  .routes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: stretch; }
  @media (max-width: 820px) { .routes { grid-template-columns: 1fr; } }
  .route { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.9rem; box-shadow: var(--shadow-sm); }
  .route.feature { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); box-shadow: var(--shadow-md); }
  .route .rtag { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
  .route h3 { font-size: 1.45rem; margin: .55rem 0 .35rem; }
  .route > p { color: var(--text-soft); font-size: .97rem; }
  .route .price { margin: 1.1rem 0 .1rem; font-size: 1.02rem; color: var(--text); font-weight: 600; }
  .route .price b { font-size: 1.55rem; color: var(--accent); }
  .tiers { display: flex; gap: .55rem; margin: 1.1rem 0 .2rem; flex-wrap: wrap; }
  .tier { flex: 1 1 0; min-width: 84px; border: 1px solid var(--border); border-radius: 12px; padding: .7rem .5rem; text-align: center; background: var(--bg-soft); }
  .tier.best { border-color: var(--accent); background: var(--accent-soft); }
  .tier .tn { font-size: .75rem; color: var(--text-mut); }
  .tier .tp { font-weight: 700; font-size: 1.02rem; }
  .tier .tp small { font-weight: 500; font-size: .68rem; color: var(--text-mut); }
  .route .foot { margin-top: auto; padding-top: 1.3rem; }
  .note { font-size: .82rem; color: var(--text-mut); margin-top: .8rem; }

  /* FAQ */
  .faq { display: grid; gap: .8rem; max-width: 840px; }
  .faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-sm); overflow: hidden; }
  .faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: 300; line-height: 1; transition: transform .2s ease; }
  .faq details[open] summary::after { transform: rotate(45deg); }
  .faq .a { padding: 0 1.3rem 1.2rem; color: var(--text-soft); font-size: .96rem; line-height: 1.6; }

  /* Kontakt */
  .contact { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2.6rem; align-items: start; }
  @media (max-width: 860px) { .contact { grid-template-columns: 1fr; gap: 1.6rem; } }
  .trustlist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: flex; flex-direction: column; gap: .9rem; }
  .trustlist li { display: flex; gap: .7rem; font-size: .95rem; color: var(--text-soft); align-items: flex-start; }
  .trustlist .ci { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-top: 1px; }
  .trustlist .ci svg { width: 15px; height: 15px; }
  .cform { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 1.7rem; }
  .fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 520px) { .fgrid { grid-template-columns: 1fr; } }
  .ff { display: flex; flex-direction: column; margin-bottom: 1rem; }
  .ff.full { grid-column: 1 / -1; }
  .cform label { font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
  .cform .req { color: var(--accent); }
  .cform input, .cform select, .cform textarea { width: 100%; padding: .8rem .95rem; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-soft); font-family: inherit; font-size: 1rem; color: var(--text); transition: border-color .16s, box-shadow .16s, background .16s; }
  .cform input:focus, .cform select:focus, .cform textarea:focus { outline: none; background: var(--surface); border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
  .cform textarea { min-height: 120px; resize: vertical; }
  .consent { display: flex; align-items: flex-start; gap: .6rem; margin: .3rem 0 1.2rem; font-size: .9rem; color: var(--text-soft); }
  .consent input { width: 1.15rem; height: 1.15rem; margin-top: .15rem; accent-color: var(--accent); flex: 0 0 auto; }
  .hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
  .formnote { font-size: .8rem; color: var(--text-mut); margin-top: .9rem; }

  .rv { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .rv.in { opacity: 1; transform: none; }

  /* Cookie-Banner */
  .cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 100; max-width: 660px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 1.1rem 1.2rem; }
  .cookie-banner.is-hidden { display: none; }
  .cookie-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
  .cookie-inner p { font-size: .86rem; color: var(--text-soft); flex: 1 1 300px; margin: 0; }
  .cookie-inner a { color: var(--accent); font-weight: 600; }
  .cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
  .cookie-actions .btn { padding: .6rem 1.05rem; font-size: .9rem; }

  /* ============ Unterseiten: Seiten-Kopf ============ */
  .page-hero { padding: clamp(2.4rem, 6vw, 4rem) 0 .5rem; }
  .page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
  .page-hero > p { margin-top: 1rem; color: var(--text-soft); font-size: 1.12rem; max-width: 60ch; }

  /* ============ Blog / Insights ============ */
  .post-list { list-style: none; padding: 0; margin: 2.6rem 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  @media (max-width: 720px) { .post-list { grid-template-columns: 1fr; } }
  .post-card { display: flex; flex-direction: column; height: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
  .post-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); box-shadow: var(--shadow-md); }
  .post-card-meta { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-mut); }
  .post-card-dot { color: var(--border); }
  .post-card-title { font-size: 1.28rem; margin: .7rem 0 .5rem; line-height: 1.22; color: var(--text); }
  .post-card-excerpt { color: var(--text-soft); font-size: .96rem; }
  .post-card-tags { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-wrap: wrap; gap: .4rem; }
  .post-card-tags li { font-size: .72rem; color: var(--text-soft); background: var(--bg-soft); border: 1px solid var(--border); border-radius: 999px; padding: .25rem .7rem; }
  .post-card-cta { margin-top: auto; padding-top: 1.1rem; color: var(--accent); font-weight: 600; font-size: .92rem; }

  /* ============ Artikel ============ */
  .article-container { max-width: 720px; margin: 0 auto; }
  .article-header { margin-bottom: 2rem; }
  .article-breadcrumb { color: var(--accent); font-weight: 600; }
  .article-title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 1rem 0; }
  .article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text-mut); }
  .article-tags { list-style: none; padding: 0; margin: 1.2rem 0 0; display: flex; flex-wrap: wrap; gap: .4rem; }
  .article-tags li { font-size: .72rem; color: var(--text-soft); background: var(--bg-soft); border: 1px solid var(--border); border-radius: 999px; padding: .25rem .7rem; }
  .article-body { color: var(--text-soft); font-size: 1.08rem; line-height: 1.75; }
  .article-body h2 { font-size: 1.55rem; margin: 2.2rem 0 .8rem; color: var(--text); }
  .article-body h3 { font-size: 1.22rem; margin: 1.8rem 0 .6rem; color: var(--text); }
  .article-body p { margin: 0 0 1.1rem; }
  .article-body ul, .article-body ol { margin: 0 0 1.1rem; padding-left: 1.3rem; }
  .article-body li { margin-bottom: .5rem; }
  .article-body a { color: var(--accent); text-decoration: underline; }
  .article-body strong { color: var(--text); }
  .article-body em { font-style: italic; }
  .article-body code { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px; padding: .1rem .4rem; font-size: .9em; }
  .article-body blockquote { margin: 1.5rem 0; padding: .6rem 1.2rem; border-left: 3px solid var(--accent); color: var(--text); background: var(--bg-soft); border-radius: 0 8px 8px 0; }
  .article-share { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
  .article-share-label { font-size: .9rem; color: var(--text-mut); font-weight: 600; }
  .share-link { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .9rem; border: 1px solid var(--border); border-radius: 999px; font-size: .88rem; color: var(--text-soft); background: var(--surface); cursor: pointer; transition: .16s; }
  .share-link:hover { border-color: var(--accent); color: var(--accent); }
  .article-footer { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

  /* ============ Rechtstexte / Prosa ============ */
  .prose { max-width: 720px; margin: 0 auto; color: var(--text-soft); font-size: 1.02rem; line-height: 1.7; }
  .prose h2 { font-size: 1.4rem; margin: 2rem 0 .7rem; color: var(--text); }
  .prose h3 { font-size: 1.15rem; margin: 1.5rem 0 .5rem; color: var(--text); }
  .prose p { margin: 0 0 1rem; }
  .prose ul { margin: 0 0 1rem; padding-left: 1.3rem; }
  .prose li { margin-bottom: .45rem; }
  .prose a { color: var(--accent); }
  .prose strong { color: var(--text); }

  /* ============ Formular-Meldungen ============ */
  .formmsg { border-radius: var(--r); padding: 1rem 1.2rem; margin-bottom: 1.5rem; font-size: .96rem; }
  .formmsg.ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
  .formmsg.err { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
  .field-error { color: #b91c1c; font-size: .85rem; margin: .35rem 0 0; }
  .cform input.is-error, .cform textarea.is-error { border-color: #ef4444; background: #fef2f2; }

  /* Skip-Link */
  .skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 200; }
  .skip-link:focus { left: 0; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
