/* ============================================================
   sem. DigitalCare – Landingpage
   Brand tokens nach Design/DESIGN_PRINCIPLES.md
   ============================================================ */

:root {
  --paper: #f4f5f1;
  --mist: #e9ede2;
  --charcoal: #141512;
  --graphite: #5c625b;
  --border: #d9dec9;
  --lime: #d7ff22;
  --lime-deep: #c7ef12;
  --olive: #263400;
  --black: #101210;
  --white: #ffffff;

  --ink-dark: #f4f5f1;
  --ink-dark-soft: rgba(244, 245, 241, 0.74);
  --line-dark: rgba(217, 222, 201, 0.16);

  /* große Fließtexte: klar Richtung Schwarz statt Mittelgrau */
  --lead-ink: #1d1f1a;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  --r: 10px;
  --r-lg: 16px;
  --shell: 1340px;
  --pad: clamp(20px, 5vw, 64px);
  --gap-section: clamp(80px, 9vw, 132px);

  --shadow-sm: 0 10px 30px rgba(20, 21, 18, 0.06);
  --shadow-md: 0 26px 60px rgba(20, 21, 18, 0.09);
  --shadow-lg: 0 40px 90px rgba(20, 21, 18, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: " cv05" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--charcoal);
  color: var(--paper);
  border-radius: var(--r);
  transition: top 180ms var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.1em;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}
h1 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(2.05rem, 4.3vw, 3.6rem);
  max-width: 18ch;
}
h3 { font-size: 1.2rem; letter-spacing: -0.02em; }
p { margin: 0; }

.hl {
  color: var(--charcoal);
  display: inline;
  padding: 0 0.1em;
  margin: 0 -0.1em;
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 64%,
    var(--lime) 54%,
    var(--lime) 92%,
    transparent 92%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.section-dark .hl {
  color: var(--ink-dark);
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 54%,
    var(--lime) 54%,
    var(--lime) 92%,
    transparent 92%
  );
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(215, 255, 34, 0.22);
}
.eyebrow-dark { color: var(--lime); }
.eyebrow-dark::before { box-shadow: 0 0 0 4px rgba(215, 255, 34, 0.16); }

/* ---------- Layout primitives ---------- */
.shell {
  width: min(100% - 2 * var(--pad), var(--shell));
  margin-inline: auto;
}
.section {
  padding-block: var(--gap-section);
}
.section-mist { background: var(--mist); }
.section-dark {
  position: relative;
  background: var(--black);
  color: var(--ink-dark);
  overflow: hidden;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--ink-dark); }

/* atmospheric depth on dark sections */
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(215, 255, 34, 0.10), transparent 55%),
    radial-gradient(80% 60% at 0% 110%, rgba(215, 255, 34, 0.045), transparent 60%);
  pointer-events: none;
}
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 245, 241, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  opacity: 0.5;
  pointer-events: none;
}
.section-dark .shell { position: relative; z-index: 1; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin-bottom: 18px; }
.head-lead {
  color: var(--lead-ink);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 62ch;
}
.section-dark .head-lead { color: var(--ink-dark-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms var(--ease), background 180ms var(--ease),
    border-color 180ms var(--ease), box-shadow 180ms var(--ease), color 180ms var(--ease);
}
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--lime);
  color: var(--olive);
  box-shadow: 0 8px 22px rgba(215, 255, 34, 0.28);
}
.btn-primary:hover {
  background: var(--lime-deep);
  box-shadow: 0 12px 30px rgba(215, 255, 34, 0.38);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(1px); }

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.4);
  color: var(--charcoal);
}
.btn-ghost:hover { border-color: var(--charcoal); background: var(--white); }

.btn-dark {
  background: var(--charcoal);
  color: var(--paper);
}
.btn-dark:hover { background: var(--black); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 28px, var(--shell));
  margin: 14px auto 0;
  padding: 9px 9px 9px 18px;
  border: 1px solid rgba(217, 222, 201, 0.8);
  border-radius: 14px;
  background: rgba(244, 245, 241, 0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 240ms var(--ease), background 240ms var(--ease), transform 240ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(244, 245, 241, 0.94);
  box-shadow: var(--shadow-md);
}
.brand { display: inline-flex; align-items: center; height: 52px; }
.brand img { height: 66px; width: auto; }

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.nav a {
  position: relative;
  padding: 8px 12px;
  font-size: 0.93rem;
  color: var(--graphite);
  border-radius: 8px;
  transition: color 160ms var(--ease), background 160ms var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}
