/* ==========================================================
   OVAKT — Stilark for hele nettsiden
   ========================================================== */

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

/* VARIABLER */
:root {
  --navy: #060e30;
  --navy-mid: #0d1a4a;
  --navy-light: #1a2760;
  --surface: #0b153f;
  --orange: #bb5200;
  --orange-light: #d96200;
  --blue: #1876d6;
  --blue-light: #2b8aef;
  --white: #e6f7ff;
  --white-dim: rgba(230,247,255,0.55);
  --white-faint: rgba(230,247,255,0.08);
  --border: rgba(230,247,255,0.12);
  --radius-card: 8px;
  --radius-pill: 999px;
}

/* GRUNNSTILER */
html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-light); }

body {
  font-family: 'Satoshi', sans-serif;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================
   NAVIGASJON
   ========================================================== */

nav {
  position: fixed;
  top: 24px; left: 24px; right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-pill {
  width: 100%;
  max-width: 1392px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 28px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn-pill {
  font-size: 14px;
  font-weight: 500;
  padding: 6.5px 24px;
}

.nav-actions .btn-pill-outline {
  padding: 5px 24px;
}

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.nav-hamburger:hover { background: var(--orange-light); }

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 1392px;
  margin-top: 10px;
  padding: 18px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-link {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  color: var(--white);
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-mobile-link:hover,
.nav-mobile-link:active { background: rgba(230,247,255,0.08); }

/* ==========================================================
   DELTE KOMPONENTER
   ========================================================== */

.inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  max-width: 600px;
}

.btn-primary,
.btn-pill {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: var(--orange);
  padding: 10.5px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  white-space: nowrap;
  display: inline-block;
  border: none;
}

.btn-primary:hover,
.btn-pill:hover { background: var(--orange-light); }

.btn-primary.btn-blue,
.btn-pill.btn-pill-blue {
  background: var(--blue);
  color: var(--navy);
}

.btn-primary.btn-blue:hover,
.btn-pill.btn-pill-blue:hover { background: var(--blue-light); }

.btn-pill-outline {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--white);
  padding: 9px 28px;
}

.btn-pill-outline:hover { background: rgba(187,82,0,0.12); }

.btn-secondary,
.btn-ghost {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-dim);
  text-decoration: none;
  text-align: center;
  padding: 10px;
  transition: color 0.2s;
}

.btn-secondary:hover,
.btn-ghost:hover { color: var(--white); }

.cta-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.cta-left h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 auto 16px;
  max-width: 520px;
}

.cta-left p {
  color: var(--white-dim);
  font-size: 16px;
  max-width: 440px;
  line-height: 1.7;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
}

.cta-note {
  width: 100%;
  font-size: 12px;
  color: var(--white-dim);
  text-align: center;
  opacity: 0.6;
  margin-top: 4px;
}

/* ==========================================================
   BUNNTEKST
   ========================================================== */

footer {
  padding: 56px 64px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

footer a, footer span {
  font-size: 13px;
  color: var(--white-dim);
  text-decoration: none;
}

footer a:hover { color: var(--white); }

.footer-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.footer-group:last-child { justify-content: flex-end; }

.footer-placeholder { opacity: 0.55; font-style: italic; }

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 1; }

.footer-logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* ==========================================================
   FORSIDEN — index.html
   ========================================================== */

.page-index .hero {
  padding: 156px 64px 90px;
  max-width: 1392px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 64px;
  align-items: center;
}

.page-index .hero-label { margin-bottom: 20px; }

.page-index .hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.page-index .hero-sub {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Liten tillitsrad brukt nær CTA-knapper */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  column-gap: 22px;
  row-gap: 8px;
  margin-top: 24px;
}

.trust-strip span {
  position: relative;
  font-size: 13px;
  color: var(--white-dim);
  padding-left: 15px;
}

.trust-strip span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.page-index .hero-visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: inset 0 0 0 1px rgba(230,247,255,0.08);
}

.page-index .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ovakt er enkel andvendelig */
.usp-section {
  padding: 40px 64px 90px;
  max-width: 1392px;
  margin: 0 auto;
}

.usp-section .section-title { margin-bottom: 32px; }

.usp-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 56px 48px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 28px;
}

