:root {
  --ink: #131a15;
  --ink-2: #1b2a20;
  --green: #15402c;
  --green-soft: #1d5a3d;
  --gold: #c4a35a;
  --gold-soft: #d8bf85;
  --ivory: #faf8f3;
  --paper: #ffffff;
  --line: #e7e2d6;
  --muted: #5d6a61;
  --radius: 18px;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth;
       -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }
body { font-family: "Inter", system-ui, sans-serif; color: var(--ink);
       background: var(--ivory); line-height: 1.6; font-size: 16px; }
h1, h2, h3, .serif { font-family: "Fraunces", Georgia, serif; font-weight: 600;
                     line-height: 1.12; letter-spacing: -.01em; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
img { display: block; }

/* ---------- NAV ---------- */
nav.site { position: sticky; top: 0; z-index: 50; background: rgba(250,248,243,.93);
           backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700;
         font-size: 17px; text-decoration: none; letter-spacing: -.01em; }
.brand img { width: 36px; height: 36px; }
.brand .tld { color: var(--gold); }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 14.5px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { background: var(--green); color: #fff; text-decoration: none;
           padding: 11px 22px; border-radius: 10px; font-weight: 600; font-size: 14.5px;
           transition: background .15s; white-space: nowrap; }
.nav-cta:hover { background: var(--green-soft); }
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px;
              background: transparent; border: 0; cursor: pointer; padding: 10px 8px; }
.nav-burger span { display: block; width: 22px; height: 2.5px; background: var(--ink);
                   border-radius: 2px; transition: transform .2s, opacity .2s; }
nav.site.open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
nav.site.open .nav-burger span:nth-child(2) { opacity: 0; }
nav.site.open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-links .m-only { display: none; }
@media (max-width: 860px) {
  .nav-in { gap: 10px; }
  .brand { font-size: 15.5px; }
  .brand img { width: 30px; height: 30px; }
  .nav-burger { display: flex; margin-left: auto; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0;
               background: var(--ivory); border-bottom: 1px solid var(--line);
               flex-direction: column; padding: 14px 24px 20px; gap: 16px;
               box-shadow: 0 24px 40px -22px rgba(0,0,0,.3); margin-left: 0; }
  .nav-links a { font-size: 16px; font-weight: 600; color: var(--ink); }
  .nav-links .m-only { display: block; color: var(--green); }
  nav.site.open .nav-links { display: flex; }
}
@media (max-width: 560px) {
  /* Menuen maa ALDRIG vaere bredere end skaermen - det skubber hele
     siden ud over kanten paa iPhone. CTA'en bor i burger-menuen her. */
  .nav-cta { display: none; }
  .brand { font-size: 14.5px; }
  .wrap { padding: 0 18px; }
}

/* ---------- HERO / PAGE HEAD ---------- */
header.hero { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 52%, var(--green) 135%);
              color: var(--ivory); position: relative; overflow: hidden; }
header.hero::after { content: ""; position: absolute; right: -160px; top: -160px; width: 560px;
                     height: 560px; border-radius: 50%; border: 1px solid rgba(196,163,90,.22);
                     pointer-events: none; }
header.hero::before { content: ""; position: absolute; right: -90px; top: -90px; width: 400px;
                      height: 400px; border-radius: 50%; border: 1px solid rgba(196,163,90,.14);
                      pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;
             align-items: center; padding-top: 84px; padding-bottom: 92px; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr;
             padding-top: 60px; padding-bottom: 72px; } }
