/* ============================================
   ISBAT / NORDVIK — SPACEX DARK PREMIUM
   ============================================ */

:root {
  /* Brand accents */
  --red: #ff1744;
  --red-hover: #ff3b61;
  --red-deep: #cc0f35;
  --cyan: #2dd4ff;
  --cyan-dim: rgba(45, 212, 255, 0.5);

  /* SpaceX-style dark surface */
  --bg-0: #050810;
  --bg-1: #070b14;
  --bg-2: #0b1220;
  --bg-3: #101827;
  --bg-4: #121c2d;
  --bg-5: #1a253b;

  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);

  /* Text — boosted contrast (WCAG AA on dark surfaces) */
  --t-w: #ffffff;
  --t-1: #ffffff;
  --t-2: #eef2f8;
  --t-3: #c8d2e1;
  --t-4: #8c97ad;
  --t-5: #5a6478;

  /* Glass surfaces */
  --glass-bg: rgba(18, 28, 45, 0.55);
  --glass-bg-strong: rgba(22, 34, 56, 0.72);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-border-hover: rgba(45, 212, 255, 0.45);
  --glass-blur: 18px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;

  --max-w: 1440px;
  --content-w: 1100px;
  --nav-h: 64px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spx: cubic-bezier(0.32, 0.72, 0, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--t-2);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================
   NAV — sticky SpaceX bar
   ============================================ */

.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(5, 8, 16, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s var(--ease);
}
.nav-logo:hover { opacity: 0.75; }
.nav-logo-mark {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 5px;
}
.nav-logo-text {
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  color: var(--t-w);
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--t-2);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--t-w); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-spx);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--t-w);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS — glowing CTA system
   ============================================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 8px;
  transition: all 0.35s var(--ease-spx);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  min-width: 0;
  isolation: isolate;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--red) 0%, var(--cyan) 100%);
  opacity: 0;
  z-index: -2;
  filter: blur(14px);
  transition: opacity 0.4s var(--ease);
}
.btn:hover::before { opacity: 0.85; }

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow:
    0 0 0 1px rgba(255, 23, 68, 0.4),
    0 0 24px rgba(255, 23, 68, 0.35),
    0 8px 24px rgba(255, 23, 68, 0.25);
}
.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow:
    0 0 0 1px rgba(255, 59, 97, 0.6),
    0 0 40px rgba(255, 23, 68, 0.65),
    0 12px 36px rgba(255, 23, 68, 0.45);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--t-w);
  border-color: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(45, 212, 255, 0.10);
}
.btn--secondary:hover {
  background: rgba(45, 212, 255, 0.08);
  border-color: rgba(45, 212, 255, 0.55);
  color: var(--t-w);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 32px rgba(45, 212, 255, 0.45),
    0 8px 24px rgba(45, 212, 255, 0.20);
  transform: translateY(-2px);
}

.btn--nav {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* Glowing inline link-as-button (replaces .tlink) */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t-w);
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 23, 68, 0.55);
  background: rgba(255, 23, 68, 0.10);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 16px rgba(255, 23, 68, 0.22);
  transition: all 0.35s var(--ease-spx);
  align-self: flex-start;
}
.tlink::after {
  content: '\2192';
  font-size: 1.05em;
  transition: transform 0.35s var(--ease-spx);
}
.tlink:hover {
  color: #fff;
  background: rgba(255, 23, 68, 0.22);
  border-color: var(--red);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 0 32px rgba(255, 23, 68, 0.65),
    0 6px 22px rgba(255, 23, 68, 0.35);
  transform: translateY(-1px);
}
.tlink:hover::after { transform: translateX(4px); }

