/* ============================================================
   IPTV Norge — Hovedstilark
   Farger inspirert av det norske flagget + nordlys
   ============================================================ */
:root {
  --rod: #ba0c2f;
  --rod-lys: #e6173f;
  --bla: #00205b;
  --bla-dyp: #071433;
  --bla-natt: #060d22;
  --hvit: #ffffff;
  --is: #eef3fb;
  --graa: #93a1bd;
  --aurora-1: #2de0a5;
  --aurora-2: #38bdf8;
  --aurora-3: #a78bfa;
  --gull: #ffc53d;
  --radius: 18px;
  --skygge: 0 20px 60px rgba(2, 8, 30, 0.45);
  --font: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bla-natt);
  color: var(--is);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
.section { padding: 90px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--aurora-1);
  background: rgba(45, 224, 165, 0.08);
  border: 1px solid rgba(45, 224, 165, 0.25);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--hvit); }
.section-head p { color: var(--graa); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Knapper ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 999px; font-weight: 800; font-size: 1rem;
  cursor: pointer; border: none; transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-3px); }
.btn-rod {
  background: linear-gradient(135deg, var(--rod-lys), var(--rod));
  color: var(--hvit);
  box-shadow: 0 12px 30px rgba(230, 23, 63, 0.35);
}
.btn-rod:hover { box-shadow: 0 18px 40px rgba(230, 23, 63, 0.5); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--hvit);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(6, 13, 34, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; font-weight: 800; color: var(--hvit); }
.logo .flagg {
  width: 38px; height: 38px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.logo span em { color: var(--aurora-1); font-style: normal; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--is); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 11px 24px; font-size: 0.9rem; }
.burger { display: none; background: none; border: none; cursor: pointer; }
.burger span { display: block; width: 26px; height: 3px; background: var(--hvit); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ---------- Hero / Slider ---------- */
.hero { position: relative; min-height: 100vh; display: grid; overflow: hidden; }
.slide {
  grid-area: 1 / 1; position: relative; display: flex; align-items: center;
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: opacity 1s ease, transform 1.2s ease, visibility 1s;
  padding: 140px 0 100px;
}
.slide.active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.slide-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.slide-bg svg { width: 100%; height: 100%; object-fit: cover; }
.slide-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, 1%); }
}
.slide-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(6, 13, 34, 0.94) 25%, rgba(6, 13, 34, 0.6) 65%, rgba(6, 13, 34, 0.3));
}
.slide .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.slide-tag {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.85rem;
  color: var(--hvit); background: rgba(186, 12, 47, 0.85); padding: 8px 18px;
  border-radius: 999px; margin-bottom: 22px; box-shadow: 0 8px 24px rgba(186, 12, 47, 0.4);
}
.slide h1, .slide .h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.8rem); color: var(--hvit); margin-bottom: 20px; font-weight: 800;
}
.slide h1 .grad, .slide .h1 .grad {
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.slide p.lead { color: #c6d2e8; font-size: 1.12rem; max-width: 540px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-points li { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: #d8e2f3; }
.hero-points svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hero visual (TV mockup) */
.hero-visual { position: relative; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.tv-frame {
  border-radius: 22px; overflow: hidden; border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--skygge), 0 0 80px rgba(45, 224, 165, 0.12);
  background: #000;
}
.hero-badge {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(10, 20, 48, 0.9); border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px); padding: 12px 18px; border-radius: 14px;
  font-size: 0.85rem; font-weight: 700; color: var(--hvit); box-shadow: var(--skygge);
}
.hero-badge strong { color: var(--aurora-1); font-size: 1.05rem; }
.hero-badge.b1 { top: -18px; right: -10px; animation: floaty 5s ease-in-out infinite 0.5s; }
.hero-badge.b2 { bottom: -18px; left: -14px; animation: floaty 5.5s ease-in-out infinite 1s; }

/* Slider-kontroller */
.slider-nav {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 10;
}
.slider-dot {
  width: 42px; height: 6px; border-radius: 999px; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.25); transition: 0.3s; overflow: hidden; position: relative;
}
.slider-dot.active { background: rgba(255, 255, 255, 0.35); }
.slider-dot.active::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
  animation: fyll 7s linear forwards; transform-origin: left;
}
@keyframes fyll { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 20, 48, 0.55); color: var(--hvit); font-size: 1.3rem; cursor: pointer;
  backdrop-filter: blur(8px); transition: 0.3s; display: grid; place-items: center;
}
.slider-arrow:hover { background: var(--rod); border-color: var(--rod); }
.slider-arrow.prev { left: 26px; }
.slider-arrow.next { right: 26px; }