.kicker { display: inline-flex; align-items: center; gap: 10px;
          border: 1px solid rgba(196,163,90,.5); color: var(--gold-soft);
          border-radius: 999px; padding: 8px 18px; font-size: 12.5px; font-weight: 600;
          letter-spacing: .12em; text-transform: uppercase; }
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
               animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero h1 { font-size: clamp(34px, 4.6vw, 54px); margin: 26px 0 18px; }
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero .sub { color: #b9c6bc; font-size: 18px; max-width: 560px; margin-bottom: 34px; }
.cta { display: inline-block; background: var(--gold); color: var(--ink); border: 0;
       border-radius: 12px; padding: 16px 32px; font-size: 16px; font-weight: 700;
       cursor: pointer; text-decoration: none; font-family: "Inter", sans-serif;
       transition: background .15s, transform .15s; }
.cta:hover { background: var(--gold-soft); transform: translateY(-1px); }
.cta.ghost { background: transparent; color: var(--ivory); border: 1.5px solid #46584c;
             margin-left: 12px; font-weight: 600; }
.cta.ghost:hover { border-color: var(--gold); color: var(--gold-soft); background: transparent; }
.cta.green { background: var(--green); color: #fff; }
.cta.green:hover { background: var(--green-soft); }
.cta.outline { background: transparent; border: 1.5px solid var(--green); color: var(--green); }
.cta.outline:hover { background: var(--green); color: #fff; transform: none; }

/* countdown */
.count-row { display: flex; gap: 12px; margin-top: 36px; }
.count-box { background: rgba(255,255,255,.06); border: 1px solid rgba(196,163,90,.3);
             border-radius: 12px; padding: 12px 0; width: 86px; text-align: center; }
.count-box b { display: block; font-family: "Fraunces", serif; font-size: 30px;
               font-weight: 600; color: var(--gold-soft); font-variant-numeric: tabular-nums; }
.count-box span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
                  color: #8da394; }

/* hero mockup */
.mock { position: relative; }
.browser { background: #fdfcf9; border-radius: 16px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.55);
           overflow: hidden; border: 1px solid rgba(0,0,0,.08); }
.browser .bar { display: flex; align-items: center; gap: 6px; background: #ece8dd;
                padding: 11px 14px; }
.browser .bar i { width: 10px; height: 10px; border-radius: 50%; background: #d6d0c0; }
.browser .bar .url { margin-left: 10px; background: #fff; border-radius: 6px; flex: 1;
                     font-size: 11.5px; color: #8a8674; padding: 4px 10px;
                     font-family: "Inter", sans-serif; }
.browser .page { padding: 22px 22px 26px; }
.skel { background: #e9e4d7; border-radius: 6px; height: 12px; margin-bottom: 10px; }
.skel.w60 { width: 60%; } .skel.w40 { width: 40%; } .skel.w80 { width: 80%; }
.skel.img { height: 84px; margin-bottom: 14px; }
.mock-btn { display: inline-block; background: var(--green); color: #fff; font-size: 13px;
            font-weight: 600; border-radius: 999px; padding: 11px 20px; margin-top: 8px;
            box-shadow: 0 8px 22px -8px rgba(21,64,44,.6); }
.receipt { position: absolute; right: -16px; bottom: -26px; background: #fff;
           border-radius: 14px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.45);
           padding: 16px 20px; font-size: 12.5px; border: 1px solid var(--line);
           min-width: 230px; color: var(--ink); }
.receipt b { font-family: "Fraunces", serif; font-size: 14px; display: block; margin-bottom: 6px; }
.receipt .ok { display: inline-flex; align-items: center; gap: 6px; color: var(--green);
               font-weight: 600; }
.receipt .ok::before { content: ""; width: 12px; height: 7px; border-left: 2.5px solid var(--green);
                       border-bottom: 2.5px solid var(--green); transform: rotate(-45deg) translateY(-1px); }
.receipt .no { color: var(--muted); font-variant-numeric: tabular-nums; }
@media (max-width: 940px) { .receipt { right: 8px; bottom: -18px; min-width: 0; } }
@media (max-width: 560px) {
  .hero-grid { gap: 44px; }
  .cta { padding: 14px 22px; font-size: 15px; }
  .cta.ghost { margin-left: 8px; }
  .count-row { gap: 9px; }
  .count-box { width: 31%; max-width: 96px; }
  .kicker { font-size: 11px; padding: 7px 13px; letter-spacing: .08em; }
  section { padding: 60px 0; }
}

/* page head (subpages) */
.page-head { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 70%, var(--green) 160%);
             color: var(--ivory); padding: 64px 0 60px; }
.page-head h1 { font-size: clamp(30px, 4vw, 44px); margin: 16px 0 12px; }
.page-head p { color: #b9c6bc; max-width: 640px; font-size: 17px; }

/* ---------- TRUST BAR ---------- */
.trust { background: var(--ink); border-top: 1px solid #243329; }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 14px 44px; padding: 18px 24px;
               justify-content: center; }
.trust span { color: #8da394; font-size: 13.5px; display: inline-flex; align-items: center; gap: 9px; }
.trust span::before { content: ""; width: 11px; height: 6px; border-left: 2px solid var(--gold);
                      border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

/* ---------- SECTIONS ---------- */
section { padding: 84px 0; }
section.alt { background: var(--paper); border-top: 1px solid var(--line);
              border-bottom: 1px solid var(--line); }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
           text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 14px; }
.lede { color: var(--muted); max-width: 660px; margin-bottom: 40px; font-size: 17px; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
        padding: 30px 28px; }
section.alt .card { background: var(--ivory); }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
.num { font-family: "Fraunces", serif; font-size: 15px; font-weight: 600; color: var(--gold);
       border: 1px solid var(--gold); width: 34px; height: 34px; border-radius: 50%;
       display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }

.law-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.law { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--green);
       border-radius: 0 14px 14px 0; padding: 22px 24px; font-size: 15px; color: var(--muted); }
section.alt .law { background: var(--ivory); }
.law strong { display: block; color: var(--ink); font-family: "Fraunces", serif;
              font-size: 17px; margin-bottom: 6px; font-weight: 600; }

/* compliance table */
table.compliance { width: 100%; border-collapse: collapse; background: var(--paper);
                   border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
                   font-size: 15px; }
table.compliance th, table.compliance td { padding: 15px 20px; text-align: left;
                   border-bottom: 1px solid var(--line); vertical-align: top; }
table.compliance th { background: var(--green); color: #fff; font-family: "Inter", sans-serif;
                      font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
table.compliance tr:last-child td { border-bottom: 0; }
table.compliance td.yes { color: var(--green); font-weight: 700; white-space: nowrap; }
table.compliance td.yes::before { content: ""; display: inline-block; width: 13px; height: 8px;
                      border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
                      transform: rotate(-45deg); margin-right: 9px; }

/* ---------- PRICING ---------- */
.price { text-align: center; display: flex; flex-direction: column; }
.price.hot { border: 2px solid var(--green); position: relative;
             box-shadow: 0 18px 44px -22px rgba(21,64,44,.35); }
.price .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
              background: var(--green); color: #fff; border-radius: 999px; font-size: 11.5px;
              font-weight: 700; letter-spacing: .08em; padding: 5px 16px; text-transform: uppercase; }
.price h3 { font-size: 15px; letter-spacing: .05em; text-transform: uppercase;
            font-family: "Inter", sans-serif; font-weight: 700; color: var(--muted); }
.amount { font-family: "Fraunces", serif; font-size: 44px; font-weight: 600; margin: 12px 0 2px; }
.price small { color: var(--muted); }
ul.checks { list-style: none; padding: 0; margin: 22px 0 26px; text-align: left; flex: 1; }
ul.checks li { padding: 6px 0 6px 28px; position: relative; font-size: 14.5px; color: #3c4a41; }
ul.checks li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 14px;
                       height: 8px; border-left: 2.5px solid var(--gold);
                       border-bottom: 2.5px solid var(--gold); transform: rotate(-45deg); }
.price .cta { width: 100%; padding: 14px 0; font-size: 15px; }

/* ---------- DOWNLOAD PANEL ---------- */
.dl { background: var(--green); color: var(--ivory); border-radius: 24px;
      padding: 56px 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px;
      align-items: center; }
@media (max-width: 820px) { .dl { grid-template-columns: 1fr; padding: 40px 28px; } }
.dl h2 { color: #fff; }
.dl p { color: #b9cfc0; font-size: 15.5px; }
.dl form { display: flex; gap: 10px; margin-top: 8px; }
@media (max-width: 520px) { .dl form { flex-direction: column; } }
.dl input { flex: 1; border: 1px solid #3c6950; background: #11331f; color: #fff;
            border-radius: 10px; padding: 14px 16px; font-size: 16px; font-family: inherit; }
.dl input::placeholder { color: #7f998a; }
.dl .note { font-size: 12.5px; color: #7f998a; margin-top: 12px; }

/* ---------- FAQ ---------- */
.faq details { background: var(--ivory); border: 1px solid var(--line); border-radius: 12px;
               padding: 18px 22px; margin-bottom: 12px; }
section:not(.alt) .faq-list details { background: var(--paper); }
.faq summary { font-weight: 600; cursor: pointer; font-size: 15.5px; }
.faq details p { margin-top: 10px; color: var(--muted); font-size: 15px; }

/* ---------- PORTAL ---------- */
.portal-box { max-width: 480px; margin: 0 auto; background: var(--paper);
              border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 36px; }
.portal-box label { font-size: 13.5px; font-weight: 600; display: block; margin: 16px 0 6px; }
.portal-box input, .portal-box select { width: 100%; border: 1px solid var(--line);
                    border-radius: 10px; padding: 13px 14px; font-size: 16px;
                    font-family: inherit; background: #fff; }
.portal-box .cta { width: 100%; margin-top: 22px; }
.portal-err { color: #a33b2e; font-size: 14px; margin-top: 14px; display: none; }
table.data { width: 100%; border-collapse: collapse; background: var(--paper);
             border: 1px solid var(--line); font-size: 14px; }
table.data th { background: var(--green); color: #fff; text-align: left; padding: 12px 14px;
                font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
table.data td { padding: 11px 14px; border-bottom: 1px solid var(--line); }
.toolbar { display: flex; align-items: center; gap: 14px; margin: 0 0 18px; flex-wrap: wrap; }
.toolbar .spacer { flex: 1; }
.pill { background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
        padding: 7px 16px; font-size: 13.5px; color: var(--muted); }

/* ---------- FOOTER ---------- */
footer.site { background: var(--ink); color: #75857a; padding: 56px 0 40px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 { color: var(--ivory); font-family: "Inter", sans-serif; font-size: 13px;
                letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.foot-grid a { display: block; color: #a8b8ad; text-decoration: none; padding: 4px 0; }
.foot-grid a:hover { color: var(--gold-soft); }
.foot-brand { display: flex; align-items: center; gap: 11px; color: var(--ivory);
              font-weight: 700; margin-bottom: 12px; }
.foot-brand img { width: 30px; height: 30px; }
.foot-bottom { border-top: 1px solid #243329; padding-top: 22px; font-size: 13px; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
