:root {
  --navy:          #0B2D45;
  --navy-deep:     #061A2A;
  --navy-soft:     #18415E;

  /* Norge: flagg-rødt som primær aksent */
  --red:           #BA0C2F;
  --red-bright:    #D81233;
  --red-deep:      #8E0822;
  --red-soft:      #FCE7EB;

  --ink:           #0F1A2E;
  --ink-soft:      #41526A;
  --line:          #DCE3EC;
  --paper:         #F4F6F9;
  --paper-warm:    #FAF6F2;
  --white:         #FFFFFF;
  --radius:        14px;
  --radius-sm:     8px;
  --shadow-sm:     0 1px 2px rgba(11, 45, 69, 0.06), 0 2px 8px rgba(11, 45, 69, 0.05);
  --shadow-md:     0 6px 18px rgba(11, 45, 69, 0.08), 0 12px 36px rgba(11, 45, 69, 0.06);
  --maxw:          1180px;
  --header-h:      72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin: 0 0 0.5em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.25rem, 4.6vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
a  { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  font-family: 'Figtree', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(186,12,47,0.28); text-decoration: none; color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); text-decoration: none; color: var(--white); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper); text-decoration: none; }

/* ========== LOGO ========== */
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand:hover { text-decoration: none; }
.brand img { height: 30px; width: auto; display: block; }
.brand--light img { filter: brightness(0) invert(1); }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.nav > ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav > ul > li > a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav > ul > li > a:hover, .nav > ul > li > a.is-active { color: var(--red); text-decoration: none; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.has-dropdown > a .caret {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.has-dropdown:hover > a .caret,
.has-dropdown:focus-within > a .caret { transform: rotate(180deg); }

.dropdown {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 6px);
  left: -16px;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 60;
}
/* invisible bridge so the dropdown stays open while moving cursor down */
.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { padding: 0; display: block; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown a:hover {
  background: var(--red-soft);
  color: var(--red-deep);
  text-decoration: none;
}
.dropdown a[aria-current="page"] {
  background: var(--red-soft);
  color: var(--red-deep);
}
.dropdown-ic {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--paper);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown-ic svg { width: 16px; height: 16px; }
.dropdown a:hover .dropdown-ic,
.dropdown a[aria-current="page"] .dropdown-ic {
  background: var(--red);
  color: var(--white);
}
.dropdown-text { display: flex; flex-direction: column; line-height: 1.2; }
.dropdown-text strong { font-weight: 600; color: var(--navy-deep); }
.dropdown-text small { font-size: 0.78rem; color: var(--ink-soft); font-weight: 400; margin-top: 2px; }
.dropdown a:hover .dropdown-text strong,
.dropdown a[aria-current="page"] .dropdown-text strong { color: var(--red-deep); }
.nav-cta { display: inline-flex; gap: 12px; align-items: center; }
.nav-phone {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-phone:hover { text-decoration: none; color: var(--red); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.menu-toggle:hover { border-color: var(--navy); }
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .menu-toggle span:nth-child(2) { opacity: 0; }
.nav.open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 880px) {
  /* Tighten container on mobile */
  .container { padding: 0 20px; }

  /* Header */
  .nav { padding: 12px 0; gap: 12px; }
  .brand img { height: 26px; }

  /* Hide desktop nav, show toggle */
  .nav > ul, .nav-phone { display: none; }
  .menu-toggle { display: flex; }

  /* Mobile menu when open */
  .nav.open > ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 8px 20px 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(11,45,69,0.16);
    gap: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open > ul > li { width: 100%; }
  .nav.open > ul > li > a {
    display: flex;
    align-items: center;
    padding: 16px 8px;
    border-bottom: 1px solid var(--paper);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-deep);
    min-height: 48px;
  }
  .nav.open > ul > li:last-child > a { border-bottom: 0; }
  .nav.open > ul > li > a:hover,
  .nav.open > ul > li > a.is-active { color: var(--red); }

  /* Dropdown: flatten inline below "Tjenester" */
  .has-dropdown > a .caret { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 8px 16px;
    margin: 0;
    min-width: 0;
    display: block;
  }
  .dropdown::before { display: none; }
  .dropdown a {
    padding: 12px 8px;
    font-size: 0.95rem;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav { gap: 8px; }
  /* Hide the primary CTA in nav to free room — replaced by mobile menu */
  .nav-cta > .btn-primary { display: none; }
  .nav-cta { gap: 8px; }
}

/* ========== HERO (home) ========== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  padding: 0;
  display: flex;
  align-items: center;
  background:
    radial-gradient(900px 600px at 92% -10%, rgba(216,18,51,0.10), transparent 62%),
    radial-gradient(700px 500px at 0% 110%, rgba(11,45,69,0.07), transparent 65%),
    var(--white);
  color: var(--ink);
  overflow: hidden;
}
/* Subtle dot grid texture in lower-right quadrant */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11,45,69,0.18) 1.4px, transparent 1.4px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 55% 50% at 90% 92%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 55% 50% at 90% 92%, #000 0%, transparent 65%);
  pointer-events: none;
}
/* Decorative red squiggle accent in top-left */
.hero::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 4%;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, var(--red) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
}
.hero h1 { color: var(--navy-deep); }
.hero h1 em,
.page-hero h1 em {
  font-style: normal;
  color: var(--navy-deep);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
/* Hand-drawn red underline accent under highlighted word */
.hl-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  width: 100%;
  height: 0.32em;
  display: block;
  overflow: visible;
  pointer-events: none;
}
.hl-underline path {
  stroke: var(--red);
  stroke-width: 6;
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  color: var(--red-deep);
  border: 1px solid rgba(186,12,47,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(186,12,47,0.18);
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero-stat strong {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--navy-deep);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hero-stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
/* Buttons in hero on white bg */
.hero .btn-secondary,
.page-hero .btn-secondary {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--line);
}
.hero .btn-secondary:hover,
.page-hero .btn-secondary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

/* Hero card visual */
.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.hero-card-head h4 {
  color: var(--white);
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFB0BD;
  font-size: 0.8rem;
  font-weight: 600;
}
.pulse::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216,18,51,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(216,18,51,0); }
}
.activity-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.activity-row:last-child { border-bottom: 0; }
.activity-icon {
  width: 38px; height: 38px;
  background: rgba(216,18,51,0.18);
  color: #FFB0BD;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.activity-text {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.activity-text small {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  margin-top: 2px;
}
.activity-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFD3DA;
  background: rgba(216,18,51,0.22);
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .hero { height: auto; min-height: calc(100dvh - var(--header-h)); }
  .hero-inner { grid-template-columns: 1fr; padding-top: 32px; padding-bottom: 40px; gap: 28px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero p.lead { font-size: 1.05rem; max-width: none; }
  .hero h1 em, .page-hero h1 em { white-space: normal; }
}
@media (max-width: 520px) {
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .hero-stats { padding-top: 20px; }
  .hero-stat strong { font-size: 1.3rem; }
}

