/* BedriftLink - globale stiler */

:root {
  --ink: #14212e;
  --ink-soft: #4b5a68;
  --bg: #f7f7f4;
  --card: #ffffff;
  --line: #e3e5df;
  --navy: #143d66;
  --navy-deep: #0e2c4b;
  --green: #1c8a55;
  --green-soft: #e6f4ec;
  --amber: #b97f1f;
  --amber-soft: #f3ead9;
  --amber-bright: #e0a83f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
}

h1, h2, h3 { line-height: 1.12; margin: 0 0 12px; letter-spacing: -0.02em; font-family: 'Archivo', Helvetica, Arial, sans-serif; font-weight: 800; }
h1 { font-size: 52px; }
h2 { font-size: 32px; }
h3 { font-size: 20px; }
p { margin: 0 0 14px; }

a { color: var(--navy); }
a:hover { color: var(--green); }

img { max-width: 100%; }

.Wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Knapper */
.Btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 8px;
  font-size: 17px; font-weight: bold; text-decoration: none;
  border: none; cursor: pointer; font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.Btn:hover { transform: translateY(-2px); }
.BtnPrimary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(28,138,85,0.28); }
.BtnPrimary:hover { background: #156e43; color: #fff; box-shadow: 0 12px 26px rgba(28,138,85,0.36); }
.BtnGhost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.BtnGhost:hover { border-color: #fff; color: #fff; }
.BtnNavy { background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(20,61,102,0.25); }
.BtnNavy:hover { background: var(--navy-deep); color: #fff; box-shadow: 0 12px 26px rgba(20,61,102,0.32); }

/* Reveal p&aring; scroll */
.Reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.Reveal.In { opacity: 1; transform: none; }

/* Topplinje */
.TopBar {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--line);
}
.TopBarInner {
  display: flex; align-items: center; gap: 28px;
  height: 68px;
}
.Logo {
  display: flex; align-items: baseline; gap: 2px;
  font-family: 'Archivo', Helvetica, Arial, sans-serif;
  font-size: 24px; font-weight: 800; color: var(--navy); text-decoration: none;
  letter-spacing: -0.03em;
}
.Logo b { color: var(--green); }
.Logo:hover { color: var(--navy-deep); }
.TopNav { display: flex; gap: 24px; margin-left: auto; align-items: center; }
.TopNav a { text-decoration: none; color: var(--ink-soft); font-size: 16px; transition: color 0.15s; }
.TopNav a:not(.Btn) { border-radius: 8px; padding: 6px 10px; }
.TopNav a:not(.Btn):hover { background: var(--green-soft); color: var(--green); }
.TopNav .Btn { padding: 10px 18px; font-size: 15px; color: #fff; }
.TopNav .Btn:hover { color: #fff; }
.Burger {
  display: block; margin-left: 14px;
  background: none; border: none; font-size: 24px; color: var(--navy); cursor: pointer;
  padding: 8px;
}
.MobileMenu {
  position: fixed; top: 78px; right: 14px; z-index: 49;
  display: flex; flex-direction: column; gap: 4px;
  width: 260px; max-width: 82vw;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 20px 16px;
  box-shadow: 0 18px 44px rgba(20,33,46,0.18);
  transform: translateX(calc(100% + 24px));
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), opacity 0.2s ease;
  opacity: 0;
}
.MobileMenu a { text-decoration: none; color: var(--ink); padding: 12px 10px; border-radius: 8px; border-bottom: 1px solid var(--line); transition: background 0.15s, color 0.15s; }
.MobileMenu a:hover { background: var(--green-soft); color: var(--green); }
.MobileMenu a:last-child { border-bottom: none; }
.MobileMenu.Open { transform: translateX(0); opacity: 1; }

/* Hero */
.Hero {
  background:
    linear-gradient(105deg, rgba(11,36,64,0.97) 0%, rgba(11,36,64,0.92) 42%, rgba(11,36,64,0.72) 100%),
    radial-gradient(1100px 500px at 85% -8%, rgba(88,201,141,0.16), transparent 60%),
    url("/GetThumb.aspx?MaxSize=256K&URL=/img/Category-Snekker.png");
  background-size: cover; background-position: center right;
  color: #fff; padding: 84px 0 78px; position: relative; overflow: hidden;
}
.Hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.HeroGrid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.HeroMain { min-width: 0; }
.Hero h1 { color: #fff; max-width: 640px; }
.Hero .Lead { font-size: 20px; color: #c3d2e0; max-width: 560px; }
.HeroBadges { display: flex; gap: 12px; margin: 26px 0 4px; flex-wrap: wrap; }
.HeroMain > .Btn { margin-top: 30px; }
.HeroBadge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: #e6eef5; padding: 7px 14px; border-radius: 999px; font-size: 15px;
}
.HeroBadge i { color: #58c98d; }
.CategoryRow { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 34px; }
.CategoryChip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--ink); text-decoration: none;
  padding: 6px 11px; border-radius: 6px; font-size: 13px; font-weight: bold;
  transition: transform 0.15s, box-shadow 0.15s;
}
.CategoryChip i { color: var(--green); }
.CategoryChip:hover { background: var(--green-soft); color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.22); }

/* Hero live-kort */
.HeroAside { min-width: 0; }
.LiveCard {
  background: #fff; color: var(--ink); border-radius: 16px; padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.5);
}
.LiveCardTop {
  display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: bold;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft);
}
.LiveDot { width: 9px; height: 9px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 0 rgba(28,138,85,0.5); animation: pulse 1.8s infinite, dotBeat 1.8s ease-in-out infinite; }
.LiveCardTop { color: var(--green); }
.LiveJob { display: flex; align-items: center; gap: 14px; margin: 16px 0 14px; }
.LiveJobIcon { width: 46px; height: 46px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 20px; flex: none; }
.LiveJob b { display: block; font-size: 18px; }
.LiveJob span { color: var(--ink-soft); font-size: 14px; }
.LiveProgress { font-size: 13px; font-weight: 800; color: var(--green); background: var(--green-soft); border-radius: 8px; padding: 8px 12px; margin-bottom: 14px; animation: progressPulse 2.4s ease-in-out infinite; }
.LiveReplies { display: grid; gap: 10px; }
.LiveReply { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; opacity: 0; transform: translateY(6px); animation: replyCycle1 2.8s ease-out infinite; }
.LiveReply:nth-child(2) { animation-name: replyCycle2; }
.LiveReply:nth-child(3) { animation-name: replyCycle3; }
.LiveCheck { width: 24px; height: 24px; border-radius: 999px; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; flex: none; transform: scale(0); animation: checkCycle1 2.8s cubic-bezier(0.34,1.56,0.64,1) infinite; }
.LiveReply:nth-child(2) .LiveCheck { animation-name: checkCycle2; }
.LiveReply:nth-child(3) .LiveCheck { animation-name: checkCycle3; }
.LiveName { font-weight: bold; font-size: 15px; margin-right: auto; }
.LiveYes { font-size: 13px; color: var(--green); font-weight: 800; }
.LiveFoot { margin-top: 16px; font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.LiveFoot i { color: var(--navy); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(28,138,85,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(28,138,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(28,138,85,0); }
}
@keyframes replyCycle1 {
  0% { opacity: 0; transform: translateY(6px); border-color: var(--line); box-shadow: 0 0 0 0 rgba(28,138,85,0); }
  2% { border-color: var(--green); box-shadow: 0 0 0 3px rgba(28,138,85,0.18); }
  12.5% { opacity: 1; transform: translateY(0); }
  20% { border-color: var(--line); box-shadow: 0 0 0 0 rgba(28,138,85,0); }
  73% { opacity: 1; transform: translateY(0); border-color: var(--line); box-shadow: 0 0 0 0 rgba(28,138,85,0); }
  86%, 100% { opacity: 0; transform: translateY(6px); }
}
@keyframes replyCycle2 {
  0%, 12.5% { opacity: 0; transform: translateY(6px); border-color: var(--line); box-shadow: 0 0 0 0 rgba(28,138,85,0); }
  15% { border-color: var(--green); box-shadow: 0 0 0 3px rgba(28,138,85,0.18); }
  25% { opacity: 1; transform: translateY(0); }
  33% { border-color: var(--line); box-shadow: 0 0 0 0 rgba(28,138,85,0); }
  73% { opacity: 1; transform: translateY(0); }
  86%, 100% { opacity: 0; transform: translateY(6px); }
}
@keyframes replyCycle3 {
  0%, 25% { opacity: 0; transform: translateY(6px); border-color: var(--line); box-shadow: 0 0 0 0 rgba(28,138,85,0); }
  28% { border-color: var(--green); box-shadow: 0 0 0 3px rgba(28,138,85,0.18); }
  37.5% { opacity: 1; transform: translateY(0); }
  45% { border-color: var(--line); box-shadow: 0 0 0 0 rgba(28,138,85,0); }
  73% { opacity: 1; transform: translateY(0); }
  86%, 100% { opacity: 0; transform: translateY(6px); }
}
@keyframes dotBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}
@keyframes checkCycle1 {
  0%, 8% { transform: scale(0); }
  14% { transform: scale(1.25); }
  18% { transform: scale(1); }
  73% { transform: scale(1); }
  86%, 100% { transform: scale(0); }
}
@keyframes checkCycle2 {
  0%, 20% { transform: scale(0); }
  27% { transform: scale(1.25); }
  31% { transform: scale(1); }
  73% { transform: scale(1); }
  86%, 100% { transform: scale(0); }
}
@keyframes checkCycle3 {
  0%, 33% { transform: scale(0); }
  40% { transform: scale(1.25); }
  44% { transform: scale(1); }
  73% { transform: scale(1); }
  86%, 100% { transform: scale(0); }
}
@keyframes progressPulse {
  0%, 100% { background: var(--green-soft); }
  50% { background: rgba(28,138,85,0.22); }
}

/* Statistikk-stripe */
.StatBand { background: #fff; border-bottom: 1px solid var(--line); }
.StatRow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 24px; }
.Stat { text-align: center; }
.Stat b { display: block; font-family: 'Archivo', Helvetica, Arial, sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.Stat span { color: var(--ink-soft); font-size: 15px; }

/* Troverdighetsstripe */
.TrustStrip { background: var(--bg); border-bottom: 1px solid var(--line); }
.TrustRow { display: flex; align-items: center; justify-content: center; gap: 18px 40px; flex-wrap: wrap; padding: 28px 24px; }
.TrustLabel { font-size: 14px; font-weight: bold; color: #8593a0; text-transform: uppercase; letter-spacing: 0.08em; }
.TrustBadge { display: inline-flex; align-items: center; gap: 10px; font-weight: bold; color: var(--navy); font-size: 16px; }
.TrustBadge i { color: var(--green); font-size: 20px; }

/* Kategori-galleri */
.CatGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.CatCard {
  position: relative; border-radius: 14px; overflow: hidden; text-decoration: none;
  border: 1px solid var(--line); background: var(--card);
  box-shadow: 0 4px 18px rgba(20,33,46,0.05); transition: transform 0.18s, box-shadow 0.18s;
}
.CatCard:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,33,46,0.14); }
.CatImg {
  height: 150px; overflow: hidden; border-bottom: 1px solid var(--line);
  background: #e6e9e1;
}
.CatImg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.CatCard:hover .CatImg img { transform: scale(1.05); }
.CatBody { display: flex; align-items: center; gap: 12px; padding: 16px 18px; }
.CatIcon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 18px; flex: none; }
.CatBody b { color: var(--ink); font-size: 17px; display: block; }
.CatBody span { color: var(--ink-soft); font-size: 14px; }
.CatArrow { margin-left: auto; color: var(--navy); }

/* Seksjoner */
.Section { padding: 72px 0; }
.SectionAlt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.SectionHead { max-width: 620px; margin-bottom: 40px; }
.SectionHead p { color: var(--ink-soft); font-size: 18px; }
.Eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', Helvetica, Arial, sans-serif; font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--amber); margin-bottom: 14px;
}
.Eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--amber); border-radius: 2px; }
.Hero .Eyebrow, .Compare .Eyebrow, .CtaBand .Eyebrow, .PageHead .Eyebrow { color: var(--amber-bright); }
.Hero .Eyebrow::before, .Compare .Eyebrow::before, .CtaBand .Eyebrow::before, .PageHead .Eyebrow::before { background: var(--amber-bright); }

