/* io.mates – Website Stylesheet
   Farben: Anthrazit #222222, Lime #c6ff34, Hintergrund #ffffff / #f6f6f4 */

@font-face {
  font-family: "Google Sans Flex";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/google-sans-flex-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Google Sans Flex";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/google-sans-flex-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #222222;
  --lime: #c6ff34;
  --lime-hover: #6b8c00;
  --paper: #ffffff;
  --paper-soft: #f6f6f4;
  --line: #ececec;
  --line-dark: #3a3a3a;
  --muted: #737373;
  --muted-2: #6f6f6f;
  --body: #4a4a4a;
  --body-2: #5a5a5a;
  --max: 1280px;
  --pad: 48px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: var(--paper); }
body {
  font-family: "Google Sans Flex", "Google Sans Text", "Google Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { color: var(--ink); text-decoration: none; transition: color .18s ease, background-color .18s ease, border-color .18s ease, opacity .18s ease; }
a:hover { color: var(--lime-hover); }
img { max-width: 100%; height: auto; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-weight: 600; text-wrap: balance; }

@keyframes iomFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
main { animation: iomFade .5s ease both; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  main { animation: none; }
}

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.eyebrow--lime { color: var(--lime); }
.eyebrow--dark { color: #9a9a9a; }
.index { font-size: 12px; letter-spacing: .12em; color: var(--muted); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--lime); color: var(--ink); padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 17px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--lime); color: var(--ink); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--ink); color: var(--lime); }
.btn--lime-to-white:hover { background: #fff; color: var(--ink); }
.btn--dark-to-white:hover { background: #fff; color: var(--ink); }
.btn--ghost { border-color: #d6d6d6; color: var(--ink); }
.btn--ghost:hover { border-color: #5b5b5b; color: #5b5b5b; }
.btn--ghost-soft { border-color: #cfcfc9; color: var(--ink); }
.btn--ghost-soft:hover { border-color: #5b5b5b; color: #5b5b5b; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { padding-top: 22px; padding-bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { display: flex; align-items: center; padding: 8px 0; }
.brand img { height: 26px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 38px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.nav a { color: var(--muted-2); padding: 6px 0; border-bottom: 1px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover { border-bottom-color: var(--ink); }
.nav a .sub { opacity: .45; margin-left: 8px; text-transform: none; letter-spacing: 0; }
.nav .btn { padding: 12px 22px; border-bottom: 0; color: var(--ink); }
.nav .btn:hover { color: var(--lime); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 16px; font: inherit; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); cursor: pointer;
}

/* Hero */
.hero { position: relative; overflow: hidden; padding-top: 120px; padding-bottom: 96px; }
.hero--sub { padding-top: 110px; padding-bottom: 90px; }
.glow {
  position: absolute; pointer-events: none;
  background: radial-gradient(closest-side, rgba(198, 255, 52, .85), rgba(198, 255, 52, 0) 70%);
  filter: blur(40px);
}
.hero .glow { top: 5px; left: 595px; width: 620px; height: 420px; opacity: .9; }
.hero--abomate .glow { right: -140px; left: auto; top: -60px; width: 660px; height: 460px; filter: blur(44px); opacity: 1; }
.hero--service .glow { left: 40%; top: -120px; width: 620px; height: 420px; filter: blur(46px); opacity: 1; }
.hero__inner { position: relative; max-width: 940px; }
.hero__kicker { display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 40px; }
.hero h1 { font-size: 88px; line-height: .96; letter-spacing: -.035em; }
.hero--sub h1 { margin-top: 34px; font-size: 84px; line-height: .98; max-width: 900px; }
.hero__lead { margin-top: 36px; max-width: 620px; font-size: 19px; line-height: 1.6; color: var(--body); }
.hero--sub .hero__lead { margin-top: 32px; }
.hero .btn-row { margin-top: 48px; }
.hero--sub .btn-row { margin-top: 44px; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 110px; }
.facts > div + div { border-left: 1px solid var(--line); padding-left: 32px; }
.facts .index { text-transform: uppercase; }
.facts p { margin-top: 10px; font-size: 17px; color: #333; }

/* Zweispalter mit Label links */
.split { display: grid; grid-template-columns: 320px 1fr; gap: 80px; border-top: 1px solid var(--line); padding-top: 96px; }
.split__body { max-width: 760px; }
.split h2 { font-size: 44px; line-height: 1.1; letter-spacing: -.025em; }
.split p { margin-top: 28px; font-size: 18px; line-height: 1.65; color: var(--body); }
.split p + p { margin-top: 20px; }
.section { padding-top: 96px; padding-bottom: 96px; }
.section--flush-top { padding-top: 0; }
.section--tight { padding-top: 0; padding-bottom: 96px; }

/* Dunkle Sektionen */
.dark { background: var(--ink); color: #fff; }
.dark a:not(.btn) { color: inherit; }
.dark .wrap { padding-top: 110px; padding-bottom: 110px; }
.dark__head { display: flex; align-items: baseline; justify-content: space-between; gap: 40px; flex-wrap: wrap; border-bottom: 1px solid var(--line-dark); padding-bottom: 28px; }
.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: 90px; margin-top: 60px; align-items: start; }
.product h2 { font-size: 68px; line-height: 1; letter-spacing: -.03em; }
.product p { margin-top: 28px; font-size: 20px; line-height: 1.6; color: #d8d8d8; }
.product .btn { margin-top: 44px; }
.rows { display: grid; gap: 1px; background: var(--line-dark); list-style: none; margin: 0; padding: 0; }
.rows > li { background: var(--ink); padding: 22px 0; display: flex; gap: 20px; align-items: baseline; }
.rows .index { color: var(--lime); letter-spacing: .1em; min-width: 28px; }
.rows span:last-child { font-size: 17px; color: #eaeaea; }

/* Sektionskopf */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.sec-head h2 { font-size: 44px; line-height: 1.1; letter-spacing: -.025em; max-width: 520px; }
.sec-head p { max-width: 460px; font-size: 17px; line-height: 1.6; color: #5f5f5f; }

/* Werte */
.values { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 120px; row-gap: 96px; margin-top: 80px; }
.card__top { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--ink); padding-top: 18px; }
.values h3 { margin-top: 30px; font-size: 26px; letter-spacing: -.015em; }
.values p { margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--body-2); max-width: 420px; }

/* CTA-Box */
.cta-box { position: relative; overflow: hidden; border-radius: 4px; background: var(--paper-soft); padding: 96px 64px; }
.cta-box--service { padding: 88px 64px; }
.cta-box .glow { left: -60px; bottom: -160px; width: 520px; height: 380px; filter: blur(36px); background: radial-gradient(closest-side, rgba(198, 255, 52, .9), rgba(198, 255, 52, 0) 70%); }
.cta-box--service .glow { left: auto; bottom: auto; right: -80px; top: -120px; width: 460px; height: 340px; filter: blur(34px); }
.cta-box__inner { position: relative; max-width: 660px; }
.cta-box h2 { font-size: 52px; line-height: 1.05; letter-spacing: -.03em; }
.cta-box--service h2 { font-size: 50px; }
.cta-box p { margin-top: 24px; font-size: 18px; line-height: 1.6; color: var(--body); }
.cta-box--service p { margin-top: 22px; }
.cta-box .btn-row { margin-top: 40px; }
.section--cta { padding-top: 0; padding-bottom: 120px; }

/* Abomate: Browserrahmen */
.frame { margin-top: 88px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.frame__bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #fafafa; }
.frame__bar span { width: 9px; height: 9px; border-radius: 50%; background: #dcdcdc; }
.frame__bar span:nth-child(3) { background: var(--lime); }
.frame__bar a { margin-left: 14px; font-size: 12px; color: #5f5f5f; letter-spacing: .06em; }
.frame__bar a:hover { color: var(--ink); }
.frame__shot { display: block; transition: opacity .2s ease; }
.frame__shot:hover { opacity: .82; }

/* Problem / Lösung */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); }
.compare > div { background: var(--ink); }
.compare > div:first-child { padding-right: 60px; }
.compare > div:last-child { padding-left: 60px; }
.compare h2 { margin-top: 26px; font-size: 40px; line-height: 1.1; letter-spacing: -.025em; }
.list { margin-top: 36px; display: grid; gap: 18px; }
.list > div { display: flex; gap: 16px; font-size: 17px; line-height: 1.55; color: #c9c9c9; }
.list--plus > div { color: #eaeaea; }
.list > div > span:first-child { color: #9a9a9a; flex: none; }
.list--plus > div > span:first-child { color: var(--lime); }

/* Funktionen */
.features { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 64px; row-gap: 80px; margin-top: 80px; }
.features .card__top { padding-top: 16px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); flex: none; }
.features h3 { margin-top: 26px; font-size: 23px; letter-spacing: -.015em; line-height: 1.2; }
.features p { margin-top: 14px; font-size: 15.5px; line-height: 1.6; color: var(--body-2); }
.features__note { background: var(--paper-soft); padding: 32px 32px 36px; display: flex; flex-direction: column; justify-content: flex-end; }
.features__note .eyebrow { letter-spacing: .12em; color: #6f6f6f; }
.features__note p { margin-top: 14px; font-size: 17px; line-height: 1.55; color: #333; }
.section--features { padding-top: 110px; padding-bottom: 110px; }

/* Sicherheit */
.trust { border-top: 1px solid var(--line); padding-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.trust h2 { margin-top: 20px; font-size: 34px; line-height: 1.15; letter-spacing: -.02em; }
.trust__list { display: grid; gap: 16px; }
.trust__list div { display: flex; gap: 14px; align-items: baseline; font-size: 16.5px; line-height: 1.55; color: var(--body); border-bottom: 1px solid #f0f0f0; padding-bottom: 14px; }
.trust__list .dot { width: 7px; height: 7px; }
.section--trust { padding-top: 0; padding-bottom: 110px; }

/* Lime-Banner */
.banner { background: var(--lime); }
.banner .wrap { padding-top: 96px; padding-bottom: 96px; display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.banner__text { max-width: 620px; }
.banner h2 { font-size: 52px; line-height: 1.05; letter-spacing: -.03em; color: var(--ink); }
.banner p { margin-top: 22px; font-size: 18px; line-height: 1.6; color: #2c2c2c; }
.banner .btn { padding: 18px 34px; }

/* Service */
.service-list { display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.service-list > div { background: #fff; padding: 44px 0; display: grid; grid-template-columns: 90px 1fr 1fr; gap: 48px; align-items: start; }
.service-list .index { padding-top: 8px; }
.service-list h3 { font-size: 30px; line-height: 1.15; letter-spacing: -.02em; }
.service-list p { font-size: 17px; line-height: 1.6; color: var(--body-2); max-width: 480px; }
.section--services { padding-top: 40px; padding-bottom: 110px; }
.section--service-cta { padding-top: 110px; padding-bottom: 110px; }

.coop { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 80px; }
.dark .coop-wrap { padding-top: 100px; padding-bottom: 100px; }
.coop h2 { max-width: 720px; font-size: 40px; line-height: 1.15; letter-spacing: -.025em; }
.coop__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); column-gap: 48px; row-gap: 48px; margin-top: 64px; min-width: 0; }
.coop__grid .eyebrow { letter-spacing: .12em; color: #9a9a9a; border-top: 1px solid #3d3d3d; padding-top: 16px; }
.coop__grid h3 { margin-top: 18px; font-size: 22px; letter-spacing: -.015em; }
.coop__grid p { margin-top: 12px; font-size: 16px; line-height: 1.6; color: #b8b8b8; }

/* Rechtliches */
.legal-hero { padding-top: 110px; }
.legal-hero h1 { margin-top: 34px; font-size: 72px; line-height: 1; letter-spacing: -.035em; }
.legal-hero p { margin-top: 28px; max-width: 620px; font-size: 18px; line-height: 1.6; color: var(--body-2); }
.section--legal { padding-top: 80px; padding-bottom: 110px; }
.legal-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 120px; row-gap: 64px; }
.legal-grid .eyebrow { letter-spacing: .12em; border-top: 1px solid var(--line); padding-top: 16px; }
.legal-grid > div:first-child .eyebrow { border-top-color: var(--ink); }
.legal-grid p { margin-top: 20px; font-size: 18px; line-height: 1.7; color: #333; }
.legal-grid a { color: var(--ink); text-decoration: underline; text-decoration-color: #cfcfcf; text-underline-offset: 3px; }
.legal-grid a:hover { color: #5b5b5b; }
.legal-grid--notes { margin-top: 96px; row-gap: 56px; border-top: 1px solid var(--line); padding-top: 56px; }
.legal-grid--notes h2 { font-size: 24px; letter-spacing: -.015em; }
.legal-grid--notes p { margin-top: 14px; font-size: 16.5px; line-height: 1.65; color: var(--body-2); }

.clauses { display: grid; gap: 56px; max-width: 860px; border-top: 1px solid var(--line); padding-top: 56px; }
.clause { display: grid; grid-template-columns: minmax(0, 96px) minmax(0, 1fr); column-gap: 48px; }
.clause__n { font-size: 13px; letter-spacing: .1em; color: var(--muted); padding-top: 6px; }
.clause h2 { font-size: 26px; letter-spacing: -.02em; line-height: 1.2; }
.clause__body { min-width: 0; }
.clause__text { display: grid; gap: 14px; margin-top: 18px; }
.clause__text p { font-size: 16.5px; line-height: 1.7; color: var(--body); }
.clause__text a { text-decoration: underline; text-decoration-color: #cfcfcf; text-underline-offset: 3px; }

/* Kontakt */
.contact { padding-top: 0; padding-bottom: 100px; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; border-top: 1px solid var(--line); padding-top: 100px; }
.contact h2 { margin-top: 26px; font-size: 46px; line-height: 1.08; letter-spacing: -.03em; }
.contact__text p { margin-top: 24px; max-width: 460px; font-size: 17px; line-height: 1.6; color: var(--body-2); }
.contact__rows { display: grid; align-content: start; }
.contact__rows > div { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0; font-size: 17px; }
.contact__rows > div + div { border-top: 1px solid var(--line); }
.contact__rows .label { color: var(--muted); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.contact__rows a:hover { color: #5b5b5b; }

/* Footer */
.site-footer { background: var(--ink); color: #fff; }
.site-footer .wrap { padding-top: 72px; padding-bottom: 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }
.site-footer img { height: 26px; width: auto; display: block; filter: invert(1); }
.site-footer .about { margin-top: 28px; max-width: 320px; font-size: 15px; line-height: 1.6; color: #a3a3a3; }
.footer-col { display: grid; gap: 12px; align-content: start; font-size: 15px; }
.footer-col .eyebrow { color: #9a9a9a; margin-bottom: 8px; }
.footer-col a { color: #e4e4e4; }
.footer-col a:hover { color: var(--lime); }
.site-footer .legal-line {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 24px; padding-bottom: 44px; border-top: 1px solid var(--line-dark);
  font-size: 12.5px; letter-spacing: .06em; color: #a3a3a3;
}

/* 404 */
.notfound { padding-top: 140px; padding-bottom: 140px; }
.notfound h1 { margin-top: 34px; font-size: 72px; line-height: 1; letter-spacing: -.035em; }
.notfound p { margin-top: 24px; max-width: 520px; font-size: 18px; line-height: 1.6; color: var(--body); }
.notfound .btn-row { margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero h1 { font-size: 72px; }
  .hero--sub h1 { font-size: 68px; }
  .product { grid-template-columns: 1fr; gap: 56px; }
  .product h2 { font-size: 56px; }
  .values { column-gap: 64px; row-gap: 72px; }
  .features { column-gap: 40px; row-gap: 56px; }
  .legal-grid { column-gap: 64px; }
}

@media (max-width: 860px) {
  :root { --pad: 28px; }
  .site-header .wrap { padding-top: 16px; padding-bottom: 16px; gap: 20px; flex-wrap: wrap; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 12px 0 8px; border-top: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 0; width: 100%; }
  .nav a:hover { border-bottom: 0; }
  .nav .btn { width: auto; margin-top: 10px; }

  .hero { padding-top: 72px; padding-bottom: 64px; }
  .hero--sub { padding-top: 64px; padding-bottom: 56px; }
  .hero .glow { left: auto; right: -160px; top: -40px; width: 460px; height: 320px; }
  .hero h1 { font-size: 46px; line-height: 1.02; }
  .hero--sub h1 { font-size: 44px; margin-top: 24px; }
  .hero__kicker { margin-bottom: 28px; }
  .hero__lead { margin-top: 24px; font-size: 17px; }
  .hero .btn-row, .hero--sub .btn-row { margin-top: 32px; }
  .facts { grid-template-columns: 1fr; gap: 20px; margin-top: 64px; }
  .facts > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }

  .section { padding-top: 64px; padding-bottom: 64px; }
  .section--tight { padding-top: 0; padding-bottom: 64px; }
  .section--cta { padding-bottom: 80px; }
  .section--features, .section--service-cta { padding-top: 72px; padding-bottom: 72px; }
  .section--trust { padding-bottom: 72px; }
  .section--services { padding-top: 16px; padding-bottom: 72px; }
  .section--legal { padding-top: 48px; padding-bottom: 72px; }
  .split { grid-template-columns: 1fr; gap: 24px; padding-top: 64px; }
  .split h2, .sec-head h2 { font-size: 32px; }
  .split p { font-size: 17px; margin-top: 20px; }

  .dark .wrap { padding-top: 72px; padding-bottom: 72px; }
  .dark .coop-wrap { padding-top: 72px; padding-bottom: 72px; }
  .product { margin-top: 40px; gap: 40px; }
  .product h2 { font-size: 48px; }
  .product p { font-size: 18px; margin-top: 20px; }
  .product .btn { margin-top: 32px; }

  .values { grid-template-columns: 1fr; row-gap: 48px; margin-top: 48px; }
  .values h3 { margin-top: 20px; font-size: 23px; }
  .cta-box, .cta-box--service { padding: 56px 28px; }
  .cta-box h2, .cta-box--service h2, .banner h2, .contact h2 { font-size: 34px; }
  .cta-box p { font-size: 17px; margin-top: 18px; }

  .frame { margin-top: 48px; }
  .compare { grid-template-columns: 1fr; gap: 48px; background: transparent; }
  .compare > div:first-child, .compare > div:last-child { padding: 0; }
  .compare > div:last-child { border-top: 1px solid var(--line-dark); padding-top: 48px; }
  .compare h2 { font-size: 30px; margin-top: 18px; }
  .features { grid-template-columns: 1fr; row-gap: 40px; margin-top: 48px; }
  .features__note { padding: 24px; }
  .trust { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .trust h2 { font-size: 28px; }
  .banner .wrap { padding-top: 64px; padding-bottom: 64px; gap: 32px; }
  .banner p { font-size: 17px; margin-top: 16px; }

  .service-list > div { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .service-list .index { padding-top: 0; }
  .service-list h3 { font-size: 24px; }
  .service-list p { font-size: 16px; }
  .coop { grid-template-columns: 1fr; gap: 24px; }
  .coop h2 { font-size: 30px; }
  .coop__grid { margin-top: 40px; row-gap: 32px; }

  .legal-hero { padding-top: 64px; }
  .legal-hero h1, .notfound h1 { font-size: 44px; margin-top: 24px; }
  .legal-hero p { font-size: 17px; margin-top: 20px; }
  .legal-grid { grid-template-columns: 1fr; row-gap: 40px; }
  .legal-grid p { font-size: 17px; }
  .legal-grid--notes { margin-top: 56px; padding-top: 40px; }
  .clauses { gap: 40px; padding-top: 40px; }
  .clause { grid-template-columns: 1fr; row-gap: 8px; }
  .clause h2 { font-size: 22px; }
  .clause__text { margin-top: 12px; }

  .contact { padding-bottom: 64px; }
  .contact__grid { grid-template-columns: 1fr; gap: 32px; padding-top: 64px; }
  .contact h2 { margin-top: 18px; }
  .contact__rows > div { flex-direction: column; gap: 6px; padding: 16px 0; }

  .site-footer .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 32px; }
  .site-footer .legal-line { padding-bottom: 32px; }
  .notfound { padding-top: 80px; padding-bottom: 80px; }
}

@media (max-width: 420px) {
  :root { --pad: 20px; }
  .hero h1 { font-size: 38px; }
  .hero--sub h1 { font-size: 36px; }
  .btn { padding: 15px 24px; font-size: 14px; }
  .btn-row .btn { width: 100%; text-align: center; }
  .product h2 { font-size: 40px; }
}

/* Fokus (Tastaturbedienung) */
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 2px; }
.dark :focus-visible, .site-footer :focus-visible, .banner :focus-visible { outline-color: currentColor; }
.btn:focus-visible { outline-offset: 4px; }

/* CookieConsent – an Markenfarben angepasst */
#cc-main {
  --cc-font-family: "Google Sans Flex", "Google Sans Text", "Google Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --cc-bg: #ffffff;
  --cc-primary-color: #222222;
  --cc-secondary-color: #4a4a4a;
  --cc-btn-primary-bg: #222222;
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-hover-bg: #c6ff34;
  --cc-btn-primary-hover-color: #222222;
  --cc-btn-secondary-bg: #f6f6f4;
  --cc-btn-secondary-color: #222222;
  --cc-btn-secondary-hover-bg: #ececec;
  --cc-btn-secondary-hover-color: #222222;
  --cc-toggle-on-bg: #222222;
  --cc-toggle-off-bg: #c9c9c9;
  --cc-toggle-readonly-bg: #c6ff34;
  --cc-toggle-readonly-knob-bg: #222222;
  --cc-modal-border-radius: 4px;
  --cc-btn-border-radius: 999px;
  --cc-footer-bg: #f6f6f4;
  --cc-footer-color: #4a4a4a;
  --cc-footer-border-color: #ececec;
  --cc-overlay-bg: rgba(34, 34, 34, .5);
  --cc-cookie-category-block-bg: #f6f6f4;
  --cc-cookie-category-block-hover-bg: #efefec;
  --cc-cookie-category-expanded-block-bg: transparent;
  --cc-cookie-category-expanded-block-hover-bg: #efefec;
  --cc-separator-border-color: #ececec;
}
#cc-main .cm__title, #cc-main .pm__title { letter-spacing: -.02em; }
#cc-main a { text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.section--faq { padding-top: 0; padding-bottom: 110px; }
.faq { margin-top: 56px; border-top: 1px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid #d6d6d6; display: grid; place-items: center; font-size: 20px; line-height: 1; color: var(--ink); transition: background-color .2s ease, border-color .2s ease; }
.faq__item[open] summary::after { content: "\2013"; background: var(--lime); border-color: var(--lime); }
.faq__item summary:hover::after { border-color: var(--ink); }
.faq__item h3 { font-size: 22px; letter-spacing: -.015em; line-height: 1.25; }
.faq__item p { margin: 0; padding: 0 56px 28px 0; max-width: 760px; font-size: 16.5px; line-height: 1.65; color: var(--body); }
.frame__shot img { display: block; width: 100%; height: 420px; object-fit: cover; object-position: center top; }
@media (max-width: 860px) {
  .section--faq { padding-bottom: 72px; }
  .faq { margin-top: 32px; }
  .faq__item summary { padding: 18px 0; }
  .faq__item h3 { font-size: 18px; }
  .faq__item p { padding-right: 0; font-size: 16px; }
  .frame__shot img { height: 260px; }
}

/* Faktentabelle (Grounding Page) */
.facts-table { margin: 18px 0 0; display: grid; }
.facts-table > div { display: grid; grid-template-columns: minmax(0, 220px) minmax(0, 1fr); column-gap: 32px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 1.55; }
.facts-table dt { margin: 0; color: var(--muted); }
.facts-table dd { margin: 0; color: var(--body); }
.facts-table a { text-decoration: underline; text-decoration-color: #cfcfcf; text-underline-offset: 3px; }
@media (max-width: 600px) {
  .facts-table > div { grid-template-columns: 1fr; row-gap: 2px; }
}