/* Nordlys-animasjon */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora i {
  position: absolute; width: 44vw; height: 44vh; border-radius: 50%;
  filter: blur(60px); opacity: 0.3; mix-blend-mode: screen;
  will-change: transform; transform: translateZ(0);
}
.aurora i:nth-child(1) { background: var(--aurora-1); top: -20%; left: -10%; animation: drift1 14s ease-in-out infinite alternate; }
.aurora i:nth-child(2) { background: var(--aurora-2); top: -10%; right: -15%; animation: drift2 18s ease-in-out infinite alternate; }
.aurora i:nth-child(3) { background: var(--aurora-3); bottom: -30%; left: 30%; animation: drift3 16s ease-in-out infinite alternate; opacity: 0.22; }
@keyframes drift1 { to { transform: translate(12vw, 10vh) rotate(20deg); } }
@keyframes drift2 { to { transform: translate(-10vw, 14vh) rotate(-15deg); } }
@keyframes drift3 { to { transform: translate(-8vw, -10vh) scale(1.2); } }

/* ---------- Statistikk ---------- */
.stats { background: linear-gradient(135deg, var(--bla), var(--bla-dyp)); border-block: 1px solid rgba(255,255,255,0.08); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 46px 0; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--hvit); }
.stat b span { color: var(--aurora-1); }
.stat small { color: var(--graa); font-weight: 600; font-size: 0.92rem; }

/* ---------- Marquee (kanaler & filmer) ---------- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 22px; width: max-content; animation: rull 38s linear infinite; }
.marquee-track.revers { animation: rull-rev 44s linear infinite; }
.marquee-track.treg { animation-duration: 56s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes rull { to { transform: translateX(-50%); } }
@keyframes rull-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.kanal-chip {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 26px; border-radius: 16px; white-space: nowrap;
  transition: 0.3s; flex-shrink: 0;
}
.kanal-chip:hover { border-color: var(--aurora-1); transform: translateY(-4px); background: rgba(45,224,165,0.06); }
.kanal-logo {
  width: 68px; height: 44px; display: grid; place-items: center; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04); border-radius: 10px; padding: 5px;
}
.kanal-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.kanal-chip b { color: var(--hvit); font-size: 1rem; }
.kanal-chip small { display: block; color: var(--graa); font-size: 0.78rem; font-weight: 600; }

/* Filmplakater */
.plakat {
  width: 190px; flex-shrink: 0; border-radius: 16px; overflow: hidden; position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1); transition: 0.35s; cursor: pointer;
}
.plakat:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.3); }
.plakat-art { height: 280px; position: relative; display: flex; align-items: flex-end; overflow: hidden; background: #0a1330; }
.plakat-art > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.plakat:hover .plakat-art > img { transform: scale(1.06); }
.plakat-info {
  position: relative; width: 100%; padding: 40px 14px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85) 55%);
}
.plakat-info b { color: var(--hvit); font-size: 0.95rem; display: block; }
.plakat-info small { color: var(--graa); font-size: 0.75rem; font-weight: 700; }
.plakat .kvalitet {
  position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  color: var(--gull); font-size: 0.68rem; font-weight: 800; padding: 4px 9px; border-radius: 6px;
  border: 1px solid rgba(255,197,61,0.4);
}
.plakat .stjerne {
  position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  color: #fff; font-size: 0.7rem; font-weight: 800; padding: 4px 9px; border-radius: 6px;
}