.nav a:hover { color: var(--charcoal); }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 220ms var(--ease), opacity 160ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 78px 14px auto 14px;
  z-index: 49;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(244, 245, 241, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  animation: dropIn 260ms var(--ease);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 13px 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9px;
  color: var(--charcoal);
}
.mobile-nav a:hover { background: var(--mist); }
.mobile-nav .btn { margin-top: 8px; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-10px); } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: -78px;
  padding-top: calc(78px + clamp(56px, 8vw, 104px));
  padding-bottom: clamp(64px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg picture,
.section-banner-bg picture,
.cta-bg picture,
.large-media picture {
  width: 100%;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(244, 245, 241, 0.98) 0%,
      rgba(244, 245, 241, 0.94) 28%,
      rgba(244, 245, 241, 0.72) 40%,
      rgba(244, 245, 241, 0.06) 65%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(20, 21, 18, 0.18) 0%,
      transparent 42%
    );
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: 1fr auto;
  gap: clamp(28px, 4vw, 48px);
  min-height: clamp(520px, 72dvh, 760px);
  align-items: center;
}
.hero-copy {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: center;
  max-width: 780px;
}
.hero-cards {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 14px;
  align-self: end;
}
.lead {
  margin-top: 28px;
  color: var(--lead-ink);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.58;
  max-width: 56ch;
}

/* große Fließtexte dunkel halten */
.body-lg { color: var(--lead-ink); font-size: 1.08rem; line-height: 1.62; }
.section-dark .body-lg { color: var(--ink-dark-soft); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 38px;
}
.hero-points {
  display: grid;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--charcoal);
  font-size: 0.99rem;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
  transform: translateY(-2px) rotate(-45deg);
}

.status-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: min(264px, 100%);
  padding: 16px 18px;
  border: 1px solid rgba(217, 222, 201, 0.7);
  border-radius: var(--r);
  background: rgba(244, 245, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}
.status-dot {
  margin-top: 5px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(215, 255, 34, 0.25);
  animation: pulse 2.6s ease-in-out infinite;
  flex: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(215, 255, 34, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(215, 255, 34, 0.05); }
}
.status-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 4px;
}
.status-card strong { display: block; font-size: 1.02rem; letter-spacing: -0.01em; }
.status-sub { font-size: 0.82rem; color: var(--graphite); }

.hero-note {
  width: min(300px, 100%);
  padding: 16px 18px;
  border: 1px dashed var(--border);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--graphite);
}
.hero-note strong { display: block; color: var(--charcoal); margin-bottom: 3px; }

/* ---------- Status ticker ---------- */
.status-ticker {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  margin: 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}
.status-ticker-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px clamp(16px, 2.4vw, 24px);
  background: rgba(244, 245, 241, 0.82);
  border-right: 1px solid var(--border);
  font-family: var(--mono);
  color: var(--charcoal);
}
.status-ticker-label strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
}
.status-ticker-label small {
  display: block;
  margin-top: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
}
.status-ticker-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(215, 255, 34, 0.24);
  animation: pulse 2.6s ease-in-out infinite;
}
.status-ticker-viewport {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.status-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 74px;
  animation: ticker-scroll 42s linear infinite;
  will-change: transform;
}
.status-ticker-text {
  white-space: nowrap;
  padding-inline: clamp(22px, 3vw, 36px);
  font-family: var(--mono);
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--graphite);
}
.status-ticker-text strong {
  color: var(--charcoal);
  font-weight: 700;
}
.status-ticker-text span {
  color: var(--olive);
  padding-inline: 18px;
}
@keyframes ticker-scroll {
  to { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.split-media { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); align-items: center; }
.split-reverse .split-text { order: 2; }
.split-text > p { color: var(--lead-ink); margin-bottom: 18px; line-height: 1.62; }
.split-text h2 { margin-bottom: 22px; }

.inline-media,
.media-col {
  margin: 32px 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-col { margin: 0; }
.inline-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.media-col img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* ---------- Point lists ---------- */
.point-list { border-top: 1px solid var(--border); }
.point-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.point-list .num {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--olive);
  font-weight: 500;
}
.point-list p {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.4;
  color: var(--charcoal);
}
.point-list.compact li { padding: 16px 0; grid-template-columns: 32px 1fr; }
.point-list.compact .num { font-size: 1.1rem; color: var(--lime-deep); }
.point-list.compact p { font-size: 1rem; color: var(--graphite); }

/* ---------- Hub visualisation (Ausgangslage) ---------- */
.hub {
  position: relative;
  margin-top: clamp(44px, 5vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
}
.hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hub-lines path {
  fill: none;
  stroke: var(--border);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.hub-col {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}
.hub-card {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 46px 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  cursor: help;
  outline: none;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.hub-card:hover,
.hub-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(215, 255, 34, 0.7);
}
.hub-card::after {
  content: "i";
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--olive);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--mist);
}
.hub-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--olive);
}
.hub-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mist);
  border: 1px solid var(--border);
  color: var(--olive);
}
.hub-icon svg { width: 22px; height: 22px; }
.hub-text h3 { font-size: 1.05rem; margin-bottom: 4px; }
.hub-text p {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--graphite);
}
.hub-center {
  position: relative;
  z-index: 2;
  justify-self: center;
  display: grid;
  place-items: center;
  width: clamp(108px, 12vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  color: var(--olive);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 10px rgba(215, 255, 34, 0.16), var(--shadow-md);
}

/* ---------- Compare cards (Zuständigkeit) ---------- */
.section-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin-bottom: clamp(44px, 5vw, 68px);
  min-height: clamp(340px, 42vw, 500px);
  display: flex;
  align-items: center;
  border: 1px solid var(--line-dark);
}
.section-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.section-banner-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(16, 18, 16, 0.96) 0%,
      rgba(16, 18, 16, 0.9) 34%,
      rgba(16, 18, 16, 0.62) 52%,
      rgba(16, 18, 16, 0.22) 72%,
      rgba(16, 18, 16, 0.08) 100%
    ),
    linear-gradient(
      to top,
      rgba(16, 18, 16, 0.55) 0%,
      transparent 48%
    );
}
.section-banner-copy {
  position: relative;
  z-index: 1;
  max-width: min(760px, 58%);
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  background: rgba(244, 245, 241, 0.03);
}
.compare-card.is-active {
  border-color: rgba(215, 255, 34, 0.4);
  background: linear-gradient(180deg, rgba(215, 255, 34, 0.06), rgba(244, 245, 241, 0.02));
}
.compare-card header { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.compare-card h3 { font-size: 1.45rem; }
.chip {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line-dark);
  color: var(--ink-dark-soft);
}
.chip-lime { background: var(--lime); color: var(--olive); border-color: transparent; font-weight: 700; }