/* Aktivitet - marquee */
.Marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.MarqueeTrack { display: flex; gap: 16px; width: max-content; animation: marquee 38s linear infinite; padding: 6px 0; }
.Marquee:hover .MarqueeTrack { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ActivityCard {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 20px; width: 240px; flex: none;
  box-shadow: 0 2px 10px rgba(20,33,46,0.05);
}
.ActivityTag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: bold; display: inline-flex; align-items: center; gap: 7px; }
.ActivityTag.Request { color: var(--green); }
.ActivityTag.Company { color: var(--amber); }
.PulseDot { width: 8px; height: 8px; border-radius: 999px; background: var(--green); animation: pulse 1.8s infinite; }
.ActivityCard b { display: block; margin: 8px 0 2px; font-size: 17px; }
.ActivityCard span { color: var(--ink-soft); font-size: 14px; }
.MarqueeTrack .ActivityCard { transition: transform 0.18s, box-shadow 0.18s; }
.MarqueeTrack .ActivityCard:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(20,33,46,0.14); }

/* Slik fungerer det */
.StepsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.StepsGrid::before {
  content: ""; position: absolute; top: 54px; left: 16%; right: 16%; height: 2px;
  background-image: linear-gradient(90deg, var(--navy) 60%, transparent 0);
  background-size: 14px 2px; background-repeat: repeat-x; opacity: 0.35; z-index: 0;
}
.StepCard { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px; position: relative; z-index: 1; box-shadow: 0 4px 18px rgba(20,33,46,0.05); transition: transform 0.18s, box-shadow 0.18s; }
.StepCard:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,33,46,0.12); }
.StepIcon {
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px;
}
.StepNum {
  position: absolute; top: 24px; right: 24px;
  width: 34px; height: 34px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; font-family: 'Archivo', Helvetica, Arial, sans-serif; font-weight: 800; font-size: 16px;
}
.StepCard p { color: var(--ink-soft); margin: 0; }