/* ---------- Funksjoner ---------- */
.funksjoner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.funksjon-kort {
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  border: 1px solid rgba(255, 255, 255, 0.09); border-radius: var(--radius);
  padding: 34px 28px; transition: 0.35s; position: relative; overflow: hidden;
}
.funksjon-kort::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rod), var(--aurora-2)); opacity: 0; transition: 0.35s;
}
.funksjon-kort:hover { transform: translateY(-8px); border-color: rgba(45, 224, 165, 0.35); }
.funksjon-kort:hover::before { opacity: 1; }
.funksjon-ikon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(186,12,47,0.25), rgba(56,189,248,0.2));
  border: 1px solid rgba(255,255,255,0.1);
}
.funksjon-kort h3 { color: var(--hvit); font-size: 1.15rem; margin-bottom: 10px; }
.funksjon-kort p { color: var(--graa); font-size: 0.95rem; }

/* ---------- Slik fungerer det ---------- */
.steg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: steg; }
.steg {
  text-align: center; padding: 38px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); position: relative;
  transition: 0.3s;
}
.steg:hover { border-color: rgba(56,189,248,0.4); transform: translateY(-6px); }
.steg-nr {
  width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem; font-weight: 800; color: var(--hvit);
  background: linear-gradient(135deg, var(--rod), var(--bla));
  box-shadow: 0 10px 26px rgba(186, 12, 47, 0.35);
}
.steg h3 { color: var(--hvit); margin-bottom: 10px; font-size: 1.1rem; }
.steg p { color: var(--graa); font-size: 0.93rem; }

/* ---------- Priser ---------- */
.priser { background: linear-gradient(180deg, transparent, rgba(0, 32, 91, 0.35), transparent); }
.pris-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.pris-kort {
  background: linear-gradient(170deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius);
  padding: 34px 26px; display: flex; flex-direction: column; position: relative; transition: 0.35s;
}
.pris-kort:hover { transform: translateY(-10px); border-color: rgba(45,224,165,0.4); }
.pris-kort.populaer {
  border-color: var(--rod-lys);
  background: linear-gradient(170deg, rgba(186, 12, 47, 0.16), rgba(0, 32, 91, 0.25));
  box-shadow: 0 24px 70px rgba(186, 12, 47, 0.25);
}
.pris-kort .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--rod-lys), var(--rod)); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 20px rgba(230,23,63,0.4);
}
.pris-kort h3 { color: var(--hvit); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pris-belop { margin: 18px 0 4px; color: var(--hvit); }
.pris-belop b { font-size: 2.6rem; font-weight: 800; }
.pris-belop span { color: var(--graa); font-weight: 600; }
.pris-mnd { color: var(--aurora-1); font-size: 0.85rem; font-weight: 700; margin-bottom: 22px; }
.pris-kort ul { flex: 1; margin-bottom: 26px; }
.pris-kort li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; color: #c9d4e8; font-size: 0.92rem; }
.pris-kort li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px; }
.pris-kort .btn { width: 100%; }

