/* ============================================================
   KMS — base styles. Tokens + shared components.
   Two themes wrap a single base: [data-style="a"] and .
   ============================================================ */

:root {
  --maxw: 1280px;
  --pad: 56px;
  --gap: 14px;

  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* density tokens — flipped by [data-density] */
  --sec-pad-y: 96px;
  --sec-pad-y-sm: 64px;
  --card-pad: 28px;
}

[data-density="compact"] {
  --sec-pad-y: 64px;
  --sec-pad-y-sm: 40px;
  --card-pad: 20px;
}

* { box-sizing: border-box; }
.kms { font-feature-settings: "ss01", "cv11"; line-height: 1.5; font-size: 16px; -webkit-font-smoothing: antialiased; }
.kms img { max-width: 100%; display: block; }
.kms a { color: inherit; text-decoration: none; }
.kms button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.kms ul, .kms ol { padding: 0; margin: 0; list-style: none; }
.kms h1, .kms h2, .kms h3, .kms h4, .kms h5 { margin: 0; }

/* =====================================================
   THEME A — "Cream" (warm ivory + ink + safety-orange)
   bouw DNA, direct, no-nonsense
   ===================================================== */
.kms[data-style="a"] {
  --bg: #f1ece1;
  --bg-2: #e9e2d2;
  --bg-3: #ddd4bf;
  --card: #faf7f0;
  --card-2: #f5f0e3;
  --line: rgba(21, 17, 13, 0.10);
  --line-2: rgba(21, 17, 13, 0.20);
  --fg: #15110d;
  --fg-2: #2a241c;
  --fg-soft: #5a5142;
  --accent: var(--tweak-accent, #e6552a);
  --accent-fg: #ffffff;
  --accent-deep: #c43d12;
  --warn: #d63a1a;

  --display-font: "Bricolage Grotesque", system-ui, sans-serif;
  --body-font: "Geist", system-ui, sans-serif;
  --mono-font: "JetBrains Mono", ui-monospace, monospace;
  --display-weight: 700;
  --display-tracking: -0.035em;
  --display-leading: 0.95;

  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
}

/* =====================================================
   THEME B — "Paper" (cool paper + navy ink + signal blue)
   clean agency, Wiremo-achtig
   ===================================================== */
.kms {
  --bg: #f6f7f9;
  --bg-2: #eef0f4;
  --bg-3: #e2e6ed;
  --card: #ffffff;
  --card-2: #f9fafc;
  --line: rgba(10, 22, 47, 0.10);
  --line-2: rgba(10, 22, 47, 0.18);
  --fg: #0a162f;
  --fg-2: #1f2a48;
  --fg-soft: #5b6a85;
  --accent: var(--tweak-accent, #0ea5e9);
  --accent-fg: #ffffff;
  --accent-deep: #0284c7;
  --warn: #d63a1a;

  --display-font: "Geist", system-ui, sans-serif;
  --body-font: "Geist", system-ui, sans-serif;
  --mono-font: "JetBrains Mono", ui-monospace, monospace;
  --display-weight: 600;
  --display-tracking: -0.03em;
  --display-leading: 0.96;

  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
}

/* font-pair override from tweaks panel */
.kms[data-fontpair="grotesque"] { --display-font: "Bricolage Grotesque", system-ui, sans-serif; --display-weight: 700; }
.kms[data-fontpair="geist"] { --display-font: "Geist", system-ui, sans-serif; --display-weight: 600; }
.kms[data-fontpair="serif"] { --display-font: "Instrument Serif", Georgia, serif; --display-weight: 400; --display-tracking: -0.02em; }
.kms[data-fontpair="mono"] { --display-font: "JetBrains Mono", monospace; --display-weight: 600; --display-tracking: -0.02em; }

/* =====================================================
   Layout primitives
   ===================================================== */
.kms .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.kms section { padding: var(--sec-pad-y) 0; position: relative; }
.kms section + section { border-top: 1px solid var(--line); }

.kms .eyebrow {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.kms .eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.kms .eyebrow.solo::before { display: none; }
.kms .eyebrow .num { color: var(--accent); }

.kms .display {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-leading);
  text-wrap: balance;
}
.kms .display .hi { color: var(--accent); }
.kms .display .hi { font-style: normal; }

.kms .mono {
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.kms .mono.upper { text-transform: uppercase; letter-spacing: 0.14em; }

/* =====================================================
   Buttons
   ===================================================== */
.kms .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .12s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.kms .btn:hover { transform: translateY(-1px); }
.kms .btn-primary { background: var(--accent); color: var(--accent-fg); }
.kms .btn-primary:hover { background: var(--accent-deep); }
.kms .btn-ghost { border-color: var(--line-2); color: var(--fg); }
.kms .btn-ghost:hover { border-color: var(--fg); }
.kms .btn-ink { background: var(--fg); color: var(--bg); }
.kms .btn-ink:hover { background: var(--accent); color: var(--accent-fg); }
.kms .btn-sm { padding: 10px 16px; font-size: 13.5px; }
.kms .btn .arrow {
  width: 14px; height: 14px;
  transition: transform .15s;
}
.kms .btn:hover .arrow { transform: translateX(3px); }

/* style B has squarer buttons */
.kms .btn { border-radius: 4px; }
.kms .btn-primary {
  box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 4px 0 0 var(--accent-deep);
}
.kms .btn-primary:hover {
  transform: translateY(2px);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 2px 0 0 var(--accent-deep);
}

/* =====================================================
   Nav
   ===================================================== */
.kms .nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.kms .nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.kms .brand { display: flex; align-items: center; gap: 12px; }
.kms .brand-mark {
  width: 36px; height: 36px;
  background: var(--fg); color: var(--bg);
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--mono-font);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.04em;
}
.kms .brand-mark { background: var(--accent); color: var(--accent-fg); border-radius: 4px; }
.kms .brand-name {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.kms .nav-links { display: flex; gap: 26px; font-size: 14px; }
.kms .nav-links a { color: var(--fg-2); transition: color .15s; }
.kms .nav-links a:hover { color: var(--fg); }
.kms .nav-cta-row { display: flex; align-items: center; gap: 10px; }

/* =====================================================
   Hero
   ===================================================== */
.kms .hero {
  padding-top: 96px; padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}
.kms[data-style="a"] .hero {
  background:
    radial-gradient(70% 90% at 90% 0%, rgba(230,85,42,0.06), transparent 65%),
    var(--bg);
}
.kms .hero {
  background:
    radial-gradient(60% 80% at 80% 100%, rgba(30,87,200,0.05), transparent 70%),
    var(--bg);
}

.kms .hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: end;
}
.kms .hero-grid[data-imageless="true"] { grid-template-columns: 1fr; }
.kms .hero-grid[data-imageless="true"] .hero-visual { display: none; }
.kms .hero-grid[data-imageless="true"] .hero-headline { font-size: 96px; max-width: 16ch; }

.kms .hero-headline {
  font-size: 84px;
  margin: 28px 0 28px;
  text-wrap: balance;
}
.kms[data-style="a"] .hero-headline { font-feature-settings: "ss01", "cv11", "cv05"; }

.kms .hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 52ch;
  margin: 0 0 32px;
  text-wrap: pretty;
  line-height: 1.45;
}
.kms .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.kms .hero-trust {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
  font-size: 13.5px;
  color: var(--fg-soft);
}
.kms .stars { display: inline-flex; gap: 2px; color: var(--accent); }
.kms[data-style="a"] .stars { color: #f4d23d; }
.kms .stars { color: var(--accent); }
.kms .avatar-row { display: flex; }
.kms .av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background-size: cover; background-position: center;
}
.kms .av:first-child { margin-left: 0; }
.kms .av:nth-child(1) { background: linear-gradient(135deg, #c4a574, #6e4c1e); }
.kms .av:nth-child(2) { background: linear-gradient(135deg, #4a5a52, #1f2e25); }
.kms .av:nth-child(3) { background: linear-gradient(135deg, #4a5b7a, #1f2738); }
.kms .av:nth-child(4) { background: linear-gradient(135deg, #6a4a3a, #2d1a14); }

/* Hero visual / placeholder */
.kms .hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}
.kms[data-style="a"] .hero-visual {
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(21,17,13,0.04) 12px 13px),
    linear-gradient(180deg, #ddd4bf, #c9bea3);
}
.kms .hero-visual {
  background:
    linear-gradient(180deg, rgba(30,87,200,0.05), transparent 50%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.6), transparent 60%),
    #e2e6ed;
}
.kms .ph-watermark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
  text-align: center;
  padding: 0 32px;
  line-height: 1.7;
  pointer-events: none;
}
.kms .ph-watermark::before {
  content: "";
  width: 32px; height: 32px;
  border: 1px dashed var(--line-2);
  border-radius: 50%;
  margin-bottom: 14px;
  display: block;
  margin-left: auto; margin-right: auto;
}
.kms .ph-watermark span { display: block; }

.kms .hero-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 12px 16px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 600;
  max-width: 78%;
}
.kms .hero-badge { border-radius: 4px; }
.kms .hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-fg);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  100% { box-shadow: 0 0 0 10px transparent; opacity: 0.6; }
}
.kms .hero-stat {
  position: absolute;
  right: 20px; top: 20px;
  background: var(--card-2);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--fg-2);
}
.kms .hero-stat { border-radius: 4px; }
.kms .hero-stat strong {
  display: block;
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: var(--display-weight);
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

/* =====================================================
   Meta row beneath hero
   ===================================================== */
.kms .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.kms .meta-row .live { color: var(--accent); }
.kms .meta-row .live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 1.6s ease-out infinite;
}

/* =====================================================
   Marquee / Logo strip
   ===================================================== */
.kms .marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 20px 0;
  overflow: hidden;
}
.kms .marquee-track {
  display: flex; gap: 56px;
  animation: scroll 42s linear infinite;
  width: max-content;
}
.kms .marquee-item {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--fg-soft);
  letter-spacing: -0.015em;
  display: flex; align-items: center; gap: 56px;
  white-space: nowrap;
}
.kms .marquee-item .dotmark {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* =====================================================
   Section header pattern
   ===================================================== */
.kms .sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.kms .sec-head h2 {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  font-size: 56px;
  letter-spacing: var(--display-tracking);
  line-height: 1;
  max-width: 18ch;
  text-wrap: balance;
}
.kms .sec-head h2 .hi { color: var(--accent); }
.kms .sec-head h2 .hi { font-style: normal; }
.kms .sec-head .sec-lead { max-width: 38ch; color: var(--fg-soft); font-size: 15px; }
.kms .sec-head .sec-eyebrow { display: block; margin-bottom: 16px; }

/* =====================================================
   Services
   ===================================================== */
.kms .services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.kms .svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--card-pad);
  display: flex; flex-direction: column;
  min-height: 420px;
  transition: border-color .15s, transform .15s, background .15s;
  cursor: pointer;
}
.kms .svc-card { border-radius: var(--r-sm); }
.kms .svc-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.kms .svc-num {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-soft);
  text-transform: uppercase;
}
.kms .svc-mark {
  margin-top: 18px;
  height: 140px;
  border-radius: var(--r-md);
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.kms .svc-mark { border-radius: var(--r-xs); }
.kms .svc-mark .glyph {
  font-family: var(--display-font);
  font-size: 92px;
  font-weight: var(--display-weight);
  color: var(--accent);
  letter-spacing: -0.06em;
  line-height: 1;
}
.kms .svc-mark .glyph-sub {
  position: absolute;
  bottom: 12px; right: 14px;
  font-family: var(--mono-font);
  font-size: 10px;
  color: var(--fg-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kms[data-style="a"] .svc-mark::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(230,85,42,0.06) 8px 9px);
}
.kms .svc-mark { background: var(--card-2); }
.kms .svc-card h3 {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.025em;
  margin: 26px 0 10px;
  line-height: 1.1;
  text-wrap: balance;
}
.kms .svc-card .svc-desc {
  color: var(--fg-soft);
  font-size: 14.5px;
  margin-bottom: 22px;
  flex: 1;
}
.kms .svc-card .link-row {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 13.5px;
  color: var(--fg);
}
.kms .svc-card:hover .link-row { color: var(--accent); }

/* =====================================================
   Approach (3 steps)
   ===================================================== */
.kms .approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.kms .step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--card-pad);
  position: relative;
}
.kms .step { border-radius: var(--r-sm); }
.kms .step-num {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  font-size: 76px;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}
.kms .step h3 {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.kms .step p { color: var(--fg-soft); font-size: 14.5px; margin-bottom: 18px; }
.kms .step ul { display: flex; flex-direction: column; gap: 8px; }
.kms .step li {
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--fg);
  display: flex; gap: 10px; align-items: flex-start;
}
.kms .step li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--display-font);
}