.tlink--cyan {
  border-color: rgba(45, 212, 255, 0.55);
  background: rgba(45, 212, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 16px rgba(45, 212, 255, 0.22);
}
.tlink--cyan:hover {
  background: rgba(45, 212, 255, 0.22);
  border-color: var(--cyan);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 0 32px rgba(45, 212, 255, 0.65),
    0 6px 22px rgba(45, 212, 255, 0.35);
}

/* ============================================
   EYEBROW (small upper labels)
   ============================================ */

.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow--cyan { color: var(--cyan); }

/* ============================================
   HERO — SpaceX cinematic
   ============================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
  background: var(--bg-0);
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  filter: saturate(110%) contrast(105%);
}

/* Ken Burns crossfade slider */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.hero-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2.4s linear;
  transform: scale(1.05) translateZ(0);
  -webkit-transform: scale(1.05) translateZ(0);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* dim the photo so dark overlay reads correctly */
  filter: saturate(112%) contrast(106%) brightness(0.62);
}
.hero-layer.is-active {
  opacity: 1;
  animation: ken-burns 16s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-layer.is-active.kb-2 { animation-name: ken-burns-pan-right; }
.hero-layer.is-active.kb-3 { animation-name: ken-burns-zoom-out; }
.hero-layer.is-active.kb-4 { animation-name: ken-burns-pan-down; }

@keyframes ken-burns {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-1.4%, -0.8%, 0); }
}
@keyframes ken-burns-pan-right {
  0%   { transform: scale(1.14) translate3d(-1%, 0, 0); }
  100% { transform: scale(1.05) translate3d(1%, 0.5%, 0); }
}
@keyframes ken-burns-zoom-out {
  0%   { transform: scale(1.18) translate3d(0.6%, 0.8%, 0); }
  100% { transform: scale(1.05) translate3d(0, 0, 0); }
}
@keyframes ken-burns-pan-down {
  0%   { transform: scale(1.08) translate3d(0, -1%, 0); }
  100% { transform: scale(1.16) translate3d(-0.5%, 1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-layer.is-active { animation: none; transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide img { animation: none !important; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 23, 68, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(45, 212, 255, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5, 8, 16, 0.65) 0%, rgba(5, 8, 16, 0.55) 50%, rgba(5, 8, 16, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 24px 72px;
  max-width: 880px;
  margin: 0 auto;
  will-change: transform, opacity;
}

.hero-tags {
  margin: 0 auto;
  max-width: 700px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-3);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--t-w);
  text-transform: uppercase;
  margin: 0 auto 32px;
}
.hero-title-lead {
  display: block;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
  margin-bottom: 12px;
}
.hero-title-sub {
  display: block;
  font-size: clamp(1.5rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-title .accent {
  display: inline;
}
.hero-title .accent {
  background: linear-gradient(120deg, var(--red) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.3125rem);
  font-weight: 400;
  color: var(--t-2);
  letter-spacing: 0;
  margin: 0 auto 48px;
  max-width: 600px;
  line-height: 1.65;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--t-4);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--t-4) 0%, transparent 100%);
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   TRUST BAR — under hero
   ============================================ */

.trust-bar {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 8px 12px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(255, 23, 68, 0.18) 0%, rgba(45, 212, 255, 0.14) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--t-w);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px rgba(255, 23, 68, 0.18);
  transition: transform 0.4s var(--ease-spx), box-shadow 0.4s var(--ease);
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-item:hover .trust-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 30px rgba(45, 212, 255, 0.35);
}
.trust-item-lbl {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--t-w);
  line-height: 1.2;
}
.trust-item-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-4);
}
.trust-sep { color: var(--t-4); font-weight: 500; padding: 0 4px; }
.trust-item-num {
  font-size: clamp(1.25rem, 1.7vw, 1.625rem);
  font-weight: 800;
  color: var(--t-w);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   SECTION — base
   ============================================ */

.section {
  padding: 130px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.section--tight { padding: 100px 0; }
.section--wide { padding: 180px 0; }

/* Force inner blocks to span the full section width inside flex column */
.section > .section-head,
.solutions-grid,
.products-grid,
.projects-grid,
.why-grid,
.service-inner,
.faq-list,
.final-cta-inner,
.delivery-inner {
  width: 100%;
}

.section-head {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 24px;
}
.section-head--left {
  text-align: left;
  margin-left: 48px;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.875rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--t-w);
  text-transform: uppercase;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.section-sub {
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  color: var(--t-2);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}
.section-head--left .section-sub { margin: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================
   HOVEDLØSNINGER — 3 store kort
   ============================================ */

.solutions {
  background: var(--bg-0);
}
.solutions-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sol-card {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.6s var(--ease-spx), border-color 0.4s var(--ease), box-shadow 0.6s var(--ease-spx), background 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  will-change: transform;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.35);
}
.sol-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.sol-card-img img,
.sol-card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-spx);
  display: block;
}
.sol-card:hover .sol-card-img video { transform: scale(1.04); }
.sol-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 18, 32, 0.85) 100%);
}
.sol-card:hover .sol-card-img img { transform: scale(1.05); }
.sol-card-body {
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sol-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.35) 0%, transparent 35%, transparent 65%, rgba(45, 212, 255, 0.30) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.sol-card:hover {
  transform: translateY(-8px);
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 23, 68, 0.18),
    0 0 120px rgba(45, 212, 255, 0.10);
}
.sol-card:hover::before { opacity: 1; }
.sol-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  top: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 23, 68, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease-spx);
  pointer-events: none;
  z-index: 0;
}
.sol-card:hover::after { opacity: 0.7; transform: scale(1.15); }
@keyframes glass-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.08); }
}

.sol-card-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 28px;
}
.sol-card h3 {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-w);
  margin-bottom: 16px;
  text-transform: uppercase;
  line-height: 1.1;
}
.sol-card p {
  font-size: 1rem;
  color: var(--t-2);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}

/* ============================================
   TOTALLEVERANSE — image left / text right
   ============================================ */

.delivery {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.delivery-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: center;
}
.delivery-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--t-w);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.delivery-content p {
  font-size: 1.0625rem;
  color: var(--t-1);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}
.delivery-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
.delivery-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--t-1);
}
.delivery-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 23, 68, 0.6);
}
.delivery-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 50px rgba(0, 0, 0, 0.5);
}
.delivery-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-spx);
}
.delivery-visual:hover img { transform: scale(1.04); }
.delivery-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 60%, rgba(45, 212, 255, 0.12) 100%);
  pointer-events: none;
}

/* ============================================
   FARENA — cinematic premium midtpunkt
   ============================================ */

.farena {
  position: relative;
  padding: 180px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background: var(--bg-1);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.farena > .farena-inner { width: 100%; }
.farena-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: saturate(115%) contrast(108%);
}
.farena-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(45, 212, 255, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, rgba(5, 8, 16, 0.55) 0%, rgba(5, 8, 16, 0.70) 55%, rgba(5, 8, 16, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.farena-inner { z-index: 2; }

/* Generic section background image */
.section.has-bg,
.final-cta.has-bg { position: relative; isolation: isolate; }
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(105%) contrast(105%);
}
.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.82) 0%, rgba(5, 8, 16, 0.88) 50%, rgba(5, 8, 16, 0.95) 100%);
  pointer-events: none;
}
.has-bg > *:not(.section-bg):not(.section-bg-overlay) { position: relative; z-index: 2; }
.farena-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(45, 212, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 23, 68, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  will-change: transform;
}
.farena-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(45, 212, 255, 0.10) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(255, 23, 68, 0.06) 0%, transparent 30%);
  filter: blur(60px);
  animation: farena-drift 16s ease-in-out infinite;
}

