:root {
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --ink: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --line: #dbe3ef;
  --line-soft: #edf2f7;
  --page: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --green: #059669;
  --amber: #d97706;
  --red: #dc2626;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --hero-soft-bg: linear-gradient(135deg, rgba(219, 234, 254, 0.72), rgba(230, 247, 245, 0.52), rgba(236, 248, 255, 0.68));
  --hero-soft-border: rgba(219, 227, 239, 0.88);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eef5ff 0, var(--page) 520px);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); }
img { max-width: 100%; display: block; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.hero .container { width: min(1360px, calc(100% - 56px)); }
.topbar .container {
  width: min(1600px, calc(100% - 48px));
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 227, 239, 0.82);
  background: rgba(247, 249, 252, 0.86);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: clamp(18px, 1.6vw, 32px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 1.1rem;
  font-weight: 800;
  margin-left: 0;
}
.brand-copy {
  display: grid;
  gap: 1px;
  justify-items: center;
  line-height: 1.05;
  text-align: center;
}
.brand-name { display: block; }
.brand-copy small {
  display: block;
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  white-space: nowrap;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}
.topbar .brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  clip-path: inset(0 round 10px);
}
.brand b { color: var(--brand); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.35vw, 7px);
  list-style: none;
  flex: 0 1 auto;
  justify-content: center;
  justify-self: center;
  margin-left: 0;
  min-width: 0;
  white-space: nowrap;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 clamp(7px, 0.55vw, 11px);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(37, 99, 235, 0.09); color: var(--ink); }
.nav-links li:nth-child(5) {
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}
.nav-links li:nth-child(n + 5) a {
  font-size: 0.83rem;
}
.nav-links li:nth-child(n + 5) a:not(.active):not(:hover) {
  color: var(--soft);
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-actions-auth { flex: 0 0 auto; justify-self: end; align-items: center; gap: 7px; margin: 0; }
.nav-actions-auth > a { display: inline-flex; }
.nav-actions-auth .nav-cta-kicker { display: none; }
.nav-actions-auth .btn-nav-cta { min-width: 88px; min-height: 42px; padding: 8px 14px; font-size: 0.9rem; }
.nav-actions-auth .nav-cta-main { font-size: 0.9rem; font-weight: 650; }
.nav-links .nav-mobile-action { display: none; }
.btn-nav-cta {
  min-width: 144px;
  min-height: 46px;
  padding: 7px 11px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-weight: 420;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
  line-height: 1.05;
  text-align: center;
}
.btn-nav-cta.btn-primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.nav-cta-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  line-height: 1.1;
  font-weight: 420;
}
.nav-cta-main {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  line-height: 1.08;
  font-weight: 620;
  letter-spacing: 0;
}
.btn-nav-cta.btn-secondary .nav-cta-main { color: var(--ink); }
.btn-nav-cta.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.btn-nav-cta.btn-primary:hover .nav-cta-kicker,
.btn-nav-cta.btn-primary:hover .nav-cta-main {
  color: #fff;
}
.btn-nav-cta.btn-primary:active {
  transform: translateY(1px);
}

.btn-nav-cta.btn-primary::after {
  display: none;
}

