:root {
  --brand: #4cbf8a;
  --brand-dark: #2f9e6e;
  --brand-soft: #e7f7ee;
  --cream: #faf9f5;
  --ink: #1d2b24;
  --muted: #61736a;
  --line: #e7e6df;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* Header */
header { border-bottom: 1px solid var(--line); background: #fff; }
.bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1080px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 34px; width: auto; }
.logo b { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.nav { display: flex; gap: 22px; font-size: 14px; font-weight: 600; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--ink); text-decoration: none; }

/* Hero */
.hero { text-align: center; padding: 72px 0 56px; }
.hero img.mark { height: 84px; margin-bottom: 22px; }
.hero h1 { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
.hero p.lead { font-size: 18px; color: var(--muted); margin-top: 16px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; border-radius: 14px; padding: 13px 24px; font-weight: 700; font-size: 15px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { background: var(--cream); text-decoration: none; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 16px 0 64px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.card h3 { font-size: 16px; font-weight: 700; }
.card p { font-size: 14px; color: var(--muted); margin-top: 6px; }
.card .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; font-size: 20px; margin-bottom: 14px; }

/* Content pages */
.page { padding: 56px 0 72px; }
.page h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
.page h2 { font-size: 19px; font-weight: 700; margin-top: 32px; }
.page p, .page li { color: var(--muted); margin-top: 12px; }
.page ul { margin-top: 12px; padding-left: 22px; }
.back { display: inline-block; margin-bottom: 24px; font-size: 14px; font-weight: 600; color: var(--muted); }
.muted-date { font-size: 14px; color: var(--muted); margin-top: 8px; }
.box { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; margin-top: 20px; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 32px 0; margin-top: 24px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted); }
footer a { color: var(--muted); }

@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .nav { gap: 14px; }
}

/* ===== Hjælpe-hub (Aula-vibe) ===== */
body.hub-page { background: linear-gradient(180deg, #eaf7f0 0%, var(--cream) 60%); }

.hubbar { display: flex; align-items: center; gap: 18px; padding: 16px 32px; max-width: 1240px; margin: 0 auto; }
.hubbar .logo b { font-size: 22px; }
.search { flex: 1; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.search input { border: 0; outline: 0; width: 100%; font: inherit; font-size: 15px; background: transparent; color: var(--ink); }
.search .mag { color: var(--brand-dark); font-size: 17px; }
.status { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--ink); white-space: nowrap; }
.status .dot { width: 11px; height: 11px; border-radius: 50%; background: #34c759; }
.btn-dark { background: var(--ink); color: #fff; border-radius: 999px; padding: 11px 20px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.btn-dark:hover { background: #2a3d33; text-decoration: none; }

.hub { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1240px; margin: 0 auto; padding: 40px 32px 72px; align-items: start; }
.hub h1 { font-size: 46px; font-weight: 800; letter-spacing: -0.03em; color: var(--brand-dark); margin-bottom: 24px; }
.rowcard { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 26px; margin-bottom: 16px; box-shadow: 0 1px 2px rgba(0,0,0,.03); transition: transform .12s, box-shadow .12s; }
.rowcard:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.rowcard b { font-size: 18px; font-weight: 700; color: var(--ink); }
.rowcard .chev { color: var(--brand-dark); font-size: 22px; font-weight: 700; }

.feature { border-radius: 24px; overflow: hidden; background: linear-gradient(150deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; padding: 40px; min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.feature .leaf { position: absolute; top: 32px; right: 32px; height: 64px; opacity: .9; }
.feature .tag { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.feature h2 { font-size: 34px; font-weight: 800; line-height: 1.15; margin-top: 10px; letter-spacing: -0.02em; }
.feature p { color: rgba(255,255,255,.9); margin-top: 14px; font-size: 16px; }
.feature .btn { margin-top: 24px; align-self: flex-start; background: #fff; color: var(--brand-dark); }
.feature .btn:hover { background: var(--cream); text-decoration: none; }

@media (max-width: 860px) {
  .hub { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px 56px; }
  .hub h1 { font-size: 34px; }
  .hubbar { flex-wrap: wrap; padding: 14px 20px; }
  .search { order: 3; flex-basis: 100%; }
  .feature { min-height: 320px; padding: 28px; }
  .feature h2 { font-size: 26px; }
}

/* Skærmbilleder */
.shots-section { max-width: 1240px; margin: 0 auto; padding: 8px 32px 80px; }
.shots-section h2 { font-size: 30px; font-weight: 800; color: var(--brand-dark); text-align: center; letter-spacing: -0.02em; }
.shots-section .sub { text-align: center; color: var(--muted); margin-top: 6px; margin-bottom: 30px; }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shot { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.shot img { width: 100%; display: block; border-bottom: 1px solid var(--line); }
.shot .cap { padding: 14px 18px; font-weight: 700; font-size: 15px; color: var(--ink); }
.shot .cap span { display: block; font-weight: 500; font-size: 13px; color: var(--muted); margin-top: 3px; }
@media (max-width: 860px) {
  .shots { grid-template-columns: 1fr; }
  .shots-section { padding: 0 20px 56px; }
}
