:root{
  --bg:#07080b;
  --bg2:#0b0c10;

  --panel: rgba(255,255,255,.045);
  --panel2: rgba(255,255,255,.065);

  --stroke: rgba(255,255,255,.11);
  --stroke2: rgba(255,255,255,.16);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.56);

  --gold:#d8b36a;
  --gold2:#f0d9a0;

  --shadow: 0 18px 60px rgba(0,0,0,.58);
  --shadow2: 0 10px 34px rgba(0,0,0,.40);

  --r: 18px;
  --r2: 26px;

  --max: 1120px;

  --section: 44px;
  --gap: 22px;
  --gap2: 30px;

  --ease: cubic-bezier(.2,.9,.2,1);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 75% -10%, rgba(216,179,106,.18), transparent 100%),
    radial-gradient(900px 520px at 10% 12%, rgba(255,255,255,.06), transparent 100%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.95; }

.wrap{
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}



/* ===== Topbar ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(7,8,11,.78), rgba(7,8,11,.44));
  border: 0;                 /* <-- ingen linje */
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.topbar__inner{
  height: 74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.brand{ display:flex; align-items:center; gap:12px; min-width: 180px; }
.brand__mark{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:14px;
  border: 1px solid rgba(216,179,106,.24);
  box-shadow: var(--shadow2);
  letter-spacing:.08em;
  font-weight: 800;
  font-size: 12px;
  color: var(--gold2);
  flex:0 0 auto;
}
.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  letter-spacing:-.02em;
}
.brand__text strong{ font-weight:750; }
.brand__text span{
  color: var(--muted2);
  font-weight:500;
  margin-top:2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  color: var(--muted);
  font-weight: 550;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: all .2s var(--ease);
  white-space:nowrap;
}
.nav a:hover{ background: rgba(255,255,255,.06); color: var(--text); }
.nav__cta{
  background: linear-gradient(180deg, rgba(216,179,106,.26), rgba(255,255,255,.04));
  border: 1px solid rgba(216,179,106,.30);
  color: var(--gold2) !important;
}

/* ===== Typography ===== */
h1,h2,h3{ margin:0; }
p{ margin:0; }
.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }
.fine{ color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.55; }

.kicker{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216,179,106,.28);
  background: rgba(255,255,255,.04);
  color: var(--gold2);
  font-size: 13px;
  letter-spacing: .02em;
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -.01em;
  cursor:pointer;
  user-select:none;
  transition: transform .15s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.btn:active{ transform: translateY(0px); }
.btn:focus{ outline:none; }
.btn:focus-visible{
  box-shadow: 0 0 0 3px rgba(216,179,106,.22);
  border-color: rgba(216,179,106,.40);
}
.btn--primary{
  background: linear-gradient(180deg, rgba(216,179,106,.34), rgba(255,255,255,.05));
  border-color: rgba(216,179,106,.34);
  color: var(--gold2);
}
.btn--ghost{ background: rgba(255,255,255,.03); }
.btn--block{ width:100%; }

/* ===== Hero ===== */
.hero{ padding: 78px 0 var(--section); }
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--gap2);
  align-items: stretch;
}

.hero__copy{ min-width: 0; }

