/* ==========================================================================
   SeitenFlink — Startseiten-Entwurf
   Stil: Schwarz / Weiß + Neon-Lime, kantige Diagonalen, fette Versalien
   Hinweis: Schriften im finalen Build lokal gehostet (DSGVO). Entwurf nutzt
   System-Stack als Platzhalter.
   ========================================================================== */

:root {
  --ink: #0a0a0a;
  --ink-2: #161616;
  --lime: #c6f000;
  --lime-hover: #b2d900;
  --white: #ffffff;
  --surface: #f4f4f2;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e4e4e1;
  --line-dark: #2a2a2a;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --r: 4px;

  --head: "Inter Tight", "Arial Narrow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--dark { background: var(--ink); color: var(--white); }
.section--surface { background: var(--surface); }

.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--lime); display: inline-block; }
.section--dark .eyebrow { color: var(--lime); }

.lime { color: var(--lime); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 15px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--lime-hover); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-2); }
.btn--ghost { background: transparent; border-color: currentColor; }
.btn--ghost:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.btn .arrow { font-size: 1.1em; line-height: 1; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--head); font-weight: 800; text-transform: uppercase;
  font-size: 1.35rem; letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 8px;
}
.logo .chev { color: var(--lime); font-size: 1.1em; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--head); text-transform: uppercase; font-weight: 700;
  font-size: 0.86rem; letter-spacing: 0.06em; color: #d4d4d4; position: relative; padding: 6px 0;
}
.nav a:hover { color: var(--white); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--lime);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.nav .has-sub { display: inline-flex; align-items: center; gap: 5px; }
.nav-cta { padding: 11px 20px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* Dropdown (Leistungen) */
.nav-item { position: relative; display: inline-flex; align-items: center; align-self: stretch; }
.nav-item .caret { transition: transform .2s ease; }
.nav-item:hover .caret, .nav-item:focus-within .caret { transform: rotate(180deg); }
.submenu {
  position: absolute; top: 100%; left: -10px; min-width: 230px;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-top: 3px solid var(--lime);
  display: flex; flex-direction: column; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s; z-index: 60;
}
.nav-item:hover .submenu, .nav-item:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { padding: 11px 18px; font-size: 0.8rem; color: #d4d4d4; white-space: nowrap; }
.submenu a::after { display: none; }
.submenu a:hover { background: var(--ink); color: var(--lime); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--ink); color: var(--white);
  position: relative; overflow: hidden;
  padding-block: clamp(64px, 11vw, 150px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 60%, rgba(198,240,0,0.10) 60.2%, rgba(198,240,0,0.10) 72%, transparent 72.2%),
    radial-gradient(900px 500px at 85% -10%, rgba(198,240,0,0.10), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  background: var(--ink-2); border: 1px solid var(--line-dark);
  padding: 8px 14px; font-size: 0.8rem; letter-spacing: 0.04em;
}
.hero-tag b { color: var(--lime); }
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6rem);
  max-width: 16ch;
}
.hero h1 .block { display: block; }
.hero p.lead {
  margin-top: 26px; max-width: 56ch; font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #cfcfcf;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-price {
  margin-top: 40px; display: inline-flex; align-items: baseline; gap: 14px;
  border-left: 4px solid var(--lime); padding-left: 18px;
}
.hero-price .big { font-family: var(--head); font-weight: 800; font-size: 2rem; }
.hero-price .sub { color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust {
  background: var(--lime); color: var(--ink);
}
.trust .container {
  display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: space-between;
  padding-block: 18px;
}
.trust .items { display: flex; flex-wrap: wrap; gap: 10px 26px; font-family: var(--head); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.95rem; }
.trust .items span { display: inline-flex; align-items: center; gap: 8px; }
.trust .items span::before { content: "›"; color: var(--ink); font-weight: 900; }
.trust .badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust .badge { background: var(--ink); color: var(--lime); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; }

/* ==========================================================================
   Section head
   ========================================================================== */
.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }
.section--dark .section-head p { color: #bdbdbd; }

/* ==========================================================================
   Leistungen teaser — dunkle Cards
   ========================================================================== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lcard {
  background: var(--ink); color: var(--white);
  padding: 34px 30px 30px; position: relative; overflow: hidden;
  border: 1px solid var(--ink);
  transition: transform .18s ease;
}
.lcard::after {
  content: ""; position: absolute; top: 0; right: 0; width: 64px; height: 64px;
  background: var(--lime);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: .9;
}
.lcard:hover { transform: translateY(-6px); }
.lcard .ic {
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--ink-2); border: 1px solid var(--line-dark); color: var(--lime); margin-bottom: 22px;
}
.lcard .ic svg { width: 26px; height: 26px; }
.lcard h3 { font-size: 1.5rem; }
.lcard p { margin-top: 12px; color: #c2c2c2; font-size: 0.98rem; }
.lcard .more { margin-top: 20px; display: inline-flex; gap: 8px; align-items: center; font-family: var(--head); text-transform: uppercase; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--lime); }
.lcard:hover .more { gap: 12px; }

/* ==========================================================================
   So funktioniert's — Steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { border-top: 3px solid var(--line-dark); padding-top: 18px; position: relative; }
.step .no { font-family: var(--head); font-weight: 800; font-size: 2.4rem; color: var(--lime); line-height: 1; }
.step h4 { margin-top: 12px; font-size: 1.12rem; color: var(--white); }
.step p { margin-top: 8px; font-size: 0.92rem; color: #b3b3b3; }
.step.highlight .no { color: var(--lime); }
.step.highlight h4 .tag { display: inline-block; background: var(--lime); color: var(--ink); font-size: 0.7rem; padding: 2px 7px; margin-left: 6px; vertical-align: middle; }

/* ==========================================================================
   Warum SeitenFlink — Split
   ========================================================================== */
.why { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.why-list { list-style: none; margin-top: 26px; display: grid; gap: 18px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-list .chk { flex: none; width: 26px; height: 26px; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-weight: 900; margin-top: 2px; }
.why-list b { display: block; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.05rem; }
.why-list span.t { color: var(--muted); font-size: 0.96rem; }
.why-stats { background: var(--ink); color: var(--white); padding: 40px; display: grid; gap: 26px; position: relative; overflow: hidden; }
.why-stats::before { content: ""; position: absolute; bottom: -30px; right: -30px; width: 160px; height: 160px; background: var(--lime); opacity: .12; clip-path: polygon(100% 0, 0 100%, 100% 100%); }
.why-stats .stat .v { font-family: var(--head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--lime); line-height: 1; }
.why-stats .stat .k { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; color: #cfcfcf; margin-top: 8px; }

/* ==========================================================================
   Preise teaser
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pcard { background: var(--white); border: 1px solid var(--line); padding: 34px 30px; display: flex; flex-direction: column; }
.pcard.feat { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-8px); position: relative; }
.pcard.feat .ribbon { position: absolute; top: 16px; right: -1px; background: var(--lime); color: var(--ink); font-family: var(--head); font-weight: 800; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; padding: 5px 12px; }
.pcard .pname { font-family: var(--head); text-transform: uppercase; font-weight: 800; letter-spacing: 0.04em; font-size: 1.15rem; }
.pcard .price { font-family: var(--head); font-weight: 800; font-size: 2.6rem; margin-top: 14px; line-height: 1; }
.pcard .price small { font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.pcard.feat .price small { color: #b9b9b9; }
.pcard .mo { margin-top: 6px; font-size: 0.92rem; color: var(--muted); }
.pcard.feat .mo { color: #c9c9c9; }
.pcard .scope { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.96rem; color: var(--text); }
.pcard.feat .scope { border-color: var(--line-dark); color: #dcdcdc; }
.pcard .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--muted); margin-top: 26px; font-size: 0.95rem; }

/* ==========================================================================
   Team teaser
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tmember { position: relative; overflow: hidden; background: var(--ink-2); }
.tmember img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top center; filter: grayscale(1) contrast(1.05); transition: filter .25s ease, transform .4s ease; }
.tmember:hover img { filter: grayscale(0); transform: scale(1.04); }
.tmember .name { position: absolute; left: 0; bottom: 0; background: var(--lime); color: var(--ink); font-family: var(--head); font-weight: 800; text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.06em; padding: 7px 14px; }
.team-note { margin-top: 30px; max-width: 52ch; color: #bdbdbd; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--lime); color: var(--ink); }
.cta-band .container { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; padding-block: clamp(44px, 7vw, 80px); }
.cta-band h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); max-width: 18ch; }
.cta-band p { margin-top: 10px; font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #b9b9b9; padding-block: 60px 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .logo { color: var(--white); font-size: 1.5rem; margin-bottom: 16px; }
.site-footer h5 { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); font-size: 0.86rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--lime); }
.foot-bottom { border-top: 1px solid var(--line-dark); margin-top: 44px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.85rem; }
.foot-bottom .lime { font-weight: 700; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; left: 0; right: 0; top: 72px; z-index: 49;
    background: var(--ink); border-bottom: 1px solid var(--line-dark);
    padding: 6px var(--pad) 18px;
  }
  .nav.open a { width: 100%; padding: 15px 0; font-size: 1rem; border-bottom: 1px solid var(--line-dark); }
  .nav.open a::after { display: none; }
  .nav.open .nav-item { display: block; width: 100%; }
  .nav.open .nav-item > .has-sub { display: flex; }
  .nav.open .caret { display: none; }
  .nav.open .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    margin: 0; padding: 0 0 6px; border: 0; background: transparent; min-width: 0;
  }
  .nav.open .submenu a { padding: 13px 0 13px 18px; font-size: 0.95rem; color: #b6b6b6; }
  .nav.open .submenu a::before { content: "– "; color: var(--lime); }
  .cards-3, .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .pcard.feat { transform: none; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .trust .container { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Unterseiten-Bausteine
   ========================================================================== */

/* ---- Page-Hero (kleiner Kopf für Unterseiten) ---- */
.page-hero { background: var(--ink); color: var(--white); position: relative; overflow: hidden; padding-block: clamp(48px, 8vw, 96px); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 64%, rgba(198,240,0,0.12) 64.2%, rgba(198,240,0,0.12) 74%, transparent 74.2%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb .sep { color: var(--lime); margin: 0 8px; }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); max-width: 18ch; }
.page-hero p { margin-top: 18px; max-width: 60ch; color: #cfcfcf; font-size: clamp(1.02rem, 1.5vw, 1.2rem); }
.page-hero .hero-actions { margin-top: 30px; }

/* ---- Feature-Row (Text + Medium, alternierend) ---- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 72px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(48px, 8vw, 96px); }
.feature-row.reverse .feature-text { order: 2; }
.feature-text h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.feature-text .eyebrow { margin-bottom: 14px; }
.feature-text p { margin-top: 16px; color: var(--muted); }
.section--dark .feature-text p { color: #bdbdbd; }
.feature-media { position: relative; }
.feature-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-media::before { content: ""; position: absolute; top: -14px; left: -14px; width: 90px; height: 90px; background: var(--lime); z-index: -1; clip-path: polygon(0 0, 100% 0, 0 100%); }

/* ---- Tick-Liste ---- */
.ticks { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.ticks .chk { flex: none; width: 24px; height: 24px; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-weight: 900; font-size: 0.8rem; margin-top: 2px; }

/* ---- Mini-Feature-Grid (Icons) ---- */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mini { padding: 26px; border: 1px solid var(--line); background: var(--white); }
.section--dark .mini { background: var(--ink-2); border-color: var(--line-dark); }
.mini .ic { width: 46px; height: 46px; display: grid; place-items: center; background: var(--lime); color: var(--ink); margin-bottom: 16px; }
.mini .ic svg { width: 24px; height: 24px; }
.mini h3 { font-size: 1.15rem; }
.mini p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; }
.section--dark .mini p { color: #b6b6b6; }
.section--dark .mini h3 { color: #fff; }

/* ---- Referenz-Galerie ---- */
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.refcard { position: relative; overflow: hidden; background: var(--ink-2); border: 1px solid var(--line); display: block; color: inherit; text-decoration: none; }
a.refcard { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
a.refcard:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,0.16); border-color: var(--ink); }
.refcard img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; transition: transform .4s ease; display: block; }
a.refcard:hover img { transform: scale(1.04); }
.refcard .meta { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--white); }
.refcard .meta h3 { font-size: 1.08rem; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.refcard .meta h3 .ext { color: var(--muted); font-size: 0.95rem; transition: transform .2s ease, color .2s ease; }
a.refcard:hover .meta h3 .ext { color: var(--ink); transform: translate(2px,-2px); }
.refcard .tag { background: var(--ink); color: var(--lime); font-family: var(--head); font-weight: 800; text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.05em; padding: 5px 10px; white-space: nowrap; }
@media (max-width: 980px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Zitat / Testimonial ---- */
.quote { border-left: 4px solid var(--lime); padding: 6px 0 6px 24px; max-width: 60ch; }
.quote p { font-family: var(--head); text-transform: none; font-weight: 700; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.25; letter-spacing: -0.01em; }
.quote cite { display: block; margin-top: 14px; font-style: normal; color: var(--muted); font-size: 0.92rem; }
.section--dark .quote cite { color: #b6b6b6; }

/* ---- Preis-Matrix ---- */
.matrix { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 0.96rem; }
.matrix th, .matrix td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.matrix thead th { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.82rem; }
.matrix tbody td:not(:first-child), .matrix thead th:not(:first-child) { text-align: center; }
.matrix .yes { color: #2c7a00; font-weight: 800; }
.matrix .feat-col { background: rgba(198,240,0,0.12); }
.matrix tr:hover td { background: rgba(0,0,0,0.02); }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 4px; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.01em; font-weight: 800; font-size: 1.05rem; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--lime); font-size: 1.6rem; line-height: 1; font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 4px 20px; color: var(--muted); }

/* ---- Kontakt ---- */
.contact-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 72px); }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.78rem; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 2px solid var(--line); background: var(--white);
  font: inherit; color: var(--text); border-radius: var(--r); transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field .req { color: #c0392b; }
.field textarea { min-height: 140px; resize: vertical; }
.field.row2 { grid-template-columns: 1fr 1fr; display: grid; gap: 18px; }
@media (max-width: 560px) { .field.row2 { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.consent input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--lime); }
.consent a { color: var(--ink); text-decoration: underline; }
.contact-info { background: var(--ink); color: var(--white); padding: 36px; position: relative; overflow: hidden; }
.contact-info::before { content: ""; position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; background: var(--lime); opacity: .14; clip-path: polygon(100% 0, 0 0, 100% 100%); }
.contact-info h3 { font-size: 1.4rem; }
.contact-info .row { margin-top: 22px; }
.contact-info .k { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--lime); }
.contact-info .v { font-size: 1.05rem; margin-top: 4px; }
.contact-info a:hover { color: var(--lime); }

/* ---- Team-Vollseite ---- */
.team-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .team-full { grid-template-columns: repeat(2, 1fr); } }

/* ---- Prose (Recht) ---- */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.5rem; margin-top: 38px; }
.prose h3 { font-size: 1.15rem; margin-top: 26px; }
.prose p, .prose li { color: var(--text); margin-top: 12px; }
.prose ul { margin-top: 12px; padding-left: 22px; }
.prose a { color: var(--ink); text-decoration: underline; }
.prose .muted { color: var(--muted); font-size: 0.92rem; }

/* ---- Utilities ---- */
.center { text-align: center; }
.mt-cta { margin-top: 40px; }
.tagrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tagrow span { border: 1px solid var(--line-dark); color: #d6d6d6; font-size: 0.8rem; padding: 7px 13px; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.04em; }
.section--surface .tagrow span, body > .section:not(.section--dark) .tagrow span { border-color: var(--line); color: var(--text); }

/* ==========================================================================
   Cookie-Consent-Banner
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ink); color: #e6e6e6; border-top: 3px solid var(--lime);
  box-shadow: 0 -10px 30px rgba(0,0,0,.35);
}
.cookie-banner .cb-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad);
  display: grid; grid-template-columns: 1fr auto; gap: 20px 32px; align-items: center;
}
.cookie-banner h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.9rem; color: #b9b9b9; max-width: 70ch; }
.cookie-banner p a { color: var(--lime); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-actions .btn { font-size: 0.82rem; padding: 12px 20px; }
.btn--line { background: transparent; border-color: #555; color: #e6e6e6; }
.btn--line:hover { border-color: var(--lime); color: var(--lime); background: transparent; transform: translateY(-2px); }
/* Einstellungen-Panel */
.cookie-settings { grid-column: 1 / -1; display: none; border-top: 1px solid var(--line-dark); margin-top: 6px; padding-top: 18px; }
.cookie-banner.show-settings .cookie-settings { display: grid; gap: 14px; }
.cookie-opt { display: flex; gap: 14px; align-items: flex-start; }
.cookie-opt input { width: 22px; height: 22px; flex: none; margin-top: 2px; accent-color: var(--lime); }
.cookie-opt input:disabled { opacity: .5; }
.cookie-opt .co-t b { color: var(--white); font-family: var(--head); text-transform: uppercase; letter-spacing: .03em; font-size: .92rem; }
.cookie-opt .co-t span { display: block; color: #a9a9a9; font-size: .85rem; margin-top: 2px; }
.cookie-reopen { background: none; border: 0; color: inherit; cursor: pointer; font: inherit; text-decoration: underline; }
.cookie-reopen:hover { color: var(--lime); }
@media (max-width: 760px) {
  .cookie-banner .cb-inner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* 4er-Preisraster (Preise-Seite) */
.price-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-grid--4 .price { font-size: 2.2rem; }
@media (max-width: 1080px) { .price-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-grid--4 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .ref-grid { grid-template-columns: 1fr; } }

@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-text { order: 0; }
  .mini-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .matrix { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ==========================================================================
   Barrierefreiheit — Skip-Link, Fokus, A11y-Widget, A11y-Modi
   ========================================================================== */

/* Sichtbarer Tastatur-Fokus überall */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--lime); outline-offset: 2px;
}
/* Auf hellem/Lime-Grund dunkler Fokus für Kontrast */
.btn--lime:focus-visible, .trust a:focus-visible, .cta-band a:focus-visible,
.cookie-actions .btn--lime:focus-visible { outline-color: var(--ink); }

/* Skip-Link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--lime); color: var(--ink); padding: 12px 18px;
  font-family: var(--head); font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.skip-link:focus { left: 8px; top: 8px; }
[tabindex="-1"]:focus { outline: none; }

/* A11y-Button + Panel */
.a11y-toggle {
  position: fixed; left: 18px; bottom: 18px; z-index: 190;
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--ink);
  background: var(--lime); color: var(--ink); display: grid; place-items: center;
  cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,.28); transition: transform .15s ease;
}
.a11y-toggle:hover { transform: translateY(-2px); }
.a11y-toggle svg { width: 28px; height: 28px; }
.a11y-panel {
  position: fixed; left: 18px; bottom: 80px; z-index: 191;
  width: 300px; max-width: calc(100vw - 36px);
  background: var(--ink); color: #fff; border: 1px solid var(--line-dark); border-top: 3px solid var(--lime);
  padding: 18px; display: none; box-shadow: 0 14px 40px rgba(0,0,0,.45);
}
.a11y-panel.open { display: block; }
.a11y-panel h3 { font-size: 1rem; margin-bottom: 12px; }
.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-dark); }
.a11y-row .lab { font-size: .9rem; }
.a11y-btns { display: flex; gap: 6px; }
.a11y-mini { background: var(--ink-2); border: 1px solid var(--line-dark); color: #fff; min-width: 36px; height: 32px; cursor: pointer; font-weight: 800; font-family: var(--head); }
.a11y-mini:hover { background: var(--lime); color: var(--ink); }
.a11y-switch { background: var(--ink-2); border: 1px solid var(--line-dark); color: #fff; padding: 7px 14px; cursor: pointer; font-size: .78rem; font-family: var(--head); text-transform: uppercase; letter-spacing: .04em; min-width: 62px; }
.a11y-switch[aria-pressed="true"] { background: var(--lime); color: var(--ink); }
.a11y-reset { width: 100%; margin-top: 14px; justify-content: center; }

/* --- A11y-Modi (Klassen auf <html>) --- */
html.a11y-font-1 { font-size: 109%; }
html.a11y-font-2 { font-size: 118%; }
html.a11y-font-3 { font-size: 128%; }

html.a11y-contrast { --text: #000; --muted: #2b2b2b; --line: #1a1a1a; }
html.a11y-contrast .hero p.lead, html.a11y-contrast .page-hero p,
html.a11y-contrast .section--dark p, html.a11y-contrast .section--dark .section-head p,
html.a11y-contrast .team-note, html.a11y-contrast .site-footer p,
html.a11y-contrast .site-footer a, html.a11y-contrast .step p,
html.a11y-contrast .lcard p { color: #fff !important; }
html.a11y-contrast a:not(.btn) { text-decoration: underline; }

html.a11y-links a:not(.btn):not(.logo) { text-decoration: underline; text-underline-offset: 3px; }

html.a11y-readable p, html.a11y-readable li, html.a11y-readable .lead,
html.a11y-readable .scope, html.a11y-readable .field, html.a11y-readable .why-list span.t {
  line-height: 1.95 !important; letter-spacing: .03em; word-spacing: .08em;
}

html.a11y-motion-off *, html.a11y-motion-off *::before, html.a11y-motion-off *::after {
  animation: none !important; transition: none !important; scroll-behavior: auto !important;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