/* ---------- Enheter ---------- */
.enheter-grid { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.enhet {
  display: flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  font-weight: 700; font-size: 0.92rem; color: var(--is); transition: 0.3s;
}
.enhet:hover { border-color: var(--aurora-2); transform: translateY(-4px); background: rgba(56,189,248,0.08); }
.enhet span { font-size: 1.3rem; }

/* ---------- Anmeldelser ---------- */
.anmeldelser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.anmeldelse {
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius); padding: 30px;
  transition: 0.35s; position: relative;
}
.anmeldelse:hover { transform: translateY(-6px); border-color: rgba(255,197,61,0.35); }
.anmeldelse .stjerner { color: var(--gull); font-size: 1.05rem; letter-spacing: 3px; margin-bottom: 14px; }
.anmeldelse p { color: #c9d4e8; font-size: 0.96rem; font-style: italic; margin-bottom: 22px; }
.anmelder { display: flex; align-items: center; gap: 14px; }
.anmelder-avatar {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; color: #fff; font-size: 1rem; flex-shrink: 0;
}
.anmelder b { color: var(--hvit); display: block; font-size: 0.95rem; }
.anmelder small { color: var(--graa); font-size: 0.8rem; font-weight: 600; }
.anmeldelse .verifisert {
  position: absolute; top: 26px; right: 26px; display: flex; align-items: center; gap: 5px;
  color: var(--aurora-1); font-size: 0.72rem; font-weight: 800;
}

/* ---------- FAQ ---------- */
.faq-liste { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; overflow: hidden; transition: 0.3s;
}
.faq-item.open { border-color: rgba(45,224,165,0.4); background: rgba(45,224,165,0.04); }
.faq-sp {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  color: var(--hvit); font-weight: 700; font-size: 1rem; text-align: left; font-family: var(--font);
}
.faq-sp .pil { transition: transform 0.3s; color: var(--aurora-1); font-size: 1.2rem; flex-shrink: 0; }
.faq-item.open .pil { transform: rotate(45deg); }
.faq-sv { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-sv p { padding: 0 24px 22px; color: var(--graa); font-size: 0.95rem; }

/* ---------- CTA ---------- */
.cta-boks {
  background: linear-gradient(120deg, var(--rod) 0%, var(--bla) 100%);
  border-radius: 26px; padding: 64px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-boks::before {
  content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.12); filter: blur(60px); top: -180px; right: -120px;
  animation: drift1 10s ease-in-out infinite alternate;
}
.cta-boks h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); color: var(--hvit); margin-bottom: 14px; position: relative; }
.cta-boks p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; position: relative; }
.cta-boks .btn-hvit { background: var(--hvit); color: var(--bla); box-shadow: 0 14px 34px rgba(0,0,0,0.3); }