.ticks { display: grid; gap: 14px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-dark-soft);
  line-height: 1.45;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35em;
  width: 14px; height: 8px;
}
.ticks li.yes::before {
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}
.ticks li.neutral::before {
  top: 0.62em;
  height: 0;
  width: 12px;
  border-bottom: 2px solid rgba(217, 222, 201, 0.4);
}

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-content: stretch;
  gap: clamp(18px, 2.1vw, 28px);
  min-height: 180px;
  padding: clamp(18px, 2.1vw, 24px);
  border: 1px solid rgba(217, 222, 201, 0.88);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 245, 241, 0.94)),
    var(--paper);
  box-shadow:
    0 18px 48px rgba(20, 21, 18, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  overflow: hidden;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.service-card:hover {
  border-color: rgba(87, 111, 5, 0.22);
  box-shadow:
    0 24px 58px rgba(20, 21, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
}
.service-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: rgba(233, 237, 226, 0.82);
  border: 1px solid rgba(217, 222, 201, 0.72);
  color: var(--olive);
}
.service-icon svg { width: 40px; height: 40px; }
.service-icon-lime {
  background: var(--lime);
  border-color: transparent;
  color: var(--olive);
}
.service-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 26px;
  margin-bottom: 8px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(87, 111, 5, 0.08);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--olive);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.service-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 4px rgba(215, 255, 34, 0.13);
}
.service-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  letter-spacing: -0.035em;
}
.service-list {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--graphite);
  font-size: clamp(0.82rem, 0.95vw, 0.94rem);
  line-height: 1.36;
}
.service-list li {
  position: relative;
  padding-left: 21px;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 13px;
  height: 13px;
  border: 1.5px solid rgba(87, 111, 5, 0.62);
  border-radius: 50%;
}
.service-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.22em + 3px);
  width: 5px;
  height: 3px;
  border-left: 1.5px solid var(--olive);
  border-bottom: 1.5px solid var(--olive);
  transform: rotate(-45deg);
}
.service-foot {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
}
.service-foot-bar {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--lime-deep), var(--lime)) left / var(--w) 100% no-repeat,
    rgba(217, 222, 201, 0.76);
}
.service-foot-label {
  color: var(--graphite);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}