/* ========== PAGE HERO (sub-pages) ========== */
.page-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  padding: 0;
  display: flex;
  align-items: center;
  background:
    radial-gradient(800px 500px at 92% -10%, rgba(216,18,51,0.10), transparent 62%),
    radial-gradient(700px 500px at 0% 100%, rgba(11,45,69,0.06), transparent 65%),
    var(--white);
  color: var(--ink);
  overflow: hidden;
}
.page-hero > .container { width: 100%; position: relative; z-index: 2; }
.page-hero .page-hero-inner { padding-top: 24px; padding-bottom: 24px; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11,45,69,0.16) 1.4px, transparent 1.4px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 55% 50% at 92% 92%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 55% 50% at 92% 92%, #000 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 3%;
  width: 96px;
  height: 96px;
  background-image: radial-gradient(circle, var(--red) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.page-hero-text { max-width: 620px; }
@media (max-width: 880px) {
  .page-hero { height: auto; min-height: calc(100dvh - var(--header-h)); }
  .page-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-text { max-width: none; }
  .page-hero .lead { font-size: 1.05rem; }
}

/* ========== HERO PHOTO (home + sub-pages) ========== */
.hero-photo {
  position: relative;
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  max-height: calc(100dvh - var(--header-h) - 96px);
  align-self: center;
  background: var(--navy-deep);
  z-index: 1;
  box-shadow: 0 24px 60px rgba(11,45,69,0.20);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  position: relative;
  z-index: 2;
}
/* Navy offset frame peeking out from behind the photo (down-right) */
.hero-photo::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: -22px;
  bottom: -22px;
  background: var(--navy-deep);
  border-radius: 22px;
  z-index: 0;
  box-shadow: 0 24px 60px rgba(11,45,69,0.18);
}
/* Red dot-pattern accent floating top-right of photo */
.hero-photo::after {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 96px;
  height: 96px;
  background-image: radial-gradient(circle, var(--red) 2.2px, transparent 2.2px);
  background-size: 16px 16px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.85;
}
/* Soft photo gradient overlay for text legibility on badge */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, transparent 55%, rgba(6,26,42,0.45));
  pointer-events: none;
  z-index: 3;
}
.hero-photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 4;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 36px rgba(11,45,69,0.22);
}
.hero-photo-badge-ic {
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-photo-badge-ic svg { width: 18px; height: 18px; }
.hero-photo-badge-text {
  font-size: 0.82rem;
  color: var(--navy-deep);
  line-height: 1.35;
  font-weight: 500;
}
.hero-photo-badge-text strong {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 1px;
  color: var(--navy-deep);
}
@media (max-width: 880px) {
  .hero-photo {
    aspect-ratio: 16 / 11;
    max-width: 520px;
    max-height: none;
    margin: 0 auto;
    width: 100%;
  }
  .hero-photo::before { top: 12px; left: 12px; right: -12px; bottom: -12px; }
  .hero-photo::after { width: 70px; height: 70px; top: -16px; right: -16px; background-size: 12px 12px; }
}
.page-hero h1 { color: var(--navy-deep); margin-bottom: 18px; }
.page-hero .lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 680px;
}
.page-hero .hero-cta { margin-bottom: 0; }
.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb a { color: var(--navy-deep); font-weight: 500; }
.breadcrumb a:hover { color: var(--red); text-decoration: none; }
.breadcrumb .sep { color: var(--line); }
.breadcrumb [aria-current="page"] { color: var(--red); font-weight: 600; }