@keyframes farena-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -10px); }
}

.farena-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.farena-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.farena-title {
  font-size: clamp(2rem, 6vw, 4.75rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--t-w);
  text-transform: uppercase;
  margin-bottom: 24px;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.farena-title .accent {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.farena-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  color: var(--t-2);
  line-height: 1.55;
  max-width: 740px;
  margin: 0 auto 56px;
}

.farena-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 auto 56px;
  max-width: 900px;
}
.farena-bullet {
  border-top: 1px solid var(--border-strong);
  padding-top: 22px;
  text-align: center;
}
.farena-bullet-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--t-w);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1;
}
.farena-bullet-lbl {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--t-2);
  letter-spacing: 0.02em;
}

.farena-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PRODUKTER — 2x2 store kort
   ============================================ */

.products {
  background: var(--bg-0);
}
.products-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.products-grid > .product-card { min-height: 460px; }

.product-card {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  transition: transform 0.6s var(--ease-spx), border-color 0.4s var(--ease), box-shadow 0.6s var(--ease-spx);
  will-change: transform;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.35);
}
.product-card-visual,
.product-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-spx);
  will-change: transform;
}
.product-card-img img,
.product-card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card:hover .product-card-img { transform: scale(1.06); }
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(45, 212, 255, 0.20),
    0 0 120px rgba(255, 23, 68, 0.10);
}
.product-card:hover .product-card-visual { transform: scale(1.08); }

.product-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 80%);
}

.product-visual--1 {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(45, 212, 255, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 80%, rgba(255, 23, 68, 0.28) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg-4) 0%, var(--bg-1) 100%);
}
.product-visual--2 {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 23, 68, 0.40) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(45, 212, 255, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg-3) 0%, var(--bg-0) 100%);
}
.product-visual--3 {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(45, 212, 255, 0.34) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 23, 68, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg-2) 0%, var(--bg-4) 100%);
}
.product-visual--4 {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(255, 23, 68, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(45, 212, 255, 0.26) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-3) 100%);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 16, 0.95) 0%, rgba(5, 8, 16, 0.55) 45%, rgba(5, 8, 16, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}
.product-card-content { z-index: 2; }

.product-card-content {
  position: relative;
  z-index: 2;
}
.product-card-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.product-card h3 {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-w);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.product-card p {
  font-size: 1rem;
  color: var(--t-1);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 440px;
}

/* ============================================
   PROSJEKTER — 2 store cinematic kort
   ============================================ */

.projects {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.projects-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.project-card {
  position: relative;
  height: 560px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  transition: transform 0.6s var(--ease-spx), border-color 0.4s var(--ease), box-shadow 0.6s var(--ease-spx);
  will-change: transform;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.35);
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(45, 212, 255, 0.25),
    0 0 120px rgba(255, 23, 68, 0.10);
}
.project-visual {
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease-spx);
  will-change: transform;
  overflow: hidden;
}
.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card:hover .project-visual { transform: scale(1.06); }

.project-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 80%);
}

.proj-v--1 {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(45, 212, 255, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(255, 23, 68, 0.24) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg-4) 0%, var(--bg-0) 100%);
}
.proj-v--2 {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 23, 68, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 75%, rgba(45, 212, 255, 0.24) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg-3) 0%, var(--bg-1) 100%);
}
.proj-v--3 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(45, 212, 255, 0.34) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 20%, rgba(255, 23, 68, 0.22) 0%, transparent 50%),
    linear-gradient(160deg, var(--bg-2) 0%, var(--bg-4) 100%);
}
.proj-v--4 {
  background:
    radial-gradient(ellipse at 40% 40%, rgba(255, 23, 68, 0.34) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(45, 212, 255, 0.26) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-3) 100%);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 16, 0.97) 0%, rgba(5, 8, 16, 0.55) 45%, rgba(5, 8, 16, 0.10) 90%);
  z-index: 1;
}

.project-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px;
  z-index: 2;
}
.project-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.project-meta-item {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.project-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t-w);
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.1;
}
.project-card p {
  font-size: 1rem;
  color: var(--t-1);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 20px;
}

/* ============================================
   SERVICE — 2-kolonner med stort bilde + tekst
   ============================================ */

.service {
  background: var(--bg-0);
}
.service-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}
.service-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 50px rgba(0, 0, 0, 0.5);
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-spx);
}
.service-visual:hover img { transform: scale(1.04); }
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(5, 8, 16, 0.75) 100%),
    linear-gradient(120deg, transparent 60%, rgba(255, 23, 68, 0.12) 100%);
  pointer-events: none;
}

.service-content { padding-right: 24px; }
.service-content h2 {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--t-w);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.service-content p {
  font-size: 1.0625rem;
  color: var(--t-1);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-list {
  list-style: none;
  margin: 28px 0 36px;
  padding: 0;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--t-1);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   HVORFOR OSS — 4 små trust-kort
   ============================================ */

.why {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.why-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 28px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease-spx), box-shadow 0.5s var(--ease-spx), background 0.4s var(--ease);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.3);
}
.why-card::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  top: -40px;
  right: -40px;
  background: radial-gradient(circle, rgba(45, 212, 255, 0.20) 0%, transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.why-card:hover {
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(45, 212, 255, 0.18);
}
.why-card:hover::after { opacity: 1; }
.why-card-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--red) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1;
}
.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--t-w);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--t-2);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   FAQ — accordion
   ============================================ */