.service-card-cta {
  align-content: center;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 180px;
  background:
    radial-gradient(90% 90% at 0% 0%, rgba(215, 255, 34, 0.18), transparent 54%),
    radial-gradient(80% 100% at 100% 120%, rgba(244, 245, 241, 0.08), transparent 58%),
    var(--charcoal);
  color: var(--paper);
  border-color: rgba(16, 18, 16, 0.2);
}
.service-card-cta .service-icon-lime {
  background: rgba(244, 245, 241, 0.06);
  border-color: rgba(215, 255, 34, 0.18);
  color: var(--lime);
  box-shadow: inset 0 1px 0 rgba(244, 245, 241, 0.08);
}
.service-cta-main {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 26px);
}
.service-cta-body { flex: 1; min-width: 0; }
.service-cta-title {
  margin-bottom: 6px;
  color: var(--paper);
  font-size: clamp(1.04rem, 1.24vw, 1.18rem);
  font-weight: 700;
  line-height: 1.25;
}
.service-cta-text {
  max-width: 42ch;
  color: var(--ink-dark-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}
.service-cta-btn {
  min-height: 48px;
  width: max-content;
  white-space: nowrap;
}
.service-cta-btn::after {
  content: "\2192";
  line-height: 1;
}
.service-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 2px;
}
.service-cta-points li {
  position: relative;
  padding: 0 0 0 18px;
  border: 0;
  border-radius: 0;
  color: var(--ink-dark-soft);
  font-size: 0.78rem;
}
.service-cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(215, 255, 34, 0.1);
}

/* ---------- Benefit list ---------- */
.benefit-list {
  display: grid;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--border);
}
.benefit-list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--charcoal);
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 1.25em;
  width: 13px; height: 7px;
  border-left: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
  transform: rotate(-45deg);
}

/* ---------- Hosting check panel ---------- */
.check-panel {
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.check-media {
  margin: 0 0 22px;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.check-media img { width: 100%; height: 100%; object-fit: cover; }
.check-title {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}
.check-list { display: grid; gap: 12px; margin-bottom: 24px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--graphite);
  line-height: 1.45;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--lime-deep);
  border-bottom: 2px solid var(--lime-deep);
  transform: rotate(-45deg);
}
.result-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--r);
  background: var(--mist);
  border: 1px solid var(--border);
}
.result-note .chip { color: var(--olive); }
.result-note p { color: var(--charcoal); font-weight: 500; line-height: 1.5; }

/* ---------- KI-ready ---------- */
.ki-section {
  position: relative;
  padding-block: 0;
  background: var(--paper);
}
.ki-panel {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 164px);
  background-image: url("assets/img/ki-ready.optimized.jpg");
  background-image: image-set(
    url("assets/img/ki-ready.avif") type("image/avif"),
    url("assets/img/ki-ready.webp") type("image/webp"),
    url("assets/img/ki-ready.optimized.jpg") type("image/jpeg")
  );
  background-position: 58% center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
}
.ki-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: clamp(480px, 50vw, 620px);
  position: relative;
  z-index: 1;
}
.ki-panel::before { display: none; }
.ki-copy { position: relative; z-index: 2; }
.ki-copy > p:not(.ki-eyebrow) {
  color: rgba(244, 245, 241, 0.72);
  margin-bottom: 18px;
  line-height: 1.62;
  max-width: 58ch;
}
.ki-copy h2 {
  margin-bottom: 24px;
  max-width: 14ch;
  color: var(--ink-dark);
}
.ki-copy h2 span { color: var(--lime); }
.ki-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--olive);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.ki-eyebrow-mark {
  width: 20px;
  height: 20px;
  flex: none;
}
.ki-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 46px);
}
.ki-metrics article {
  padding-top: 18px;
  border-top: 1px solid rgba(217, 222, 201, 0.18);
  color: rgba(244, 245, 241, 0.72);
}
.ki-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 12px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
}
.ki-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-dark);
  font-size: 0.83rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ki-metrics p {
  font-size: 0.86rem;
  line-height: 1.45;
}
.ki-visual {
  position: relative;
  min-height: clamp(420px, 44vw, 560px);
}
.ki-screen {
  position: absolute;
  right: 2%;
  top: 7%;
  width: min(620px, 86%);
  margin: 0;
  border: 1px solid rgba(244, 245, 241, 0.16);
  border-radius: 18px;
  background: rgba(244, 245, 241, 0.08);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  transform: perspective(1100px) rotateY(-13deg) rotateX(5deg);
  transform-origin: center;
}
.ki-screen img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.88;
}
.ki-screen figcaption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(215, 255, 34, 0.28);
  border-radius: 999px;
  background: rgba(16, 18, 16, 0.74);
  color: var(--ink-dark-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
}
.ki-signal {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(244, 245, 241, 0.14);
  border-radius: 10px;
  background: rgba(16, 18, 16, 0.72);
  color: rgba(244, 245, 241, 0.86);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
}
.ki-signal::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: clamp(28px, 5vw, 64px);
  border-top: 1px solid rgba(215, 255, 34, 0.42);
}
.ki-signal-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  border: 1px solid rgba(215, 255, 34, 0.42);
}
.ki-signal-one { left: 0; top: 20%; }
.ki-signal-two { left: -5%; top: 36%; }
.ki-signal-three { left: 2%; top: 52%; }
.ki-code {
  position: absolute;
  left: 14%;
  bottom: 5%;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 16px 18px;
  border: 1px solid rgba(244, 245, 241, 0.13);
  border-radius: 12px;
  background: rgba(16, 18, 16, 0.72);
  color: rgba(215, 255, 34, 0.72);
  font-family: var(--mono);
  font-size: 0.68rem;
  box-shadow: var(--shadow-md);
}
.ki-points {
  position: absolute;
  right: 0;
  bottom: 8%;
  z-index: 4;
  display: grid;
  gap: 2px;
  padding: 8px;
  width: min(300px, 46%);
  border: 1px solid rgba(215, 255, 34, 0.22);
  border-radius: var(--r-lg);
  background: rgba(16, 18, 16, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.ki-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 14px;
  border-radius: var(--r);
  color: var(--paper);
  font-size: 0.86rem;
  line-height: 1.45;
  transition: background 200ms var(--ease);
}
.ki-points li:hover { background: rgba(244, 245, 241, 0.05); }
.ki-dot {
  margin-top: 6px;
  flex: none;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--lime);
  transform: rotate(45deg);
}