@media (max-width: 700px) {
  .page-hero { padding: 40px 0; }
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: var(--paper);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.trust-strip-inner strong {
  color: var(--navy);
  font-weight: 700;
}

/* ========== SECTIONS ========== */
section { padding: 100px 0; }
@media (max-width: 700px) { section { padding: 70px 0; } }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  background: var(--red-soft);
  color: var(--red-deep);
  border-color: rgba(186,12,47,0.25);
}
.section-head .eyebrow::before { background: var(--red); box-shadow: 0 0 0 4px rgba(186,12,47,0.18); }
.section-head p { font-size: 1.08rem; }
.section-head--left { text-align: left; margin: 0 0 48px; }

/* Services (home grid) */
#tjenester { background: var(--white); }
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .services { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -50% auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(186,12,47,0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(186,12,47,0.35);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { position: relative; z-index: 2; }
.service-card p { position: relative; z-index: 2; }
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  position: relative;
  z-index: 2;
}
.service-card ul li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 0.94rem;
  color: var(--ink);
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  background: var(--red-soft);
  border: 2px solid var(--red);
  border-radius: 50%;
}
.service-card .service-link {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.service-card .service-link:hover { gap: 10px; text-decoration: none; }
.service-card .service-link::after { content: "→"; transition: transform 0.15s ease; }

/* Why us */
#hvorfor {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#hvorfor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(216,18,51,0.18), transparent 60%),
    radial-gradient(600px 400px at 100% 100%, rgba(216,18,51,0.10), transparent 60%);
  pointer-events: none;
}
#hvorfor .section-head { position: relative; z-index: 2; }
#hvorfor .section-head h2 { color: var(--white); }
#hvorfor .section-head p { color: rgba(255,255,255,0.75); }
#hvorfor .section-head .eyebrow {
  background: rgba(216,18,51,0.14);
  color: #FFB0BD;
  border-color: rgba(216,18,51,0.45);
}
#hvorfor .section-head .eyebrow::before { background: var(--red-bright); box-shadow: 0 0 0 4px rgba(216,18,51,0.25); }

.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .reasons { grid-template-columns: 1fr; } }
.reason {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.reason:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(216,18,51,0.45);
}
.reason-num {
  display: inline-block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--red-bright);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.reason h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.reason p {
  color: rgba(255,255,255,0.7);
  font-size: 0.94rem;
  margin: 0;
}

/* Process */
#prosess { background: var(--paper); }
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
@media (max-width: 980px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  counter-increment: step;
  position: relative;
}
.step::before {
  content: "0" counter(step);
  position: absolute;
  top: -18px;
  left: 28px;
  background: var(--red);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(186,12,47,0.28);
  letter-spacing: -0.01em;
}
.step h3 { margin-top: 22px; font-size: 1.1rem; }
.step p { font-size: 0.94rem; margin: 0; }