.faq {
  background: var(--bg-0);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 26px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--t-w);
  letter-spacing: -0.005em;
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--red); }
.faq-q-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.3s var(--ease-spx);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 24px;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-spx);
}
.faq-a-inner {
  padding: 0 0 26px;
  font-size: 1rem;
  color: var(--t-2);
  line-height: 1.75;
  max-width: 720px;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  position: relative;
  background: var(--bg-0);
  padding: 140px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(255, 23, 68, 0.12) 0%, rgba(45, 212, 255, 0.06) 35%, transparent 65%);
  pointer-events: none;
  animation: cta-pulse 10s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.75; }
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}
.final-cta h2 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--t-w);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.final-cta p {
  font-size: 1.1875rem;
  color: var(--t-2);
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact cards grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 48px auto 40px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-border);
  color: var(--t-w);
  transition: transform 0.4s var(--ease-spx), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.4);
}
a.contact-card:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(45, 212, 255, 0.22);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(255, 23, 68, 0.20) 0%, rgba(45, 212, 255, 0.16) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--t-w);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 0 22px rgba(255, 23, 68, 0.18);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-lbl {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-3);
}
.contact-card-val {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--t-w);
  line-height: 1.3;
}

/* Credentials — godkjenningslogoer */
.credentials {
  background: var(--bg-1);
  padding: 72px 0 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credentials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.credentials-lbl {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--t-2);
  margin-bottom: 40px;
}
.credentials-lbl::before,
.credentials-lbl::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--border-strong);
  vertical-align: middle;
  margin: 0 14px;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.credential-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  width: 100%;
  padding: 20px 24px;
  border-radius: 18px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 22px rgba(0, 0, 0, 0.3);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.5s var(--ease-spx), box-shadow 0.5s var(--ease-spx);
}
.credential-item:hover {
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(45, 212, 255, 0.18);
}
.credential-item img {
  max-height: 92px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-1);
  padding: 80px 0 36px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand p {
  margin-top: 18px;
  font-size: 0.875rem;
  color: var(--t-3);
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-w);
  margin-bottom: 22px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9375rem;
  color: var(--t-2);
  margin-bottom: 10px;
  line-height: 1.6;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--t-w); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--t-5);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  font-size: 0.75rem;
  color: var(--t-5);
  transition: color 0.2s var(--ease);
}
.footer-legal a:hover { color: var(--t-2); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-spx), transform 1s var(--ease-spx);
}
.reveal.visible {
  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; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.1s var(--ease-spx), transform 1.1s var(--ease-spx);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

[data-parallax] { will-change: transform; }

/* ============================================
   RESPONSIVE — desktop tablet
   ============================================ */

@media (max-width: 1200px) {
  .nav-inner { padding: 0 32px; }
  .container, .solutions-grid, .products-grid, .projects-grid, .why-grid, .service-inner, .trust-inner, .footer-inner, .delivery-inner { padding-left: 32px; padding-right: 32px; }
  .farena-inner { padding: 0 32px; }
  .faq-list { padding: 0 32px; }
}

@media (max-width: 1024px) {
  .section { padding: 110px 0; }
  .farena { padding: 130px 0; }
  .section-head { margin-bottom: 60px; }

  .solutions-grid { grid-template-columns: 1fr; gap: 16px; }
  .products-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
  .products-grid > .product-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .projects-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .hero-scroll { display: none; }
  .service-inner { grid-template-columns: 1fr; gap: 56px; }
  .service-visual { aspect-ratio: 16 / 10; }
  .service-content { padding-right: 0; }

  .delivery-inner { grid-template-columns: 1fr; gap: 48px; }
  .delivery-visual { aspect-ratio: 16 / 10; }

  .farena-bullets { gap: 24px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 22px; gap: 16px; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 16, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.25rem; font-weight: 500; }
  .nav-links a::after { display: none; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: 90vh; }
  .hero-content { padding: 60px 22px; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-cta .btn { width: 100%; }
  .hero-tags { letter-spacing: 0.12em; font-size: 0.7rem; line-height: 1.8; max-width: 100%; padding: 0 8px; }

  .section, .section--tight, .section--wide { padding: 90px 0; min-height: auto; }
  .farena { padding: 110px 0; min-height: auto; }
  .final-cta { min-height: auto; }

  .section-head { margin-bottom: 56px; padding: 0 22px; }
  .container, .solutions-grid, .products-grid, .projects-grid, .why-grid, .service-inner, .trust-inner, .footer-inner, .farena-inner, .faq-list, .final-cta-inner, .delivery-inner { padding-left: 22px; padding-right: 22px; }

  .sol-card { min-height: auto; }
  .sol-card-body { padding: 32px 28px 36px; }
  .product-card { padding: 36px 28px; min-height: 380px; }
  .project-card { height: 480px; }
  .project-content { padding: 36px 28px; }

  .farena-bullets { grid-template-columns: 1fr; gap: 20px; }
  .farena-cta { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .farena-cta .btn { width: 100%; }

  .why-grid { grid-template-columns: 1fr; gap: 12px; }

  .final-cta { padding: 110px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; max-width: 420px; margin: 32px auto; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .credentials { padding: 48px 0 60px; }
  .credentials-inner { padding: 0 22px; }
  .final-cta-buttons { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .final-cta-buttons .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .trust-inner { gap: 22px; }
}

@media (max-width: 430px) {
  html { font-size: 15px; }
  .nav-inner { padding: 0 18px; }
  .hero-title { letter-spacing: -0.02em; }
  .hero-title-lead { white-space: normal; font-size: 1.5rem; line-height: 1.15; }
  .hero-title-sub { font-size: 1.25rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 36px; }
  .section, .section--tight, .section--wide { padding: 76px 0; }
  .farena { padding: 96px 0; }
  .section-head { margin-bottom: 44px; padding: 0 18px; }
  .container, .solutions-grid, .products-grid, .projects-grid, .why-grid, .service-inner, .trust-inner, .footer-inner, .farena-inner, .faq-list, .final-cta-inner, .delivery-inner { padding-left: 18px; padding-right: 18px; }

  .sol-card-body { padding: 28px 22px 32px; }
  .product-card { padding: 32px 22px; }
  .project-card { height: 420px; }
  .project-content { padding: 28px 22px; }
  .why-card { padding: 28px 22px; }
  .trust-bar { padding: 28px 0; }

  .trust-inner { grid-template-columns: 1fr 1fr; gap: 22px; }
  .trust-item-num { font-size: 1.5rem; }
}

/* ============================================
   FOCUS, SELECTION, MOTION
   ============================================ */

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--red); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}


/* ============================================================
   FORSIDE FULL-BREDDE FIX (Isbat audit 2026-05-15)
   GeneratePress #page.grid-container har max-width:1440px som klemmer
   forsiden. Tving fullbredde på hjem-siden slik at hero + seksjoner
   får riktig contractor-design (full viewport).
   ============================================================ */
body.home #page.site,
body.home #page.grid-container,
body.home #page.container,
body.page-id-1009212 #page.site,
body.page-id-1009212 #page.grid-container,
body.page-id-1009212 #page.container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.home .site-content,
body.home .content-area,
body.home .site-main,
body.home .inside-article,
body.home article.page,
body.page-id-1009212 .site-content,
body.page-id-1009212 .content-area,
body.page-id-1009212 .site-main,
body.page-id-1009212 .inside-article,
body.page-id-1009212 article.page {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Hero og full-bleed seksjoner kan ekspandere ut til viewport */
body.home .hero,
body.home .credentials,
body.home .delivery,
body.home .farena,
body.home .final-cta,
body.home .why,
body.page-id-1009212 .hero,
body.page-id-1009212 .credentials,
body.page-id-1009212 .delivery,
body.page-id-1009212 .farena,
body.page-id-1009212 .final-cta,
body.page-id-1009212 .why {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  left: 0 !important;
  right: 0 !important;
  position: relative !important;
}
/* Innholdsseksjoner: sentrert med god side-padding på wide skjermer */
body.home .section,
body.page-id-1009212 .section {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* Hero-tittel: meget tett pakkning mellom lead og sub (audit 2026-05-15 v3) */
.hero .hero-title { line-height: 0.9 !important; }
.hero .hero-title-lead { margin: 0 !important; line-height: 0.9 !important; display: block; padding: 0 !important; }
.hero .hero-title-sub { display: block !important; margin: -0.3em 0 0 !important; line-height: 0.9 !important; padding: 0 !important; }


/* ============================================================
   FINAL CTA — REDESIGN 2026-05-15 (Kontakt fagmiljøet)
   ============================================================ */
.final-cta {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
  padding: clamp(80px, 10vw, 160px) clamp(24px, 4vw, 72px);
  background: linear-gradient(180deg, #040816 0%, #0a1428 100%);
  overflow: hidden;
  box-sizing: border-box;
}
.final-cta .section-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.final-cta .section-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22;
  filter: blur(2px) saturate(1.1);
}
.final-cta .section-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(255, 23, 68, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(45, 212, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(4, 8, 22, 0.7) 0%, rgba(4, 8, 22, 0.9) 100%);
}
.final-cta-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px);
}

/* Head (eyebrow + h2 + lead) */
.final-cta .cta-head { text-align: center; }
.final-cta .cta-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255, 23, 68, 0.14);
  border: 1px solid rgba(255, 23, 68, 0.35);
  color: #ffb3c0;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 24px;
}
.final-cta .cta-head .eyebrow::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff1744;
  box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.55);
  animation: ctaDot 2.2s infinite;
}
@keyframes ctaDot { 0% {box-shadow:0 0 0 0 rgba(255,23,68,.55)} 70% {box-shadow:0 0 0 12px rgba(255,23,68,0)} 100% {box-shadow:0 0 0 0 rgba(255,23,68,0)} }
.final-cta .cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.02; letter-spacing: -0.025em;
  color: #f8fbff; margin: 0 0 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.final-cta .cta-title .accent {
  background: linear-gradient(135deg, #ff1744 0%, #ff6b8a 50%, #2dd4ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.final-cta .cta-lead {
  max-width: 680px; margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.65;
  color: #d7e2ee;
}