.btn-nav-cta.btn-primary:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.28);
  outline-offset: 2px;
}
.btn-nav-cta:hover {
  filter: brightness(0.98);
}
.mobile-toggle { display: none; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

@media (min-width: 981px) and (max-width: 1280px) {
  .topbar .container { width: calc(100% - 24px); }
  .nav { gap: 8px; }
  .brand { gap: 7px; font-size: 0.96rem; }
  .topbar .brand img { width: 36px; height: 36px; }
  .nav-links { gap: 0; margin-left: 0; }
  .nav-links a { min-height: 36px; padding: 0 5px; font-size: 0.76rem; }
  .nav-links li:nth-child(5) { margin-left: 2px; padding-left: 5px; }
  .nav-links li:nth-child(n + 5) a { font-size: 0.74rem; }
  .nav-actions-auth { gap: 4px; }
  .btn-nav-cta { min-width: 118px; min-height: 42px; padding: 6px 8px; }
  .nav-cta-kicker { font-size: 0.58rem; }
  .nav-cta-main { font-size: 0.73rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  font-size: 0.95rem;
  cursor: pointer;
}
.btn-primary { background: var(--brand); color: white; box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: white; border-color: var(--line); color: var(--ink); }
.btn-secondary:hover { border-color: #9bb9f4; }
.btn-pricing-soft {
  background: linear-gradient(135deg, #dbeafe 0%, #e5ecff 52%, #f2f5ff 100%);
  border-color: #bfdbfe;
  color: #0f172a;
}
.btn-pricing-soft:hover {
  background: linear-gradient(135deg, #d0e2ff 0%, #dfe8ff 52%, #edf2ff 100%);
  border-color: #93c5fd;
}
.btn-pricing-soft:active { transform: translateY(1px); }
.btn-link { color: var(--brand); font-weight: 750; }

.hero,
.page-hero,
.tool-page-hero,
.waitlist-hero {
  background: var(--hero-soft-bg);
  border-bottom: 1px solid var(--hero-soft-border);
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 44px 0 34px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.66fr) minmax(720px, 1.34fr);
  align-items: center;
  gap: 66px;
  transform: translateY(-26px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}
h1 {
  margin-top: 12px;
  max-width: 540px;
  font-size: clamp(1.65rem, 2.35vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-brand {
  color: var(--ink);
  font-weight: 800;
}
.hero-brand b { color: var(--brand); }
.lead {
  margin-top: 16px;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.55;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-note {
  margin-top: 18px;
  color: var(--soft);
  font-size: 0.94rem;
}

.page-hero {
  min-height: clamp(400px, calc(50vh - 36px), 500px);
  display: flex;
  align-items: center;
  padding: 38px 0 32px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 68px;
}
.page-hero-grid > * { min-width: 0; }
.page-hero h1 {
  max-width: 760px;
  font-size: clamp(1.8rem, 2.55vw, 2.2rem);
  line-height: 1.08;
}
.page-hero .lead {
  max-width: 680px;
  font-size: 0.98rem;
  line-height: 1.55;
}
.hero-graphic {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 227, 239, 0.95);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(5, 150, 105, 0.06)),
    #ffffff;
  box-shadow: var(--shadow);
}
.module-graph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 330px;
  padding: 54px 24px 112px;
}
.module-graph::before {
  content: "Ein Vorgang – von Anfrage bis Abschluss";
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
}
.module-graph::after {
  content: "Dabei bleiben alle Informationen verbunden";
  position: absolute;
  right: calc(12% - 58px);
  bottom: 18px;
  left: calc(12% - 58px);
  height: 88px;
  padding: 12px 16px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 10px;
  background: rgba(239, 246, 255, 0.8);
  color: var(--soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.module-graph-lines { display: none; }
.module-graph-node {
  position: absolute;
  z-index: 2;
  top: 40%;
  width: 116px;
  min-height: 82px;
  padding: 12px 9px;
  border: 1px solid rgba(191, 219, 254, 0.95);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}
.module-graph-node-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: var(--brand);
  background: linear-gradient(145deg, #eff6ff, #e5edff);
  box-shadow: inset 0 0 0 1px #d6e2f9;
}
.module-graph-node-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}
.module-graph-node-label {
  min-height: 31px;
  display: grid;
  place-content: center;
  gap: 2px;
}
.module-graph-node-label strong {
  font-size: 0.74rem;
  line-height: 1.05;
  white-space: nowrap;
}
.module-graph-node-label small {
  color: var(--soft);
  font-size: 0.63rem;
  font-weight: 600;
  line-height: 1.05;
  white-space: nowrap;
}
.module-graph-node.dashboard { left: 12%; }
.module-graph-node.vorgaenge { left: 37%; }
.module-graph-node.leitstand { left: 63%; }
.module-graph-node.finanzen { left: 88%; }
.module-graph-node.dashboard::after,
.module-graph-node.vorgaenge::after,
.module-graph-node.leitstand::after {
  content: "→";
  position: absolute;
  left: calc(100% + 7px);
  top: 50%;
  color: #60a5fa;
  font-size: 1.15rem;
  font-weight: 500;
  transform: translateY(-54%);
}
.module-graph-node.team,
.module-graph-node.einkauf,
.module-graph-node.inventar,
.module-graph-node.verwaltung {
  top: 83%;
  width: 106px;
  min-width: 0;
  min-height: 30px;
  padding: 7px 11px;
  border-color: #dbeafe;
  border-radius: 999px;
  flex-direction: row;
  font-size: 0.7rem;
  box-shadow: none;
}
.module-graph-node.team .module-graph-node-icon,
.module-graph-node.einkauf .module-graph-node-icon,
.module-graph-node.inventar .module-graph-node-icon,
.module-graph-node.verwaltung .module-graph-node-icon {
  display: none;
}
.module-graph-node.team { left: 20%; }
.module-graph-node.einkauf { left: 40%; }
.module-graph-node.inventar { left: 60%; }
.module-graph-node.verwaltung { left: 80%; }
.module-graph-node.settings { display: none; }
.graphic-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  padding: 26px;
}
.pricing-tier {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  text-align: center;
}
.pricing-tier strong,
.pricing-tier small {
  display: block;
}
.pricing-tier strong {
  color: var(--ink);
  font-size: 1.05rem;
}
.pricing-tier small {
  color: var(--soft);
  font-weight: 700;
}
.tier-people {
  min-height: 48px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}
.tier-people span {
  position: relative;
  width: 16px;
  height: 25px;
  border-radius: 999px 999px 8px 8px;
  background: #2563eb;
}
.tier-people span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: inherit;
}
.pricing-tier.basis .tier-people span,
.pricing-tier.team .tier-people span,
.pricing-tier.business .tier-people span { background: #2563eb; }
.pricing-tier.enterprise {
}
.tier-building {
  width: 78px;
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 10px;
  border-radius: 8px 8px 3px 3px;
  background: #2563eb;
}
.tier-building i {
  display: block;
  height: 11px;
  border-radius: 2px;
  background: #dbeafe;
}

.wegweiser-map {
  --path-col-left: 16%;
  --path-col-mid: 50%;
  --path-col-right: 84%;
  --path-row-top: 18%;
  --path-row-mid: 50%;
  --path-row-bottom: 86%;
  min-height: 330px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 227, 239, 0.95);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(5, 150, 105, 0.08)),
    #fff;
  box-shadow: var(--shadow);
}
.weg-node {
  position: absolute;
  z-index: 2;
  width: clamp(108px, 16vw, 136px);
  min-height: 74px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}
.weg-node.step-1 {
  left: var(--path-col-left);
  top: var(--path-row-top);
}
.weg-node.step-2 {
  left: var(--path-col-mid);
  top: var(--path-row-top);
}
.weg-node.step-3 {
  left: var(--path-col-right);
  top: var(--path-row-top);
}
.weg-node.step-4 {
  left: var(--path-col-right);
  top: var(--path-row-mid);
}
.weg-node.step-5 {
  left: var(--path-col-mid);
  top: var(--path-row-mid);
}
.weg-node.step-6 {
  left: var(--path-col-left);
  top: var(--path-row-mid);
}
.weg-node.step-7 {
  left: var(--path-col-left);
  top: var(--path-row-bottom);
}
.weg-node.step-8 {
  left: var(--path-col-mid);
  top: var(--path-row-bottom);
}
.weg-node.step-9 {
  left: var(--path-col-right);
  top: var(--path-row-bottom);
  color: white;
  background: var(--brand);
  border-color: var(--brand);
}
.weg-line {
  position: absolute;
  z-index: 1;
  background: #9bb9f4;
  border-radius: 999px;
  transform: none;
  --weg-line-thickness: 1px;
  height: var(--weg-line-thickness);
  width: var(--weg-line-thickness);
}
.weg-line.line-1 {
  left: var(--path-col-left);
  top: var(--path-row-top);
  width: calc(var(--path-col-mid) - var(--path-col-left));
  height: var(--weg-line-thickness);
}
.weg-line.line-2 {
  left: var(--path-col-mid);
  top: var(--path-row-top);
  width: calc(var(--path-col-right) - var(--path-col-mid));
  height: var(--weg-line-thickness);
}
.weg-line.line-3 {
  left: var(--path-col-right);
  top: var(--path-row-top);
  width: 1.2px;
  width: var(--weg-line-thickness);
  height: calc(var(--path-row-mid) - var(--path-row-top));
}
.weg-line.line-4 {
  left: var(--path-col-mid);
  top: var(--path-row-mid);
  width: calc(var(--path-col-right) - var(--path-col-mid));
  height: var(--weg-line-thickness);
}
.weg-line.line-5 {
  left: var(--path-col-left);
  top: var(--path-row-mid);
  width: calc(var(--path-col-mid) - var(--path-col-left));
  height: var(--weg-line-thickness);
}
.weg-line.line-6 {
  left: var(--path-col-left);
  top: var(--path-row-mid);
  width: var(--weg-line-thickness);
  height: calc(var(--path-row-bottom) - var(--path-row-mid));
}
.weg-line.line-7 {
  left: var(--path-col-left);
  top: var(--path-row-bottom);
  width: calc(var(--path-col-mid) - var(--path-col-left));
  height: var(--weg-line-thickness);
}
.weg-line.line-8 {
  left: var(--path-col-mid);
  top: var(--path-row-bottom);
  width: calc(var(--path-col-right) - var(--path-col-mid));
  height: var(--weg-line-thickness);
}

@media (max-width: 1200px) {
  .wegweiser-map {
    --path-row-bottom: 88%;
  }
}
@media (max-width: 980px) {
  .wegweiser-map {
    --path-col-left: 14%;
    --path-col-mid: 50%;
    --path-col-right: 86%;
    --path-row-top: 15%;
    --path-row-mid: 46%;
    --path-row-bottom: 84%;
    min-height: 360px;
  }
  .weg-node {
    width: clamp(90px, 16vw, 128px);
    min-height: 70px;
    font-size: 0.72rem;
    padding: 8px 9px;
  }
}

/* Public pricing configurator */
.pricing-builder {
  max-width: 1160px;
  padding: 30px;
  border: 1px solid #dbe4f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.pricing-builder-intro {
  max-width: 780px;
}

.pricing-builder-intro h2 {
  margin-top: 8px;
}

.pricing-builder-intro p {
  margin-top: 8px;
  color: var(--muted);
}

.billing-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 450px);
  margin: 26px auto 0;
  padding: 5px;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  background: #f4f6f8;
}

.billing-option {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
}

.billing-option span {
  display: inline-flex;
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.66rem;
}

.billing-option.is-active {
  background: #eaf2ff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px #bfdbfe;
}

.pricing-step {
  margin-top: 26px;
}

.pricing-step-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-step-label img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.pricing-step-label--werkplaner { color: #1d4ed8; }
.pricing-step-label--werkteam { color: #b94325; }

.size-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.size-choice {
  display: flex;
  min-height: 180px;
  padding: 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  background: #fff;
  color: #475569;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.size-choice strong {
  color: #0f172a;
  font-size: 1.04rem;
  font-weight: 650;
}

.size-choice-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.size-choice-title img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.size-choice span {
  font-size: 0.8rem;
  line-height: 1.35;
}

.size-choice .size-choice-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 4px;
  color: #1d4ed8;
  font-size: 1rem;
  font-weight: 750;
}

.size-choice-price small {
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 650;
}

.size-choice-limits {
  display: grid;
  gap: 4px;
  margin-top: 2px;
}

.size-choice.is-active {
  border-color: #3b82f6;
  background: #f5f9ff;
  box-shadow: inset 0 0 0 1px #93c5fd;
}

.size-choice.is-active strong {
  color: #1d4ed8;
}

.size-choice-enterprise {
  align-items: center;
  cursor: default;
  text-align: center;
}

.size-choice-enterprise .btn {
  min-height: 30px;
  margin-top: auto;
  padding: 5px 11px;
  font-size: 0.76rem;
}

.module-choice {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 20px;
  border: 1px solid #dbe2ea;
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.module-choice input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: #d3542d;
}

.module-choice-copy {
  display: grid;
  gap: 5px;
}

.module-choice-copy strong {
  color: #0f172a;
  font-size: 1.03rem;
  font-weight: 650;
}

.module-choice-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.module-choice-title img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.wordmark-werk { color: #2563e8; }
.wordmark-team { color: #c24a29; }

.module-choice-copy small {
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.5;
}

.module-choice-copy em {
  color: #64748b;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
}

.module-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #c24a29;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.module-price small {
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 650;
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.module-choice.is-selected {
  border-color: #60a5fa;
  background: #f5f9ff;
}

.module-choice-time.is-selected {
  border-color: #34d399;
  background: #f2fdf8;
}

.module-choice-tools.is-selected {
  border-color: #dc7657;
  background: #fff3ee;
}

.module-choice.is-disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.module-price-note {
  position: absolute;
  right: 20px;
  bottom: 15px;
  color: #b94325;
  font-size: 0.68rem;
  font-weight: 650;
}

.trial-transparency {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 0.84rem;
  line-height: 1.5;
}

.pricing-summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid #14213a;
  border-radius: 12px;
  background: #020617;
  color: #fff;
}

.pricing-summary-selection {
  display: grid;
  gap: 8px;
}

.pricing-summary > div > span {
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-selection-lines {
  display: grid;
  gap: 7px;
}

.pricing-selection-line,
.pricing-selection-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 20px;
  align-items: center;
  font-size: .92rem;
}

.pricing-selection-product {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.pricing-selection-product img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.pricing-selection-line > strong { justify-self: end; }

.pricing-selection-line small {
  grid-column: 2;
  color: #94a3b8;
  font-size: .65rem;
}

.pricing-selection-line--werkteam { color: #ffc4b0; }

.pricing-selection-total {
  margin-top: 3px;
  padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 1rem;
}

.pricing-selection-total > strong:last-child { color: #fff; }

.pricing-summary-selection > small {
  color: #94a3b8;
  font-size: .7rem;
}

.pricing-summary-context {
  max-width: 365px;
  margin: 0;
  color: #cbd5e1;
  font-size: .87rem;
  line-height: 1.6;
}

.pricing-summary-context [data-selection-accesses] { color: #93c5fd; }
.pricing-summary.has-werkteam [data-selection-werkteam-note] strong { color: #ffc4b0; }
.pricing-summary-context [data-selection-werkteam-note] { display: block; margin-top: 4px; }
.pricing-selection-line--werkteam[hidden],
.pricing-summary-context [data-selection-werkteam-note][hidden] { display: none; }

.pricing-builder-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.pricing-builder-actions .btn {
  width: min(100%, 520px);
}

.pricing-builder-actions .btn.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
  pointer-events: none;
}

.pricing-builder-actions span {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  text-align: center;
}

.price-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.price-detail-card {
  padding: 22px;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  background: #fff;
}

.price-detail-card > span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-detail-card h3 {
  margin: 5px 0 16px;
  font-size: 1.3rem;
  font-weight: 650;
}

.price-detail-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.price-detail-card th,
.price-detail-card td {
  padding: 9px 4px;
  border-bottom: 1px solid #e5e7eb;
  text-align: right;
}

.price-detail-card th:first-child,
.price-detail-card td:first-child {
  text-align: left;
}

.price-detail-card th {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 650;
}

.price-detail-card p {
  margin-top: 15px;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.5;
}

.price-detail-planning { border-top: 3px solid #60a5fa; }
.price-detail-time { border-top: 3px solid #34d399; }
.price-detail-tools { border-top: 3px solid #fbbf24; }

@media (max-width: 900px) {
  .size-grid,
  .price-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-builder {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .size-grid,
  .module-grid,
  .price-detail-grid {
    grid-template-columns: 1fr;
  }

  .size-choice {
    min-height: 0;
  }

  .module-choice {
    grid-template-columns: auto 1fr;
  }

  .module-price {
    grid-column: 2;
    white-space: normal;
  }

  .module-price-note {
    position: static;
    grid-column: 2;
  }

  .trial-transparency {
    grid-template-columns: 1fr;
  }

  .pricing-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-summary-total {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .wegweiser-map {
    --path-row-top: 15%;
    --path-row-mid: 47%;
    --path-row-bottom: 83%;
  }
  .weg-node {
    width: clamp(84px, 18vw, 112px);
    min-height: 66px;
    font-size: 0.68rem;
    line-height: 1.15;
  }
}

.weg-start-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.weg-path h3,
.weg-card h3 {
  margin-bottom: 10px;
}
.weg-steps {
  display: grid;
  gap: 10px;
  list-style: none;
  counter-reset: weg;
}
.weg-path {
  font-weight: 500;
}
.weg-path h3 {
  font-weight: 500;
}
.weg-steps li {
  position: relative;
  padding-left: 42px;
  color: var(--muted);
  font-weight: 500;
}
.weg-steps li::before {
  counter-increment: weg;
  content: counter(weg);
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 850;
}
.weg-merge {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.weg-merge span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}
.image-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px dashed #9bb9f4;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(5, 150, 105, 0.05)),
    #fff;
  color: var(--soft);
  text-align: center;
  font-weight: 800;
  padding: 20px;
}
.image-placeholder.small {
  min-height: 132px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.weg-card p {
  font-size: 0.95rem;
}

.waitlist-hero {
  padding: 92px 0 72px;
  background: var(--hero-soft-bg);
}
.waitlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
}
.waitlist-copy h1 {
  max-width: 780px;
  font-size: clamp(1.75rem, 2.4vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.waitlist-copy .lead {
  max-width: 720px;
}
.waitlist-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.waitlist-status-row span {
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}
.waitlist-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  padding: 28px;
}
.waitlist-panel h2 {
  margin: 0;
  font-size: 1.45rem;
}
.waitlist-panel p {
  color: var(--muted);
}
.waitlist-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}
.waitlist-form input[type="email"] {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  font: inherit;
  color: var(--ink);
  background: white;
}
.waitlist-form input[type="email"]:focus {
  outline: 3px solid rgba(37, 99, 235, 0.16);
  border-color: #93c5fd;
}
.waitlist-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 650 !important;
  line-height: 1.5;
}
.waitlist-consent input {
  margin-top: 3px;
}
.waitlist-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.waitlist-result {
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 750;
  line-height: 1.45;
}
.waitlist-result.success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #14532d;
}
.waitlist-result.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}
.waitlist-privacy {
  margin-top: 14px;
  font-size: 0.84rem;
  line-height: 1.5;
}
.waitlist-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tools-website-visual {
  min-height: 210px;
  position: relative;
  display: block;
  padding: 18px 16px;
  border: 1px solid rgba(219, 227, 239, 0.95);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.72), rgba(230, 247, 245, 0.52), rgba(236, 248, 255, 0.68)),
    #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tools-website-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 10px;
  border: 1px solid rgba(219, 227, 239, 0.64);
  pointer-events: none;
}
.tools-hero-generic {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.74), transparent 55%),
    radial-gradient(circle at 80% 78%, rgba(255, 255, 255, 0.76), transparent 55%),
    linear-gradient(135deg, rgba(219, 234, 254, 0.72), rgba(230, 247, 245, 0.52), rgba(236, 248, 255, 0.68));
}
.tool-glyph {
  position: absolute;
  width: 110px;
  min-height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 10px 11px;
  border: 1px solid rgba(219, 227, 239, 0.9);
  background: #fff;
  color: #1d4ed8;
  font-size: 0.73rem;
  font-weight: 650;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.09);
}
.tool-glyph svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  display: block;
}
.tool-glyph strong {
  font-size: 0.74rem;
  letter-spacing: 0.01em;
}
.tool-glyph-core {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: #eff6ff;
  border: 1px solid #dbeafe;
}
.tool-glyph-core svg {
  width: 20px;
  height: 20px;
}
.tool-glyph-center {
  z-index: 2;
  display: inline-grid;
  grid-auto-flow: row;
  width: 150px;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--brand);
  border-color: rgba(37, 99, 235, 0.32);
}
.tool-glyph-top { top: 14px; left: 50%; transform: translateX(-50%); }
.tool-glyph-left { left: 14px; top: 50%; transform: translateY(-50%); }
.tool-glyph-right { right: 14px; top: 50%; transform: translateY(-50%); }
.tool-glyph-bottom { left: 50%; bottom: 12px; transform: translateX(-50%); }
.tool-glyph-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.tool-hero-node {
  position: relative;
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  display: grid;
  gap: 3px;
  cursor: default;
}
.tool-hero-node:hover {
  border-color: #b5c7e7;
}
.tool-hero-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #dbeafe;
  color: var(--brand);
  font-size: 0.94rem;
}
.tool-hero-label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.18;
}
.tool-hero-sub {
  color: var(--soft);
  font-size: 0.72rem;
  line-height: 1.2;
}
.tool-website-card {
  display: block;
  min-height: 210px;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.tool-card-icon {
  width: 33px;
  height: 33px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid transparent;
  background: linear-gradient(145deg, #f8fbff, #eef2ff);
  color: #1d4ed8;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.07);
}
.tool-card-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.tool-card-head::after {
  content: "";
  position: absolute;
  left: 43px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, var(--line-soft), transparent);
  opacity: 0.9;
}
.tool-card-head h3 {
  margin: 0;
}
.tool-card-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  stroke: currentColor;
  fill: none;
}
.tool-card-icon svg [fill='currentColor'],
.tool-card-icon [fill='currentColor'] {
  fill: currentColor;
}
.tool-icon-grid {
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  border-color: #bfdbfe;
  color: #1d4ed8;
}
.tool-icon-area {
  background: linear-gradient(135deg, #cffafe, #ccfbf1);
  border-color: #99f6e4;
  color: #0f766e;
}
.tool-icon-tax {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-color: #fed7aa;
  color: #b45309;
}
.tool-icon-material {
  background: linear-gradient(135deg, #dcfce7, #d9f99d);
  border-color: #bbf7d0;
  color: #15803d;
}
.tool-icon-route {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  border-color: #c4b5fd;
  color: #6d28d9;
}
.tool-icon-clock {
  background: linear-gradient(135deg, #fee2e2, #ffedd5);
  border-color: #fecaca;
  color: #b91c1c;
}
.tool-icon-discount {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  border-color: #f9a8d4;
  color: #be185d;
}
.tool-icon-calendar {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-color: #fecaca;
  color: #991b1b;
}
.tool-icon-payments {
  background: linear-gradient(135deg, #f0f9ff, #dbeafe);
  border-color: #93c5fd;
  color: #1d4ed8;
}
.tool-website-card:hover {
  transform: translateY(-2px);
  border-color: #9bb9f4;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}
.tool-website-card h3 {
  margin-bottom: 10px;
}
.tool-website-card p {
  min-height: 72px;
}
.tool-website-card strong {
  color: var(--brand);
}
.tools-hero-compact {
  min-height: auto;
  padding: 20px 0 18px;
}

.tools-hero-compact .container {
  width: min(100% - 28px, 1500px);
}

.tools-hero-compact h1 {
  margin-top: 0;
  max-width: none;
  font-size: 1.28rem;
  font-weight: 560;
  line-height: 1.2;
}

.tools-hero-compact .lead {
  margin-top: 6px;
  max-width: 760px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.tools-app-shell {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.tool-app-nav {
  display: grid;
  gap: 8px;
}
.tool-app-item {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  min-height: 48px;
  font-size: 0.94rem;
  font-weight: 600;
}
.tool-app-item:hover {
  border-color: #9bb9f4;
  background: #f5f8ff;
}
.tool-app-item.is-active {
  border-color: #93c5fd;
  background: #eaf2ff;
}
.tool-app-item-icon,
.tool-app-stage-icon .tool-app-item-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid transparent;
  flex-shrink: 0;
  background: #eef2ff;
  color: #1d4ed8;
}
.tool-app-item-icon svg,
.tool-app-stage-icon .tool-app-item-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  display: block;
}
.tool-app-item-icon svg [fill='currentColor'],
.tool-app-item-icon [fill='currentColor'],
.tool-app-stage-icon .tool-app-item-icon svg [fill='currentColor'],
.tool-app-stage-icon .tool-app-item-icon [fill='currentColor'] {
  fill: currentColor;
}
.tool-app-stage {
  min-height: 100%;
  display: grid;
  gap: 12px;
}
.tool-app-stage-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: #dbeafe;
}
.tool-app-stage h3 {
  font-size: 1.5rem;
}
.tool-app-description {
  color: var(--muted);
  max-width: 60ch;
}
.tool-app-features {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.tool-app-features li {
  position: relative;
  padding-left: 24px;
}
.tool-app-features li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.63em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}
.tool-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 12px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.75rem;
  font-weight: 850;
}
.price-coin {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 10px rgba(217, 119, 6, 0.12);
}
.limit-card {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.limit-card + .limit-card { margin-top: 10px; }
.limit-card strong,
.limit-card span { display: block; }
.limit-card span { color: var(--soft); font-size: 0.86rem; }
.limit-card.featured {
  border-color: #9bb9f4;
  background: #eaf1ff;
}
.graphic-security {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.security-flow {
  width: min(360px, 100%);
  display: grid;
  gap: 7px;
  color: var(--ink);
}
.security-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid #bfdbfe;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.05);
}
.security-step-inline p {
  max-width: 255px;
}
.security-step strong {
  display: inline-flex;
  font-size: 0.85rem;
  line-height: 1.2;
}
.security-step p {
  margin: 3px 0 0;
  color: #334155;
  font-size: 0.74rem;
  line-height: 1.25;
}
.security-explainer {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(239, 246, 255, 0.94), rgba(255, 255, 255, 0.96)),
    #ffffff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.08);
}
.security-explainer-head {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
}
.security-explainer-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}
.security-event,
.backup-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}
.security-event > span,
.backup-step > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: #dbeafe;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 850;
}
.security-event strong,
.backup-step strong { color: var(--ink); font-size: 0.86rem; }
.security-event p,
.backup-step p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}
.security-explainer-note {
  margin: 2px 0 0;
  color: var(--soft);
  font-size: 0.76rem;
  line-height: 1.4;
}
.backup-topology {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(145deg, #f8fbff, #ffffff);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.08);
}
.backup-topology-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  color: var(--ink);
  font-size: 0.9rem;
}
.backup-topology-head > span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}
.backup-topology-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}
.backup-node {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 144px;
  padding: 18px 10px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.backup-node-safe { border-color: #bbf7d0; background: rgba(247, 254, 249, 0.94); }
.backup-node-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 4px;
  border-radius: 12px;
  background: #dbeafe;
  color: var(--brand);
}
.backup-node-safe .backup-node-icon { background: #dcfce7; color: var(--green); }
.backup-node-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.backup-node strong { color: var(--ink); font-size: 0.84rem; }
.backup-node small { color: var(--soft); font-size: 0.7rem; line-height: 1.3; }
.backup-connection {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--soft);
  font-size: 0.67rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
}
.backup-connection i {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #93c5fd, #60a5fa);
}
.backup-connection i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #60a5fa;
  border-right: 2px solid #60a5fa;
  transform: translateY(-50%) rotate(45deg);
}
.backup-topology-note {
  margin: 0;
  padding: 11px 13px;
  border-radius: 9px;
  background: rgba(239, 246, 255, 0.78);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}
