/* ============================================================
   Werkspur — werkspur.at marketing page
   Design tokens + styles per design_handoff_werkspur_website
   (FoundryUI token values, recreated without the library).
   ============================================================ */

/* ---------- Fonts (self-hosted — no Google-Fonts CDN, GDPR) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/jetbrains-mono-latin-600-normal.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --accent: #f97316;
  --a600: #ea580c;
  --a400: #fb8237;
  --a300: #fba474;
  --glow: #fb923c;
  --accent-fg: #ffffff;

  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #f4f6f8;
  --surface-3: #eceff2;

  --fg-1: #181d22;
  --fg-2: #3a434c;
  --fg-3: #6b7682;
  --fg-4: #97a1ab;

  --border: #e3e7eb;
  --border-strong: #d7dce1;

  --dark: #0d1115;
  --dark-card: #12171d;
  --dark-card-2: #151b21;

  --ok: #15a05a;
  --ok-bg: #e3f5ea;
  --ok-fg: #0f7a43;
  --warn: #d97706;
  --warn-bg: #fdf0d9;
  --warn-fg: #a65a06;
  --err: #dc2626;
  --err-bg: #fbe3e3;
  --err-fg: #a91d1d;
  --idle: #5b7184;

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

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg-1);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--a600); }
h1, h2, h3, p { margin: 0; }
.lucide { width: 1em; height: 1em; stroke-width: 1.75; display: block; }

@keyframes wsPulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
section[id] { scroll-margin-top: 84px; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow--glow { color: var(--glow); }

.h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  max-width: 720px;
}

/* ---------- Buttons (FoundryUI-equivalent) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  text-decoration: none;
}
.btn--sm { height: 36px; padding: 0 14px; font-size: 14px; }
.btn--lg { height: 48px; padding: 0 22px; font-size: 15.5px; }
.btn--primary { background: var(--accent); color: var(--accent-fg); }
.btn--primary:hover { background: var(--a600); color: var(--accent-fg); }
.btn--secondary { background: rgba(255, 255, 255, 0.92); color: var(--fg-1); }
.btn--secondary:hover { background: #fff; color: var(--fg-1); }
.btn--outline { background: var(--surface); color: var(--fg-2); border-color: var(--border-strong); }
.btn--outline:hover { border-color: var(--fg-4); color: var(--fg-1); }
.btn--default { background: var(--accent); color: var(--accent-fg); }
.btn--default:hover { background: var(--a600); }
.btn--grow { flex: 1; }

/* ---------- Inputs ---------- */
.input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--fg-1);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 0.375rem;
  outline: none;
}
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15); }

/* ---------- Badge ---------- */
.badge--ok {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ok-fg);
  background: rgba(21, 160, 90, 0.14);
  border: 1px solid rgba(21, 160, 90, 0.35);
  border-radius: 999px;
  padding: 2px 10px;
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 50;
  background: rgba(13, 17, 21, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; color: #fff; }
.nav__brand:hover { color: #fff; }
.nav__wordmark { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.nav__chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 5px;
  padding: 2px 6px;
  text-transform: uppercase;
}
.ws-navlinks { display: flex; align-items: center; gap: 28px; font-size: 14.5px; color: rgba(255, 255, 255, 0.72); }
.ws-navlinks a { color: inherit; }
.ws-navlinks a:hover { color: #fff; }
@media (max-width: 900px) { .ws-navlinks { display: none; } }

/* ================= HERO ================= */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 150px 0 90px;
  overflow: hidden;
}
.blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 66px 66px;
  pointer-events: none;
}
.blueprint--dim {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
.hero__glow {
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 520px;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.20), transparent 65%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__copy { max-width: 860px; }
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glow);
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 26px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: wsPulse 2s infinite;
  flex: none;
}
.hero__h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.hero__h1 .accent { color: var(--accent); }
.hero__h1 .dim { color: rgba(255, 255, 255, 0.5); }
.hero__lead {
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  max-width: 660px;
}
.hero__kicker {
  margin: 30px 0 34px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}