/* =====================================================
   Results block (dark inside dark — accent panel)
   ===================================================== */
.kms .results-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.kms .results-panel { border-radius: 8px; }
.kms[data-style="a"] .results-panel {
  background: #15110d;
  color: #f6efe0;
  border-color: #15110d;
}
.kms[data-style="a"] .results-panel .eyebrow { color: rgba(246,239,224,0.6); }
.kms[data-style="a"] .results-panel .stats-grid { border-color: rgba(246,239,224,0.18); }
.kms[data-style="a"] .results-panel .stat { border-right-color: rgba(246,239,224,0.12); }
.kms[data-style="a"] .results-panel .lbl { color: rgba(246,239,224,0.65); }
.kms[data-style="a"] .results-panel .stat .big sup { color: rgba(246,239,224,0.9); }
.kms[data-style="a"] .results-panel h2 { color: #f6efe0; }
.kms .results-panel {
  background: #0a162f;
  color: #f6f7f9;
  border-color: #0a162f;
}
.kms .results-panel .eyebrow { color: rgba(246,247,249,0.6); }
.kms .results-panel .stats-grid { border-color: rgba(246,247,249,0.18); }
.kms .results-panel .stat { border-right-color: rgba(246,247,249,0.12); }
.kms .results-panel .lbl { color: rgba(246,247,249,0.65); }
.kms .results-panel .stat .big sup { color: rgba(246,247,249,0.9); }
.kms .results-panel h2 { color: #f6f7f9; }
.kms .results-panel > * { position: relative; z-index: 1; }
.kms .results-panel h2 { color: var(--fg); font-family: var(--display-font); font-weight: var(--display-weight); font-size: 56px; letter-spacing: var(--display-tracking); line-height: 0.95; margin-top: 16px; max-width: 16ch; }
.kms .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line-2);
}
.kms .stat {
  padding: 32px 24px 0 0;
  border-right: 1px solid var(--line);
}
.kms .stat:last-child { border-right: none; padding-right: 0; }
.kms .stat .big {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  font-size: 76px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.kms .stat .big sup {
  font-size: 0.45em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--fg);
}
.kms .stat .lbl { color: var(--fg-soft); font-size: 13.5px; max-width: 22ch; }