.backup-explainer { gap: 12px; }
.backup-step > span {
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
}
.security-edge {
  width: 2px;
  justify-self: center;
  margin-left: -163px;
  height: 9px;
  border-left: 2px dashed #93c5fd;
}
.security-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #bfdbfe;
  border-radius: 9px;
  background: #eff6ff;
  color: var(--brand);
}
.security-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-bubble {
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
}
.graphic-about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  padding: 22px;
}
.about-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 100px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}
.about-card-main {
  grid-column: 1 / -1;
  min-height: 124px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.13), rgba(5, 150, 105, 0.08));
  border-color: #bfdbfe;
}
.about-card-tag {
  display: inline-flex;
  align-self: flex-start;
  min-height: 24px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.about-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}
.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.32;
}
.about-card-main h3 {
  font-size: 1.1rem;
}
.about-card-main p {
  max-width: 560px;
  font-size: 0.86rem;
}
.graphic-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.mail-card {
  width: min(310px, 86%);
  min-height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.mail-card span {
  width: 70%;
  height: 42px;
  border-bottom: 2px solid #9bb9f4;
  transform: skewY(-10deg);
}
.contact-bubble {
  position: absolute;
  right: 34px;
  top: 34px;
  color: var(--brand);
}
.contact-bubble.secondary {
  left: 34px;
  right: auto;
  top: auto;
  bottom: 34px;
  color: var(--green);
}

.placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px dashed #9bb9f4;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(5, 150, 105, 0.08)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.65) 0 10px, rgba(255,255,255,0.35) 10px 20px);
  color: #1e3a8a;
  text-align: center;
  font-weight: 750;
}
.hero-visual {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(219, 227, 239, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}
.product-preview {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1500px;
  overflow: visible;
}
.mockup-stage {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.mockup-shadow {
  position: absolute;
  left: 14%;
  right: 8%;
  bottom: 42px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.20) 0%, rgba(15, 23, 42, 0.09) 38%, rgba(15, 23, 42, 0) 72%);
  filter: blur(16px);
  transform: rotateX(68deg) rotateZ(-2deg);
  opacity: 0.42;
}
.mockup-window {
  --mockup-tilt: rotateY(-16deg) rotateX(7deg) rotateZ(1deg);
  width: min(100%, 880px);
  transform: var(--mockup-tilt);
  transform-origin: center;
  box-shadow:
    0 34px 70px rgba(15, 23, 42, 0.17),
    0 12px 26px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.preview-window {
  position: relative;
  /* The screenshot itself is 16:9; the mockup toolbar sits above it. */
  aspect-ratio: auto;
  min-height: auto;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.mockup-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    inset -18px 0 34px rgba(15, 23, 42, 0.05);
}
.mockup-browserbar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.82rem;
}
.mockup-brand-mark {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 850;
}