.hero h1{
  margin: 0 0 14px;
  font-size: clamp(34px, 4.0vw, 54px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.accent{
  background: linear-gradient(90deg, var(--gold2), rgba(255,255,255,.92));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.70;
  max-width: 68ch;
}
.hero__bullets{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 18px 0 24px;
}
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.hero__actions{
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap:wrap;
}
.hero__fine{ margin-top: 18px; color: rgba(255,255,255,.55); font-size: 13px; }

.hero__media{
  border-radius: var(--r2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 420px at 35% 0%, rgba(216,179,106,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  position: relative;
  min-height: 470px;
  min-width: 0;
}
.hero__img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  filter: contrast(1.02) saturate(.95);
}
.hero__media--fallback{
  background:
    radial-gradient(900px 420px at 35% 0%, rgba(216,179,106,.20), transparent 60%),
    radial-gradient(600px 320px at 80% 70%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.hero__overlay{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,.54) 100%);
}
.hero__stamp{ display:flex; flex-direction:column; gap:6px; }
.stamp__title{ font-weight: 800; letter-spacing:-.02em; }
.stamp__sub{ color: rgba(255,255,255,.62); font-size: 13px; }

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.stat{
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.stat__num{ font-size: 22px; font-weight: 850; letter-spacing:-.03em; }
.stat__label{
  margin-top: 6px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  letter-spacing:.06em;
  text-transform: uppercase;
}
.hero__quote{
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

/* ===== Sections ===== */
.section{ padding: var(--section) 0; }

/* OBS: Ingen borders/dividers her (så stregen ikke kan komme fra sections) */
.section--alt{
  border: 0;
  box-shadow: none;
}

.section__head{
  max-width: 84ch;
  margin-bottom: 26px;
}
.section__head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -.03em;
}
.section__head p{
  margin:0;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== Cards ===== */
.cards{
  display:grid;
  gap: var(--gap);
}
.cards--3{
  grid-template-columns: repeat(3, minmax(0,1fr));
  align-items: stretch;
}

.card{
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  padding: 20px;
  box-shadow: var(--shadow2);
  overflow:hidden;
  min-width: 0;
}
.card__kicker{
  color: var(--gold2);
  font-size: 12px;
  letter-spacing:.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card h3{ margin:0 0 10px; letter-spacing:-.02em; }
.card p{ margin:0; color: var(--muted); line-height: 1.65; }
.card__meta{
  margin-top: 14px;
  color: rgba(255,255,255,.62);
  font-weight: 750;
  letter-spacing:-.01em;
}

.card--media{ padding:0; }
.card__media{
  aspect-ratio: 16/9;
  background:
    radial-gradient(700px 280px at 30% 20%, rgba(216,179,106,.18), transparent 100%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 0; /* ingen linje */
}
.card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.card__body{
  padding: 20px;
  display:flex;
  flex-direction:column;
}
.card__body .ctaRow{ margin-top: 14px; }

/* ===== Pricing ===== */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--gap);
  align-items: stretch;
  margin-top: 10px;
}

.price{
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  padding: 20px;
  box-shadow: var(--shadow2);
  position: relative;
  display:flex;
  flex-direction:column;
  min-width: 0;
}

.price__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.price h3{ margin:0; letter-spacing:-.02em; font-size: 20px; }

.tag{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  white-space: nowrap;
}
.tag--gold{
  border-color: rgba(216,179,106,.34);
  color: var(--gold2);
  background: rgba(216,179,106,.16);
}

.price .muted{ margin: 12px 0 12px; }

.list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap: 10px;
}
.list li{
  color: rgba(255,255,255,.78);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.list li::before{
  content:"";
  position:absolute;
  left:0; top:.58em;
  width:7px; height:7px;
  border-radius:50%;
  background: rgba(216,179,106,.75);
  box-shadow: 0 0 0 3px rgba(216,179,106,.18);
}

.price--featured{
  border-color: rgba(216,179,106,.28);
  background:
    radial-gradient(900px 420px at 40% 0%, rgba(216,179,106,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.price--featured::after{
  content:"Anbefalet";
  position:absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216,179,106,.18);
  border: 1px solid rgba(216,179,106,.30);
  color: var(--gold2);
  font-size: 12px;
}

/* CTA blocks */
.ctaRow{
  margin-top: 18px;
  padding-top: 16px;
  border: 0;            /* <-- ingen linje her */
  display:grid;
  gap: 10px;
}
.ctaRow--compact{
  margin-top: 14px;
  padding-top: 14px;
}
.ctaSub{
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.5;
}

/* Tip */
.tip{
  margin-top: 24px;
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.tip__title{
  color: var(--gold2);
  font-weight: 850;
  min-width: 46px;
}
.tip__text{ color: rgba(255,255,255,.74); line-height: 1.55; }

/* ===== Contact ===== */
.contact{
  display:grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: var(--gap2);
  align-items:start;
}

.info{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.info__item{
  border-radius: 16px;
  padding: 14px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}
.info__label{
  color: var(--muted2);
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
}
.info__value{
  margin-top: 8px;
  font-weight: 750;
  letter-spacing:-.01em;
}
.info__value a{ color: var(--gold2); }

.contact__right{
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  padding: 20px;
  box-shadow: var(--shadow2);
  min-width: 0;
}

/* Flash */
.flash{
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
}
.flash--success{
  border-color: rgba(216,179,106,.30);
  background: rgba(216,179,106,.12);
  color: var(--gold2);
}
.flash--error{
  border-color: rgba(255,120,120,.30);
  background: rgba(255,120,120,.10);
  color: rgba(255,220,220,.95);
}

/* Form */
.form{ display:grid; gap: 12px; }
.form__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.field{ min-width:0; }
.field--full{ grid-column: 1 / -1; }

.field label{
  display:block;
  font-size: 12px;
  color: var(--muted2);
  letter-spacing:.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

input, textarea, select{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: var(--text);
  padding: 12px 12px;
  font: inherit;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

textarea{ resize: vertical; min-height: 160px; }

select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.55) 50%),
    linear-gradient(135deg, rgba(255,255,255,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

input::placeholder, textarea::placeholder{ color: rgba(255,255,255,.38); }

input:focus, textarea:focus, select:focus{
  border-color: rgba(216,179,106,.38);
  background: rgba(0,0,0,.26);
}

.form__actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 4px;
}

/* Honeypot hidden */
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* ===== Footer ===== */
.footer{ padding: 30px 0 44px; }
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  border: 0;             /* <-- ingen linje */
  padding-top: 18px;
}
.brand--footer .brand__mark{
  width:38px; height:38px; border-radius: 13px;
}
.footer__tag{
  margin-top: 8px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.footer__links{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.62);
  white-space:nowrap;
}
.dot{ opacity:.6; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  :root{ --section: 36px; --gap: 18px; --gap2: 22px; }

  .wrap{ width: min(var(--max), calc(100% - 34px)); }

  .hero__grid{ grid-template-columns: 1fr; gap: var(--gap2); }
  .hero__media{ min-height: 360px; }

  .cards--3{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }

  .contact{ grid-template-columns: 1fr; gap: var(--gap2); }
  .form__grid{ grid-template-columns: 1fr; }

  .topbar__inner{ height:auto; padding: 12px 0; }
  .nav a{ padding: 9px 10px; }
}

@media (max-width: 460px){
  .hero{ padding-top: 62px; }
  .btn{ width:100%; }
  .hero__actions{ width:100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}

/* =========================================================
   HARD OVERRIDE: fjern ALLE 1px horisontale “dividers”
   (hvis noget fra cache/andet stylesheet stadig prøver)
   ========================================================= */
.section, .section--alt, .footer, .footer__inner, .topbar, .topbar__inner, main, body{
  border-top: 0 !important;
  border-bottom: 0 !important;
}

/* Hvis stregen kommer fra en pseudo-element divider i en gammel CSS */
.section--alt::before,
.section--alt::after,
.section::before,
.section::after,
.footer::before,
.footer::after,
.hero::before,
.hero::after{
  content: none !important;
  display: none !important;
}
