/* ══════════════════════════════════════════════════════
   Økonomispillet — hjemmeside
   Design: varm, dansk, tillidsvækkende. Serif headings,
   Inter body, forest+cream+gold palette.
══════════════════════════════════════════════════════ */

:root {
  --ink:       #13221c;    /* mørk grøn-sort til tekst */
  --ink-soft:  #3c4a42;
  --muted:     #6b7770;
  --bg:        #f6f1e8;    /* varm cream */
  --bg-alt:    #ece4d2;    /* lidt mørkere cream */
  --bg-dark:   #13221c;    /* dyb skov-grøn */
  --line:      #d9cfbb;
  --green:     #1f5f4a;    /* primary */
  --green-dk:  #164333;
  --gold:      #c89a3a;    /* accent */
  --gold-soft: #f0d88a;
  --card:      #ffffff;
  --shadow-sm: 0 1px 2px rgba(19,34,28,.06), 0 2px 8px rgba(19,34,28,.04);
  --shadow-md: 0 6px 24px rgba(19,34,28,.08), 0 2px 6px rgba(19,34,28,.04);
  --shadow-lg: 0 20px 60px rgba(19,34,28,.12), 0 6px 16px rgba(19,34,28,.06);
  --radius:    14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.2rem; line-height: 1.3; }
h4 { font-size: .95rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }
.big { font-size: 1.1rem; line-height: 1.65; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dk); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow.accent { color: var(--gold); }
.accent { color: var(--green); }

.subhead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: rgba(19,34,28,.04);
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn-sm { padding: 9px 16px; font-size: .88rem; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(217, 207, 187, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.logo-mark { font-size: 1.3rem; }
.logo-text { font-family: 'Fraunces', serif; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.btn { color: #fff; }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at top right, rgba(200, 154, 58, 0.12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(31, 95, 74, 0.08), transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: .4em; }
.hero-copy .lede {
  font-size: 1.17rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--ink); font-weight: 600; }
.trust-item span { font-size: .82rem; color: var(--muted); margin-top: 2px; }

/* Hero cards — visuel illusion af spil */
.hero-visual {
  position: relative;
  height: 480px;
}
.card {
  position: absolute;
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(217, 207, 187, 0.5);
}
.card-head {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.card-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: .9rem;
}
.card-stat span { color: var(--muted); }
.card-stat strong { font-family: 'Fraunces', serif; font-weight: 600; color: var(--green); font-size: 1.05rem; }
.card-body { font-size: .9rem; color: var(--ink-soft); }
.card-body small { color: var(--muted); font-size: .78rem; }

.card-1 { top: 40px; left: 20px; width: 280px; transform: rotate(-2deg); animation: float1 6s ease-in-out infinite; }
.card-2 { top: 220px; right: 10px; width: 240px; transform: rotate(2.5deg); animation: float2 7s ease-in-out infinite; }
.card-3 { bottom: 30px; left: 80px; width: 210px; transform: rotate(-1deg); animation: float3 8s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-8px); } }
@keyframes float2 { 0%,100% { transform: rotate(2.5deg) translateY(0); } 50% { transform: rotate(2.5deg) translateY(-10px); } }
@keyframes float3 { 0%,100% { transform: rotate(-1deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-6px); } }

@media (max-width: 900px) {
  .hero { padding: 48px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { height: 360px; order: -1; }
  .card-1 { left: 0; width: 250px; }
  .card-2 { right: 0; width: 220px; }
  .card-3 { left: 40px; width: 190px; }
  .hero-trust { gap: 24px; flex-wrap: wrap; }
}

/* ─── SECTIONS ────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: #e8ddc7;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(232, 221, 199, 0.78); }
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark .subhead { color: rgba(232, 221, 199, 0.7); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
}

/* ─── TWO-COL ─────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── FEATURES ────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 95, 74, 0.3);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-alt);
  align-items: center;
  justify-content: center;
}
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: .95rem; margin: 0; }

@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

/* ─── STEPS ───────────────────────────────────────── */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding-top: 12px;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.steps h3 { margin-bottom: 6px; }
.steps p { font-size: .92rem; margin: 0; }

@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ─── QUOTE ───────────────────────────────────────── */
.quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  border-top: 1px solid var(--line);
}
.quote blockquote {
  margin: 0 0 16px;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}
.quote cite {
  font-style: normal;
  color: var(--muted);
  font-size: .9rem;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: border-color .15s ease;
  overflow: hidden;
}
.faq details[open] { border-color: rgba(31, 95, 74, 0.3); }
.faq summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 48px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 400;
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 24px 20px; margin: 0; color: var(--ink-soft); }