/* ---------- Pakete ---------- */
.pakete .section-head { max-width: 720px; }
.tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 40px;
  padding: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  background: rgba(244, 245, 241, 0.04);
}
.tab {
  padding: 11px 22px;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: var(--ink-dark-soft);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}
.tab:hover { color: var(--ink-dark); }
.tab.is-active { background: var(--lime); color: var(--olive); }

.panel { animation: fade 360ms var(--ease); }
.panel[hidden] { display: none; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } }

.cards { display: grid; gap: 18px; align-items: stretch; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); max-width: 840px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(244, 245, 241, 0.045), rgba(244, 245, 241, 0.015));
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}
.pcard:hover { transform: translateY(-4px); border-color: rgba(217, 222, 201, 0.32); }
.pcard.is-featured {
  border-color: rgba(215, 255, 34, 0.5);
  background: linear-gradient(180deg, rgba(215, 255, 34, 0.08), rgba(244, 245, 241, 0.02));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.ribbon {
  position: absolute;
  top: -11px;
  left: 26px;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--lime);
  color: var(--olive);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(215, 255, 34, 0.3);
}
.pcard-head { margin-bottom: 16px; }
.pcard-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1.5rem;
  color: var(--ink-dark);
}
.badge {
  padding: 8px 9px;
  border-radius: 6px;
  background: rgba(215, 255, 34, 0.16);
  border: 1px solid rgba(215, 255, 34, 0.4);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.pcard-for {
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--ink-dark-soft);
}
.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}
.price-val {
  font-family: var(--mono);
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lime);
  line-height: 1;
}
.price-unit { font-size: 0.82rem; color: var(--ink-dark-soft); }
.price-strike {
  font-family: var(--mono);
  font-size: 1rem;
  color: rgba(244, 245, 241, 0.4);
  text-decoration: line-through;
  margin-right: 2px;
}
.pcard-pos {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-dark-soft);
  margin-bottom: 20px;
}
.feat { display: grid; gap: 11px; margin-bottom: 16px; }
.feat li {
  position: relative;
  padding-left: 28px;
  font-size: 0.93rem;
  line-height: 1.4;
  color: var(--paper);
}
.feat li.yes::before {
  content: "";
  position: absolute;
  left: 2px; top: 0.32em;
  width: 13px; height: 7px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}
.feat li.accent { color: var(--lime); font-weight: 500; }
.feat li.no {
  color: rgba(244, 245, 241, 0.42);
}
.feat li.no::before {
  content: "×";
  position: absolute;
  left: 4px; top: -0.05em;
  font-size: 1.1rem;
  line-height: 1.4;
  color: rgba(244, 245, 241, 0.34);
}
.feat .muted { color: var(--ink-dark-soft); }