.hero__kicker .dim { color: rgba(255, 255, 255, 0.5); }
.hero__kicker .accent { color: var(--accent); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Cockpit window */
.cockpit { margin-top: 64px; position: relative; }
.cockpit__frame {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-card);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8);
}
.cockpit__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: #0f141a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cockpit__dots { display: flex; gap: 7px; }
.cockpit__dots span { width: 11px; height: 11px; border-radius: 50%; background: #39434d; }
.cockpit__title { font-family: var(--mono); font-size: 12px; color: rgba(255, 255, 255, 0.5); }
.cockpit__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: #4ade80;
}
.cockpit__shot { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #0f1318; }
.stat-chip {
  position: absolute;
  background: #171d23;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.7);
}
.stat-chip--left { left: -14px; bottom: 34px; }
.stat-chip--right { right: -14px; top: 80px; }
.stat-chip__label { font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.08em; }
.stat-chip__value { font-family: var(--mono); font-size: 26px; font-weight: 600; color: #fff; }
.stat-chip__value--ok { color: #4ade80; }
@media (max-width: 700px) {
  .stat-chip--left { left: 10px; bottom: 10px; }
  .stat-chip--right { right: 10px; top: 10px; }
}

/* Image placeholders (replace with <img> — see README) */
.shot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(150, 160, 172, 0.8);
  border: 1px dashed rgba(150, 160, 172, 0.35);
  border-radius: 10px;
  margin: 14px;
}
.shot-placeholder--light { color: var(--fg-4); border-color: var(--border-strong); }
.shot-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ================= SECTIONS (shared) ================= */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--bg { background: var(--bg); }
.section--surface { background: var(--surface); border-top: 1px solid var(--border); }
.section--surface-bordered {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--dark { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.section--dark .container { position: relative; }

.cards { display: grid; gap: 20px; margin-top: 44px; }
.cards--min300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards--min280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.cards--min330 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.cards--min320 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* ================= PROBLEM ================= */
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
}
.problem-card--warn { border-left: 4px solid var(--warn); }
.problem-card--err { border-left: 4px solid var(--err); }
.problem-card--idle { border-left: 4px solid var(--idle); }
.problem-card__icon { display: inline-flex; font-size: 26px; margin-bottom: 18px; }
.problem-card--warn .problem-card__icon { color: var(--warn); }
.problem-card--err .problem-card__icon { color: var(--err); }
.problem-card--idle .problem-card__icon { color: var(--idle); }
.problem-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.problem-card p { font-size: 15.5px; line-height: 1.6; color: var(--fg-3); }

.punch {
  margin-top: 22px;
  background: var(--dark-card);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.punch p { font-size: clamp(18px, 2.2vw, 24px); line-height: 1.4; font-weight: 500; max-width: 760px; }
.punch .accent { color: var(--accent); }

/* ================= DREI SÄULEN ================= */
.pillar { border-top: 2px solid var(--accent); padding-top: 26px; }
.pillar__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pillar__num { font-family: var(--mono); font-size: 13px; color: var(--fg-4); }
.pillar__icon { display: inline-flex; font-size: 24px; color: var(--accent); }
.pillar h3 { margin: 0 0 12px; font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }
.pillar p { font-size: 16px; line-height: 1.6; color: var(--fg-3); }

/* ================= FUNKTIONEN ================= */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
}
.feature-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.feature-card__icon { display: inline-flex; font-size: 22px; color: var(--accent); }
.feature-card h3 { font-size: 19px; font-weight: 600; }
.feature-card ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-2);
}
.feature-card li { display: flex; gap: 12px; align-items: flex-start; }
.feature-card li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--accent);
  margin-top: 8px;
}

.gallery { margin-top: 56px; }
.gallery > h3 { margin: 0 0 6px; font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }
.gallery > p { margin: 0 0 26px; font-size: 15.5px; color: var(--fg-3); }
.gallery-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--surface); }