/* Trust-band: 4 markante tall */
.final-cta .cta-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 880px; margin: 0 auto;
}
.final-cta .cta-trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 22px 16px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.final-cta .cta-trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 255, 0.35);
}
.final-cta .cta-trust-item strong {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem); font-weight: 900;
  background: linear-gradient(135deg, #2dd4ff 0%, #7be5ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1;
}
.final-cta .cta-trust-item span {
  font-size: 11px; color: #aebfd1;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 720px) { .final-cta .cta-trust { grid-template-columns: repeat(2, 1fr); } }

/* Kontakt-kort grid */
.final-cta .cta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .final-cta .cta-grid { grid-template-columns: 1fr; } }
.final-cta .cta-card {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 24px 28px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  color: #f8fbff;
  text-decoration: none;
  transition: transform .3s, border-color .3s, box-shadow .3s, background .3s;
  overflow: hidden;
}
.final-cta .cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.12) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.final-cta .cta-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 23, 68, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 23, 68, 0.15) inset;
  background: rgba(15, 23, 42, 0.85);
}
.final-cta .cta-card:hover::before { opacity: 1; }
.final-cta .cta-card--static { cursor: default; }
.final-cta .cta-card--static:hover { transform: none; border-color: rgba(255,255,255,.12); }

.final-cta .cta-card-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.2), rgba(255, 23, 68, 0.05));
  border: 1px solid rgba(255, 23, 68, 0.3);
  border-radius: 14px;
  color: #ff6b8a;
  transition: color .3s, border-color .3s;
}
.final-cta .cta-card--email .cta-card-icon {
  background: linear-gradient(135deg, rgba(45, 212, 255, 0.2), rgba(45, 212, 255, 0.05));
  border-color: rgba(45, 212, 255, 0.3);
  color: #7be5ff;
}
.final-cta .cta-card--static .cta-card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}
.final-cta .cta-card-icon svg { width: 28px; height: 28px; }
.final-cta .cta-card-body {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.final-cta .cta-card-lbl {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #aebfd1;
}
.final-cta .cta-card-val {
  font-size: clamp(15px, 1.2vw, 17px); font-weight: 800; color: #f8fbff;
  line-height: 1.3; word-break: break-word;
}
.final-cta .cta-card-meta {
  font-size: 11px; color: #94a3b8; margin-top: 4px;
}
.final-cta .cta-card-arrow {
  flex-shrink: 0;
  color: #ff6b8a; font-size: 22px; font-weight: 700;
  transition: transform .3s, color .3s;
}
.final-cta .cta-card--email .cta-card-arrow { color: #7be5ff; }
.final-cta .cta-card:hover .cta-card-arrow { transform: translateX(4px); }

/* Actions: store, prominente knapper */
.final-cta .cta-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 8px;
}
.final-cta .btn--lg {
  padding: 18px 36px; font-size: 16px; font-weight: 800; letter-spacing: 0.02em;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .25s, box-shadow .25s, background .25s, border-color .25s;
}
.final-cta .btn--primary {
  background: linear-gradient(135deg, #ff1744 0%, #cc0f35 100%);
  color: #fff; border: none;
  box-shadow: 0 14px 32px rgba(255, 23, 68, 0.35);
}
.final-cta .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(255, 23, 68, 0.5);
}
.final-cta .btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fbff;
  border: 1px solid rgba(125, 211, 252, 0.4);
  backdrop-filter: blur(12px);
}
.final-cta .btn--secondary:hover {
  transform: translateY(-3px);
  background: rgba(45, 212, 255, 0.14);
  border-color: rgba(125, 211, 252, 0.7);
}