.more[hidden] { display: none; }
.more-toggle {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 0;
  background: none;
  border: none;
  border-bottom: 1px dashed rgba(217, 222, 201, 0.4);
  color: var(--ink-dark-soft);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.more-toggle:hover { color: var(--lime); border-color: var(--lime); }

.plugins { margin: 4px 0 22px; }
.plug-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dark-soft);
  margin-bottom: 10px;
}
.plug-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  padding: 5px 10px;
  border-radius: 7px;
  border: 1px solid var(--line-dark);
  background: rgba(244, 245, 241, 0.04);
  font-size: 0.78rem;
  color: var(--paper);
  cursor: default;
}
.pill-lime { border-color: rgba(215, 255, 34, 0.4); color: var(--lime); }
.pcard .btn { margin-top: auto; }

.pcard-bundle { min-height: 100%; }
.pcard-bundle .pcard-pos { margin-bottom: 24px; }

.panel-note,
.pakete-legal {
  margin-top: 26px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--ink-dark-soft);
}
.pakete-legal {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

/* ---------- Flow (Ablauf) ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  counter-reset: flow;
}
.flow-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 230px;
  padding: 26px 22px;
  background: var(--paper);
  transition: background 220ms var(--ease);
}
.flow-step:hover { background: var(--white); }
.step-num {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--olive);
  margin-bottom: 26px;
}
.flow-step h3 { margin-bottom: 4px; font-size: 1.1rem; }
.flow-step p { color: var(--graphite); font-size: 0.93rem; line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq-shell { max-width: 920px; }
.faq { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.faq-item[open] { border-color: var(--charcoal); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  border-right: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  transform: rotate(45deg);
  transition: transform 240ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-body { padding: 0 22px 22px; }
.faq-body p { color: var(--graphite); line-height: 1.6; max-width: 70ch; }

/* ---------- CTA + Form ---------- */
.cta {
  position: relative;
  isolation: isolate;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}
.cta-gradient {
  display: none;
}
.cta::before,
.cta::after {
  z-index: 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  align-items: center;
  min-height: clamp(640px, 72vw, 800px);
}
.cta-copy > p { color: var(--ink-dark-soft); margin-bottom: 28px; font-size: 1.06rem; line-height: 1.6; }
.cta-media {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 35px);
  width: min(100%, 1020px);
  margin-left: 0;
  margin-right: auto;
  padding: clamp(38px, 6vw, 60px);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  background: rgb(12 14 9 / 58%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(244, 245, 241, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.form-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}
.form-title {
  margin-bottom: clamp(26px, 4vw, 32px);
  max-width: 100%;
  font-size: clamp(2rem, 4.1vw, 3rem);
}
.form-intro {
  color: var(--ink-dark-soft);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.62;
  max-width: 36ch;
}
.form-contact {
  display: grid;
  gap: 16px;
  margin-top: clamp(30px, 5vw, 58px);
}
.form-contact div {
  display: grid;
  gap: 6px;
}
.form-contact span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-contact a {
  color: var(--paper);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 650;
  width: fit-content;
  transition: color 160ms var(--ease);
}
.form-contact a:hover { color: var(--lime); }
.form {
  display: grid;
  align-content: center;
  gap: 18px;
}
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: 0.94rem; color: var(--paper); }
.field .opt { color: var(--ink-dark-soft); font-weight: 400; }
.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  background: rgba(16, 18, 16, 0.5);
  color: var(--paper);
  outline: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d7ff22' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field select option { color: var(--charcoal); }
.field input::placeholder { color: rgba(244, 245, 241, 0.35); }
.field input:focus,
.field select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(215, 255, 34, 0.18);
}
.field small { color: var(--ink-dark-soft); font-size: 0.82rem; line-height: 1.4; }

.field.is-error input,
.field.is-error select { border-color: #f0a890; box-shadow: 0 0 0 3px rgba(240, 168, 144, 0.16); }
.field.is-error small { color: #f3b6a4; }

.form-status { margin: 0; font-size: 0.9rem; min-height: 1px; }
.form-status.is-error { color: #f3b6a4; }
.form-status.is-success { color: var(--lime); font-weight: 600; }

.btn-primary[data-loading] { color: transparent; pointer-events: none; position: relative; }
.btn-primary[data-loading]::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(38, 52, 0, 0.3);
  border-top-color: var(--olive);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.microcopy {
  margin: 4px 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ink-dark-soft);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--ink-dark-soft);
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand img { height: 35px; margin-bottom: 20px; }
.footer-brand p { max-width: 42ch; line-height: 1.6; font-size: 0.95rem; }
.footer-nav { display: grid; gap: 12px; align-content: start; }
.footer-nav a { color: var(--ink-dark-soft); transition: color 160ms var(--ease); width: fit-content; }
.footer-nav a:hover { color: var(--lime); }
.footer-meta { display: grid; gap: 10px; align-content: start; font-family: var(--mono); font-size: 0.82rem; }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.84rem;
}

/* ---------- Tooltip ---------- */
.tt { border-bottom: 1px dotted currentColor; cursor: help; outline: none; }
.tt:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; border-radius: 3px; }
.tooltip {
  position: fixed;
  z-index: 80;
  max-width: 260px;
  padding: 11px 14px;
  border-radius: 9px;
  background: var(--charcoal);
  color: var(--paper);
  font-size: 0.82rem;
  line-height: 1.45;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
}
.tooltip.is-visible { opacity: 1; transform: translateY(0); }
.tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: var(--arrow, 50%);
  width: 10px; height: 10px;
  background: var(--charcoal);
  transform: translateX(-50%) rotate(45deg);
}