/* =====================================================
   Comparison
   ===================================================== */
.kms .compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.kms .compare-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
}
.kms .compare-col { border-radius: var(--r-sm); }
.kms .compare-col.us {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--accent) 7%, var(--card)), var(--card));
}
.kms .compare-col .col-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.kms .compare-col h3 {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.kms .compare-tag {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--bg-2);
  color: var(--fg-soft);
}
.kms .compare-col.us .compare-tag { background: var(--accent); color: var(--accent-fg); }
.kms .compare-list { display: flex; flex-direction: column; gap: 14px; }
.kms .compare-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px;
  line-height: 1.4;
}
.kms .compare-list li .ico {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  margin-top: 1px;
}
.kms .compare-col.them .ico { background: var(--line); color: var(--fg-soft); }
.kms .compare-col.us .ico { background: var(--accent); color: var(--accent-fg); }
.kms .ico { border-radius: 3px; }

/* =====================================================
   Guarantee
   ===================================================== */
.kms .guarantee {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  background: var(--accent);
  color: var(--accent-fg);
  border-radius: var(--r-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.kms .guarantee {
  border-radius: 8px;
  background:
    repeating-linear-gradient(135deg, var(--accent) 0 40px, var(--accent-deep) 40px 80px);
}
.kms[data-style="a"] .guarantee::before {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: repeating-conic-gradient(rgba(255,255,255,0.10) 0deg 8deg, transparent 8deg 16deg);
  border-radius: 50%;
  pointer-events: none;
}
.kms .guarantee .eyebrow { color: rgba(255,255,255,0.75); }
.kms .guarantee .eyebrow::before { background: rgba(255,255,255,0.5); }
.kms .guarantee h2 {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  font-size: 56px;
  letter-spacing: var(--display-tracking);
  line-height: 0.96;
  margin: 14px 0 18px;
  max-width: 14ch;
  color: var(--accent-fg);
}
.kms .guarantee p { color: rgba(255,255,255,0.85); max-width: 42ch; font-size: 16px; margin-bottom: 28px; }
.kms .guarantee .btn-ink { background: #0a0a0a; color: var(--accent); }
.kms .guarantee .btn-ink:hover { background: var(--fg); color: var(--accent-fg); }
.kms .guarantee-meta {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.kms .gm-card {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 16px 18px;
}
.kms .gm-card { border-radius: 4px; }
.kms .gm-card .lbl {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.kms .gm-card .val {
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--accent-fg);
}

/* =====================================================
   Pricing
   ===================================================== */
.kms .pricing {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.kms .pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  position: relative;
}
.kms .pricing-card { border-radius: var(--r-sm); }
.kms .pricing-card.featured { border-color: var(--accent); }
.kms .pricing-card.featured::before {
  content: "Start hier";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-fg);
  background: var(--accent);
  padding: 4px 8px;
  border-radius: 999px;
}
.kms .pricing-card.featured::before { border-radius: 3px; }
.kms .pricing-card h3 {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.kms .pricing-card .price-line {
  display: flex; align-items: baseline; gap: 6px;
  margin: 18px 0 4px;
}
.kms .pricing-card .price {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}
.kms .pricing-card .price-unit { color: var(--fg-soft); font-size: 14px; }
.kms .pricing-card .price-desc { color: var(--fg-soft); font-size: 14px; margin-bottom: 24px; }
.kms .pricing-card hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.kms .pricing-card ul { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.kms .pricing-card li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px;
}
.kms .pricing-card li::before {
  content: "✓";
  color: var(--accent);
  flex: none;
  margin-top: -1px;
  font-weight: 700;
}

/* =====================================================
   Testimonials
   ===================================================== */
.kms .testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.kms .testi {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
}
.kms .testi { border-radius: var(--r-sm); }
.kms .testi .stars { margin-bottom: 16px; }
.kms .testi blockquote {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin-bottom: 24px;
  flex: 1;
  text-wrap: pretty;
  color: var(--fg);
}
.kms .testi-meta { display: flex; align-items: center; gap: 12px; }
.kms .testi-meta .av { width: 40px; height: 40px; margin: 0; }
.kms .testi-meta strong { display: block; font-size: 14px; font-weight: 600; color: var(--fg); }
.kms .testi-meta span { display: block; font-size: 12.5px; color: var(--fg-soft); }

/* =====================================================
   FAQ
   ===================================================== */
.kms .faq-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.kms .faq-list { display: flex; flex-direction: column; }
.kms .faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.kms .faq-item:last-child { border-bottom: 1px solid var(--line); }
.kms .faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-wrap: pretty;
}
.kms .faq-toggle {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 16px;
  transition: background .2s, color .2s, transform .2s;
}
.kms .faq-toggle { border-radius: 4px; }
.kms .faq-item[data-open="true"] .faq-toggle {
  background: var(--accent); color: var(--accent-fg); border-color: var(--accent);
  transform: rotate(45deg);
}
.kms .faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.kms .faq-item[data-open="true"] .faq-a { grid-template-rows: 1fr; }
.kms .faq-a > div {
  overflow: hidden;
  color: var(--fg-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.kms .faq-item[data-open="true"] .faq-a > div { padding-top: 14px; }

/* =====================================================
   Closer / CTA
   ===================================================== */
.kms .closer {
  text-align: center;
  padding: 120px var(--pad);
  position: relative;
  overflow: hidden;
}
.kms[data-style="a"] .closer {
  background: repeating-linear-gradient(135deg, transparent 0 80px, rgba(230,85,42,0.04) 80px 81px);
}
.kms .closer {
  background:
    radial-gradient(50% 60% at 50% 100%, rgba(30,87,200,0.05), transparent 70%);
}
.kms .closer h2 {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  font-size: 96px;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 auto 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.kms .closer .closer-sub {
  color: var(--fg-soft); max-width: 50ch; margin: 0 auto 32px;
  font-size: 17px;
}

/* =====================================================
   Footer
   ===================================================== */
.kms footer {
  background: var(--bg-2);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}
.kms .foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.kms .foot-grid h4 {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
  font-weight: 500;
  margin-bottom: 16px;
}
.kms .foot-grid ul { display: flex; flex-direction: column; gap: 9px; }
.kms .foot-grid a { color: var(--fg-2); font-size: 14px; }
.kms .foot-grid a:hover { color: var(--accent); }
.kms .foot-brand-blurb {
  margin-top: 18px;
  color: var(--fg-soft); font-size: 13.5px; max-width: 32ch;
}
.kms .foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-family: var(--mono-font);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--fg-soft);
  text-transform: uppercase;
}
.kms .foot-socials { display: flex; gap: 10px; }
.kms .foot-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--fg-2);
  font-size: 11px;
  transition: border-color .15s, color .15s, background .15s;
}
.kms .foot-socials a { border-radius: 4px; }
.kms .foot-socials a:hover { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