/* Fineprint */
.final-cta .cta-fineprint {
  text-align: center; color: #94a3b8;
  font-size: 13px; line-height: 1.6;
  max-width: 720px; margin: 0 auto;
}

/* ============================================================
   FORSIDE LAYOUT-FIKS (Isbat audit 2026-05-15)
   1) Fjern wpautop-tomme-<p> som lager 25px gliper mellom seksjoner
   2) Slå av hyphens-auto for store overskrifter ("FLERBRUKSANLEGG HE-TER")
   ============================================================ */

/* Skjul tomme paragraf-wrappers som WP injicerer mellom seksjoner */
body.home .entry-content > p:empty,
body.page-id-1009212 .entry-content > p:empty {
  display: none !important;
  margin: 0 !important;
  height: 0 !important;
}
/* Sikre at seksjoner alltid sitter tett (ingen padding-collapse-bug + ingen whitespace-tekstnoder mellom dem teller) */
body.home .entry-content,
body.page-id-1009212 .entry-content {
  font-size: 0 !important;
  line-height: 0 !important;
}
body.home .entry-content > section,
body.page-id-1009212 .entry-content > section,
body.home .entry-content > main,
body.page-id-1009212 .entry-content > main {
  margin: 0 !important;
  font-size: 1rem;
  line-height: 1.5;
}

/* Slå av orddeling for hero, FARENA-tittel og alle section-headings */
.hero-title,
.hero-title-lead,
.hero-title-sub,
.farena-title,
.section-title,
.cta-title,
.delivery-content h2,
.service-content h2,
.final-cta .cta-title {
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  text-wrap: balance;
}

/* ============================================================
   HERO OVERLAY FIX (Isbat audit 2026-05-15)
   Original hero-overlay har rod radial-gradient i bunnen som gjør
   CTA-knappene falmede og lager en lilla "stripe" mellom hero og
   neste seksjon. Erstatt med subtil mørk vignette uten farger.
   ============================================================ */
.hero .hero-overlay {
  background:
    linear-gradient(180deg,
      rgba(4, 8, 22, 0.3) 0%,
      rgba(4, 8, 22, 0.4) 40%,
      rgba(4, 8, 22, 0.85) 100%) !important;
}
/* Litt mer kontrast bak hero-innhold så tekst og knapper blir tydelige */
.hero .hero-content {
  position: relative;
  z-index: 3 !important;
}

/* ============================================================
   BANEVELGER PROMO (audit 2026-05-15)
   Reklame-seksjon for kalkulator-banevelger øverst før final-CTA
   ============================================================ */
.banevelger-promo {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: 0;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 72px);
  background: linear-gradient(180deg, #0a1428 0%, #040816 100%);
  overflow: hidden;
  box-sizing: border-box;
  font-size: 1rem; line-height: 1.5;
}
.banevelger-promo .section-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.banevelger-promo .section-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.12;
  filter: blur(3px) saturate(1.2);
}
.banevelger-promo .section-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(45, 212, 255, 0.15), transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(22, 163, 74, 0.12), transparent 60%);
}