/* ---------- Tooltip-Zeilen: jedes Feature mit Info-Symbol ---------- */
.feat li.tt-row { padding-right: 26px; cursor: help; outline: none; }
.feat li.tt-row::after {
  content: "i";
  position: absolute;
  right: 0;
  top: 0.1em;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-style: normal;
  line-height: 1;
  border-radius: 50%;
  border: 1px solid rgba(244, 245, 241, 0.28);
  color: rgba(244, 245, 241, 0.55);
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.feat li.tt-row:hover::after,
.feat li.tt-row:focus-visible::after {
  background: var(--lime);
  color: var(--olive);
  border-color: var(--lime);
}
.feat li.tt-row:focus-visible { border-radius: 6px; box-shadow: 0 0 0 2px rgba(215, 255, 34, 0.4); }

/* ---------- Offset-Figuren ---------- */
.offset-figure { position: relative; isolation: isolate; margin: 0; }
.offset-figure > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}
.offset-figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 20px -20px -20px 20px;
  border-radius: var(--r-lg);
  background: var(--mist);
  border: 1px solid var(--border);
}
.offset-figure.offset-left::before { inset: 20px 20px -20px -20px; }
.offset-figure.offset-lime::before { background: rgba(215, 255, 34, 0.16); border-color: rgba(215, 255, 34, 0.4); }
.section-dark .offset-figure::before { background: rgba(244, 245, 241, 0.05); border-color: var(--line-dark); }
.section-dark .offset-figure.offset-lime::before { background: rgba(215, 255, 34, 0.12); border-color: rgba(215, 255, 34, 0.32); }

.ratio-wide { aspect-ratio: 16 / 10; }
.ratio-portrait { aspect-ratio: 4 / 5; }
.ratio-square { aspect-ratio: 1 / 1; }

.split-text .offset-figure { margin-top: 34px; }
.ki-copy .offset-figure { margin-top: 30px; }
.cta-copy .offset-figure { margin-top: 28px; }

/* media-col als Offset-Figur (Warum wichtig, Lizenzen erklärt) */
.media-col.offset-figure { overflow: visible; box-shadow: none; border-radius: 0; margin: 0; }
.media-col.offset-figure > img { aspect-ratio: auto; height: 100%; }

/* schwebendes Label auf Bildern */
.media-tag {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(244, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 222, 201, 0.7);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
}
.media-tag .status-dot { width: 8px; height: 8px; margin: 0; }