/* ---------- Blogg-kort ---------- */
.blogg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blogg-kort {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); overflow: hidden; transition: 0.35s; display: flex; flex-direction: column;
}
.blogg-kort:hover { transform: translateY(-8px); border-color: rgba(56,189,248,0.4); box-shadow: var(--skygge); }
.blogg-bilde { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 3.4rem; position: relative; overflow: hidden; }
.blogg-bilde::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.18), transparent 55%); }
.blogg-innhold { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blogg-innhold .kategori { color: var(--aurora-1); font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.blogg-innhold h3 { color: var(--hvit); font-size: 1.08rem; margin-bottom: 10px; line-height: 1.4; }
.blogg-innhold p { color: var(--graa); font-size: 0.9rem; flex: 1; }
.blogg-innhold .les-mer { margin-top: 18px; color: var(--aurora-2); font-weight: 700; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }
.blogg-kort:hover .les-mer { gap: 12px; }
.blogg-innhold .les-mer { transition: gap 0.3s; }

/* ---------- Footer ---------- */
.footer { background: #040918; border-top: 1px solid rgba(255,255,255,0.07); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer h4 { color: var(--hvit); font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer p { color: var(--graa); font-size: 0.9rem; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: var(--graa); font-size: 0.9rem; transition: 0.25s; }
.footer ul a:hover { color: var(--aurora-1); padding-left: 5px; }
.footer-bunn {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--graa); font-size: 0.85rem;
}
.footer-bunn .disclaimer { font-size: 0.75rem; max-width: 640px; color: #5f6d8c; }

/* ---------- WhatsApp-knapp ---------- */
.whatsapp-flyt {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45);
  animation: puls 2.2s ease-in-out infinite;
}
@keyframes puls {
  0%, 100% { box-shadow: 0 12px 34px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 12px 34px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
}
.whatsapp-flyt svg { width: 32px; height: 32px; }

/* ---------- Scroll-animasjoner ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.vist { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; } .reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; } .reveal.d4 { transition-delay: 0.4s; }

/* ---------- Artikkelsider ---------- */
.artikkel-hero { padding: 160px 0 60px; background: linear-gradient(180deg, var(--bla), var(--bla-natt)); position: relative; overflow: hidden; }
.artikkel-hero .brodsmule { color: var(--graa); font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; }
.artikkel-hero .brodsmule a { color: var(--aurora-2); }
.artikkel-hero h1 { font-size: clamp(1.8rem, 4.2vw, 2.8rem); color: var(--hvit); max-width: 860px; }
.artikkel-meta { display: flex; gap: 22px; margin-top: 22px; color: var(--graa); font-size: 0.87rem; font-weight: 600; flex-wrap: wrap; }
.artikkel-body { max-width: 800px; margin: 0 auto; padding: 60px 0 80px; }
.artikkel-body h2 { color: var(--hvit); font-size: 1.65rem; margin: 46px 0 18px; }
.artikkel-body h3 { color: var(--hvit); font-size: 1.25rem; margin: 34px 0 14px; }
.artikkel-body p { color: #b9c5dc; margin-bottom: 18px; font-size: 1.02rem; }
.artikkel-body ul, .artikkel-body ol { margin: 0 0 22px 22px; color: #b9c5dc; }
.artikkel-body ul { list-style: disc; }
.artikkel-body ol { list-style: decimal; }
.artikkel-body li { margin-bottom: 9px; font-size: 1rem; }
.artikkel-body strong { color: var(--hvit); }
.artikkel-body a { color: var(--aurora-2); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.artikkel-body blockquote {
  border-left: 4px solid var(--aurora-1); background: rgba(45,224,165,0.06);
  padding: 18px 24px; border-radius: 0 12px 12px 0; margin: 26px 0; color: #d5dff0; font-style: italic;
}
.artikkel-body table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: 0.94rem; }
.artikkel-body th { background: rgba(0,32,91,0.6); color: var(--hvit); text-align: left; padding: 13px 16px; }
.artikkel-body td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); color: #b9c5dc; }
.artikkel-body .info-boks {
  background: linear-gradient(135deg, rgba(186,12,47,0.14), rgba(0,32,91,0.3));
  border: 1px solid rgba(230,23,63,0.3); border-radius: 14px; padding: 24px 26px; margin: 30px 0;
}
.artikkel-body .info-boks b { color: var(--hvit); }
.artikkel-cta {
  background: linear-gradient(120deg, var(--rod), var(--bla)); border-radius: 18px;
  padding: 36px 32px; margin: 44px 0; text-align: center;
}
.artikkel-cta h3 { color: var(--hvit); margin: 0 0 10px; }
.artikkel-cta p { color: rgba(255,255,255,0.85); margin-bottom: 22px; }

/* ---------- Responsivt ---------- */
@media (max-width: 1024px) {
  .slide .container { grid-template-columns: 1fr; text-align: center; }
  .slide p.lead { margin-inline: auto; }
  .hero-btns, .hero-points { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .funksjoner-grid, .anmeldelser-grid, .blogg-grid { grid-template-columns: repeat(2, 1fr); }
  .pris-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 80vw); flex-direction: column;
    background: rgba(4, 9, 24, 0.98); padding: 100px 36px; gap: 24px; align-items: flex-start;
    transform: translateX(100%); transition: transform 0.35s ease; z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .burger { display: block; position: relative; z-index: 100; }
  .stats-grid, .steg-grid { grid-template-columns: repeat(2, 1fr); }
  .funksjoner-grid, .anmeldelser-grid, .blogg-grid, .pris-grid { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
  .hero-badge.b1 { right: 0; } .hero-badge.b2 { left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