.usp-num {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: rgba(187,82,0,0.45);
  line-height: 1;
  margin-bottom: 22px;
}

.usp-col h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.usp-col p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.75;
}

.usp-more {
  display: block;
  width: max-content;
  margin-left: auto;
}

/* Hva krever loven av deg */
.law-section {
  padding: 40px 64px 100px;
  max-width: 1392px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.law-section p {
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 420px;
}

.law-points-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 12px 40px;
}

.law-points {
  list-style: none;
}

.law-points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.law-points li:last-child { border-bottom: none; }

.law-point-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.law-points li strong {
  display: block;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.law-points li p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* Funksjoner med produktbilde */
.feature-list-section {
  padding: 20px 64px 100px;
  max-width: 1392px;
  margin: 0 auto;
}

.feature-list-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-list-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: inset 0 0 0 1px rgba(230,247,255,0.08);
}

.feature-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-list-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
}

.feature-list-icon svg {
  width: 100%;
  height: 100%;
}

.feature-list h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-list p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
}

/* Ta kontakt */
.contact-cta {
  padding: 20px 64px 100px;
  max-width: 1392px;
  margin: 0 auto;
}

.contact-cta-inner {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 64px;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  box-shadow: inset 0 0 0 1px rgba(230,247,255,0.08);
}

.contact-cta-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.4;
}

.contact-cta-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,14,48,0.85) 0%, rgba(6,14,48,0.5) 45%, rgba(6,14,48,0.12) 100%);
}

.contact-cta-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.contact-cta-content h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-cta-content > p {
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
}

.contact-cta-form .form-group { margin-bottom: 20px; }

.contact-cta-form label {
  display: block;
  font-size: 13px;
  color: var(--white-dim);
  margin-bottom: 8px;
}

.contact-cta-form input,
.contact-cta-form textarea {
  width: 100%;
  max-width: 380px;
  background: rgba(11,21,63,0.72);
  border: 1px solid rgba(230,247,255,0.22);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-cta-form input:focus,
.contact-cta-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(187,82,0,0.15);
}

.contact-cta-form textarea { min-height: 110px; resize: vertical; }

.contact-cta-form .btn-pill { margin-top: 8px; border: none; cursor: pointer; }

/* Skjema-status og skjult honeypot-felt (deles av alle skjemaer) */
.form-response {
  display: none;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 14px;
}

.form-response.is-success,
.form-response.is-error { display: block; }

.form-response.is-success { color: var(--white); }
.form-response.is-error { color: #ff8a80; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================
   BRANSJESIDEN — ovakt-bransjer.html
   ========================================================== */

.bransjer-hero {
  padding: 156px 64px 40px;
  max-width: 820px;
}

.bransjer-hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.bransjer-hero p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}

.bransjer-grid-section {
  padding: 20px 64px 110px;
  max-width: 1392px;
  margin: 0 auto;
  position: relative;
}

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

.bransjer-card {
  position: relative;
}

/* Kortet: fast størrelse, kortet flytter seg aldri */
.bransjer-card-flip {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-card);
  transition: box-shadow 0.4s ease;
}

.bransjer-card-face-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.bransjer-card-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.bransjer-card-front {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.bransjer-card-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.bransjer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bransjer-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,14,48,0) 35%, rgba(6,14,48,0.75) 100%);
}

.bransjer-card-head {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  z-index: 1;
}

.bransjer-card-head h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
}

.bransjer-card-plus {
  all: unset;
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.2s ease;
}

.bransjer-card.open .bransjer-card-plus {
  transform: rotate(45deg);
  background: rgba(187,82,0,0.12);
}