.mockup-brand-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  object-fit: contain;
}

.mockup-browserbar strong {
  margin-right: auto;
  font-size: 0.82rem;
}

.mockup-wordmark span { color: #2563e8; }
.mockup-wordmark--team em { color: #c24a29; font-style: normal; }
.mockup-toolbar-dot {
  width: 11px;
  height: 11px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #f8fafc;
}
.mockup-avatar {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #bfdbfe;
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 850;
}
.mockup-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f8fafc;
}
.preview-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-soft);
  background: white;
  color: var(--soft);
  font-size: 0.82rem;
}
.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #dbe3ef;
}
.preview-top strong { margin-left: 8px; color: var(--ink); }
.preview-panel {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateX(22px) scale(0.992);
  pointer-events: none;
  transition: opacity 340ms ease, transform 340ms ease;
}
.preview-panel.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--line-soft);
  background: #eef5ff;
}
.preview-sidebar span,
.preview-sidebar b {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}
.preview-sidebar b {
  background: white;
  color: var(--brand);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}
.preview-content {
  min-width: 0;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.preview-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.preview-kpis div,
.preview-list,
.preview-chart,
.preview-team div,
.preview-rights,
.preview-profile,
.preview-history,
.preview-table {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.preview-kpis div {
  display: grid;
  gap: 2px;
  padding: 15px;
}
.preview-kpis strong { font-size: 1.35rem; line-height: 1; }
.preview-kpis span,
.preview-list span,
.preview-team span,
.preview-rights span,
.preview-profile span,
.preview-history span {
  color: var(--soft);
  font-size: 0.82rem;
}
.preview-board {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 14px;
  margin-top: 14px;
}
.preview-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.preview-list b { margin-bottom: 4px; }
.preview-chart {
  min-height: 210px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 18px;
}
.preview-chart span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: #9bb9f4;
}
.preview-chart span:nth-child(1) { height: 44%; background: #bfdbfe; }
.preview-chart span:nth-child(2) { height: 68%; background: #86efac; }
.preview-chart span:nth-child(3) { height: 52%; background: #fcd34d; }
.preview-chart span:nth-child(4) { height: 82%; background: #60a5fa; }
.preview-chart span:nth-child(5) { height: 60%; background: #a7f3d0; }
.preview-calendar-head {
  display: grid;
  grid-template-columns: 112px repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 750;
}
.preview-calendar-head b { color: var(--ink); font-size: 1rem; }
.preview-schedule {
  display: grid;
  gap: 10px;
}
.preview-schedule > div {
  display: grid;
  grid-template-columns: 112px repeat(5, minmax(0, 1fr));
  min-height: 58px;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.preview-schedule b { font-size: 0.88rem; }
.bar {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
}
.bar.blue { background: #2563eb; }
.bar.green { background: #059669; }
.bar.amber { background: #d97706; }
.preview-table {
  overflow: hidden;
}
.table-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.74fr 0.72fr;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.86rem;
}
.table-row:last-child { border-bottom: 0; }
.table-row.head {
  background: #f8fafc;
  color: var(--ink);
  font-weight: 800;
}
mark {
  width: max-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.76rem;
  font-weight: 800;
}
mark.green { background: #dcfce7; color: #166534; }
mark.blue { background: #dbeafe; color: #1e40af; }
.preview-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.preview-flow span {
  padding: 16px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: white;
  color: var(--brand);
  text-align: center;
  font-weight: 850;
}
.preview-team {
  display: grid;
  gap: 12px;
}
.preview-team div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 15px;
}
.preview-team strong { grid-column: 1; }
.preview-team span { grid-column: 1; }
.preview-team em {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}
.preview-rights {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding: 16px;
}
.preview-rights span::before,
.preview-history span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--green);
}
.preview-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}
.preview-profile strong,
.preview-profile span { display: block; }
.preview-profile button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 800;
}
.preview-history {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 18px;
}
.preview-tabs {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}
.preview-tab {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.preview-tab:hover,
.preview-tab.active {
  border-color: #9bb9f4;
  background: var(--brand);
  color: var(--brand);
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
}
.screenshot-panel img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}
.screenshot-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px dashed #9bb9f4;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(5, 150, 105, 0.06)),
    #f8fafc;
  color: #1e3a8a;
  text-align: center;
  font-weight: 800;
}
.screenshot-panel img:not([hidden]) + .screenshot-empty { display: none; }

.section { padding: 70px 0; }
.section.alt { background: white; }
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}
.section-head p { margin-top: 14px; font-size: 1.06rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.product-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-feature-card { position: relative; overflow: hidden; min-height: 190px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.product-feature-card::after { content: ''; position: absolute; right: -30px; bottom: -50px; width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, rgba(37, 99, 235, .07), transparent 68%); pointer-events: none; }
.product-feature-card:hover { transform: translateY(-4px); border-color: #b6cbf7; box-shadow: 0 18px 36px rgba(37, 99, 235, .12); }
.product-feature-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; margin-bottom: 16px; border-radius: 14px; font-size: 1.35rem; font-weight: 850; line-height: 1; }
.product-feature-icon--blue { background: #e8f0ff; color: #2563eb; }.product-feature-icon--violet { background: #f1ebff; color: #7c3aed; }.product-feature-icon--emerald { background: #e5f9f1; color: #059669; }.product-feature-icon--amber { background: #fff5dc; color: #d97706; }.product-feature-icon--rose { background: #ffebf1; color: #db2777; }.product-feature-icon--cyan { background: #e1f7fb; color: #0891b2; }
.product-feature-cta { display: flex; justify-content: center; margin-top: 30px; }
.werkteam-detail-screens { display: grid; grid-template-columns: minmax(0, 1fr) 112px; align-items: end; gap: 14px; }
.werkteam-detail-screens .screenshot-frame { min-height: 0; }
.werkteam-detail-screens .screenshot-frame--phone { padding: 6px; border-radius: 18px; }
.werkteam-detail-screens .screenshot-frame--phone img { border-radius: 12px; }

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}
.card.pad { padding: 24px; }
.card h3 { font-size: 1.18rem; line-height: 1.25; }
.card p { margin-top: 8px; }
.card .mini { margin-top: 14px; min-height: 112px; font-size: 0.86rem; }
.icon-box {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #eaf1ff;
  color: var(--brand);
  font-weight: 850;
}

.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.function-discovery {
  padding: 46px 0;
}
.function-discovery__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 30px 34px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(219, 234, 254, 0.72));
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}
.function-discovery__inner h2 {
  margin-top: 8px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.08;
}
.function-discovery__inner p {
  max-width: 720px;
  margin-top: 10px;
}
.function-discovery__inner .btn {
  white-space: nowrap;
}
.list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  list-style: none;
}
.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
}
.list.negative li::before { background: var(--amber); }
.list.check li::before { background: var(--green); }

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
}
.price-card.featured { border-color: #8bb1f8; box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12); }
.price-card.addon-card {
  border-color: #bfdbfe;
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.72), rgba(255, 255, 255, 0) 92px),
    #fff;
}
.addon-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 24px;
  margin-bottom: 12px;
  padding: 0 9px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 850;
}
.price {
  margin: 14px 0 6px;
  font-size: 1.34rem;
  font-weight: 650;
  line-height: 1.15;
  white-space: nowrap;
}
.price span { font-size: 0.82rem; color: var(--soft); font-weight: 650; }
.addon-card h2 {
  font-size: 1rem;
  line-height: 1.22;
}
.addon-card .price {
  font-size: 1.18rem;
  font-weight: 600;
}
.price-card .btn { margin-top: auto; }
.pricing-guarantee {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  background: #f0fdf4;
  color: #14532d;
  font-size: 0.95rem;
  line-height: 1.55;
}
.pricing-guarantee h2 {
  margin: 0;
  color: #052e16;
  font-size: 1rem;
  line-height: 1.25;
}
.pricing-guarantee p {
  margin: 6px 0 0;
}
.plan-mode {
  min-height: 34px;
  margin: 0 0 10px;
  color: #166534;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.3;
}
.plan-mode.enterprise {
  color: #0f172a;
}
.meta {
  color: var(--soft);
  font-size: 0.92rem;
}
.feature-list {
  margin: 16px 0 22px;
  display: grid;
  gap: 7px;
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.22;
  white-space: nowrap;
}
.addon-card .feature-list li {
  align-items: flex-start;
  white-space: normal;
}
.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.info-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 1px;
  border-radius: 999px;
  border: 1px solid #9bb9f4;
  color: #1d4ed8;
  background: #eef4ff;
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
  cursor: help;
}
.info-dot:hover,
.info-dot:focus {
  background: #dbeafe;
  color: #1e40af;
  outline: none;
}
.info-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 5;
  width: min(230px, calc(100vw - 48px));
  padding: 8px 10px;
  border-radius: 8px;
  background: #0f172a;
  color: white;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.35;
  white-space: normal;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.info-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  border: 6px solid transparent;
  border-top-color: #0f172a;
  transform: translateX(-50%);
}
.info-tip:hover .info-tooltip,
.info-tip:focus-within .info-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}
#paketlimits {
  scroll-margin-top: 98px;
}
.limit-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(5, 150, 105, 0.05)),
    #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}