/* ─── FORM ────────────────────────────────────────── */
.cta-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.form {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 221, 199, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form label {
  display: block;
  margin-bottom: 14px;
}
.form label span {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(232, 221, 199, 0.8);
}
.form input, .form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 221, 199, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .15s, background .15s;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(232, 221, 199, 0.35); }
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}
.form button {
  width: 100%;
  margin-top: 8px;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
}
.form button:hover { background: var(--gold-soft); color: var(--bg-dark); }
.form-note {
  font-size: .78rem;
  color: rgba(232, 221, 199, 0.55);
  margin: 14px 0 0;
  text-align: center;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 22px; }
}

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background: #0d1814;
  color: rgba(232, 221, 199, 0.6);
  padding: 56px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 221, 199, 0.08);
}
.footer .logo, .footer .logo-text { color: #fff; }
.footer-tag { margin-top: 10px; font-size: .92rem; }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.footer-cols a {
  display: block;
  color: rgba(232, 221, 199, 0.65);
  font-size: .92rem;
  margin-bottom: 8px;
}
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  color: rgba(232, 221, 199, 0.4);
  font-size: .85rem;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 28px; }
}

/* ─── TICKER ──────────────────────────────────────── */
.ticker {
  background: var(--ink);
  color: #e8ddc7;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Menlo', 'Monaco', 'SF Mono', monospace;
  font-size: .78rem;
  padding: 10px 0;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.ticker::after { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.ticker-track {
  display: inline-block;
  animation: ticker 90s linear infinite;
  padding-left: 100%;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.t-item {
  display: inline-block;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.t-label {
  color: rgba(232,221,199,0.55);
  letter-spacing: .08em;
  margin-right: 10px;
}
.t-val { color: var(--gold-soft); font-weight: 600; }
.t-val.up { color: #7dd3a8; }
.t-val.down { color: #e88a8a; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FAKTA ───────────────────────────────────────── */
.fakta-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.fakta-head h2 { margin: 0; }
.tag-fakta {
  display: inline-block;
  background: #d94848;
  color: #fff;
  font-family: 'Menlo', monospace;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: .1em;
  vertical-align: middle;
  margin-left: 8px;
}
.fakta-sources {
  font-family: 'Menlo', monospace;
  font-size: .78rem;
  color: var(--muted);
}
.fakta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.fakta-stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fakta-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fakta-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.fakta-red    .fakta-num { color: #d94848; }
.fakta-orange .fakta-num { color: #e09a2b; }
.fakta-purple .fakta-num { color: #7a6ad4; }
.fakta-lbl { font-weight: 600; color: var(--ink); margin-bottom: 4px; font-size: 1.05rem; }
.fakta-sub { font-size: .88rem; color: var(--muted); }

.fakta-foot { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 28px; }

@media (max-width: 860px) {
  .fakta-grid { grid-template-columns: 1fr; }
}

/* ─── TOPIC (TAGS) ────────────────────────────────── */
.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.topic-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.topic-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.topic-head h3 { margin: 0; flex: 1; }
.topic-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.topic-icon-gold  { background: rgba(200, 154, 58, 0.15); }
.topic-icon-green { background: rgba(31, 95, 74, 0.12); }
.topic-count {
  font-family: 'Menlo', monospace;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(31, 95, 74, 0.12);
  color: var(--green);
  letter-spacing: .05em;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 7px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-soft);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.tag:hover {
  background: var(--card);
  border-color: var(--green);
  color: var(--green);
}

.checklist-head { text-align: center; margin-bottom: 28px; }
.checklist-head h3 { font-size: 1.4rem; }

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.check-card {
  display: flex;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  align-items: flex-start;
}
.check-card .check {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(31, 95, 74, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.check-card h4 { margin: 0 0 4px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; }
.check-card p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  .topic-grid, .checklist { grid-template-columns: 1fr; }
}

/* ─── PRIS KALKULATOR ─────────────────────────────── */
.calc {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.calc-row { margin-bottom: 28px; }
.calc-lbl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  font-size: 1rem;
}
.calc-num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 600;
}
.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 999px;
  outline: none;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(19,34,28,.2);
  transition: transform .1s;
}
.range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(19,34,28,.2);
}
.calc-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0 28px;
}
.calc-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.calc-big {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.calc-cap {
  font-size: .82rem;
  color: var(--muted);
}
.calc-note {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin: 24px 0 0;
}

@media (max-width: 600px) {
  .calc { padding: 24px; }
  .calc-result { grid-template-columns: 1fr; }
  .calc-result > div { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .calc-result > div:last-child { border-bottom: none; }
}

/* ══════════ Hero-screenshot (browser-ramme) ══════════ */
.hero-shot {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-shot-bar { display: flex; gap: 6px; padding: 10px 14px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.hero-shot-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.hero-shot-bar span:first-child { background: #e0867c; }
.hero-shot-bar span:nth-child(2) { background: var(--gold-soft); }
.hero-shot-bar span:nth-child(3) { background: #9dc3a8; }
.hero-shot img { display: block; width: 100%; height: auto; }

/* ══════════ Screenshots-galleri ══════════ */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.shot { margin: 0; }
.shot img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.shot figcaption { font-size: .85rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.shot-wide { max-width: 920px; margin: 26px auto 0; text-align: center; }
.shot-wide figcaption { max-width: 680px; margin-left: auto; margin-right: auto; }
@media (max-width: 860px) { .shots { grid-template-columns: 1fr; } }

/* ══════════ Pengeugen-sammenligning ══════════ */
.compare { max-width: 880px; margin: 0 auto; }
.compare-table {
  width: 100%; border-collapse: collapse; background: var(--card);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  font-size: .92rem;
}
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table th { font-family: 'Fraunces', serif; font-size: 1rem; background: var(--bg-alt); }
.compare-table td:first-child { font-weight: 600; width: 18%; color: var(--ink-soft); }
.compare-table .compare-us { background: rgba(31, 95, 74, .06); border-left: 3px solid var(--green); }
.compare-table th.compare-us { background: var(--green); color: #fff; }
.compare-foot { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 18px; }
@media (max-width: 720px) { .compare-table { font-size: .8rem; } .compare-table th, .compare-table td { padding: 10px 10px; } }

/* ══════════ Pris-kort ══════════ */
.price-wrap { display: flex; justify-content: center; }
.price-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 2px solid var(--green); padding: 38px 42px; max-width: 560px; text-align: center;
}
.price-badge {
  display: inline-block; background: var(--green); color: #fff; font-weight: 700;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 14px;
}
.price-num { font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 700; color: var(--ink); }
.price-per { font-size: 1.3rem; color: var(--muted); font-weight: 400; }
.price-sub { color: var(--muted); font-size: .88rem; margin-bottom: 20px; }
.price-list { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.price-list li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .93rem; }
.price-list li:last-child { border-bottom: none; }
.price-note { font-size: .82rem; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* ══════════ Materialer / downloads ══════════ */
.downloads { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dl {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.dl:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.dl-icon { font-size: 1.5rem; }
.dl-name { font-weight: 700; font-size: .95rem; }
.dl-desc { font-size: .8rem; color: var(--muted); line-height: 1.45; }
@media (max-width: 860px) { .downloads { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .downloads { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════
   ANIMATIONSLAG — scroll-reveals, hero-koreografi, graf,
   mikrointeraktioner. Alt på transform/opacity (GPU-venligt),
   og alt slås fra ved prefers-reduced-motion.
══════════════════════════════════════════════════════ */

/* ── Scroll-fremdrift ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform-origin: 0 50%; transform: scaleX(0); pointer-events: none;
}

/* ── Nav-tilstand efter scroll ── */
.nav { transition: box-shadow .3s ease, background .3s ease; }
.nav-scrolled { box-shadow: 0 4px 24px rgba(19,34,28,.10); background: rgba(246,241,232,.92); backdrop-filter: blur(10px); }
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px;
  background: var(--gold); transition: right .25s cubic-bezier(.22,.8,.3,1);
}
.nav-links a:not(.btn):hover::after { right: 0; }

/* ── Reveal-motor ── */
.rv { opacity: 0; transform: translateY(26px) scale(.985); transition: opacity .7s cubic-bezier(.22,.8,.3,1), transform .7s cubic-bezier(.22,.8,.3,1); transition-delay: var(--rv-d, 0ms); will-change: opacity, transform; }
.rv-in { opacity: 1; transform: none; }

/* ── Hero: indgangs-koreografi ── */
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes shot-in { from { opacity: 0; transform: translateY(34px) scale(.96); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: rise .75s cubic-bezier(.22,.8,.3,1) both; }
.hero-copy > *:nth-child(1) { animation-delay: .05s }
.hero-copy > *:nth-child(2) { animation-delay: .16s }
.hero-copy > *:nth-child(3) { animation-delay: .3s }
.hero-copy > *:nth-child(4) { animation-delay: .44s }
.hero-copy > *:nth-child(5) { animation-delay: .58s }
.hero-visual { perspective: 1100px; }
.hero-shot { animation: shot-in 1s cubic-bezier(.22,.8,.3,1) .35s both; transition: transform .35s cubic-bezier(.22,.8,.3,1), box-shadow .35s ease; will-change: transform; }
.hero-shot:hover { box-shadow: 0 30px 80px rgba(19,34,28,.18), 0 8px 20px rgba(19,34,28,.08); }

/* ── Hero: aurora-baggrund ── */
.hero { position: relative; overflow: hidden; }
.hero > .container { position: relative; z-index: 1; }
.hero-aurora { position: absolute; inset: 0; pointer-events: none; }
.hero-aurora span {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
  animation: aurora 16s ease-in-out infinite alternate;
}
.hero-aurora span:nth-child(1) { width: 520px; height: 520px; left: -140px; top: -160px; background: radial-gradient(circle, rgba(200,154,58,.32), transparent 65%); }
.hero-aurora span:nth-child(2) { width: 640px; height: 640px; right: -180px; top: 30%; background: radial-gradient(circle, rgba(31,95,74,.22), transparent 65%); animation-delay: -6s; }
.hero-aurora span:nth-child(3) { width: 420px; height: 420px; left: 32%; bottom: -220px; background: radial-gradient(circle, rgba(240,216,138,.30), transparent 65%); animation-delay: -11s; }
@keyframes aurora {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(46px,-34px,0) scale(1.12); }
}

/* ── Ticker: kant-fade + pause ved hover ── */
.ticker { -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ── Knapper: glans-strøg ── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg); transition: left .55s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn { transition: transform .2s cubic-bezier(.22,.8,.3,1), box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* ── Kort-hover (features, downloads, tjeklister, fakta) ── */
.feature, .check-card, .fakta-stat, .topic-card {
  transition: transform .25s cubic-bezier(.22,.8,.3,1), box-shadow .25s ease;
}
.feature:hover, .check-card:hover, .fakta-stat:hover, .topic-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.feature .feature-icon { display: inline-block; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.feature:hover .feature-icon { transform: scale(1.18) rotate(-4deg); }

/* ── Galleri: blødt zoom ── */
.shot { overflow: visible; }
.shot img { transition: transform .4s cubic-bezier(.22,.8,.3,1), box-shadow .4s ease; }
.shot:hover img { transform: scale(1.025) translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── Renters rente-grafen ── */
.graf-wrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 28px 26px 18px; }
#rr-graf { width: 100%; height: auto; display: block; }
.rr-grid { stroke: var(--line); stroke-width: 1; stroke-dasharray: 2 5; }
.rr-lbl { font-family: 'Inter', sans-serif; font-size: 13px; fill: var(--muted); }
.rr-line { fill: none; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.rr-early { stroke: var(--gold); }
.rr-late { stroke: #8a978f; stroke-width: 3; }
.rr-area { fill: var(--gold); opacity: 0; transition: opacity 1s ease .2s; }
.rr-done .rr-area { opacity: .10; }
.rr-dot { opacity: 0; transform-origin: center; transition: opacity .4s ease; }
.rr-dot-early { fill: var(--gold); stroke: #fff; stroke-width: 2.5; }
.rr-dot-late { fill: #8a978f; stroke: #fff; stroke-width: 2.5; }
.rr-done .rr-dot { opacity: 1; }
.graf-legend { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; padding: 16px 6px 6px; font-size: .95rem; }
.graf-legend .lg { display: flex; align-items: center; gap: 8px; }
.lg-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.lg-early .lg-dot { background: var(--gold); }
.lg-late .lg-dot { background: #8a978f; }
.lg-diff { margin-left: auto; font-weight: 700; color: var(--green); opacity: 0; transform: translateY(6px); transition: opacity .6s ease, transform .6s ease; }
.lg-diff.rr-diff-in { opacity: 1; transform: none; }
@media (max-width: 720px) { .lg-diff { margin-left: 0; } }

/* Interaktive skydere til renters rente-grafen */
.graf-controls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 30px; margin: 2px 4px 24px; }
.graf-ctrl { display: flex; flex-direction: column; gap: 9px; }
.graf-ctrl-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.graf-ctrl-top > span:first-child { font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.graf-ctrl-top output { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: var(--green); font-variant-numeric: tabular-nums; }
.graf-range { -webkit-appearance: none; appearance: none; width: 100%; height: 7px; border-radius: 99px; background: var(--line); outline: none; cursor: pointer; }
.graf-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--green); box-shadow: 0 2px 6px rgba(31, 49, 38, .18); cursor: grab; transition: transform .15s ease, box-shadow .15s ease; }
.graf-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--green); box-shadow: 0 2px 6px rgba(31, 49, 38, .18); cursor: grab; transition: transform .15s ease, box-shadow .15s ease; }
.graf-range::-webkit-slider-thumb:hover { transform: scale(1.14); }
.graf-range::-moz-range-thumb:hover { transform: scale(1.14); }
.graf-range:active::-webkit-slider-thumb { cursor: grabbing; box-shadow: 0 0 0 7px rgba(31, 95, 74, .14), 0 2px 6px rgba(31, 49, 38, .18); }
.graf-range:active::-moz-range-thumb { cursor: grabbing; box-shadow: 0 0 0 7px rgba(31, 95, 74, .14), 0 2px 6px rgba(31, 49, 38, .18); }
.graf-range:focus-visible { box-shadow: 0 0 0 3px rgba(31, 95, 74, .28); }
@media (max-width: 640px) { .graf-controls { grid-template-columns: 1fr; gap: 14px; margin-bottom: 18px; } }

/* ── Priskort: badge-skimmer + indgang ── */
.price-badge { position: relative; overflow: hidden; }
.price-badge::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer { 0%, 60% { left: -60%; } 100% { left: 130%; } }
.price-card.rv { transform: translateY(30px) scale(.97); }
.price-card { transition: opacity .8s cubic-bezier(.22,.8,.3,1), transform .8s cubic-bezier(.22,.8,.3,1), box-shadow .3s ease; }
.price-card:hover { box-shadow: 0 26px 70px rgba(31,95,74,.16), 0 8px 18px rgba(19,34,28,.08); }

/* ── Sammenligning: fremhæv vores kolonne ── */
.compare-table .compare-us { transition: background .3s ease; }
.compare-table tr:hover .compare-us { background: rgba(31, 95, 74, .10); }

/* ── Downloads: pil-antydning ── */
.dl .dl-name::after { content: ' →'; opacity: 0; transition: opacity .2s ease; }
.dl:hover .dl-name::after { opacity: 1; }

/* ── Quote: stort citationstegn ── */
.quote { position: relative; }
.quote::before {
  content: '“'; position: absolute; top: -34px; left: -6px;
  font-family: 'Fraunces', serif; font-size: 7rem; line-height: 1;
  color: var(--gold); opacity: .35; pointer-events: none;
}

/* ── Reduced motion: sluk alt ── */
@media (prefers-reduced-motion: reduce) {
  .rv, .price-card.rv { opacity: 1; transform: none; transition: none; }
  .hero-copy > *, .hero-shot { animation: none; }
  .hero-aurora span, .price-badge::after, .card-float { animation: none; }
  .btn, .feature, .check-card, .fakta-stat, .topic-card, .shot img { transition: none; }
  html { scroll-behavior: auto; }
}