/* Carousel (product gallery) */
.carousel__frame {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 40px 90px -40px rgba(16, 24, 40, 0.45), 0 6px 18px rgba(16, 24, 40, 0.06);
}
.carousel__track { display: flex; transition: transform 0.35s ease; }
.carousel__slide { flex: 0 0 100%; margin: 0; min-width: 0; }
.carousel__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: linear-gradient(to bottom, #fbfcfd, #f2f4f6);
  border-bottom: 1px solid var(--border);
}
.carousel__mac { display: flex; gap: 7px; flex-shrink: 0; }
.carousel__mac span { width: 11px; height: 11px; border-radius: 50%; }
.carousel__mac span:nth-child(1) { background: #ff5f57; }
.carousel__mac span:nth-child(2) { background: #febc2e; }
.carousel__mac span:nth-child(3) { background: #28c840; }
.carousel__bar-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel__img {
  display: block;
  width: 100%;
  /* height:auto is load-bearing: without it the img's height attribute wins
     and aspect-ratio is ignored — cover then crops horizontally. */
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  background: var(--surface-3);
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.92);
  color: var(--fg-1);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.12);
}
.carousel__nav:hover { background: #fff; border-color: var(--fg-4); }
.carousel__nav--prev { left: 14px; }
.carousel__nav--next { right: 14px; }
.carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  padding: 0;
}
.carousel__dot[aria-selected="true"] { background: var(--accent); }
.gallery-card__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.gallery-card__bar .lucide-wrap { display: inline-flex; font-size: 16px; color: var(--fg-3); }
.gallery-card__bar span:last-child { font-family: var(--mono); font-size: 12px; color: var(--fg-3); }
.gallery-card__shot { position: relative; width: 100%; aspect-ratio: 4 / 3; background: var(--surface-3); }

/* ================= BUSINESS CASE ================= */
.bizcase__intro { margin: 20px 0 0; font-size: 18px; line-height: 1.6; color: var(--fg-3); max-width: 720px; }
.bizcase__grid {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 24px;
  margin-top: 44px;
  align-items: start;
}
@media (max-width: 860px) { .bizcase__grid { grid-template-columns: 1fr; } }

.roi-inputs { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.roi-inputs__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 22px;
}
.roi-label { display: block; font-size: 13px; font-weight: 600; color: var(--fg-2); margin-bottom: 8px; }
.roi-label--spaced { margin-top: 20px; }
.roi-shifts { display: flex; gap: 8px; }
.roi-presets-wrap { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.roi-presets-hint { font-size: 12px; color: var(--fg-4); margin-bottom: 10px; }
.roi-presets { display: flex; flex-wrap: wrap; gap: 8px; }

.roi-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.roi-tile { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.roi-tile__label { font-size: 13px; color: var(--fg-3); margin-bottom: 8px; }
.roi-tile__value {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.roi-tile--ok { background: var(--ok-bg); border-color: rgba(21, 160, 90, 0.28); }
.roi-tile--ok .roi-tile__label, .roi-tile--ok .roi-tile__value { color: var(--ok-fg); }
.roi-tile--dark { background: var(--dark-card); border: none; color: #fff; }
.roi-tile--dark .roi-tile__label { color: rgba(255, 255, 255, 0.6); }
.roi-tile--dark .roi-tile__value { color: var(--glow); }

.roi-warn {
  margin-top: 16px;
  background: var(--warn-bg);
  border: 1px solid rgba(217, 119, 6, 0.28);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--warn-fg);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.roi-warn .lucide-wrap { display: inline-flex; font-size: 18px; flex: none; margin-top: 1px; }
.roi-warn[hidden] { display: none; }

.bizcase__note { margin: 22px 0 0; font-size: 15px; line-height: 1.6; color: var(--fg-3); }
.bizcase__note strong { color: var(--fg-2); font-weight: 500; }
.bizcase__fineprint { margin: 14px 0 0; font-size: 13px; line-height: 1.55; color: var(--fg-4); }

/* ================= BETRIEB ================= */
.ops-card {
  background: var(--dark-card-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
}
.ops-card__icon { display: inline-flex; font-size: 24px; color: var(--glow); margin-bottom: 16px; }
.ops-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 600; }
.ops-card p { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }

.audit-panel {
  background: var(--ok-bg);
  border: 1px solid rgba(21, 160, 90, 0.35);
  border-left: 4px solid var(--ok);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.audit-panel__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.audit-panel__head .lucide-wrap { display: inline-flex; font-size: 24px; color: var(--ok); }
.audit-panel__title { font-size: 17px; font-weight: 600; color: var(--ok-fg); }
.audit-panel__badge { margin-left: auto; }
.audit-panel__mono { font-family: var(--mono); font-size: 12.5px; line-height: 1.7; color: var(--ok-fg); opacity: 0.9; }

/* ================= PREISE ================= */
.price-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  grid-column: span 2;
  min-width: 0;
}
@media (max-width: 1000px) { .price-panel { grid-column: span 1; } }
.price-rows { display: flex; flex-direction: column; gap: 2px; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row__name { font-size: 17px; font-weight: 600; }
.price-row__desc { font-size: 14px; color: var(--fg-3); }
.price-row__price { font-family: var(--mono); font-size: 22px; font-weight: 600; white-space: nowrap; }
.price-row__price small { font-size: 13px; color: var(--fg-4); font-weight: 600; }
.price-row__incl { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--ok-fg); white-space: nowrap; }

.price-side { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.price-card--dark { background: var(--dark-card); border-radius: 18px; padding: 28px; color: #fff; }
.price-card--pilot { background: var(--surface); border: 1px solid var(--accent); border-radius: 18px; padding: 28px; }
.price-card__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.price-card--dark .price-card__eyebrow { color: var(--glow); }
.price-card--pilot .price-card__eyebrow { color: var(--accent); }
.price-card__price { font-family: var(--mono); font-size: 28px; font-weight: 600; }
.price-card--dark .price-card__price small { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.price-card--pilot .price-card__price small { font-size: 13px; color: var(--fg-4); }
.price-card--dark p { margin: 12px 0 0; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.6); }
.price-card--pilot p { margin: 12px 0 0; font-size: 14px; line-height: 1.55; color: var(--fg-3); }
.price-footnote { margin: 26px 0 0; font-size: 14.5px; color: var(--fg-3); max-width: 760px; }

/* Pricing-off band (used when showPricing = false) */
.price-alt-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.price-alt-band p { font-size: clamp(18px, 2.2vw, 24px); font-weight: 500; max-width: 640px; line-height: 1.4; }

/* ================= ABLAUF ================= */
.step-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.step-card__label { font-family: var(--mono); font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.step-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 600; }
.step-card p { font-size: 15px; line-height: 1.6; color: var(--fg-3); }
.ablauf__cta { margin-top: 32px; }

/* ================= FAQ ================= */
.faq .container { max-width: 860px; }
.faq h2 { margin-bottom: 40px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg-1);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary .marker { color: var(--accent); font-size: 20px; flex: none; }
.faq__list details[open] summary .marker { transform: rotate(45deg); }
.faq__list details p { margin: 14px 0 0; font-size: 15px; line-height: 1.65; color: var(--fg-3); }

/* ================= ÜBER ================= */
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: center;
}
.about__h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 600; margin: 0 0 20px; }
.about__lead { margin: 0 0 18px; font-size: 17px; line-height: 1.65; color: var(--fg-2); }
.about__sub { font-size: 17px; line-height: 1.65; color: var(--fg-3); }
.about__side { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.about__portrait {
  width: 180px; height: 180px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--surface-3);
}
.about__contact { font-family: var(--mono); font-size: 13.5px; line-height: 1.8; color: var(--fg-2); }
.about__contact .name { color: var(--fg-1); font-weight: 600; }
.about__contact .addr { color: var(--fg-3); }

/* ================= FOOTER ================= */
.footer { background: var(--dark); color: #fff; padding: clamp(56px, 8vw, 90px) 0 40px; }
.footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__cta-copy { max-width: 520px; }
.footer__h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.footer__buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.footer__contact { font-family: var(--mono); font-size: 13px; line-height: 1.9; color: rgba(255, 255, 255, 0.55); }
.footer__contact .head { color: #fff; font-weight: 600; margin-bottom: 6px; }
.footer__contact a { color: var(--glow); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}
.footer__brand { display: flex; align-items: center; gap: 11px; }
.footer__brand .wordmark { font-weight: 600; }
.footer__brand .tag { font-family: var(--mono); font-size: 12px; color: rgba(255, 255, 255, 0.4); }
.footer__seo {
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 560px;
  text-align: right;
}
.footer__legal { font-family: var(--mono); font-size: 11.5px; }
.footer__legal a { color: rgba(255, 255, 255, 0.4); }
.footer__legal a:hover { color: rgba(255, 255, 255, 0.7); }

/* ================= Impressum (subpage) ================= */
.legal-page { max-width: 720px; margin: 0 auto; padding: 140px 28px 80px; }
.legal-page h1 { font-size: 32px; letter-spacing: -0.02em; margin-bottom: 24px; }
.legal-page h2 { font-size: 19px; margin: 28px 0 8px; }
.legal-page p { font-size: 15.5px; line-height: 1.7; color: var(--fg-2); margin: 0 0 10px; }
