*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #0e1c2f;
  --ink-2:   #2d3f55;
  --ink-3:   #5a6e84;
  --ink-4:   #8fa3b8;
  --sky:     #1558a8;
  --sky-lt:  #e8f1fc;
  --sky-md:  #c0d6f5;
  --gold:    #b07d10;
  --gold-lt: #fef6e4;
  --green:   #1a6b3c;
  --green-lt:#e6f4ec;
  --surface: #f4f7fb;
  --line:    #d8e3ef;
  --white:   #ffffff;
  --serif:   'DM Serif Display', Georgia, serif;
  --sans:    'Plus Jakarta Sans', -apple-system, sans-serif;
  --max:     1080px;
  --r:       10px;
  --rlg:     16px;
}

html { font-family: var(--sans); color: var(--ink); background: var(--white); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 40px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-mark svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.nav-wordmark { display: flex; flex-direction: column; }
.nav-name { font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; line-height: 1.1; }
.nav-domain { font-size: 10px; color: var(--ink-4); line-height: 1; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-link { font-size: 13px; color: var(--ink-3); text-decoration: none; }
.nav-link:hover { color: var(--sky); }
.nav-cta {
  background: var(--sky); color: var(--white);
  border: none; border-radius: var(--r);
  padding: 8px 18px; font-size: 13px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: background .15s, transform .1s;
}
.nav-cta:hover { background: var(--ink); }
.nav-cta:active { transform: scale(0.97); }

/* ── URGENCY ─────────────────────────────────── */
.urgency {
  background: var(--gold-lt);
  border-bottom: 1px solid #f0d890;
  padding: 11px 40px;
  display: flex; align-items: center; gap: 12px;
}
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.urgency p { font-size: 13px; color: #5c3d00; line-height: 1.5; }
.urgency strong { color: #3a2500; font-weight: 600; }

/* ── HERO ────────────────────────────────────── */
.hero {
  background: var(--ink);
  padding: 100px 40px 90px;
  position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px; padding: 5px 14px 5px 10px;
  margin-bottom: 28px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.hero-eyebrow span { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 0.02em; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 700px;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: #7db8f5; }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-white {
  background: var(--white); color: var(--ink);
  border: none; border-radius: var(--r);
  padding: 13px 24px; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background .15s, transform .1s;
  letter-spacing: -0.01em;
}
.btn-white:hover { background: #e8f1fc; }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r);
  padding: 13px 24px; font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: border-color .15s, color .15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-stats {
  display: flex; gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
}
.hero-stat { flex: 1; padding-right: 32px; }
.hero-stat + .hero-stat { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px; font-weight: 400;
  color: var(--white); line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.hero-stat-num em { color: #7db8f5; font-style: normal; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* ── SECTIONS ────────────────────────────────── */
.section { padding: 80px 40px; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 10px; display: block;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400; color: var(--ink);
  line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-lead { font-size: 16px; color: var(--ink-3); line-height: 1.65; max-width: 560px; }

/* ── FEATURE GRID ────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--rlg);
  overflow: hidden;
}
.fcard {
  background: var(--white);
  padding: 28px 28px 28px 24px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 20px;
  align-items: start;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.fcard:nth-child(2n) { border-right: none; }
.fcard:nth-last-child(-n+2) { border-bottom: none; }
.feature-grid--four .fcard:nth-last-child(-n+2) { border-bottom: none; }
.fcard:hover { background: var(--sky-lt); }
.fnum {
  font-family: var(--serif);
  font-size: 28px; font-weight: 400;
  color: var(--sky-md);
  line-height: 1; padding-top: 2px;
  letter-spacing: -0.02em;
}
.fcard h3 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em; }
.fcard p  { font-size: 13px; color: var(--ink-3); line-height: 1.55; }

/* ── TWO-COL LAYOUT ──────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-text h2 { margin-bottom: 14px; }
.two-col-text .section-lead { margin-bottom: 28px; }

.bakgrund-lead {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.8;
  margin-bottom: 18px;
}
.bakgrund-lead:last-of-type { margin-bottom: 32px; }
.bakgrund-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.bakgrund-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 16px;
}
.bakgrund-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
.bakgrund-card-text {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ── SECURITY LIST ───────────────────────────── */
.sec-list { display: flex; flex-direction: column; gap: 12px; }
.sec-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r);
}
.sec-item:hover { border-color: var(--sky-md); }
.sec-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--sky-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sec-icon svg { width: 15px; height: 15px; fill: none; stroke: var(--sky); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sec-item p { font-size: 13px; color: var(--ink-2); line-height: 1.5; padding-top: 6px; }
.sec-item strong { color: var(--ink); }
.btn-sky {
  background: var(--sky);
  color: #fff;
  display: inline-block;
  padding: 11px 22px;
  font-size: 14px;
  border-radius: var(--r);
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
}
.btn-sky:hover { background: var(--ink); }

/* ── CTA BAND ────────────────────────────────── */
.cta-band {
  background: var(--ink);
  padding: 72px 40px;
  text-align: center;
}
.cta-band-inner { max-width: 560px; margin: 0 auto; }
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.4);
  padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
footer p { font-size: 12px; }
.footer-email-link { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-email-link:hover { color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── MADE-IN BADGE ───────────────────────────── */
.made-in-badge {
  background: rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 8px 12px;
  display: inline-flex; flex-direction: column; gap: 2px;
  width: 100%; max-width: fit-content;
  margin-top: 4px;
}
.made-in-name { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.made-in-sub { font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); line-height: 1; text-transform: uppercase; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-right .nav-link { display: none; }
  .hero { padding: 64px 20px 56px; }
  .hero-stats { flex-direction: column; gap: 24px; border-top: none; padding-top: 0; margin-top: 48px; }
  .hero-stat + .hero-stat { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
  .section { padding: 56px 20px; }
  .cta-band { padding: 56px 20px; }
  .urgency { padding: 10px 20px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .bakgrund-grid { grid-template-columns: 1fr; }
  footer { padding: 20px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .fcard { border-right: none; }
  .fcard:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .fcard:last-child { border-bottom: none; }
  .hero h1 { font-size: 30px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ── PRODUKTBLAD ─────────────────────────────── */
.produktblad-page { background: var(--surface); }
.produktblad {
  padding: 48px 40px 80px;
}
.produktblad-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rlg);
  padding: 48px 56px;
  box-shadow: 0 1px 3px rgba(14, 28, 47, 0.04);
}
.prose h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.prose h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
  padding-top: 8px;
}
.prose h2:first-of-type { margin-top: 0; }
.prose p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { font-style: italic; color: var(--ink-3); }
.prose a {
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--ink); }
.prose hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}
.prose ul {
  margin: 0 0 16px 0;
  padding-left: 1.25em;
}
.prose li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 6px;
}
.prose pre {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--r);
  padding: 20px 24px;
  overflow-x: auto;
  margin: 20px 0 24px;
  font-size: 13px;
  line-height: 1.55;
}
.prose pre code {
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, monospace;
  white-space: pre;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  font-size: 14px;
}
.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}
.prose th {
  background: var(--sky-lt);
  color: var(--ink);
  font-weight: 600;
  width: 34%;
}
.prose td { color: var(--ink-2); }

@media (max-width: 900px) {
  .produktblad { padding: 32px 20px 56px; }
  .produktblad-inner { padding: 32px 24px; }
  .prose th { width: 40%; }
}
@media (max-width: 560px) {
  .produktblad-inner { padding: 24px 18px; }
  .prose table { font-size: 13px; }
  .prose th, .prose td { padding: 10px 12px; }
}