/* About */
#om { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-grid .eyebrow {
  background: var(--red-soft);
  color: var(--red-deep);
  border-color: rgba(186,12,47,0.25);
}
.about-grid .eyebrow::before { background: var(--red); box-shadow: 0 0 0 4px rgba(186,12,47,0.18); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 1.02rem; }
.leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.leader {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
}
.leader-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.leader-role { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 10px; }
.leader-email {
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 600;
  word-break: break-all;
}

/* Visual block */
.visual-block {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border-radius: 22px;
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.visual-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 300px at 100% 0%, rgba(216,18,51,0.30), transparent 60%),
    radial-gradient(300px 220px at 0% 100%, rgba(216,18,51,0.15), transparent 60%);
  pointer-events: none;
}
.quote-mark {
  font-weight: 900;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--red-bright);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.quote-text {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--white);
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.quote-meta {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 50% 100%, rgba(216,18,51,0.30), transparent 60%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.08rem; margin-bottom: 32px; }

/* Contact */
#kontakt { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contact-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info li .ic {
  width: 38px; height: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info li .ic svg { width: 18px; height: 18px; }
.contact-info li .lbl {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-info li .val { font-weight: 600; color: var(--navy-deep); }

form.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
form.contact-form h3 { margin-bottom: 6px; }
form.contact-form p.muted { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.94rem; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-family: 'Figtree', sans-serif;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(186,12,47,0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .row-2 { grid-template-columns: 1fr; } }
form .btn-primary { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-grid p { color: rgba(255,255,255,0.65); font-size: 0.94rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { padding: 5px 0; }
.footer-grid ul a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-grid ul a:hover { color: #FFB0BD; text-decoration: none; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand img { height: 32px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.65); }

/* ============================================================
   LEGAL / PERSONVERN PAGE
   ============================================================ */
.legal-meta {
  margin-bottom: 24px;
}
.legal-toc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 56px;
}
.legal-toc h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin: 0 0 16px;
  font-weight: 700;
}
.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
  counter-reset: tocstep;
}
@media (max-width: 700px) { .legal-toc ol { grid-template-columns: 1fr; } }
.legal-toc li {
  padding: 6px 0;
  counter-increment: tocstep;
}
.legal-toc li::before {
  content: counter(tocstep) ".";
  display: inline-block;
  width: 24px;
  color: var(--red);
  font-weight: 700;
}
.legal-toc a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.legal-toc a:hover {
  color: var(--red);
  text-decoration: none;
}

.legal-section {
  margin-bottom: 48px;
  scroll-margin-top: 120px;
}
.legal-section h2 {
  font-size: 1.45rem;
  margin: 0 0 16px;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
}
.legal-section h3 {
  font-size: 1.02rem;
  margin: 22px 0 10px;
  color: var(--navy-deep);
  font-weight: 700;
}
.legal-section p {
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
}
.legal-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--ink);
  line-height: 1.6;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.legal-list li strong { color: var(--navy-deep); }

/* "I korte trekk" quick-list inside visual-block */
.quick-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  position: relative;
  z-index: 2;
}
.quick-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.quick-list li:last-child { border-bottom: 0; }
.quick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-bright);
  font-weight: 700;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--scale {
  transform: translateY(20px) scale(0.97);
}
.reveal--scale.is-visible {
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   SERVICE DETAIL PAGE COMPONENTS
   ============================================================ */

/* Feature highlight strip: ingen oppstartskostnader / ingen minimum / ingen fast månedssum */
.feature-strip { background: var(--white); }
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .feature-strip-inner { grid-template-columns: 1fr; } }
.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.feature-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.05rem; margin: 0 0 6px; }
.feature p { font-size: 0.93rem; margin: 0; }

/* Service overview - intro paragraph block */
.overview {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .overview { grid-template-columns: 1fr; gap: 40px; } }
.overview .eyebrow {
  background: var(--red-soft);
  color: var(--red-deep);
  border-color: rgba(186,12,47,0.25);
}
.overview .eyebrow::before { background: var(--red); box-shadow: 0 0 0 4px rgba(186,12,47,0.18); }
.overview p { font-size: 1.05rem; }
.overview p.lead {
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 500;
}