.limit-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.limit-panel-head h2 {
  margin-top: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.1;
}
.limit-panel-head p {
  max-width: 760px;
  margin-top: 10px;
}
.limit-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: #f0fdf4;
  color: #166534;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}
.limit-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.limit-detail {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: white;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.limit-detail h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 0.96rem;
}
.limit-detail p {
  margin: 0;
  font-size: 0.92rem;
}
.limit-detail-enterprise {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 16px;
  align-items: start;
  background: #f8fafc;
}
.limit-detail-enterprise h3,
.limit-detail-enterprise p {
  grid-column: 2;
}
.limit-tag {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 900;
}
.limit-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.limit-note-grid p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #f8fafc;
  font-size: 0.9rem;
}

.module-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: 28px;
  padding: 24px;
}
.module-section + .module-section { margin-top: 18px; }
.module-section h2 {
  font-size: clamp(1.32rem, 2.35vw, 1.85rem);
  line-height: 1.12;
}
.module-section .eyebrow {
  font-size: 0.72rem;
}
.module-section .list {
  gap: 8px;
}
.module-section .list li {
  font-size: 0.94rem;
}
.module-section .placeholder { min-height: 240px; }
.screenshot-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: white;
  color: var(--soft);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: zoom-in;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.screenshot-frame--compact {
  aspect-ratio: 438 / 386;
  width: min(100%, 438px);
  justify-self: center;
}
.screenshot-frame--portrait {
  aspect-ratio: 430 / 932;
  width: min(100%, 360px);
  justify-self: center;
}
.screenshot-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}
.screenshot-frame img:not([hidden]) + div { display: none; }