.banevelger-promo .banevelger-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .banevelger-promo .banevelger-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* === COPY-SIDE === */
.banevelger-promo .banevelger-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(45, 212, 255, 0.12);
  border: 1px solid rgba(45, 212, 255, 0.4);
  color: #7be5ff;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 24px;
}
.banevelger-promo .banevelger-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2dd4ff;
  box-shadow: 0 0 0 0 rgba(45, 212, 255, 0.55);
  animation: banevelgerDot 2.2s infinite;
}
@keyframes banevelgerDot { 0% {box-shadow:0 0 0 0 rgba(45,212,255,.55)} 70% {box-shadow:0 0 0 12px rgba(45,212,255,0)} 100% {box-shadow:0 0 0 0 rgba(45,212,255,0)} }
.banevelger-promo .banevelger-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900; line-height: 1.02; letter-spacing: -0.025em;
  color: #f8fbff; margin: 0 0 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.banevelger-promo .accent-ice {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.banevelger-promo .accent-grass {
  background: linear-gradient(135deg, #16a34a 0%, #14532d 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.banevelger-promo .banevelger-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: #d7e2ee;
  margin: 0 0 28px;
  max-width: 56ch;
}
.banevelger-promo .banevelger-features {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 10px;
}
.banevelger-promo .banevelger-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #e2e8f0;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.banevelger-promo .check-ice,
.banevelger-promo .check-grass {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-weight: 900; font-size: 12px; color: #fff;
  flex-shrink: 0;
}
.banevelger-promo .check-ice { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.banevelger-promo .check-grass { background: linear-gradient(135deg, #16a34a, #14532d); }

.banevelger-promo .banevelger-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.banevelger-promo .btn--lg {
  padding: 16px 32px; font-size: 15px; font-weight: 800; letter-spacing: 0.02em;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.banevelger-promo .btn--primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff; border: none;
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.35);
}
.banevelger-promo .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(2, 132, 199, 0.5);
}
.banevelger-promo .btn-arrow {
  display: inline-block;
  transition: transform .25s;
}
.banevelger-promo .btn--primary:hover .btn-arrow { transform: translateX(4px); }
.banevelger-promo .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fbff;
  border: 1px solid rgba(125, 211, 252, 0.4);
}
.banevelger-promo .btn--ghost:hover {
  background: rgba(45, 212, 255, 0.14);
  border-color: rgba(125, 211, 252, 0.7);
  transform: translateY(-3px);
}

/* === PREVIEW-SIDE (mock-up av kalkulatoren) === */
.banevelger-promo .banevelger-preview {
  position: relative;
  perspective: 1200px;
}
.banevelger-promo .banevelger-preview-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(45, 212, 255, 0.08) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate3d(1, 1, 0, -3deg);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.banevelger-promo .banevelger-preview-card:hover {
  transform: rotate3d(0, 0, 0, 0deg) scale(1.02);
}
.banevelger-promo .preview-head {
  display: flex; justify-content: space-between; align-items: center;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.banevelger-promo .preview-badge {
  display: inline-flex; align-items: center;
  padding: 5px 12px;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(45, 212, 255, 0.35);
  border-radius: 999px;
  color: #7be5ff;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 10px; letter-spacing: 0.14em;
}
.banevelger-promo .preview-status {
  display: inline-flex; align-items: center; gap: 6px;
  color: #94a3b8; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.banevelger-promo .status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  animation: statusPulse 1.8s infinite;
}
@keyframes statusPulse { 0%,100% {opacity:1} 50% {opacity:0.5} }

.banevelger-promo .preview-tabs {
  display: flex; gap: 8px;
  padding: 6px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 999px;
  margin: 0 0 20px;
  width: max-content;
}
.banevelger-promo .preview-tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  color: #94a3b8;
}
.banevelger-promo .preview-tab.is-active {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #fff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.banevelger-promo .preview-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 0 0 16px;
}
.banevelger-promo .preview-cell {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.banevelger-promo .preview-label {
  font-size: 10px; color: #94a3b8;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.banevelger-promo .preview-value {
  font-size: 15px; color: #f8fbff; font-weight: 700;
}
.banevelger-promo .preview-total {
  padding: 20px 22px;
  background: linear-gradient(135deg, #040816 0%, #0a1428 100%);
  border: 1px solid rgba(45, 212, 255, 0.25);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  overflow: hidden;
}
.banevelger-promo .preview-total::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #38bdf8, #16a34a);
  border-radius: 16px 16px 0 0;
}
.banevelger-promo .preview-total-label {
  font-size: 10px; color: #94a3b8;
  font-weight: 800; letter-spacing: 0.14em;
}
.banevelger-promo .preview-total-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(22px, 2.6vw, 32px);
  color: #fff; font-weight: 900;
}
.banevelger-promo .preview-disclaimer {
  margin: 14px 0 0;
  font-size: 11px;
  color: #64748b;
  font-style: italic;
}

/* ============================================================
   MOBILE STABILITY FIX (Isbat audit 2026-05-24)
   Reduserer repaint/scroll-jank i mobilforsiden uten å endre desktop.
   ============================================================ */