/* ---------- Head-Media: Section-Head + Offset-Bild ---------- */
.head-media {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
  margin-bottom: clamp(44px, 5vw, 68px);
}
.head-media .section-head { margin-bottom: 0; }
.head-media-reverse { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
.head-media-reverse .section-head { order: 2; }
#ausgangslage .head-media {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.large-media {
  margin: 0;
 
  border-radius: var(--r-lg);
  overflow: hidden;
}
.large-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------- Reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .status-dot,
  .status-ticker-dot { animation: none; }
  .status-ticker-track { animation: none; }
  .status-ticker-viewport { overflow-x: auto; mask-image: none; }
  .status-ticker-text[aria-hidden="true"] { display: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .site-header { grid-template-columns: auto 1fr; }
  .nav { display: none; }
  .header-actions { justify-self: end; }
  .nav-toggle { display: flex; }
  .hero {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--paper);
  }
  .hero-bg {
    position: relative;
    inset: auto;
    height: clamp(420px, 58dvh, 560px);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding-block: clamp(36px, 8vw, 64px) clamp(56px, 9vw, 88px);
  }
  .hero-copy { grid-column: 1; grid-row: 1; }
  .hero-cards {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
  }
  .hero-bg img { object-position: 80% center; }
  .hero-gradient { display: none; }
  .split,
  .split-media,
  .ki-inner,
  .cta-grid { grid-template-columns: 1fr; }
  .ki-panel {
    display: flex;
    flex-direction: column;
    padding-block: 0;
    background-image: none;
    background-color: var(--black);
  }
  .ki-panel::before {
    content: "";
    display: block;
    flex: none;
    height: clamp(420px, 58dvh, 560px);
    background-image: url("assets/img/ki-ready.optimized.jpg");
    background-image: image-set(
      url("assets/img/ki-ready.avif") type("image/avif"),
      url("assets/img/ki-ready.webp") type("image/webp"),
      url("assets/img/ki-ready.optimized.jpg") type("image/jpeg")
    );
    background-position: 70% center;
    background-size: 232%;
    background-repeat: no-repeat;
    order: 2;
  }
  .cta-grid {
    justify-content: stretch;
    min-height: auto;
  }
  .form-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-head {
    justify-content: flex-start;
  }
  .form-title {
    
    margin-bottom: 18px;
  }
  .ki-inner {
    min-height: auto;
    padding-block: clamp(44px, 8vw, 72px);
    order: 1;
  }
  .ki-copy h2 { max-width: 87%; }
  .ki-visual {
    display: none;
  }
  .ki-screen {
    right: auto;
    left: 8%;
    top: 8%;
    width: min(620px, 84%);
  }
  .ki-signal-one { left: 0; top: 4%; }
  .ki-signal-two { left: 4%; top: 19%; }
  .ki-signal-three { left: 8%; top: 34%; }
  .ki-code { left: 0; bottom: 3%; }
  .ki-points { right: 0; bottom: 12%; width: min(320px, 56%); }
  .split-reverse .split-text { order: 0; }
  .media-col { order: -1; }
  .media-col img { aspect-ratio: 16 / 10; }
  .head-media,
  .head-media-reverse { grid-template-columns: 1fr; }
  #ausgangslage .head-media { grid-template-columns: 1fr; }
  .head-media-reverse .section-head { order: 0; }
  .head-media .offset-figure,
  .media-col.offset-figure { aspect-ratio: 16 / 10; }
  .section-banner { min-height: clamp(380px, 68vw, 520px); align-items: flex-end; }
  .section-banner-copy { max-width: none; }
  .section-banner-bg img { object-position: 68% 30%; }
  .section-banner-gradient {
    background:
      linear-gradient(
        to bottom,
        rgba(16, 18, 16, 0.94) 0%,
        rgba(16, 18, 16, 0.82) 45%,
        rgba(16, 18, 16, 0.45) 100%
      );
  }
  .cards-3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .cards-2 { grid-template-columns: 1fr; max-width: 460px; }
  .compare { grid-template-columns: 1fr; }
  .hub { grid-template-columns: 1fr; gap: 16px; max-width: 520px; margin-inline: auto; }
  .hub-lines { display: none; }
  .hub-center { order: -1; margin-bottom: 8px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .site-header { width: min(100% - 20px, var(--shell)); padding: 8px 8px 8px 14px; }
  .brand { height: 55px; }
  .brand img { height: 55px; }
  .header-actions .btn-sm { display: none; }
  .hero-bg { height: clamp(420px, 56dvh, 520px); }
  .hero-bg img { object-position: 84% center; }
  .form-wrap {
    padding: clamp(26px, 8vw, 38px);
  }
  .service-grid,
  .flow { grid-template-columns: 1fr; }
  .service-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-icon {
    width: 72px;
    height: 72px;
  }
  .service-icon svg {
    width: 34px;
    height: 34px;
  }
  .service-card-cta { grid-column: auto; }
  .service-cta-main {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .service-cta-btn { width: 100%; }
  .status-ticker { grid-template-columns: 1fr; }
  .status-ticker-label {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .ki-panel {
    padding-block: 0;
    background-image: none;
  }
  .ki-panel::before {
    height: clamp(360px, 55dvh, 379px);
    background-position: 82% center;
  }
  .ki-metrics { grid-template-columns: 1fr; gap: 12px; }
  .ki-visual { min-height: 0; }
  .ki-screen {
    left: 0;
    top: 120px;
    width: 100%;
    transform: none;
  }
  .ki-signal {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    width: max-content;
    margin-bottom: 10px;
  }
  .ki-signal::after { display: none; }
  .ki-code {
    left: 0;
    right: auto;
    bottom: 132px;
    min-width: 0;
    width: 100%;
  }
  .ki-points {
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
  }
  .cards-4 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tabs { width: 100%; justify-content: space-between; overflow-x: auto; }
  .tab { padding: 11px 16px; white-space: nowrap; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; }
  .point-list li { grid-template-columns: 40px 1fr; gap: 12px; }
}