/* Tilbakemeldinger */
.QuoteGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.QuoteCard { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: 0 4px 18px rgba(20,33,46,0.05); position: relative; }
.QuoteCard::before { content: "\201C"; font-family: Georgia, serif; font-size: 66px; line-height: 1; color: var(--green); opacity: 0.28; position: absolute; top: 14px; right: 22px; }
.QuoteCard blockquote { margin: 0 0 16px; font-size: 17px; position: relative; }
.QuoteCard { transition: transform 0.18s, box-shadow 0.18s; }
.QuoteCard:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,33,46,0.12); }
.QuoteMeta { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 15px; }
.QuoteMeta .Ok { color: var(--green); font-weight: bold; display: inline-flex; align-items: center; gap: 6px; }

/* Leverandoer-CTA */
.SupplierBand { background: var(--navy); color: #fff; border-radius: 16px; padding: 48px; display: flex; align-items: center; gap: 40px; justify-content: space-between; flex-wrap: wrap; }
.SupplierBand h2 { color: #fff; }
.SupplierBand p { color: #c3d2e0; max-width: 520px; margin: 0; }

/* Prisstige (Info-siden) */
.PriceGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.PriceCard { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 28px; text-align: center; }
.PriceCard.Free { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.PriceWho { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); font-weight: bold; }
.PriceAmount { font-size: 42px; font-weight: bold; color: var(--navy); margin: 10px 0 4px; }
.PriceCard.Free .PriceAmount { color: var(--green); }
.PriceCard p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.PriceNote { background: var(--green-soft); border: 1px solid #bfe3cf; border-radius: 12px; padding: 20px 24px; margin-top: 24px; display: flex; gap: 14px; align-items: flex-start; }
.PriceNote i { color: var(--green); font-size: 20px; margin-top: 3px; }
.PriceNote p { margin: 0; }

/* Selling points */
.PointList { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.PointList li { display: flex; gap: 14px; align-items: flex-start; }
.PointList i { color: var(--green); font-size: 20px; margin-top: 4px; }
.PointList b { display: block; }
.PointList span { color: var(--ink-soft); }

/* FAQ */
.FaqList { max-width: 720px; }
.FaqMore { max-width: 720px; margin-top: 28px; display: flex; justify-content: center; }
.FaqItem { border-bottom: 1px solid var(--line); }
.FaqQ {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 18px; font-weight: bold; color: var(--ink);
  padding: 18px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.FaqQ i { color: var(--navy); transition: transform 0.25s; }
.FaqItem.Open .FaqQ i { transform: rotate(180deg); }
.FaqA { max-height: 0; overflow: hidden; padding: 0 4px; color: var(--ink-soft); transition: max-height 0.35s ease, padding 0.35s ease; }
.FaqItem.Open .FaqA { max-height: 400px; padding: 0 4px 18px; }

/* Om oss / kontakt */
.SplitGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.ImgPlaceholder {
  border: 1px dashed #b9c2b6; border-radius: 12px;
  background: repeating-linear-gradient(45deg, #f0f2ec, #f0f2ec 12px, #e8ebe4 12px, #e8ebe4 24px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-family: monospace; font-size: 14px;
  min-height: 260px; text-align: center; padding: 20px;
}

/* Skjema */
.Form { display: grid; gap: 14px; }
.FormStep { display: grid; gap: 14px; }

/* Stegvisning (NewRequest2) */
.StepNav { display: flex; justify-content: space-between; gap: 12px; margin-top: 6px; }
.StepNav .BtnPrimary { margin-left: auto; }
#Step1 .StepNav { justify-content: center; }
#Step1 .StepNav .BtnPrimary { margin-left: 0; width: fit-content; justify-content: center; }
.StepNavEnd { flex-direction: column; align-items: center; gap: 14px; }
.AuthCard .StepNav .BtnPrimary { width: fit-content; margin-left: 0; }
.BackLink { background: none; border: none; cursor: pointer; color: var(--ink-soft); font-family: inherit; font-size: 15px; font-weight: bold; display: inline-flex; align-items: center; gap: 7px; padding: 4px; transition: color 0.15s; }
.BackLink:hover { color: var(--navy); }
.StepNav .BtnGhost { background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: none; }
.StepNav .BtnGhost:hover { border-color: var(--navy); color: var(--navy); background: var(--bg); }
.FormRow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.Form label { font-size: 14px; font-weight: bold; display: block; margin-bottom: 5px; }
.Form input, .Form textarea, .Form select {
  display: block;
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: 16px; background: #fff; color: var(--ink);
}
.Form input:focus, .Form textarea:focus, .Form select:focus { outline: 2px solid var(--navy); outline-offset: 1px; border-color: var(--navy); }
.Form textarea { resize: vertical; min-height: 110px; }
.FormGroupHead {
  font-family: 'Archivo', Helvetica, Arial, sans-serif; font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green);
  margin: 10px 0 -2px; padding-top: 8px;
}
.FormGroupHead:first-child { border-top: none; padding-top: 0; }
.Optional { color: var(--ink-soft); font-weight: normal; text-transform: none; letter-spacing: 0; }
.AuthCard.Wide { max-width: 720px; }
.AuthCard.Wide .Form { margin-top: 8px; }

/* Soekbar bransjevelger */
.Combo { position: relative; }
.ComboField {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  padding: 0 12px; transition: border-color 0.15s, box-shadow 0.15s;
}
.ComboField.Focus, .ComboField.Open { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(20,61,102,0.16); }
.ComboLead { color: var(--green); font-size: 16px; width: 18px; text-align: center; flex: none; }
.Form .ComboInput {
  flex: 1; min-width: 0; border: none; outline: none; padding: 12px 0;
  font-family: inherit; font-size: 16px; background: transparent; color: var(--ink);
}
.Form .ComboInput:focus { outline: none; border: none; }
.ComboCaret { color: var(--ink-soft); font-size: 13px; flex: none; transition: transform 0.18s; }
.ComboField.Open .ComboCaret { transform: rotate(180deg); }
.ComboList {
  list-style: none; margin: 6px 0 0; padding: 6px;
  position: absolute; z-index: 40; top: 100%; left: 0; right: 0;
  max-height: 290px; overflow-y: auto;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 18px 44px rgba(20,33,46,0.16); display: none;
}
.ComboList.Open { display: block; }
.ComboOption {
  display: flex; align-items: center; gap: 12px; padding: 9px 10px;
  border-radius: 8px; cursor: pointer; font-size: 16px; color: var(--ink);
}
.ComboOptIcon {
  width: 34px; height: 34px; border-radius: 8px; flex: none;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.ComboOptLabel { flex: 1; min-width: 0; }
.ComboOption.Active { background: var(--green-soft); }
.ComboOption.Selected { font-weight: bold; }
.ComboCheck { color: var(--green); flex: none; }
.ComboEmpty { padding: 14px 12px; color: var(--ink-soft); font-size: 15px; }

/* Avkrysningsfelt */
.Form .CheckField {
  display: flex; align-items: flex-start; gap: 13px; cursor: pointer;
  border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px;
  background: #fff; transition: border-color 0.15s, background 0.15s;
}
.CheckField:hover { border-color: #cfd3ca; }
.CheckField input { position: absolute; opacity: 0; width: 0; height: 0; }
.CheckMark {
  width: 24px; height: 24px; flex: none; border-radius: 6px;
  border: 1.5px solid var(--line); background: #fff; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; transition: background 0.15s, border-color 0.15s;
}
.CheckMark i { opacity: 0; transform: scale(0.6); transition: opacity 0.15s, transform 0.15s; }
.CheckField input:checked ~ .CheckMark { background: var(--green); border-color: var(--green); }
.CheckField input:checked ~ .CheckMark i { opacity: 1; transform: scale(1); }
.CheckField input:focus-visible ~ .CheckMark { outline: 2px solid var(--navy); outline-offset: 2px; }
.CheckBody { flex: 1; min-width: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.45; font-weight: normal; }

/* Foer/etter - moerk seksjon */
.Compare {
  background:
    radial-gradient(800px 400px at 12% -10%, rgba(88,201,141,0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), #0b2440);
  color: #fff; padding: 72px 0;
}
.Compare h2 { color: #fff; }
.Compare .SectionHead p { color: #c3d2e0; }
.CompareGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.CompareCol { border-radius: 16px; padding: 30px; }
.CompareCol h3 { font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.CompareOld { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }
.CompareOld h3 { color: #cdd9e4; }
.CompareNew { background: #fff; color: var(--ink); box-shadow: 0 24px 50px rgba(0,0,0,0.35); }
.CompareNew h3 { color: var(--navy); }
.CompareList { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.CompareList li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.CompareOld .CompareList li { color: #aebccb; }
.CompareOld .CompareList i { color: #7d8ea0; margin-top: 3px; }
.CompareNew .CompareList i { color: var(--green); margin-top: 3px; }
.CompareTag { display: inline-block; font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.07em; padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.CompareOld .CompareTag { background: rgba(255,255,255,0.1); color: #aebccb; }
.CompareNew .CompareTag { background: var(--green-soft); color: var(--green); }

/* Avsluttende CTA-band */
.CtaBand {
  background:
    radial-gradient(700px 320px at 85% 120%, rgba(88,201,141,0.18), transparent 60%),
    linear-gradient(120deg, var(--navy), var(--navy-deep));
  color: #fff; border-radius: 20px; padding: 56px; text-align: center; position: relative; overflow: hidden;
}
.CtaBand h2 { color: #fff; font-size: 38px; max-width: 640px; margin: 0 auto 12px; }
.CtaBand p { color: #c3d2e0; font-size: 19px; max-width: 540px; margin: 0 auto 28px; }
.CtaActions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Testimonial-avatar */
.QuoteMeta .Avatar {
  width: 34px; height: 34px; border-radius: 999px; flex: none;
  background: repeating-linear-gradient(45deg, #eef0ea, #eef0ea 6px, #e6e9e1 6px, #e6e9e1 12px);
  border: 1px solid var(--line);
}

/* Dekningskart */
.Coverage { background: var(--navy-deep); color: #fff; padding: 72px 0; overflow: hidden; }
.Coverage .Eyebrow { color: var(--amber-bright); }
.Coverage .Eyebrow::before { background: var(--amber-bright); }
.Coverage h2 { color: #fff; }
.CoverageGrid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.CoverageText p { color: #c3d2e0; font-size: 18px; }
.CoverageStats { display: flex; gap: 34px; margin-top: 24px; }
.CoverageStats b { display: block; font-family: 'Archivo', Helvetica, Arial, sans-serif; font-size: 30px; font-weight: 800; color: var(--amber-bright); }
.CoverageStats span { color: #8fa5b8; font-size: 15px; }
.CityBoard {
  background:
    radial-gradient(circle at 80% 0%, rgba(88,201,141,0.10), transparent 55%),
    linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 26px 28px;
}
.CityBoardHead {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Archivo', Helvetica, Arial, sans-serif; font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #a9bccd;
  padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.CityBoardDot { width: 9px; height: 9px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 0 rgba(88,201,141,0.6); animation: pulse 2.2s infinite; }
.CityList { list-style: none; margin: 0; padding: 8px 0 0; }
.CityList li {
  display: grid; grid-template-columns: 108px 1fr auto; align-items: center; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.CityList li:last-child { border-bottom: none; }
.CityName { color: #eaf1f7; font-weight: 600; font-size: 16px; }
.CityBar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.09); overflow: hidden; }
.CityBar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--green), #58c98d); width: 0; transition: width 1.1s cubic-bezier(0.22,1,0.36,1); }
.CityList b { font-family: 'Archivo', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 800; color: #fff; min-width: 58px; text-align: right; }
.CityBoardFoot { margin-top: 16px; color: var(--amber-bright); font-size: 14px; font-weight: 600; }

/* Mini-mekanikk i steg 2 */
.StepReplies { margin-top: 16px; display: grid; gap: 6px; }
.StepReply {
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: bold; color: var(--green);
  background: var(--green-soft); border-radius: 7px; padding: 6px 10px;
  opacity: 0; transform: translateX(-6px); animation: stepReply 4.5s infinite;
}
.StepReply:nth-child(1) { animation-delay: 0s; }
.StepReply:nth-child(2) { animation-delay: 0.7s; }
.StepReply:nth-child(3) { animation-delay: 1.4s; }
.StepReply i { font-size: 11px; }
@keyframes stepReply {
  0% { opacity: 0; transform: translateX(-6px); }
  8%, 66% { opacity: 1; transform: translateX(0); }
  78%, 100% { opacity: 0; transform: translateX(-6px); }
}

/* Priskalkulator (Info) */
.Calc {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 32px; box-shadow: 0 10px 30px rgba(20,33,46,0.07);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center;
}
.CalcControls label { display: block; font-weight: bold; font-size: 15px; margin: 0 0 10px; }
.CalcField { margin-bottom: 24px; }
.CalcField:last-child { margin-bottom: 0; }
.Segmented { display: flex; gap: 8px; flex-wrap: wrap; }
.SegBtn {
  flex: 1; min-width: 90px; text-align: center; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
  border-radius: 9px; padding: 12px 10px; font-family: inherit; font-size: 15px; font-weight: bold;
  transition: all 0.15s;
}
.SegBtn:hover { border-color: var(--navy); }
.SegBtn.Active { background: var(--navy); color: #fff; border-color: var(--navy); }
.CalcResult { text-align: center; background: var(--green-soft); border-radius: 14px; padding: 30px 24px; }
.CalcResultLabel { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: bold; color: var(--ink-soft); }
.CalcPrice { font-family: 'Archivo', Helvetica, Arial, sans-serif; font-size: 60px; font-weight: 800; color: var(--green); letter-spacing: -0.03em; line-height: 1.05; margin: 6px 0; }
.CalcNote { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* Innholdssider (FAQ, Terms, Privacy) */
.PageHead {
  background:
    radial-gradient(900px 400px at 88% -20%, rgba(88,201,141,0.14), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), #0b2440);
  color: #fff; padding: 62px 0 56px;
}
.PageHead h1 { color: #fff; font-size: 42px; }
.PageHead p { color: #c3d2e0; font-size: 19px; max-width: 620px; margin: 0; }
.Breadcrumb { font-size: 14px; color: #8fa5b8; margin-bottom: 14px; }
.Breadcrumb a { color: #8fa5b8; text-decoration: none; }
.Breadcrumb a:hover { color: #fff; }

.Prose { max-width: 760px; }
.Prose h2 { font-size: 26px; margin-top: 40px; }
.Prose h2:first-child { margin-top: 0; }
.Prose p { color: var(--ink-soft); }
.Prose ul { color: var(--ink-soft); padding-left: 22px; }
.Prose li { margin-bottom: 8px; }
.Prose .Muted { font-size: 15px; color: #8593a0; }

/* Innlogging / utlogging */
.AuthWrap { display: flex; justify-content: center; padding: 64px 0; }
.AuthCard {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 40px; width: 100%; max-width: 440px;
  box-shadow: 0 20px 50px rgba(20,33,46,0.1); text-align: center;
}
.AuthCard h1 { font-size: 30px; }
.AuthCard .Form { text-align: left; margin-top: 52px; }
.AuthCard .Btn { width: 100%; justify-content: center; }
.AuthIntro { color: var(--ink-soft); }
.TrustBar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin-top: 20px; margin-bottom: 20px; }
.TrustItem { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: bold; color: var(--ink-soft); }
.TrustItem i { color: var(--green); }
.SubmitNote { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; color: var(--ink-soft); text-align: center; }
.SubmitNote span { display: flex; align-items: center; justify-content: center; gap: 8px; }
.SubmitNote i { color: var(--green); flex: none; }
.AuthAlt { margin-top: 22px; font-size: 15px; color: var(--ink-soft); }
.AuthIcon {
  width: 64px; height: 64px; border-radius: 999px; margin: 0 auto 20px;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.ForgotLink { display: block; text-align: right; font-size: 14px; margin-top: -4px; }

/* Footer */
.Footer { background: var(--navy-deep); color: #b7c6d4; padding: 56px 0 28px; margin-top: 72px; }
.FooterGrid { display: grid; grid-template-columns: 1fr auto auto auto; gap: 36px; margin-bottom: 40px; }
.Footer h3 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.Footer a { color: #b7c6d4; text-decoration: none; display: block; padding: 4px 0; font-size: 14px; }
.Footer p { font-size: 14px; max-width: 400px; }
.Footer a:hover { color: #fff; }
.FooterLogo { font-size: 20px; font-weight: bold; color: #fff; }
.FooterLogo b { color: #58c98d; }
.FooterBottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; font-size: 14px; color: #8fa5b8; }

/* Feilmelding */
#ErrorBox {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 50px); max-width: 500px; min-height: 100px; box-sizing: border-box;
  background: #a3272d; color: #fff; padding: 18px 20px; border-radius: 10px;
  display: none; align-items: center; gap: 16px; z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); font-size: 16px;
}
#ErrorMsg { flex: 1; order: 2; }
#ErrorBox .MsgIcon { font-size: 50px; line-height: 1; order: 1; flex: none; }
#ErrorBox button { order: 3; }
#ErrorBox button {
  background: rgba(255,255,255,0.16); border: none; color: #fff; cursor: pointer;
  border-radius: 6px; padding: 6px 12px; font-family: inherit; font-size: 14px;
}
#ErrorBox button:hover { background: rgba(255,255,255,0.3); }

/* Infomelding */
#InfoBox {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: calc(100% - 50px); max-width: 500px; min-height: 100px; box-sizing: border-box;
  background: var(--navy); color: #fff; padding: 18px 20px; border-radius: 10px;
  display: none; align-items: center; gap: 16px; z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); font-size: 16px;
}
#InfoMsg { flex: 1; order: 2; }
#InfoBox .MsgIcon { font-size: 50px; line-height: 1; order: 1; flex: none; }
#InfoBox button { order: 3; }
#InfoBox button {
  background: rgba(255,255,255,0.16); border: none; color: #fff; cursor: pointer;
  border-radius: 6px; padding: 6px 12px; font-family: inherit; font-size: 14px;
}
#InfoBox button:hover { background: rgba(255,255,255,0.3); }

/* Responsivt */
@media (max-width: 900px) {
  h1 { font-size: 38px; }
  .PriceGrid { grid-template-columns: 1fr; }
  .Calc { grid-template-columns: 1fr; gap: 24px; }
  .HeroGrid { grid-template-columns: 1fr; gap: 36px; }
  .HeroAside { max-width: 460px; }
  .StatRow { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .CatGrid { grid-template-columns: 1fr; }
  .CompareGrid { grid-template-columns: 1fr; }
  .CoverageGrid { grid-template-columns: 1fr; gap: 32px; }
  .StepsGrid::before { display: none; }
  .CtaBand { padding: 40px 28px; }
  .CtaBand h2 { font-size: 30px; }
  h2 { font-size: 26px; }
  .TopNav { display: none; }
  .Burger { display: block; margin-left: auto; }
  .ActivityGrid { grid-template-columns: 1fr 1fr; }
  .StepsGrid, .QuoteGrid { grid-template-columns: 1fr; }
  .SplitGrid { grid-template-columns: 1fr; }
  .FooterGrid { grid-template-columns: 1fr 1fr; }
  .FormRow { grid-template-columns: 1fr; }
  .Hero { padding: 56px 0 48px; }
  .Section { padding: 52px 0; }
  .SupplierBand { padding: 32px; }
}