@media (max-width: 768px), (pointer: coarse) {
  html { scroll-behavior: auto !important; }

  body.home,
  body.page-id-1009212 {
    overflow-x: hidden;
    overflow-x: clip;
  }

  body.home .hero,
  body.home .credentials,
  body.home .delivery,
  body.home .farena,
  body.home .final-cta,
  body.home .why,
  body.home .banevelger-promo,
  body.page-id-1009212 .hero,
  body.page-id-1009212 .credentials,
  body.page-id-1009212 .delivery,
  body.page-id-1009212 .farena,
  body.page-id-1009212 .final-cta,
  body.page-id-1009212 .why,
  body.page-id-1009212 .banevelger-promo {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.home .hero,
  body.page-id-1009212 .hero {
    min-height: 100svh !important;
    contain: paint;
  }

  body.home .hero-content,
  body.page-id-1009212 .hero-content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  body.home .hero-slider,
  body.home .hero-layer,
  body.home .hero-bg,
  body.page-id-1009212 .hero-slider,
  body.page-id-1009212 .hero-layer,
  body.page-id-1009212 .hero-bg {
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
  }

  body.home .hero-layer,
  body.home .hero-layer.is-active,
  body.page-id-1009212 .hero-layer,
  body.page-id-1009212 .hero-layer.is-active {
    animation: none !important;
    filter: none !important;
  }

  body.home .hero-layer.is-active,
  body.page-id-1009212 .hero-layer.is-active {
    opacity: 1 !important;
  }

  body.home .hero .hero-overlay,
  body.page-id-1009212 .hero .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(4, 8, 22, 0.62) 0%,
        rgba(4, 8, 22, 0.72) 48%,
        rgba(4, 8, 22, 0.94) 100%) !important;
  }

  body.home [data-parallax],
  body.home .reveal,
  body.home .reveal-scale,
  body.page-id-1009212 [data-parallax],
  body.page-id-1009212 .reveal,
  body.page-id-1009212 .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  body.home .hero-scroll,
  body.home .final-cta .cta-head .eyebrow::before,
  body.home .banevelger-promo .banevelger-dot,
  body.home .banevelger-promo .status-dot,
  body.page-id-1009212 .hero-scroll,
  body.page-id-1009212 .final-cta .cta-head .eyebrow::before,
  body.page-id-1009212 .banevelger-promo .banevelger-dot,
  body.page-id-1009212 .banevelger-promo .status-dot {
    animation: none !important;
  }

  body.home .isbat-topbar,
  body.home .isbat-nav,
  body.home .nav,
  body.home .nav.scrolled,
  body.home .nav-links,
  body.home .btn--secondary,
  body.home .tlink,
  body.home .sol-card,
  body.home .product-card,
  body.home .project-card,
  body.home .why-card,
  body.home .final-cta .cta-trust-item,
  body.home .final-cta .cta-card,
  body.home .final-cta .btn--secondary,
  body.home .banevelger-promo .banevelger-preview-card,
  body.page-id-1009212 .isbat-topbar,
  body.page-id-1009212 .isbat-nav,
  body.page-id-1009212 .nav,
  body.page-id-1009212 .nav.scrolled,
  body.page-id-1009212 .nav-links,
  body.page-id-1009212 .btn--secondary,
  body.page-id-1009212 .tlink,
  body.page-id-1009212 .sol-card,
  body.page-id-1009212 .product-card,
  body.page-id-1009212 .project-card,
  body.page-id-1009212 .why-card,
  body.page-id-1009212 .final-cta .cta-trust-item,
  body.page-id-1009212 .final-cta .cta-card,
  body.page-id-1009212 .final-cta .btn--secondary,
  body.page-id-1009212 .banevelger-promo .banevelger-preview-card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}


/* ============================================================
   ISW MOBILE HERO STABILIZER (Isbat audit 2026-05-24)
   Stopper inline frontpage-slider og faste bakgrunnslag på mobil.
   ============================================================ */
@media (max-width: 768px), (pointer: coarse) {
  body.home .isw-page::before,
  body.home .isw-page::after,
  body.page-id-1009212 .isw-page::before,
  body.page-id-1009212 .isw-page::after {
    animation: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  body.home .isw-page::after,
  body.page-id-1009212 .isw-page::after {
    display: none !important;
  }

  body.home .isw-hero,
  body.page-id-1009212 .isw-hero {
    min-height: 100svh !important;
    overflow: hidden !important;
    contain: paint;
  }

  body.home .isw-hero__slide,
  body.page-id-1009212 .isw-hero__slide {
    animation: none !important;
    opacity: 0 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  body.home .isw-hero__slide:first-child,
  body.page-id-1009212 .isw-hero__slide:first-child {
    opacity: 1 !important;
  }

  body.home .isw-reveal,
  body.home .isw-reveal.is-visible,
  body.page-id-1009212 .isw-reveal,
  body.page-id-1009212 .isw-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  body.home .isw-hero__lead,
  body.home .isw-quick-card,
  body.page-id-1009212 .isw-hero__lead,
  body.page-id-1009212 .isw-quick-card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}


/* ISW mobile fixed-background cutoff (Isbat audit 2026-05-24) */
@media (max-width: 768px), (pointer: coarse) {
  body.home .isw-page::before,
  body.home .isw-page::after,
  body.page-id-1009212 .isw-page::before,
  body.page-id-1009212 .isw-page::after {
    display: none !important;
  }
}


/* ISW mobile drawer idle-animation cutoff (Isbat audit 2026-05-24) */
@media (max-width: 768px), (pointer: coarse) {
  body.home .isbat-drawer,
  body.home .isbat-drawer__panel,
  body.page-id-1009212 .isbat-drawer,
  body.page-id-1009212 .isbat-drawer__panel {
    animation: none !important;
    transition: none !important;
  }
}
