:root{
  --bg: #0b0c10;
  --card: #12141c;
  --alt: #0f1117;
  --text: #f4f6ff;
  --muted: #b8bfd6;
  --border: rgba(255,255,255,.10);
  --accent: #6ea8fe;
  --accent2: #7ee7c4;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(110,168,254,.18), transparent 60%),
              radial-gradient(1000px 500px at 80% 10%, rgba(126,231,196,.12), transparent 55%),
              var(--bg);
  line-height:1.55;
}

img, svg, video, canvas{ max-width:100%; height:auto; }

p, h1, h2, h3, a{ overflow-wrap: anywhere; }

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1120px, 92vw);
  margin: 0 auto;
}

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.6);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
  position: relative;
}

.brand{
   display:flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
}
/* Logoen (til venstre) – dobbel størrelse */
.brandMark{
  height: 88px;
  width: auto;
  display:block;
}
.brandText{
  height: 50px;
  width: auto;
  display:block;
}

.menu{
  display:flex;
  gap: 18px;
  align-items:center;
}
.menu a{ color: var(--muted); font-weight:700; }
.menu a:hover{ color: var(--text); text-decoration:none; }

.menuBtn{
  display:none;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor:pointer;
}

.hero{
  padding: 64px 0 26px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:start;
}

.pill{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
}

h1{ font-size: clamp(28px, 4.2vw, 46px); line-height:1.12; margin: 12px 0 12px; }
.accentText{ color: var(--accent); }
.lead{ font-size: 17px; color: var(--muted); max-width: 60ch; }

.ctaRow{ display:flex; gap: 12px; margin: 18px 0 18px; flex-wrap:wrap; }

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:800;
  cursor:pointer;
}
.btn:hover{ text-decoration:none; filter: brightness(1.05); }
.btn.primary{
  background: linear-gradient(135deg, rgba(110,168,254,.55), rgba(126,231,196,.35));
}
.btn.full{ width:100%; }

.trust{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 10px;
}
.trustItem{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  min-width: 170px;
}
.trustNumber{ font-weight:900; font-size: 16px; }
.trustText{ color: var(--muted); font-weight:650; font-size: 13px; }

.section{ padding: 56px 0; }
.section.alt{ background: rgba(255,255,255,.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.sectionHead{ margin-bottom: 18px; }
.sectionHead h2{ margin:0 0 6px; font-size: 28px; }
.muted{ color: var(--muted); }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}

.card{
  background: rgba(18,20,28,.70);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.heroCard h2{ margin: 0 0 6px; }

.logoWrap{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 10px 10px 6px;
  margin-bottom: 10px;
}
.logoImg{
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
}

label{ display:block; margin: 12px 0; font-weight:800; }
input, textarea, select{
  margin-top: 6px;
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline: none;
}
select{
  appearance: none;
}
input::placeholder, textarea::placeholder{ color: rgba(184,191,214,.7); }
input:focus, textarea:focus, select:focus{ border-color: rgba(110,168,254,.55); }

.list{ padding-left: 0; margin: 12px 0 0; list-style: none; }
.list li{ margin: 6px 0; color: var(--muted); font-weight:650; }

.facts{ list-style:none; padding:0; margin: 10px 0 0; }
.facts li{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.facts li:last-child{ border-bottom:none; }
.facts span{ color: var(--muted); font-weight:800; }

.contactBox{
  margin: 14px 0;
  padding: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
}

.noteRow{ margin-top: 14px; }
.note{
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.footer{
  padding: 24px 0 36px;
}
.footerGrid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
  flex-wrap:wrap;
}
.footerLinks{ display:flex; gap: 14px; color: var(--muted); font-weight:800; }
.footerBrand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footerLogo{
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
}
.brandTextFooter{ font-weight:900; letter-spacing:.2px; }

.tiny{ font-size: 12px; }

@media (max-width: 860px){
  .heroGrid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .twoCol{ grid-template-columns: 1fr; }
  .menuBtn{ display:inline-flex; }
  .nav{ padding: 10px 0; }
  .brand{ gap: 10px; }
  .brandMark{ height: clamp(44px, 12vw, 64px); }
  .brandText{ height: clamp(22px, 6vw, 32px); }
  .menu{
    display:none;
    position:absolute;
    right: 0;
    top: calc(100% + 8px);
    flex-direction:column;
    align-items:flex-start;
    padding: 12px;
    width: min(280px, 92vw);
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(11,12,16,.92);
    box-shadow: var(--shadow);
  }
  .menu.open{ display:flex; }
}

@media (max-width: 420px){
  .brand{ gap: 8px; }
  .brandMark{ height: clamp(40px, 12vw, 56px); }
  .brandText{ height: clamp(20px, 7vw, 28px); }
}

/* Additional styles for the new services grid and header mark */
.services-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card{ background: rgba(18,20,28,.85); border-radius: 14px; padding: 20px; }
.card-media{ font-size: 36px; margin-bottom: 8px; }


.sr-only{ position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap }

@media (max-width: 860px){
  .services-grid{ grid-template-columns: 1fr; }
}
/* .brand{ align-items:center; }
.brandText{ display:none; } /* If brand text exists, hide it visually when using the image 

@media (max-width:900px){
  .brandMark{ width:140px; }
}

@media (max-width:420px){
  .brandMark{ width:110px; }
}

@media (max-width: 480px){
  .brandMark{ height: 52px; }
  .brandText{ height: 26px; }

}
 */