/* Process - 3 steps (Møte 1 / Forberedelser / Møte 2) for detail pages */
.process-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: pstep;
  position: relative;
}
@media (max-width: 880px) { .process-3 { grid-template-columns: 1fr; } }
.process-3 .step { counter-increment: pstep; }
.process-3 .step::before { content: "0" counter(pstep); }
.step ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.step ul li {
  padding: 4px 0 4px 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.step ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* Callout (pilot info) */
.callout {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border-radius: 22px;
  padding: 44px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.callout::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 320px at 100% 0%, rgba(216,18,51,0.30), transparent 60%),
    radial-gradient(300px 220px at 0% 100%, rgba(216,18,51,0.15), transparent 60%);
  pointer-events: none;
}
.callout > * { position: relative; z-index: 2; }
.callout h3 { color: var(--white); margin-bottom: 8px; font-size: 1.5rem; }
.callout p { color: rgba(255,255,255,0.8); font-size: 1rem; margin: 0; max-width: 640px; }
.callout .btn { white-space: nowrap; }
@media (max-width: 700px) {
  .callout { grid-template-columns: 1fr; padding: 32px; text-align: left; }
}

/* Chip list (leveransetyper) */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 16px;
  border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.chip::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.chip:hover { border-color: var(--red); color: var(--red); }

/* Use cases (målgruppe) */
.usecases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 700px) { .usecases { grid-template-columns: 1fr; } }
.usecase {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.usecase-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.usecase-check svg { width: 16px; height: 16px; }
.usecase p { margin: 0; font-size: 0.95rem; color: var(--ink); }
.usecase strong { color: var(--navy-deep); display: block; margin-bottom: 4px; font-size: 1rem; }

/* Split sections (partnership / AI) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split-text .eyebrow {
  background: var(--red-soft);
  color: var(--red-deep);
  border-color: rgba(186,12,47,0.25);
}
.split-text .eyebrow::before { background: var(--red); box-shadow: 0 0 0 4px rgba(186,12,47,0.18); }
.split-visual {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: var(--white);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 300px at 100% 0%, rgba(216,18,51,0.30), transparent 60%);
  pointer-events: none;
}
.split-visual > * { position: relative; z-index: 2; }
.split-visual h3 { color: var(--white); margin-bottom: 12px; font-size: 1.3rem; }
.split-visual p { color: rgba(255,255,255,0.8); margin-bottom: 18px; font-size: 0.98rem; }
.split-visual ul { list-style: none; padding: 0; margin: 0; }
.split-visual ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: rgba(255,255,255,0.9);
  font-size: 0.94rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.split-visual ul li:last-child { border-bottom: 0; }
.split-visual ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-bright);
  font-weight: 700;
}

/* Option cards (4 fleksible alternativer) */
.options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .options { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .options { grid-template-columns: 1fr; } }
.option-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.option-card:hover {
  border-color: rgba(186,12,47,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.option-ic {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.option-ic svg { width: 22px; height: 22px; }
.option-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.option-card p { font-size: 0.92rem; margin: 0; }

/* Sibling services (cross-links at bottom of detail pages) */
.siblings { background: var(--paper); }
.siblings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .siblings-grid { grid-template-columns: 1fr; } }
.sibling {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.sibling:hover {
  border-color: rgba(186,12,47,0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.sibling-text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 4px;
  font-weight: 700;
}
.sibling-text span {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.sibling-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.sibling:hover .sibling-arrow { background: var(--red); color: var(--white); }

/* ============================================================
   TEAM CARDS (kontakt + jobb-hos-oss)
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.team-card:hover {
  border-color: rgba(186,12,47,0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.team-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.team-card-body { flex: 1; min-width: 0; }
.team-card-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin: 0 0 2px;
}
.team-card-role {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.team-card-contacts { display: flex; flex-direction: column; gap: 4px; }
.team-card-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 0.94rem;
  color: var(--ink);
  font-weight: 500;
  word-break: break-all;
}
.team-card-contacts a:hover { color: var(--red); text-decoration: none; }
.team-card-contacts svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ============================================================
   WORK HOURS (jobb-hos-oss)
   ============================================================ */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 520px) { .hours-grid { grid-template-columns: 1fr; } }
.hours-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.hours-label {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.hours-time {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

/* ============================================================
   MAP placeholder (kontakt)
   ============================================================ */
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.map-frame {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
  background:
    radial-gradient(400px 200px at 50% 50%, rgba(186,12,47,0.10), transparent 60%),
    linear-gradient(135deg, var(--paper) 0%, #E8EEF5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}
.map-frame-inner {
  text-align: center;
  padding: 20px;
}
.map-frame-inner strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy-deep);
  font-weight: 700;
  margin-bottom: 4px;
}