.product-area-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
}
.product-area-card .list { flex: 1; }
.product-area-card--office { border-top: 4px solid var(--brand); }
.product-area-card--time {
  border-top: 4px solid var(--green);
  background: linear-gradient(180deg, #f0fdf7 0%, #ffffff 72%);
}
.product-area-card--time > h3:not(.workteam-card-title) { display: none; }
.product-area-card--inventory {
  border-top: 4px solid #e49700;
  background: linear-gradient(180deg, #fff9eb 0%, #ffffff 72%);
}
.product-area-label,
.time-addon-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 11px;
  background: #eaf2ff;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
}
.product-area-card--time .product-area-label,
.time-addon-badge {
  background: #d1fae5;
  color: #047857;
}
.product-area-card--inventory .product-area-label,
.inventory-module-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 11px;
  background: #fff0c7;
  color: #8a5700;
  font-size: 0.75rem;
  font-weight: 800;
}
.inventory-highlight {
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf0, #f7f9fc);
}
.inventory-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 44px;
}
.inventory-highlight-copy .lead { margin-top: 16px; }
.inventory-benefits {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  list-style: none;
}
.inventory-benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}
.inventory-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d58b00;
  font-weight: 900;
}
.inventory-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .34fr);
  align-items: end;
  gap: 14px;
}
.inventory-shot {
  overflow: hidden;
  border: 1px solid #26364d;
  border-radius: 16px;
  background: #07111f;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .2);
}
.inventory-shot img { width: 100%; }
.inventory-shot.mobile { border-radius: 24px; }
.inventory-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.inventory-flow {
  display: grid;
  gap: 12px;
  background: linear-gradient(160deg, #ffffff, #fff8e7);
  border-color: #f5d78e;
}
.inventory-flow .time-flow-step { border-color: #f6dfad; }
.inventory-flow .time-flow-step > span { background: #e49700; color: #211600; }
.inventory-flow .time-flow-step > div { min-width: 0; }
.time-addon-callout .function-discovery__inner {
  border-color: #a7f3d0;
  background: linear-gradient(135deg, #ecfdf5, #eff6ff);
}
.time-tracking-hero .hero-note {
  max-width: 720px;
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: rgba(236, 253, 245, 0.78);
}

/* WerkTeam: mobile product preview, paired with the desktop WerkPlaner mockup. */
.werkteam-hero { overflow: hidden; }
.werkteam-showcase { position: relative; min-height: 540px; perspective: 1500px; }
.werkteam-device { position: absolute; overflow: hidden; border: 8px solid #101b30; background: #f8fbff; box-shadow: 0 35px 70px rgba(15, 23, 42, .23), inset 0 0 0 1px rgba(255,255,255,.35); }
.werkteam-tablet { z-index: 2; top: 16px; left: -22px; width: min(88%, 625px); border-radius: 25px; transform: rotateY(-12deg) rotateX(5deg) rotateZ(1deg); }
.werkteam-device-bar { height: 42px; display: flex; align-items: center; gap: 10px; padding: 0 16px; background: #fff; color: var(--ink); font-size: .76rem; }
.werkteam-device-bar span { width: 9px; height: 9px; border-radius: 50%; background: #93c5fd; box-shadow: 14px 0 #bfdbfe; }
.werkteam-device-bar b { margin-left: 12px; font-weight: 800; }
.werkteam-device-bar i { width: 24px; height: 24px; margin-left: auto; border: 2px solid #bfdbfe; border-radius: 50%; }
.werkteam-tablet-screen { position: relative; min-height: 330px; background: linear-gradient(145deg, #eff6ff, #f8fafc); }
.werkteam-panel { position: absolute; inset: 0; padding: 28px; opacity: 0; transform: translateX(18px); transition: opacity .32s ease, transform .32s ease; pointer-events: none; }
.werkteam-panel.active { opacity: 1; transform: none; pointer-events: auto; }
.werkteam-mockup-stage { min-height: 540px; }
.werkteam-tablet { width: min(88%, 700px); }
.werkteam-tablet-screen { min-height: 0; aspect-ratio: 16 / 9; }
.werkteam-panel { padding: 0; }
.werkteam-panel img, .werkteam-phone-panel img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.werkteam-phone-screen { position: relative; padding: 0; }
.werkteam-phone-panel { position: absolute; inset: 0; display: block; opacity: 0; transform: translateX(12px); transition: opacity .32s ease, transform .32s ease; pointer-events: none; }
.werkteam-phone-panel.active { opacity: 1; transform: none; pointer-events: auto; }
.werkteam-phone-panel .screenshot-empty { min-height: 100%; padding: 18px 10px; font-size: .7rem; }
.wt-app-head { display: flex; flex-direction: column; gap: 5px; margin-bottom: 22px; color: var(--soft); font-size: .75rem; }
.wt-app-head strong { color: var(--ink); font-size: 1.25rem; }
.wt-time-row, .wt-job { display: grid; grid-template-columns: 65px 1fr auto; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid #dbe6f5; font-size: .8rem; }
.wt-time-row b, .wt-job > span { color: var(--brand); }
.wt-time-row em { border-radius: 999px; padding: 4px 7px; background: #dbeafe; color: #1d4ed8; font-size: .67rem; font-style: normal; font-weight: 800; }
.wt-time-row em.done { background: #dcfce7; color: #15803d; }.wt-time-row em.muted { background: #e2e8f0; color: #64748b; }
.wt-report-line { width: 80%; height: 12px; margin: 14px 0; border-radius: 999px; background: #dbeafe; }.wt-report-line.wide { width: 100%; }.wt-report-line.short { width: 49%; }
.wt-photo-row { display: flex; gap: 10px; margin-top: 34px; }.wt-photo-row span, .wt-photo-row b { flex: 1; padding: 14px 10px; border-radius: 9px; background: #fff; color: var(--muted); font-size: .73rem; text-align: center; }.wt-photo-row b { background: var(--brand); color: #fff; }
.wt-qr { position: relative; width: 145px; height: 145px; margin: 0 auto 15px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; padding: 16px; border: 8px solid #2563eb; border-radius: 15px; background: repeating-linear-gradient(90deg,#1e293b 0 8px,#fff 8px 15px); }.wt-qr i { position: absolute; width: 29px; height: 29px; border: 6px solid #1e293b; background: #fff; }.wt-qr i:nth-child(1){left:10px;top:10px}.wt-qr i:nth-child(2){right:10px;top:10px}.wt-qr i:nth-child(3){left:10px;bottom:10px}.wt-qr i:nth-child(4){right:10px;bottom:10px}.wt-qr b { z-index: 1; align-self: center; justify-self: center; border-radius: 9px; padding: 8px; background:#fff; color:#2563eb; }
.wt-scan-result { display: grid; grid-template-columns: 25px 1fr; gap: 3px 10px; align-items: center; max-width: 280px; margin: auto; font-size: .78rem; }.wt-scan-result span { grid-row: span 2; color: #16a34a; font-size: 1.3rem; }.wt-scan-result small { color: var(--soft); }
.wt-job b { font-weight: 700; }.wt-job small { color: var(--soft); font-weight: 500; }.wt-job em { color: var(--brand); font-size: 1.5rem; font-style: normal; }
.wt-calendar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; max-width: 280px; }.wt-calendar b { color: var(--soft); font-size: .7rem; text-align:center; }.wt-calendar span { height: 30px; border-radius: 7px; background: #e2e8f0; }.wt-calendar span.selected { background: #93c5fd; }.wt-submit { width: 100%; margin-top: 25px; border: 0; border-radius: 8px; padding: 12px; background: var(--brand); color: #fff; font-weight: 700; }
.werkteam-phone { z-index: 3; right: 0; bottom: 63px; width: 168px; height: 334px; border-width: 7px; border-radius: 30px; transform: rotateY(-8deg) rotateZ(4deg); }.werkteam-phone-notch { position: absolute; z-index: 2; top: 7px; left: 50%; width: 68px; height: 16px; border-radius: 0 0 13px 13px; background: #101b30; transform: translateX(-50%); }.werkteam-phone-screen { height: 100%; padding: 26px 12px 12px; background: linear-gradient(160deg,#eff6ff,#fff); color: var(--ink); }.wt-phone-status { font-size: .58rem; font-weight: 800; }.wt-phone-title { margin: 15px 0 12px; font-size: .86rem; font-weight: 800; }.wt-phone-card { display: grid; gap: 4px; padding: 12px; border-radius: 10px; background: #dcfce7; color: #166534; font-size: .65rem; }.wt-phone-card span { font-size: .57rem; }.wt-phone-action { margin-top: 10px; padding: 10px; border-radius: 8px; background: #fff; color: #475569; font-size: .65rem; font-weight: 700; }.wt-phone-nav { position:absolute; right: 10px; bottom: 11px; left: 10px; display:flex; justify-content:space-between; color:#94a3b8; font-size:.7rem; }.wt-phone-nav b{color:var(--brand)}
.werkteam-shadow { position: absolute; z-index: 1; right: 2%; bottom: 28px; left: 9%; height: 38px; border-radius: 50%; background: rgba(15,23,42,.22); filter: blur(20px); }.werkteam-tabs { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }.werkteam-tabs button { min-height: 42px; border: 1px solid #cbd5e1; border-radius: 999px; padding: 0 10px; background: rgba(255,255,255,.9); color: #64748b; font-size: .78rem; font-weight: 700; cursor: pointer; box-shadow: 0 10px 24px rgba(15,23,42,.05); }.werkteam-tabs button:hover, .werkteam-tabs button.active { border-color: #93c5fd; background: #dbeafe; color: #1d4ed8; }
.werkteam-feature-grid .card { border: 1px solid var(--line); border-top: 1px solid var(--line); }.werkteam-feature-grid .card:hover { transform: translateY(-4px); border-color: #f2a383; background: linear-gradient(145deg, #fff, #fff7f2); box-shadow: 0 18px 36px rgba(218, 78, 35, .12); }.werkteam-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-bottom: 8px; border-radius: 11px; background: #fff0e8; color: #d9481e; font-weight: 900; }.werkteam-connection { background: linear-gradient(135deg,#fff8f4,#f8fafc 55%,#fff2ea); }.werkteam-connection-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }.werkteam-flow { display:grid; gap: 16px; margin: 0; padding:0; list-style:none; }.werkteam-flow li { display:grid; grid-template-columns:42px 1fr; gap:13px; align-items:start; }.werkteam-flow b { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; background:var(--brand); color:#fff; }.werkteam-flow span { color:var(--muted); font-size:.9rem; }.werkteam-flow strong { display:block; margin-bottom:3px; color:var(--ink); }
.werkteam-mockup-stage { transform-style: flat; }
.werkteam-tablet {
  z-index: 1;
  transform: perspective(1300px) rotateY(-10deg) rotateX(4deg) rotateZ(1deg);
  transform-origin: center;
}
.werkteam-phone {
  z-index: 8;
  right: -28px;
  bottom: 54px;
  transform: rotateZ(4deg);
}
@media (max-width: 640px) {
  .werkteam-phone { right: -8px; }
}
.time-hero-summary {
  display: grid;
  gap: 12px;
  background: linear-gradient(160deg, #ffffff, #ecfdf5);
  border-color: #a7f3d0;
}
.time-flow-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 13px;
  border: 1px solid #d1fae5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
}
.time-flow-step > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #059669;
  color: white;
  font-weight: 850;
}
.time-flow-step p {
  margin-top: 2px;
  font-size: 0.88rem;
}
.price-addon-actions {
  margin-top: 22px;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 38px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}
.image-lightbox.open { display: flex; }
.image-lightbox img {
  max-width: min(96vw, 1500px);
  max-height: 92vh;
  border-radius: 10px;
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}
.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px 18px;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.faq p { margin-top: 10px; }

.info-row {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.info-pill {
  display: grid;
  grid-template-columns: minmax(136px, 0.36fr) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 13px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.94rem;
}
.info-pill strong { color: var(--ink); }
.it-privacy-card > p { min-height: 4.8em; }
.self-service { align-items: start; }
.self-service h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}
.self-service .lead {
  max-width: 620px;
  font-size: 1.08rem;
}
.self-service-card {
  display: grid;
  gap: 12px;
}
.split-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  align-items: center;
  gap: 28px;
}
.contact-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}
.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-line:last-child { border-bottom: 0; }
.contact-overview {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 270px;
  padding: 24px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 14%, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(145deg, #f8fbff, #ffffff);
  box-shadow: var(--shadow);
}
.contact-direct {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 17px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}
.contact-direct > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: #dbeafe;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 850;
}
.contact-direct small { display: block; color: var(--soft); font-size: 0.7rem; font-weight: 700; }
.contact-direct strong { display: block; margin-top: 2px; color: var(--ink); font-size: 0.94rem; }
.contact-direct p { margin-top: 4px; font-size: 0.76rem; line-height: 1.4; }
.contact-route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.contact-route-grid > div { min-height: 104px; padding: 13px; border: 1px solid var(--line-soft); border-radius: 10px; background: rgba(255,255,255,0.78); }
.contact-route-grid span { display: block; margin-bottom: 9px; color: var(--brand); font-size: 0.68rem; font-weight: 850; }
.contact-route-grid strong { display: block; color: var(--ink); font-size: 0.77rem; line-height: 1.25; }
.contact-route-grid small { display: block; margin-top: 4px; color: var(--soft); font-size: 0.67rem; line-height: 1.32; }

.cta {
  padding: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
}
.cta p { color: rgba(255,255,255,0.82); }
.cta .btn-secondary { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); color: white; }

.footer {
  padding: 46px 0 34px;
  background: linear-gradient(90deg, #1e3a8a 0%, #0f172a 62%, #020617 100%);
  color: white;
}
.footer p, .footer a { color: #cbd5e1; }
.footer .brand-copy small { color: #cbd5e1; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-weight: 400;
}
.footer-legal a:hover,
.footer-bottom a:hover {
  color: white;
}
.footer h3 { margin-bottom: 10px; font-size: 0.95rem; }
.footer ul { display: grid; gap: 8px; list-style: none; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(203, 213, 225, 0.2);
  color: #94a3b8;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .it-privacy-card > p { min-height: 0; }
  .hero .container { width: min(1160px, calc(100% - 40px)); }
  .hero-grid,
  .page-hero-grid,
  .problem-solution,
  .function-discovery__inner,
  .module-section,
  .split-visual,
  .grid-2,
  .grid-3,
  .product-feature-grid,
  .grid-4,
  .inventory-highlight-grid,
  .inventory-feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .werkteam-detail-screens { grid-template-columns: minmax(0, 1fr) 104px; }
  .inventory-gallery { max-width: 760px; }
  .page-hero {
    min-height: auto;
    padding: 46px 0 36px;
  }
  .page-hero-grid { gap: 28px; }
  .function-discovery__inner {
    align-items: start;
    gap: 20px;
  }
  .function-discovery__inner .btn { justify-self: start; }
  .page-hero h1 { font-size: clamp(1.7rem, 4.2vw, 2.1rem); }
  .hero-graphic { min-height: 220px; }
  .hero-grid {
    gap: 30px;
    transform: none;
  }
  .weg-start-grid {
    grid-template-columns: 1fr;
  }
  .product-preview { min-height: auto; }
  .mockup-stage { min-height: 430px; }
  .mockup-window {
    --mockup-tilt: rotateY(-10deg) rotateX(5deg) rotateZ(0.6deg);
    width: min(92vw, 760px);
  }
  .mockup-shadow {
    left: 13%;
    right: 9%;
    bottom: 34px;
    height: 38px;
    opacity: 0.36;
  }
  .preview-window { min-height: auto; }
  .preview-tabs { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { justify-content: center; }
  .nav-links li:nth-child(5) {
    margin: 8px 0 0;
    padding: 8px 0 0;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }
  .nav-links li:nth-child(n + 5) a { font-size: 0.9rem; }
  .werkteam-showcase { min-height: 490px; max-width: 700px; margin: 0 auto; }
  .werkteam-connection-grid { grid-template-columns: 1fr; gap: 34px; }
  .limit-panel-head {
    grid-template-columns: 1fr;
  }
  .limit-badge {
    justify-self: start;
  }
  .limit-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tools-app-shell {
    grid-template-columns: 1fr;
  }
  .tool-app-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tool-app-stage-icon {
    margin-bottom: 2px;
  }
  .waitlist-grid {
    grid-template-columns: 1fr;
  }
  .waitlist-panel {
    max-width: 620px;
  }
  .waitlist-info-grid {
    grid-template-columns: 1fr;
  }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--ink);
    font-weight: 850;
  }
}

@media (max-width: 640px) {
  .contact-route-grid { grid-template-columns: 1fr; }
  .container { width: min(100% - 28px, 1160px); }
  .nav-actions { display: none; }
  .nav {
    min-height: 72px;
    gap: 10px;
  }
  .brand {
    gap: 8px;
    font-size: 1rem;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .nav-actions .btn-primary {
    width: 76px;
    min-height: 40px;
    padding: 0 12px;
    overflow: hidden;
    font-size: 0;
  }
  .page-hero .hero-actions .btn {
    width: 100%;
    flex: 1 1 100%;
    white-space: normal;
    text-align: center;
  }
  .feature-list li {
    white-space: normal;
  }
  .limit-panel {
    padding: 20px;
  }
  .limit-detail-grid {
    grid-template-columns: 1fr;
  }
  .limit-detail-enterprise {
    grid-template-columns: 1fr;
  }
  .limit-detail-enterprise h3,
  .limit-detail-enterprise p,
  .limit-tag {
    grid-column: 1;
  }
  .limit-note-grid {
    grid-template-columns: 1fr;
  }
  .mobile-toggle {
    position: absolute;
    right: max(14px, calc(100vw - 376px));
    width: 40px;
    height: 40px;
    font-size: 0.82rem;
  }
  .hero {
    min-height: auto;
    padding-top: 44px;
  }
  .tools-hero-compact {
    padding: 38px 0 24px;
  }
  .tools-app-shell {
    grid-template-columns: 1fr;
  }
  .tool-app-nav {
    grid-template-columns: 1fr;
  }
  .tool-app-item {
    min-height: 44px;
    font-size: 0.9rem;
  }
  .tool-app-stage h3 {
    font-size: 1.32rem;
  }
  .tool-app-stage {
    padding: 20px 20px 18px;
  }
  .tools-website-visual {
    min-height: 182px;
    padding: 14px;
  }
  .tool-glyph {
    width: 96px;
    min-height: 42px;
    font-size: 0.7rem;
    padding: 8px 9px;
  }
  .tool-glyph-core {
    width: 34px;
    height: 34px;
  }
  .tool-glyph-core svg {
    width: 18px;
    height: 18px;
  }
  .tool-glyph-center {
    width: 132px;
    min-height: 52px;
  }
  .tool-hero-node {
    min-height: 78px;
  }
  .tool-hero-icon {
    width: 26px;
    height: 26px;
    font-size: 0.87rem;
  }
  .tool-hero-label {
    font-size: 0.78rem;
  }
  .tool-hero-sub {
    font-size: 0.67rem;
    line-height: 1.12;
  }
  .page-hero {
    padding: 38px 0 30px;
  }
  .waitlist-hero {
    padding: 46px 0 42px;
  }
  .waitlist-copy h1 {
    max-width: 360px;
    font-size: clamp(1.52rem, 4.9vw, 1.72rem);
    line-height: 1.08;
  }
  .waitlist-panel {
    padding: 20px;
  }
  .waitlist-status-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .page-hero h1 {
    max-width: 360px;
    font-size: clamp(1.52rem, 4.9vw, 1.72rem);
    line-height: 1.08;
  }
  .page-hero .lead { max-width: 360px; font-size: 0.94rem; }
  .hero-graphic {
    max-width: 360px;
    min-height: 240px;
  }
  .graphic-pricing {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .pricing-tier {
    min-height: 118px;
  }
  .module-graph {
    min-height: 380px;
  }
  .module-graph::after {
    right: 24px;
    left: 24px;
  }
  .module-graph-node {
    width: 126px;
    min-height: 68px;
    padding: 9px 8px;
    font-size: 0.7rem;
    gap: 5px;
  }
  .module-graph-node-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }
  .module-graph-node-icon svg {
    width: 14px;
    height: 14px;
  }
  .module-graph-node.dashboard { left: 25%; top: 27%; }
  .module-graph-node.vorgaenge { left: 75%; top: 27%; }
  .module-graph-node.leitstand { left: 25%; top: 51%; }
  .module-graph-node.finanzen { left: 75%; top: 51%; }
  .module-graph-node.dashboard::after,
  .module-graph-node.vorgaenge::after,
  .module-graph-node.leitstand::after { display: none; }
  .module-graph-node.team,
  .module-graph-node.einkauf,
  .module-graph-node.inventar,
  .module-graph-node.verwaltung {
    top: 84%;
    width: auto;
    min-height: 28px;
    padding: 6px 8px;
    font-size: 0.63rem;
  }
  .module-graph-node.team { left: 16%; }
  .module-graph-node.einkauf { left: 38%; }
  .module-graph-node.inventar { left: 61%; }
  .module-graph-node.verwaltung { left: 84%; }
  .graphic-about { padding: 14px; gap: 10px; }
  .about-card {
    min-height: 86px;
    padding: 10px 12px;
    font-size: 0.81rem;
  }
  .about-card-main { min-height: 112px; }
  .about-card h3 { font-size: 0.93rem; }
  .about-card p { font-size: 0.77rem; }
  .mail-card strong { font-size: 0.86rem; }
  h1 {
    max-width: 360px;
    font-size: clamp(1.52rem, 4.9vw, 1.72rem);
    line-height: 1.08;
  }
  .lead {
    max-width: 360px;
    font-size: 1rem;
  }
  .hero-note { max-width: 360px; }
  .hero-visual .placeholder { min-height: 260px; }
  .hero-visual {
    max-width: 360px;
    padding: 8px;
  }
  .product-preview {
    width: 100%;
    max-width: 430px;
    padding: 0;
  }
  .mockup-stage {
    min-height: 260px;
    justify-content: center;
  }
  .mockup-window {
    --mockup-tilt: rotateY(-7deg) rotateX(4deg) rotateZ(0.4deg);
    width: min(100%, 420px);
    border-radius: 15px;
  }
  .mockup-browserbar {
    height: 36px;
    padding: 0 11px;
    gap: 6px;
  }
  .mockup-brand-mark,
  .mockup-brand-icon,
  .mockup-avatar {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    font-size: 0.48rem;
  }
  .mockup-avatar { border-radius: 999px; }
  .mockup-browserbar strong { font-size: 0.68rem; }
  .mockup-toolbar-dot {
    width: 8px;
    height: 8px;
  }
  .mockup-shadow {
    left: 14%;
    right: 9%;
    bottom: 24px;
    height: 28px;
    filter: blur(11px);
    opacity: 0.30;
  }
  .tools-website-visual {
    min-height: 188px;
    padding: 12px;
  }
  .tool-glyph {
    width: 92px;
    min-height: 40px;
    font-size: 0.66rem;
    padding: 7px 8px;
  }
  .tool-glyph svg {
    width: 14px;
    height: 14px;
  }
  .tool-glyph strong {
    font-size: 0.68rem;
  }
  .tool-glyph-center {
    width: 124px;
    min-height: 46px;
  }
  .tool-hero-node {
    min-height: 72px;
    padding: 10px;
  }
  .tool-hero-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }
  .tool-hero-label { font-size: 0.75rem; }
  .tool-hero-sub { font-size: 0.62rem; }
  .preview-window { min-height: auto; }
  .preview-panel {
    grid-template-columns: 1fr;
  }
  .preview-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .preview-sidebar span,
  .preview-sidebar b {
    min-height: 32px;
    justify-content: center;
    padding: 0 6px;
    font-size: 0.68rem;
  }
  .preview-content { padding: 12px; }
  .preview-kpis,
  .preview-board,
  .preview-flow {
    grid-template-columns: 1fr;
  }
  .preview-kpis strong { font-size: 1.12rem; }
  .preview-chart { min-height: 132px; }
  .preview-calendar-head {
    grid-template-columns: 74px repeat(5, minmax(34px, 1fr));
    gap: 5px;
    font-size: 0.72rem;
  }
  .preview-schedule > div {
    grid-template-columns: 74px repeat(5, minmax(34px, 1fr));
    gap: 5px;
  }
  .bar {
    min-height: 32px;
    padding: 0 8px;
    overflow: hidden;
    font-size: 0.7rem;
    white-space: nowrap;
  }
  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }
  .table-row.head { display: none; }
  .preview-profile,
  .info-pill {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .preview-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .preview-tab {
    min-height: 38px;
    font-size: 0.76rem;
  }
  .section { padding: 48px 0; }
  .cta { padding: 28px; }
  .module-section { padding: 18px; }
}

@media (max-width: 560px) {
  .inventory-gallery { grid-template-columns: 1fr; }
  .inventory-shot.mobile { width: min(74%, 290px); justify-self: center; }
}

@media (max-width: 420px) {
  .brand-name { font-size: 0.98rem; }
  .brand-copy small { font-size: 0.59rem; }
}

.tools-page-section {
  padding: 0;
}

.tools-app-shell {
  margin: 0;
  width: 100%;
  min-height: calc(100vh - 136px);
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr) 248px;
  align-items: stretch;
}

.tool-app-nav {
  position: sticky;
  top: 74px;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 136px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #fbfdff;
  border-right: 1px solid var(--line-soft);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1;
}

.tool-help-panel {
  position: sticky;
  top: 74px;
  min-height: calc(100vh - 136px);
  overflow-y: auto;
  border-left: 1px solid var(--line-soft);
  background: #fbfdff;
  padding: 14px;
}

.tool-help-kicker {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 650;
}

.tool-help-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.25;
}

.tool-help-panel p {
  margin-top: 8px;
  font-size: 0.8rem;
  line-height: 1.42;
}

.tool-help-block {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.tool-help-block strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  font-weight: 650;
}

.tool-help-block ul {
  display: grid;
  gap: 7px;
  list-style: none;
}

.tool-help-block li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.tool-help-block li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #93c5fd;
}

.tool-app-main {
  max-width: none;
  margin: 0;
  width: 100%;
  padding: 10px 16px 18px;
}

.tool-app-stage {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 136px);
  gap: 8px;
}

.tool-app-stage-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line-soft);
}

.tool-app-stage-titleline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-app-stage-frame {
  width: 100%;
  min-height: calc(100vh - 178px);
  flex: 1;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.tool-app-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
}

.tool-app-breadcrumb strong {
  color: var(--ink);
  font-weight: 600;
}

.tool-app-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  min-height: 32px;
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 500;
}

.tool-app-item-icon,
.tool-app-stage-icon .tool-app-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.tool-app-item-icon svg,
.tool-app-stage-icon .tool-app-item-icon svg {
  width: 12px;
  height: 12px;
}

.tool-app-stage-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.tool-app-stage h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .tools-app-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tool-app-nav {
    position: static;
    top: auto;
    min-height: auto;
    padding: 16px 12px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .tool-help-panel {
    position: static;
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .tool-app-main {
    max-width: none;
    padding: 14px;
  }

  .tool-app-stage {
    min-height: calc(100vh - 220px);
  }

  .tool-app-stage-frame {
    min-height: 620px;
  }

  .tool-app-stage-header {
    align-items: flex-start;
  }
}

/* Einrichtung: self-service overview without screenshots */
.setup-hero .page-hero-grid { gap: 58px; }
.setup-overview { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; align-content:center; min-height:278px; padding:22px; border:1px solid #bfdbfe; border-radius:14px; background:radial-gradient(circle at 8% 10%,rgba(37,99,235,.14),transparent 28%),linear-gradient(145deg,#f8fbff,#fff); box-shadow:var(--shadow); }
.setup-overview-card { display:grid; align-content:start; gap:6px; min-height:126px; padding:15px 12px; border:1px solid #dbeafe; border-radius:11px; background:rgba(255,255,255,.9); }
.setup-overview-card > span,.setup-mode-icon { display:grid; width:27px; height:27px; place-items:center; border-radius:8px; background:#dbeafe; color:var(--brand); font-size:.74rem; font-weight:850; }
.setup-overview-card strong { color:var(--ink); font-size:.82rem; }.setup-overview-card small { color:var(--soft); font-size:.68rem; line-height:1.3; }.setup-overview-card-team { border-color:#fed7aa; }.setup-overview-card-team > span { background:#fff1e8; color:#b94325; }
.setup-overview > p { grid-column:1 / -1; margin:2px 2px 0; padding-top:13px; border-top:1px solid rgba(148,163,184,.24); color:var(--muted); font-size:.8rem; }
.setup-path { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; margin-top:32px; }
.setup-path-step { min-height:190px; padding:20px 17px; border:1px solid var(--line); border-radius:12px; background:#fff; }.setup-path-step > span { display:grid; width:30px; height:30px; place-items:center; margin-bottom:16px; border-radius:999px; background:#eff6ff; color:var(--brand); font-size:.74rem; font-weight:850; }.setup-path-step h3 { color:var(--ink); font-size:.96rem; }.setup-path-step p { margin-top:7px; font-size:.82rem; line-height:1.45; }
.setup-mode-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }.setup-mode-card { display:grid; align-content:start; gap:10px; min-height:310px; padding:21px 17px; border:1px solid #bfdbfe; border-radius:12px; background:#fff; }.setup-mode-card h3 { color:var(--ink); font-size:1rem; }.setup-mode-card p { font-size:.84rem; line-height:1.48; }.setup-mode-card small { align-self:end; padding-top:10px; border-top:1px solid var(--line-soft); color:var(--soft); font-size:.72rem; font-weight:700; line-height:1.35; }.setup-mode-card-offline { border-color:#fed7aa; background:linear-gradient(160deg,#fff,#fff8f3); }.setup-mode-card-offline .setup-mode-icon { background:#fff1e8; color:#b94325; }
.setup-preparation-card > span { display:inline-flex; margin-bottom:22px; color:var(--brand); font-size:.72rem; font-weight:850; letter-spacing:.08em; }.setup-preparation-card h3 { color:var(--ink); }.setup-preparation-card p { margin-top:8px; font-size:.87rem; line-height:1.5; }
@media (max-width:980px) { .setup-overview { max-width:640px; }.setup-path { grid-template-columns:repeat(2,minmax(0,1fr)); }.setup-mode-grid { max-width:680px; } }
@media (max-width:640px) { .setup-overview { grid-template-columns:1fr; min-height:auto; }.setup-overview > p { grid-column:auto; }.setup-path,.setup-mode-grid { grid-template-columns:1fr; }.setup-path-step { min-height:auto; }.setup-mode-card { min-height:0; } }

/* Pricing limit explanation */
.limit-detail-grid-access { grid-template-columns:repeat(2,minmax(0,1fr)); }
.limit-detail-team { border-color:#fed7aa; background:linear-gradient(145deg,#fff,#fff8f3); }
.limit-detail-team h3 { color:#9a3412; }
.limit-standard-note { margin:16px 0; padding:14px 16px; border:1px solid #bfdbfe; border-radius:10px; background:#eff6ff; color:var(--muted); font-size:.86rem; line-height:1.48; }.limit-standard-note strong { color:var(--ink); }
@media (max-width:640px) { .limit-detail-grid-access { grid-template-columns:1fr; } }

/* WerkTeam detail page: the mobile product keeps its own copper accent. */
.werkteam-details-page .page-hero {
  border-bottom: 1px solid #fed7aa;
  background: radial-gradient(circle at 82% 28%, rgba(234, 88, 42, .14), transparent 30%), linear-gradient(135deg, #fffaf7 0%, #ffffff 54%, #fff3ed 100%);
}
.werkteam-details-page .page-hero .eyebrow,
.werkteam-details-page .module-section .eyebrow,
.workteam-page .module-section .eyebrow { color: #d9481e; }
.werkteam-details-page .module-section,
.workteam-page .module-section { border-top: 0; }
.werkteam-details-page .module-section:hover,
.workteam-page .module-section:hover { transform: translateY(-4px); border-color: #df572b; background: linear-gradient(145deg, #ffffff, #fff7f2); box-shadow: 0 18px 36px rgba(218, 78, 35, .12); }
.werkteam-details-page .screenshot-frame,
.workteam-page .screenshot-frame { border-color: #fed7aa; }
.werkteam-details-page .screenshot-frame--phone,
.workteam-page .screenshot-frame--phone { border-color: #f08a62; }

.werkteam-pricing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid #fed7aa;
  background: linear-gradient(135deg, #fffaf7, #fff2ea);
}
.werkteam-pricing-cta h2 { color: var(--ink); }
.werkteam-pricing-cta p { color: var(--muted); }
.werkteam-pricing-cta .eyebrow { color: #d9481e; }
.werkteam-pricing-cta .cta-actions { margin: 0; }
@media (max-width: 640px) {
  .werkteam-pricing-cta { grid-template-columns: 1fr; gap: 20px; }
  .werkteam-pricing-cta .cta-actions { justify-content: flex-start; }
}

/* Public homepage: central entry into WerkPlaner and WerkTeam. */
.home-page { background: #f7f9fc; }
.home-hero {
  min-height: calc(100vh - 68px);
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  padding: 0;
}
.home-hero > .hero-grid {
  align-self: center;
  padding-top: 28px;
  padding-bottom: 22px;
  transform: none;
}
.home-hero .preview-tabs { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.home-hero .preview-tab[data-hero-tab="werkteam"] {
  border-color: #fed7aa;
  background: #fffaf7;
  color: #b94325;
}
.home-hero .preview-tab[data-hero-tab="werkteam"]:hover,
.home-hero .preview-tab[data-hero-tab="werkteam"].active {
  border-color: #c24a29;
  background: #c24a29;
  color: #fff;
  box-shadow: 0 16px 30px rgba(194, 74, 41, .22);
}
.home-hero-copy { align-self: center; }
.home-hero h1 { max-width: 780px; }
.home-section-head { max-width: 790px; margin-right: auto; margin-left: auto; }
.home-section-head p { max-width: 720px; margin-right: auto; margin-left: auto; }

.home-proof {
  position: relative;
  z-index: 2;
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
  background: rgba(255, 255, 255, .92);
}
.home-proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-proof-grid > span { padding: 19px 18px; color: var(--muted); font-size: .88rem; text-align: center; }
.home-proof-grid > span + span { border-left: 1px solid var(--line-soft); }
.home-proof-grid strong { color: var(--ink); }

.home-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 38px; }
.home-product-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid #bfdbfe;
  border-radius: 20px;
  background: radial-gradient(circle at 100% 0, rgba(37,99,235,.13), transparent 34%), #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}
.home-product-card--team { border-color: #f3c1b1; background: radial-gradient(circle at 100% 0, rgba(211,84,45,.14), transparent 34%), #fffaf7; }
.home-product-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 26px; }
.home-product-brand img { width: 48px; height: 48px; border-radius: 12px; }
.home-product-brand > span { display: grid; }
.home-product-brand strong { color: var(--ink); font-size: 1.25rem; line-height: 1.1; }
.home-product-brand strong b { color: var(--brand); }
.home-product-brand small { margin-top: 3px; color: var(--soft); font-size: .76rem; }
.home-product-brand--team strong:not(b) { color: #d3542d; }
.home-product-card h3 { max-width: 520px; font-size: clamp(1.35rem, 2.2vw, 1.9rem); line-height: 1.22; }
.home-product-card > p { margin-top: 14px; }
.home-product-card .list { margin: 22px 0 28px; }
.home-product-card .btn { margin-top: auto; }

.home-workflow-section { overflow: hidden; }
.home-flow { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 42px; list-style: none; }
.home-flow::before { content: ""; position: absolute; top: 29px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, #93c5fd, #2563eb); }
.home-flow li { position: relative; z-index: 1; display: grid; justify-items: center; gap: 5px; padding: 0 8px; text-align: center; }
.home-flow li > span { display: grid; width: 58px; height: 58px; place-items: center; border: 5px solid #f8fafc; border-radius: 999px; background: var(--brand); color: #fff; font-weight: 850; box-shadow: 0 8px 24px rgba(37,99,235,.22); }
.home-flow strong { margin-top: 8px; color: var(--ink); }
.home-flow small { color: var(--soft); font-size: .76rem; line-height: 1.35; }

.home-benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.home-benefit-grid .card { min-height: 245px; }
.home-benefit-number { display: inline-flex; margin-bottom: 24px; color: #93c5fd; font-size: 1.8rem; font-weight: 850; letter-spacing: -.04em; }
.home-benefit-grid h3 { margin-bottom: 10px; font-size: 1.1rem; }

.home-trust-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 54px; align-items: center; }
.home-trust-grid h2 { margin-top: 10px; max-width: 650px; font-size: clamp(1.75rem, 3vw, 2.55rem); line-height: 1.16; }
.home-trust-grid .lead { margin-top: 18px; }
.home-trust-list { display: grid; gap: 10px; }
.home-trust-list > span { display: grid; gap: 3px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 10px 28px rgba(15,23,42,.04); }
.home-trust-list strong { color: var(--ink); font-size: .92rem; }
.home-trust-list small { color: var(--soft); }

.home-price-teaser { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: center; padding: clamp(28px, 4vw, 48px); border: 1px solid #bfdbfe; border-radius: 20px; background: linear-gradient(135deg, #eff6ff, #fff); box-shadow: var(--shadow); }
.home-price-teaser h2 { margin-top: 8px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.home-price-teaser p { margin-top: 12px; max-width: 700px; }
.home-price-action { display: grid; justify-items: end; min-width: 260px; }
.home-price-action > strong { color: var(--ink); font-size: 1.45rem; }
.home-price-action > span { margin-bottom: 18px; color: var(--soft); font-size: .82rem; }

.home-faq-grid { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: 48px; align-items: start; }
.home-faq-grid h2 { margin: 8px 0 12px; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.home-final-section { padding-top: 72px; }
.home-final-cta { text-align: center; }
.home-final-cta .eyebrow { color: #bfdbfe; }
.home-final-cta .cta-actions { justify-content: center; }
.home-footer-grid { grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(130px, .6fr)); }

@media (min-width: 981px) and (max-height: 820px) {
  .home-hero > .hero-grid { padding-top: 14px; padding-bottom: 12px; }
  .home-hero h1 { margin-top: 8px; font-size: clamp(1.65rem, 2vw, 2rem); }
  .home-hero .lead { margin-top: 12px; line-height: 1.45; }
  .home-hero .hero-actions { margin-top: 20px; }
  .home-hero .hero-note { margin-top: 12px; }
  .home-hero .mockup-stage { min-height: 440px; }
  .home-hero .mockup-window { width: min(96%, 800px); }
  .home-hero .preview-tabs { margin-top: 10px; }
  .home-hero .home-proof-grid > span { padding-top: 14px; padding-bottom: 14px; }
}

@media (max-width: 980px) {
  .nav-actions { display: none; }
  .nav-links .nav-mobile-action { display: block; }
  .nav-links .nav-mobile-action a { border: 1px solid var(--line); }
  .nav-links .nav-mobile-primary { border-color: var(--brand); background: var(--brand); color: #fff; }
  .home-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-proof-grid > span:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-soft); }
  .home-proof-grid > span:nth-child(4) { border-top: 1px solid var(--line-soft); }
  .home-hero { min-height: auto; }
  .home-hero > .hero-grid { padding-top: 46px; padding-bottom: 36px; }
  .home-hero .preview-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-trust-grid, .home-price-teaser, .home-faq-grid { grid-template-columns: 1fr; }
  .home-price-action { justify-items: start; min-width: 0; }
  .home-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .home-product-grid, .home-benefit-grid { grid-template-columns: 1fr; }
  .home-product-card { min-height: 0; }
  .home-flow { grid-template-columns: 1fr; gap: 0; }
  .home-flow::before { top: 20px; bottom: 20px; left: 28px; width: 2px; height: auto; }
  .home-flow li { grid-template-columns: 56px minmax(0, 1fr); grid-template-rows: auto auto; justify-items: start; column-gap: 14px; padding: 9px 0; text-align: left; }
  .home-flow li > span { grid-row: 1 / 3; width: 56px; height: 56px; }
  .home-flow strong { align-self: end; margin: 0; }
}

@media (max-width: 480px) {
  .home-hero .preview-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-proof-grid { grid-template-columns: 1fr; }
  .home-proof-grid > span + span { border-top: 1px solid var(--line-soft); border-left: 0; }
  .home-footer-grid { grid-template-columns: 1fr; }
  .home-footer-grid > div:first-child { grid-column: auto; }
}