/* Baksiden av kortet — vises ved hover på PC */
.bransjer-card-back {
  z-index: 1;
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.bransjer-card-back h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.bransjer-card-back p {
  color: var(--white-dim);
  font-size: 14px;
  line-height: 1.7;
}

.bransjer-card-back .bransjer-card-tag { align-self: flex-start; }

@media (hover: hover) and (pointer: fine) {
  .bransjer-card:hover .bransjer-card-front {
    opacity: 0;
    pointer-events: none;
  }

  .bransjer-card:hover .bransjer-card-back {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .bransjer-card:hover .bransjer-card-flip {
    box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  }
}

.bransjer-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

/* Nedtrekks-kortet — kun i bruk på berøringsskjermer (se JS) */
.bransjer-card-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.bransjer-card.open .bransjer-card-accordion {
  max-height: 480px;
}

.bransjer-card-accordion-inner {
  padding: 24px 4px 4px;
}

.bransjer-card-accordion-inner p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ==========================================================
   PRODUKTSIDEN — ovakt-produkt.html
   ========================================================== */

.page-produkt .hero {
  padding: 160px 64px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-produkt .hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 24px;
}

.page-produkt .hero p {
  color: var(--white-dim);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-visual { position: relative; }

.product-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.product-img-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.product-price-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.product-price {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-dim);
}

.product-buyout {
  font-size: 12px;
  color: var(--white-dim);
}

.product-vat {
  font-size: 11px;
  color: var(--white-dim);
  opacity: 0.7;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(187,82,0,0.1);
  border: 1px solid rgba(187,82,0,0.2);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.features-section {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.feature {
  padding: 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.feature h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature p {
  color: var(--white-dim);
  font-size: 14px;
  line-height: 1.7;
}

.box-section {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
  background: var(--navy-mid);
}

.box-section .section-title,
.box-section .section-label {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.box-section .section-title { margin-bottom: 32px; }

.box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.box-img {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
}

.box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.box-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.box-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.box-list li:last-child { border-bottom: none; }

.box-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}

.box-list li span {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.6;
}

.box-list li span strong { color: var(--white); }

.spec-section {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.spec {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.25s ease;
}

.spec:hover {
  border-color: rgba(230,247,255,0.22);
}

.spec-val {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.spec-label {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ==========================================================
   OM OSS-SIDEN — ovakt-om-oss.html
   ========================================================== */

.page-om-oss .hero {
  padding: 160px 64px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.page-om-oss .hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 32px;
}

.page-om-oss .hero p {
  color: var(--white-dim);
  font-size: 18px;
  line-height: 1.8;
  max-width: 640px;
}

.page-om-oss .cta-section { background: var(--navy); }

.story-section {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.story-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: inset 0 0 0 1px rgba(230,247,255,0.08);
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.story-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}

.story-section h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.story-section p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.story-section p strong { color: var(--white); }

.quote-section {
  background: var(--orange);
  padding: 80px 64px;
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.quote-author {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.quote-author strong { color: #fff; }

.values-section {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
}

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

.value {
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white-faint);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.value:hover {
  border-color: rgba(230,247,255,0.22);
  background: rgba(230,247,255,0.1);
}

.value-num {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(187,82,0,0.25);
  line-height: 1;
  margin-bottom: 20px;
}

.value h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.7;
}

.team-section {
  padding: 100px 64px;
  border-top: 1px solid var(--border);
  background: var(--navy-mid);
}

.team-section .section-title { margin-bottom: 48px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--navy-light);
  border-radius: var(--radius-card);
  box-shadow: inset 0 0 0 1px rgba(230,247,255,0.08);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

.team-name {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 8px;
}

.team-bio {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ==========================================================
   BESTILLINGSSIDEN — ovakt-kontakt.html
   ========================================================== */

.order-hero {
  padding: 156px 64px 40px;
  max-width: 900px;
}

.order-hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.order-hero h1 .accent { color: var(--orange); }

.order-hero p {
  color: var(--white-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

.order-section {
  padding: 20px 64px 100px;
  max-width: 1392px;
  margin: 0 auto;
}

.order-form-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(230,247,255,0.08);
}

.order-form-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.order-form-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.4;
}

.order-form-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,14,48,0.85) 0%, rgba(6,14,48,0.5) 45%, rgba(6,14,48,0.18) 100%);
}

.order-form {
  position: relative;
  z-index: 1;
  padding: 56px;
  max-width: 900px;
}

.order-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.order-form .form-group { margin-bottom: 24px; }

.order-form label {
  display: block;
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 8px;
}

.order-form input,
.order-form textarea {
  width: 100%;
  background: rgba(11,21,63,0.75);
  border: 1px solid rgba(230,247,255,0.25);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(187,82,0,0.15);
}

.order-form textarea { min-height: 140px; resize: vertical; }

.order-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 28px;
  font-size: 13px;
  color: var(--white-dim);
  cursor: pointer;
  max-width: 640px;
}

.order-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.order-form .btn-pill { border: none; cursor: pointer; }

.order-consent a,
.contact-consent a { color: var(--white); text-decoration: underline; }

/* ==========================================================
   PERSONVERNSIDEN — personvernerklaring.html
   ========================================================== */

.page-personvern .hero {
  padding: 160px 64px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.page-personvern .hero h1 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-personvern .hero p {
  color: var(--white-dim);
  font-size: 16px;
  line-height: 1.8;
  max-width: 640px;
}

.legal-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 64px 120px;
}

.legal-section h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
}

.legal-section h2:first-child { margin-top: 0; }

.legal-section p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-section a { color: var(--white); text-decoration: underline; }
.legal-section a:hover { color: var(--orange-light); }

/* ==========================================================
   COOKIE-SAMTYKKE
   ========================================================== */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 32px rgba(0,0,0,0.38);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p {
  flex: 1 1 320px;
  color: var(--white-dim);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner a { color: var(--white); text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner-actions button {
  font-family: 'Satoshi', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-accept-all {
  background: var(--orange);
  color: var(--navy);
  border: none;
}

.cookie-accept-all:hover { background: var(--orange-light); }

.cookie-accept-necessary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}

.cookie-accept-necessary:hover { border-color: var(--white-dim); }

/* ==========================================================
   RESPONSIVT DESIGN
   ========================================================== */

@media (max-width: 900px) {

  /* Nav */
  nav { top: 16px; left: 16px; right: 16px; }
  .nav-pill { padding: 10px 10px 10px 18px; }
  .nav-logo img { height: 45px; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* Footer */
  footer { padding: 40px 24px; flex-direction: column; gap: 20px; text-align: center; }
  .footer-group { flex-direction: column; gap: 8px; order: 2; }
  .footer-group:last-child { order: 3; }
  .footer-logo { order: 1; }

  /* CTA (produkt/om-oss) */
  .cta-section { flex-direction: column; padding: 60px 24px; }

  /* Forside */
  .page-index .hero { grid-template-columns: 1fr; padding: 120px 24px 50px; gap: 40px; }
  .page-index .hero-visual { aspect-ratio: 16/10; order: -1; }
  .usp-section { padding: 30px 24px 60px; }
  .usp-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 36px; }
  .law-section { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 60px; }
  .law-points-card { padding: 8px 28px; }
  .feature-list-section { padding: 10px 24px 60px; }
  .feature-list-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-list-img { aspect-ratio: 16/10; }
  .contact-cta { padding: 10px 24px 60px; }
  .contact-cta-inner { padding: 32px 24px; min-height: auto; }
  .contact-cta-content { max-width: none; }
  .contact-cta-form input, .contact-cta-form textarea { max-width: none; }

  /* Bransjer */
  .bransjer-hero { padding: 120px 24px 32px; }
  .bransjer-grid-section { padding: 10px 24px 70px; }
  .bransjer-grid { grid-template-columns: 1fr; }
  .bransjer-card-accordion-inner { padding: 22px 4px 4px; }

  /* Produkt */
  .page-produkt .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 48px; }
  .features-section, .box-section, .spec-section { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .box-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Om oss */
  .page-om-oss .hero { padding: 120px 24px 60px; }
  .story-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .quote-section { padding: 60px 24px; }
  .values-section, .team-section { padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Bestilling */
  .order-hero { padding: 120px 24px 24px; }
  .order-section { padding: 10px 24px 70px; }
  .order-form { padding: 32px 24px; }
  .order-form-row { grid-template-columns: 1fr; gap: 0; }

  /* Personvern */
  .page-personvern .hero { padding: 120px 24px 40px; }
  .legal-section { padding: 10px 24px 80px; }

  /* Cookie-banner */
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions button { flex: 1; }
}

@media (max-width: 480px) {

  /* Nav */
  nav { left: 10px; right: 10px; }
  .nav-pill { padding: 8px 8px 8px 12px; }
  .nav-logo img { height: 34px; }
}
