/* Micro landingssider for Økonomikalk - lagt til kirurgisk */
:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface2: #f9fbff;
  --text: #122033;
  --muted: #66768b;
  --border: #dce5ef;
  --primary: #0f766e;
  --primary2: #115e59;
  --warn: #b7791f;
  --danger: #b42318;
  --shadow: 0 20px 60px rgba(18,32,51,.09);
  --radius: 28px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(15,118,110,.13), transparent 28rem), var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
.topbar {
  min-height: 72px;
  padding: 14px clamp(18px,4vw,58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.16rem; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 14px; background: var(--primary); color: #fff; }
.toplink { color: var(--primary2); background: #e7f7f3; border-radius: 999px; padding: 10px 14px; font-weight: 900; }
main { width: min(920px, calc(100% - 28px)); margin: 0 auto; padding-bottom: 70px; }
.hero { text-align: center; padding: 54px 0 20px; }
.eyebrow { margin: 0 0 10px; color: var(--primary); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
h1 { margin: 0; font-size: clamp(2.1rem,6vw,4.7rem); line-height: .95; letter-spacing: -.07em; }
h2 { margin: 0; font-size: clamp(1.45rem,3vw,2.35rem); line-height: 1.05; letter-spacing: -.04em; }
h3 { margin: 0 0 10px; }
.lead { max-width: 740px; margin: 18px auto 0; color: var(--muted); font-size: 1.13rem; line-height: 1.62; }
.panel, .result-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(20px,3vw,34px);
  margin: 22px 0;
}
.progress { height: 10px; background: #e2eaf3; border-radius: 999px; overflow: hidden; margin-bottom: 24px; }
.progress > div { height: 100%; width: 0%; background: var(--primary); transition: width .25s ease; }
.step { display: none; }
.step.active { display: grid; gap: 18px; }
label { display: grid; gap: 8px; font-weight: 850; }
input, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 13px;
  background: white;
  color: var(--text);
  font: inherit;
  font-weight: 650;
}
.help { color: var(--muted); line-height: 1.55; margin: 0; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 19px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
}
.btn.primary { color: white; background: var(--primary); }
.btn.secondary { color: var(--primary2); background: #e7f7f3; }
.btn.ghost { color: var(--text); background: #e7eef7; }
.result-card { display: none; }
.result-card.active { display: block; }
.result-number {
  display: block;
  margin: 8px 0 14px;
  font-size: clamp(2rem,6vw,4.2rem);
  font-weight: 950;
  letter-spacing: -.06em;
  color: var(--primary);
}
.result-warn { color: var(--warn); }
.result-danger { color: var(--danger); }
.summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.summary-item { border: 1px solid var(--border); background: var(--surface2); border-radius: 18px; padding: 14px; }
.summary-item span { display: block; color: var(--muted); font-size: .86rem; }
.summary-item strong { display: block; margin-top: 6px; font-size: 1.18rem; }
.edit-panel { margin-top: 24px; padding: 20px; border: 1px solid var(--border); background: var(--surface2); border-radius: 22px; }
.edit-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.cta-box { margin-top: 24px; padding: 20px; border-radius: 22px; background: #ecfdf5; border: 1px solid #b7ead8; }
.checklist { padding-left: 0; list-style: none; color: var(--muted); line-height: 1.65; }
.checklist li { position: relative; padding-left: 28px; margin: 8px 0; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 950; }
@media (max-width:720px) {
  .summary-grid, .edit-grid { grid-template-columns: 1fr; }
  .topbar { align-items: flex-start; flex-direction: column; }
}