/* ============================================================
   PEOPLE'S LAB — one-pager ekstensioner oven på design-system.
   Kun sektioner der ikke findes i design-system.css bor her.
   Alle afstande bruger --space-* tokens. Ingen magic numbers.
   ============================================================ */

/* ── SPRITE ICON DEFAULTS ─────────────────────────────────── */
/* sprite.html <symbol> definitioner har ingen fill/stroke, så wrapper sætter dem. */
.feature-card__icon svg,
.security-card__icon svg,
.contact-person__link svg,
.sector-badge svg,
.hero-badge svg,
.stack-row__title svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Platform feature-icons: lyseblå accent på hvidt kort-baggrund. */
.feature-card__icon svg {
  stroke: #DBE1F5;
}

/* Security-section (dark) subheading — centered, constrained, muted white. */
.security-section .section-subheading {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-6);
  color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════════════════════════
   HERO — fullscreen med video bag semi-opaque overlay
   ══════════════════════════════════════════════════════════ */
.hero--dark {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  padding: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(19, 25, 44, 0.82) 0%, rgba(38, 48, 79, 0.78) 55%, rgba(86, 105, 164, 0.72) 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: -110px auto 0;
  padding: 0 var(--space-6);
  text-align: center;
}
/* .hero-badge now composes with design-system .badge .badge--hero (.badge--frosted
   when overlaying video/image). Only local overrides: icon gap + margin + 80% bg. */
.hero-badge {
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.hero-badge svg { color: var(--color-periwinkle-900); }
/* Override design-system frosted default — more see-through for Group (bg + no blur). */
.hero-badge.badge--frosted {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-title {
  font-size: var(--text-h1);
  font-weight: 500;
  letter-spacing: var(--track-tight);
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}
/* Kun desktop (≥1024px) får nowrap. Tablet+mobil ombryder naturligt. */
@media (min-width: 1024px) {
  .hero-title { white-space: nowrap; }
}
/* Tablet+mobil: bryd altid efter "AI-infrastruktur." (accent på ny linje)
   så ikke H1 brydes mid-phrase som "Audit-ready fra / dag 1." */
@media (max-width: 1023px) {
  .hero-title .heading-accent { display: block; }
  /* Hamburger: 10px margin-right på tablet+mobil så den ikke sidder flush
     mod højre kant. OBS: dette overrider (bevidst) den nedarvede 4px-padding
     fra design-systemets HEADER-FAST REGEL. */
  .mobile-toggle { margin-right: 10px; }
}
.hero-subtitle {
  font-size: var(--text-h3);
  color: var(--color-white);
  max-width: 720px;
  margin: 0 auto var(--space-6);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}
.heading-accent { color: var(--color-periwinkle-500); }
.hero--dark .heading-accent { color: var(--color-periwinkle-500); }

/* ══════════════════════════════════════════════════════════
   HERO — Light variant (video + gradient-overlay)
   Video = back layer, gradient overlay = semi-transparent on top
   ══════════════════════════════════════════════════════════ */
.hero--light {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--color-lavender-50);
}
.hero--light .hero-video {
  opacity: 1;
}
.hero--light .hero-overlay {
  background: linear-gradient(135deg, rgba(163, 176, 217, 0.82) 0%, rgba(235, 235, 243, 0.88) 100%);
}
/* .hero--light uses design-system .badge--hero.badge--frosted unchanged. */
.hero--light .hero-title {
  color: #26304F;
}
.hero--light .hero-title .heading-accent {
  color: #5669A4;
}
.hero--light .hero-subtitle {
  color: var(--color-navy-500);
}
@media (min-width: 769px) and (max-width: 1023px) {
  .hero--light {
    min-height: 68vh;
    padding: var(--space-16) 0 var(--space-12);
  }
}
@media (max-width: 768px) {
  .hero--light {
    min-height: 72vh;
    padding: var(--space-16) 0 var(--space-12);
  }
}

/* Tablet (769-1023px): hero kortere end 100vh. */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero--dark {
    min-height: 68vh;
    padding: var(--space-16) 0 var(--space-12);
  }
  .hero-inner { margin: 0 auto; }
}

@media (max-width: 768px) {
  /* Group-specific: +10px på H1 på mobile (kun denne side). */
  .hero-title { font-size: calc(var(--text-h1) + 10px); }
  /* Hero: reduce from 100vh to ~72vh + tighter spacing. Fjern margin-top:-80px
     hack så indhold centrerer rigtigt på mindre skærm. */
  .hero--dark {
    min-height: 72vh;
    padding: var(--space-16) 0 var(--space-12);
  }
  .hero-inner { margin: 0 auto; }
  /* Heading size inherited fra design-system.css h1-rule (32px min via clamp).
     Vi fjerner nowrap så lange H1'er kan ombryde på mobil. */
  .hero-title { white-space: normal; }
  /* Section-headings med opt-in modifier bryder før accent-delen på mobil. */
  .section-heading--stack-mobile .heading-accent { display: block; }
  .hero-subtitle { font-size: var(--text-body); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   PARTNERS — statisk centreret række (ikke scroll-bælte).
   Blå-grå tonet monochrome for at matche branding.
   ══════════════════════════════════════════════════════════ */
.partners-section {
  background: var(--color-lavender-100);
  padding: 20px 0;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}
/* Tvinger linje-break: DCAI/EIFO/SDU på row 1, Chula/Aalborg på row 2. */
.partners-row__break {
  flex-basis: 100%;
  width: 0;
  height: 0;
}
.partner-logo {
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.45) sepia(1) saturate(1.5) hue-rotate(200deg);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.partner-logo:hover { opacity: 0.95; }
/* Per-logo heights for visuel vægt — ikke alle logoer har samme proportioner.
   Målinger valgt så visual footprint matcher på tværs. */
.partner-logo--dcai    { height: 25px; }
.partner-logo--eifo    { height: 36px; }
.partner-logo--sdu     { height: 40px; }
.partner-logo--chula   { height: 44px; }
.partner-logo--aalborg { height: 52px; }

/* Alle 5 logoer på én linje på tablet+mobil. */
@media (max-width: 1023px) {
  .partners-row { flex-wrap: nowrap; }
}
/* Tablet (769-1023px): mid-size heights + moderat gap */
@media (min-width: 769px) and (max-width: 1023px) {
  .partners-row { gap: var(--space-8); }
  .partner-logo--dcai    { height: 20px; }
  .partner-logo--eifo    { height: 28px; }
  .partner-logo--sdu     { height: 30px; }
  .partner-logo--chula   { height: 34px; }
  .partner-logo--aalborg { height: 40px; }
}
/* Mobile (≤768px): skrump yderligere */
@media (max-width: 768px) {
  .partners-row { gap: var(--space-3); }
  .partner-logo--dcai    { height: 16px; }
  .partner-logo--eifo    { height: 20px; }
  .partner-logo--sdu     { height: 22px; }
  .partner-logo--chula   { height: 24px; }
  .partner-logo--aalborg { height: 28px; }
}

/* ══════════════════════════════════════════════════════════
   ANCHOR-OFFSET — sticky header er 76px høj + 21px top = ~100px.
   scroll-margin-top sikrer at #-links lander ved sektionens top,
   ikke bag headeren.
   ══════════════════════════════════════════════════════════ */
main section[id] {
  scroll-margin-top: 110px;
}

/* ══════════════════════════════════════════════════════════
   COOKIE MODAL — centreret, mørk backdrop med blur, blokerer siden.
   ══════════════════════════════════════════════════════════ */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.cookie-modal.is-visible { opacity: 1; pointer-events: auto; }
.cookie-modal[hidden] { display: none; }

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 25, 44, 0.55);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}

.cookie-modal__card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(19, 25, 44, 0.35);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-modal.is-visible .cookie-modal__card {
  transform: translateY(0) scale(1);
}

.cookie-modal__title {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-navy-900);
  margin: 0 0 var(--space-3);
}
.cookie-modal__text {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-navy-700);
  margin: 0 0 var(--space-5);
}
.cookie-modal__text a {
  color: var(--color-periwinkle-900);
  text-decoration: underline;
}

.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.cookie-category {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--color-lavender-700);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, background 0.2s ease;
  margin: 0;
}
.cookie-category:hover { border-color: var(--color-periwinkle-500); }
.cookie-category__choice {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}
.cookie-category__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cookie-category__name {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-navy-900);
}
.cookie-category__desc {
  font-size: var(--text-xs);
  color: var(--color-navy-500);
  line-height: 1.45;
}
.cookie-category--locked {
  background: var(--color-lavender-50);
  cursor: default;
}
.cookie-category--locked:hover { border-color: var(--color-lavender-700); }
.cookie-category__status {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-periwinkle-900);
  text-transform: uppercase;
  letter-spacing: var(--track-wider);
}

.cookie-modal__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal__actions .btn { flex: 1 1 auto; min-width: 0; }

@media (max-width: 640px) {
  .cookie-modal__card { padding: var(--space-6); }
  .cookie-modal__actions { flex-direction: column-reverse; }
  .cookie-modal__actions .btn { width: 100%; }
}


/* ══════════════════════════════════════════════════════════
   GENERIC SECTION SHELL — bruger --space-20 (80px), ikke magic 120px
   ══════════════════════════════════════════════════════════ */
.lab-section {
  padding: var(--space-20) 0;
  background: var(--color-white);
}
.lab-section--soft {
  background: var(--grad-hero-light);
}

.section-intro {
  text-align: center;
  max-width: 960px;
  margin: 0 auto var(--space-2);
}
/* Kun korte headings får nowrap. Længere headings (fx Sovereign Stack
   og Security) ombryder naturligt. */
.section-intro--nowrap .section-heading { white-space: nowrap; }
@media (max-width: 900px) {
  .section-intro--nowrap .section-heading { white-space: normal; }
}
.section-eyebrow {
  font-size: var(--text-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--color-periwinkle-900);
  margin-bottom: var(--space-3);
}
.section-subheading {
  font-size: var(--text-body);
  color: var(--color-navy-500);
  line-height: 1.55;
  margin-top: -15px;
}

@media (max-width: 768px) {
  .lab-section { padding: var(--space-16) 0; }
  .section-intro { margin-bottom: var(--space-4); padding: 0 var(--space-4); }
}

/* Use Cases: ekstra luft mellem subtitle og sector-kort (kort-bookkeeping). */
#use-cases .section-intro { margin-bottom: var(--space-6); }
/* Data Residency: +15px under subtitle før region-grid */
#data-residency .section-intro { margin-bottom: var(--space-6); }
/* Architecture: +15px under subtitle før ps-grid */
#architecture .section-intro { margin-bottom: var(--space-6); }
/* Group-section spacings under subheading. */
#narrative .section-intro { margin-bottom: calc(var(--space-2) + 10px); }
#verticals .section-intro { margin-bottom: calc(var(--space-2) + 10px); }
#stack .section-intro { margin-bottom: calc(var(--space-2) + 10px); }
#platform .section-intro { margin-bottom: calc(var(--space-2) + 20px); }
#investor .section-intro { margin-bottom: calc(var(--space-2) + 15px); }

/* Form-card heading: match People's Doctor default (text-2xl = 24px). */
#contact .form-card__title {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-navy-900);
  letter-spacing: var(--track-tight);
  margin: var(--space-1) 0 var(--space-3);
}

/* ══════════════════════════════════════════════════════════
   GROUP-ONLY — Data Residency panel (redesigned elegant version)
   ══════════════════════════════════════════════════════════ */
.residency-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-10);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-lavender-50) 100%);
  border: 1px solid var(--color-lavender-100);
  border-radius: 22px;
  box-shadow: 0 4px 28px rgba(86,105,164,0.08);
}
.residency-panel__badge-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
  flex-shrink: 0;
}
.residency-panel__flag {
  width: 60px;
  aspect-ratio: 1.4 / 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(19,25,44,0.12);
}
.residency-panel__flag svg {
  display: block;
  width: 100%;
  height: 100%;
}
.residency-panel__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.residency-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.residency-panel__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-navy-900);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.residency-panel__subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--color-periwinkle-900);
  margin: 4px 0 0;
  text-transform: uppercase;
}
.residency-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-navy-900);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  flex-shrink: 0;
  align-self: flex-start;
}
.residency-panel__badge svg { flex-shrink: 0; }
.residency-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.residency-panel__list li {
  position: relative;
  padding-left: var(--space-7);
  font-size: var(--text-body);
  color: var(--color-navy-700);
  line-height: 1.55;
}
.residency-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 2px;
  background: var(--color-periwinkle-500);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .residency-panel {
    grid-template-columns: 1fr;
    padding: var(--space-7) 30px;
    gap: var(--space-6);
    text-align: left;
  }
  .residency-panel__flag {
    max-width: 100px;
    aspect-ratio: 1.4 / 1;
  }
  .residency-panel__head {
    flex-direction: column;
    gap: var(--space-3);
  }
  .residency-panel__title { font-size: 24px; }
}

/* ══════════════════════════════════════════════════════════
   REGION GRID — Data Residency (3 country cards)
   ══════════════════════════════════════════════════════════ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
}
.region-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.region-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.region-card--blocked { opacity: 0.55; }
.region-card--blocked .region-card__title { color: var(--color-danger); }
.region-card--secure {
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.12);
}
.region-flag {
  width: 40px;
  height: 26px;
  border-radius: 3px;
  box-shadow: var(--shadow-xs);
  margin: 0 auto var(--space-4);
  display: block;
}
.region-card__title {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: var(--space-2);
}
.region-card__text {
  font-size: var(--text-body);
  color: var(--color-navy-500);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .region-grid { grid-template-columns: 1fr; gap: var(--space-3); }
}
/* Komprimer USA + Kina (blokerede lande) på alle breakpoints — kun flag
   + title, ingen body-tekst. DK beholder fuld beskrivelse så den fremhæves. */
.region-card--blocked .region-card__text { display: none; }
.region-card--blocked {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   PS-GRID / PS-CARD — Architecture (Cloud vs Local)
   ══════════════════════════════════════════════════════════ */
.ps-section {
  padding: var(--space-20) 0;
  background: var(--grad-hero-light);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
}
.ps-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  box-shadow: var(--shadow-xs);
}
.ps-card-title {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: var(--space-5);
}
.ps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0;
  margin: 0;
  list-style: none;
}
.ps-list li {
  position: relative;
  padding-left: var(--space-7);
  font-size: var(--text-body);
  color: var(--color-navy-700);
  line-height: 1.55;
}
.ps-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  display: inline-block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cross-bullets li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23EF4444'><path d='M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z'/></svg>");
}
.check-bullets li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2322C55E'><path fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/></svg>");
}
@media (max-width: 900px) {
  .ps-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   FEATURE GRID — Platform (6 feature cards)
   ══════════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  margin-bottom: var(--space-4);
}
/* Stroke + gradient sættes via SVG-attribut direkte i markup. CSS sætter
   kun størrelse. */
.feature-card__icon svg {
  width: 70px;
  height: 70px;
}
.feature-card__title {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: var(--space-2);
}
.feature-card__text {
  font-size: var(--text-body);
  color: var(--color-navy-500);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1023px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   SOVEREIGN STACK — diagram (dark section)
   ══════════════════════════════════════════════════════════ */
.stack-section {
  padding: var(--space-20) 0;
  background: var(--grad-navy-rich);
  color: var(--color-white);
}
.stack-section .section-eyebrow { color: var(--color-periwinkle-500); }
.stack-section .section-heading { color: var(--color-white); }
.stack-section .section-subheading { color: var(--color-white); }
/* Begræns intro-bredde i stack så subtitle ikke strækker forbi diagram-kanten. */
.stack-section .section-intro { max-width: 680px; }

.stack-diagram {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* THE WRAPPER — hvad andre bygger (dashed container ovenpå) */
.stack-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: calc(var(--space-4) + 10px) var(--space-6) var(--space-4);
}
.stack-wrapper__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-3);
}
.stack-wrapper__items {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}
.stack-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* DATACENTER BOUNDARY — pill-divider mellem wrapper og rows */
.stack-boundary {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
}
.stack-boundary__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.28));
}
.stack-boundary__line--reverse {
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.28));
}
.stack-boundary__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ROWS — hvide cards for sovereign stack lag */
.stack-rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.stack-row {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.stack-row:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.stack-row__title {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-navy-900);
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.stack-row__meta {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-periwinkle-900);
  opacity: 0.8;
}

/* AI Inference Engine — The Core (stærkt fremhævet række) */
.stack-row--core {
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(145deg, #FFFFFF 0%, #F4F4FB 100%);
  box-shadow:
    0 0 0 2px var(--color-periwinkle-500),
    0 10px 28px rgba(86, 105, 164, 0.35),
    0 0 40px rgba(163, 176, 217, 0.25);
  transform: scale(1.04);
  position: relative;
  z-index: 2;
}
.stack-row--core:hover {
  transform: scale(1.04) translateX(2px);
  box-shadow:
    0 0 0 2px var(--color-periwinkle-500),
    0 14px 36px rgba(86, 105, 164, 0.45),
    0 0 50px rgba(163, 176, 217, 0.35);
}
.stack-row--core .stack-row__title { font-weight: 500; }
.stack-row--core .stack-row__meta { opacity: 1; }
.stack-row__note {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-periwinkle-900);
  font-style: italic;
  letter-spacing: var(--track-normal);
}

@media (max-width: 768px) {
  .stack-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
    padding: var(--space-3) var(--space-4);
  }
  .stack-row--core { padding: var(--space-4) var(--space-4); transform: none; }
  .stack-row--core:hover { transform: translateX(2px); }
  .stack-row__title { font-size: var(--text-sm); }
  .stack-row__meta { font-size: var(--text-xs); }
}

/* ══════════════════════════════════════════════════════════
   SECURITY SECTION — dark glass cards
   ══════════════════════════════════════════════════════════ */
.security-section {
  padding: var(--space-20) 0;
  background: var(--grad-navy-rich);
  color: var(--color-white);
}
.security-heading {
  font-size: var(--text-h2);
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  letter-spacing: var(--track-tight);
  line-height: 1.1;
  margin: 0 auto var(--space-5);
  max-width: 760px;
}
/* Matcher design-systems mobile-override for .section-heading (line 4224). */
@media (max-width: 1023px) {
  .security-heading { font-size: clamp(26px, 6vw, 34px); }
}
.security-section .heading-accent { color: var(--color-periwinkle-500); }

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
}
.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-8);
  transition: background 0.3s ease, transform 0.3s ease;
}
.card-dark:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}
.security-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}
.security-card__icon svg { width: 20px; height: 20px; }
.security-card h4 {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 var(--space-2);
}
.security-card p {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1023px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .security-grid { grid-template-columns: 1fr; gap: var(--space-3); } }

/* ══════════════════════════════════════════════════════════
   SECTOR GRID — Use Cases (3 industry cards)
   ══════════════════════════════════════════════════════════ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 1200px;
  margin: 0 auto;
}
/* Sector-cards — testimonial 3-card gradient-scheme (navy → periwinkle → lavender).
   Genbrug af .specialty-quote--featured/--periwinkle/--lavender-tokens. */
.sector-card {
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.sector-card--health {
  background: var(--grad-navy-rich);
  color: var(--color-white);
  box-shadow: 0 20px 40px rgba(19, 25, 44, 0.25);
}
.sector-card--finance {
  background: linear-gradient(145deg, var(--color-periwinkle-900) 0%, var(--color-periwinkle-700) 100%);
  color: var(--color-white);
  box-shadow: 0 20px 40px rgba(86, 105, 164, 0.22);
}
.sector-card--defence {
  background: linear-gradient(145deg, #D2D9F1 0%, #EBEBF3 100%);
  color: var(--color-navy-900);
  box-shadow: 0 20px 40px rgba(80, 93, 112, 0.14);
}
/* Title + text farver per variant */
.sector-card--health .sector-card__title,
.sector-card--finance .sector-card__title { color: var(--color-white); }
.sector-card--health .sector-card__text,
.sector-card--finance .sector-card__text { color: rgba(255, 255, 255, 0.82); }
.sector-card--defence .sector-card__title { color: var(--color-navy-900); }
.sector-card--defence .sector-card__text { color: var(--color-navy-500); }
/* Badge farver per variant */
.sector-card--health .sector-badge,
.sector-card--finance .sector-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}
.sector-card--defence .sector-badge {
  background: rgba(86, 105, 164, 0.12);
  color: var(--color-periwinkle-900);
}

.sector-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px var(--space-3);
  border-radius: var(--radius-pill);
  background: var(--color-lavender-100);
  color: var(--color-periwinkle-900);
  font-size: var(--text-xs);
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.sector-badge svg { width: 14px; height: 14px; }
.sector-card__title {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: var(--space-2);
}
.sector-card__text {
  font-size: var(--text-body);
  color: var(--color-navy-500);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1023px) { .sector-grid { grid-template-columns: 1fr; gap: var(--space-3); max-width: 560px; } }

/* ══════════════════════════════════════════════════════════
   CONTACT — Lars card + form
   ══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 320px 560px;
  gap: var(--space-8);
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto;
  align-items: flex-start;
}
.contact-person {
  background: var(--grad-premium-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  text-align: center;
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}
.contact-person__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto var(--space-4);
  display: block;
}
.contact-person__name {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}
.contact-person__title {
  font-size: var(--text-sm);
  color: var(--color-white);
  margin-bottom: var(--space-5);
}
.contact-person__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-person__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-periwinkle-500);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-person__link:hover { color: var(--color-white); }
.contact-person__link svg { width: 14px; height: 14px; stroke: currentColor; }

/* Contact form: 100% design-system primitives (.form-card + .form-field +
   .form-radio). Ingen Lab-specifikke overrides. */

/* Tablet + mobil: stak i én centreret kolonne. Begge kort får samme
   max-width så de aligner visuelt både på venstre og højre kant. */
@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    max-width: 480px;
  }
  .contact-person { max-width: none; }
}

/* ══════════════════════════════════════════════════════════
   GROUP-ONLY — logo dropdown (header brand menu)
   ══════════════════════════════════════════════════════════ */
.logo-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.site-header__logo--trigger {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--color-navy-500);
  font-family: inherit;
}
.site-header__logo--trigger:focus-visible {
  outline: 2px solid var(--color-periwinkle-500);
  outline-offset: 4px;
  border-radius: 4px;
}
.site-header__logo--trigger img {
  display: block;
  height: 40px;
  width: auto;
}
/* Override design-system's responsive parent-height so img defines size uniformly. */
.site-header .site-header__logo--trigger {
  height: auto;
}
.logo-dropdown__caret {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: var(--color-navy-500);
}
.logo-dropdown.is-open .logo-dropdown__caret { transform: rotate(180deg); }

.logo-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 380px;
  background: var(--color-white);
  border: 1px solid var(--color-lavender-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(19,25,44,0.14), 0 4px 12px rgba(19,25,44,0.06);
  padding: var(--space-4);
  z-index: 120;
}
.logo-menu__items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-menu__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-navy-900);
  transition: background 0.15s ease;
}
/* Hover: light gray-blue background (matches the subtle mega-menu feel of Doctor's site). */
.logo-menu__item:hover {
  background: var(--color-lavender-100);
  color: var(--color-navy-900);
}
/* Current-site entry: subtle lavender background + left-border accent. No dark navy bg. */
.logo-menu__item--current {
  background: var(--color-lavender-50);
  position: relative;
}
.logo-menu__item--current::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--color-periwinkle-500);
  border-radius: 2px;
}
.logo-menu__item--current:hover {
  background: var(--color-lavender-100);
}
.logo-menu__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.logo-menu__brand {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy-900);
}
.logo-menu__tag {
  font-size: 12px;
  color: var(--color-navy-400);
  line-height: 1.3;
}
.logo-menu__arrow {
  color: var(--color-navy-400);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.logo-menu__item:hover .logo-menu__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  .logo-menu {
    width: calc(100vw - 24px);
    max-width: 380px;
    left: 0;
  }
}

/* ══════════════════════════════════════════════════════════
   GROUP-ONLY — narrative grid (3 "why we exist" cards)
   ══════════════════════════════════════════════════════════ */
.narrative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 1200px;
  margin: 0 auto;
}
.narrative-card {
  background: var(--color-white);
  border: 1px solid var(--color-lavender-100);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.narrative-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(19,25,44,0.06);
  border-color: var(--color-periwinkle-500);
}
.narrative-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--color-lavender-50);
  color: var(--color-periwinkle-900);
  margin-bottom: var(--space-5);
}
.narrative-card__icon svg { width: 22px; height: 22px; }
.narrative-card__title {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-navy-900);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.3px;
}
.narrative-card__text {
  font-size: var(--text-body);
  color: var(--color-navy-500);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .narrative-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .narrative-card { padding: var(--space-7) var(--space-7); }
}
@media (max-width: 767px) {
  .narrative-card { padding: var(--space-7) 30px; }
}

/* ══════════════════════════════════════════════════════════
   GROUP-ONLY — structure section (holding → 4 verticals → foundation)
   Matches reference: soft neumorphic cards, thin tree lines, foundation pill.
   ══════════════════════════════════════════════════════════ */
.structure-section {
  padding: var(--space-20) 0;
  background: var(--color-lavender-50);
}
@media (max-width: 768px) {
  .structure-section { padding: var(--space-16) 0; }
}

.structure-diagram {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Base card — neumorphic soft */
.structure-card {
  position: relative;
  background: linear-gradient(180deg, var(--color-lavender-50) 0%, #FFFFFF 100%);
  border: 1px solid rgba(221, 221, 240, 0.7);
  border-radius: 18px;
  padding: var(--space-7) var(--space-6);
  text-decoration: none;
  color: var(--color-navy-900);
  box-shadow:
    0 1px 2px rgba(19,25,44,0.04),
    0 8px 24px rgba(86,105,164,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Holding (top) — single card, centered, logo only */
.structure-holding {
  width: 100%;
  display: flex;
  justify-content: center;
}
.structure-card--holding {
  width: 100%;
  max-width: 280px;
  padding: var(--space-6) var(--space-10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.structure-holding__logo {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto;
}

/* Tree connector — thin lavender lines (visible only on 5-col wide desktop) */
.structure-tree {
  width: 100%;
  max-width: 1200px;
  height: 72px;
  padding: 0 var(--space-4);
  color: rgba(168, 181, 213, 0.7);
}
.structure-tree svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 1200px) {
  .structure-tree { height: 32px; }
  .structure-tree svg { display: none; }
  .structure-tree::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: currentColor;
    margin: 0 auto;
    border-radius: 2px;
  }
}

/* 5-vertical grid */
.structure-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
@media (max-width: 1200px) {
  .structure-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
@media (max-width: 900px) {
  .structure-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .structure-grid { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* Vertical card (clickable link) */
.structure-card--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4) var(--space-4);
  text-align: center;
  cursor: pointer;
}
.structure-card--vertical:hover {
  transform: translateY(-3px);
  border-color: var(--color-periwinkle-500);
  box-shadow:
    0 1px 2px rgba(19,25,44,0.05),
    0 16px 40px rgba(86,105,164,0.12);
  color: var(--color-navy-900);
}
.structure-card--soon {
  opacity: 0.88;
}
.structure-card--soon:hover { opacity: 1; }

/* Inactive card (no link, no hover) — reduced opacity, default cursor. */
.structure-card--inactive {
  cursor: default;
  opacity: 0.6;
  pointer-events: none;
}
/* Footer: inactive brand (not yet linked) — rendered as plain span, muted. */
.site-footer__brand-inactive {
  opacity: 0.5;
  cursor: default;
}
.structure-card--inactive:hover {
  transform: none;
  border-color: var(--color-lavender-100);
  box-shadow:
    0 1px 2px rgba(19,25,44,0.04),
    0 8px 24px rgba(86,105,164,0.06);
}

/* Wordmark/logo block — normalized size across all 5 verticals (smaller so 5-col grid doesn't feel cramped). */
.structure-card__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}
.structure-card__mark--fallback {
  flex-direction: column;
  gap: 2px;
}
.structure-brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
}
.structure-wordmark {
  display: block;
  height: 20px;
  width: auto;
}
.structure-card__descriptor {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--color-periwinkle-500);
  line-height: 1;
}

/* Vertical tagline (what the vertical does) */
.structure-card__tagline {
  font-size: 12px;
  color: var(--color-navy-500);
  line-height: 1.35;
  margin: 0;
  text-align: center;
}

/* Status chip (LIVE / 2026) — positioned top-right */
.structure-card__status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}
.structure-card__status--live {
  background: var(--color-navy-900);
  color: var(--color-white);
}
.structure-card__status--soon {
  background: var(--color-white);
  color: var(--color-periwinkle-900);
  border: 1px solid var(--color-lavender-300);
}

/* Visit CTA (hover-revealed) */
.structure-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--color-periwinkle-900);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transform: translateY(4px);
  transition: opacity 0.25s ease, height 0.25s ease, transform 0.25s ease;
}
.structure-card--vertical:hover .structure-card__cta { height: 18px; }
.structure-card__cta svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.structure-card--vertical:hover .structure-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.structure-card--vertical:hover .structure-card__cta svg {
  transform: translate(2px, -2px);
}


/* ══════════════════════════════════════════════════════════
   GROUP-ONLY — samspillet section (50/50 with circle diagram)
   ══════════════════════════════════════════════════════════ */
.samspillet-section {
  padding: var(--space-20) 0;
  background: var(--grad-hero-light);
}
@media (max-width: 768px) {
  .samspillet-section { padding: var(--space-16) 0; }
}
.samspillet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .samspillet {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    max-width: 560px;
  }
}
.samspillet__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  text-align: left;
}
.samspillet__copy .section-heading {
  text-align: left;
  margin-bottom: 0;
}
.samspillet__copy .section-subheading {
  text-align: left;
  margin: 0;
}
.samspillet__bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.samspillet__bullets li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-body);
  color: var(--color-navy-700);
  line-height: 1.55;
}
.samspillet__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--color-periwinkle-500);
  border-radius: 2px;
}
@media (max-width: 1023px) {
  .samspillet__copy .section-heading,
  .samspillet__copy .section-subheading { text-align: center; }
  .samspillet__copy { align-items: center; text-align: center; }
  .samspillet__bullets { max-width: 420px; }
  .samspillet__bullets li { text-align: left; }
}

/* The circle */
.samspillet__diagram {
  display: flex;
  justify-content: center;
}
.business-circle {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
}
.business-circle__ring {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 40px rgba(86,105,164,0.2));
}
.business-circle__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54%;
  height: 54%;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-5);
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,0.9),
    0 4px 20px rgba(86,105,164,0.06);
}
.business-circle__hub-logo {
  display: block;
  height: 44px;
  width: auto;
  margin-bottom: var(--space-3);
}
.business-circle__hub-text {
  font-size: 11px;
  color: var(--color-navy-500);
  margin: 0;
  line-height: 1.45;
  max-width: 180px;
}
@media (max-width: 480px) {
  .business-circle__hub-logo { height: 34px; }
  .business-circle__hub-text { font-size: 10px; }
}

/* Floating pods (brand callouts around the ring) */
.business-pod {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(19,25,44,0.15), 0 1px 3px rgba(19,25,44,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 170px;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.business-pod:hover {
  transform: translate(-50%, -50%) translateY(-2px);
  box-shadow: 0 8px 28px rgba(19,25,44,0.18), 0 2px 4px rgba(19,25,44,0.1);
}
.business-pod__logo {
  display: block;
  height: 32px;
  width: auto;
}
.business-pod__desc {
  font-size: 11px;
  color: var(--color-navy-500);
  line-height: 1.3;
}
.business-pod--top    { top: 8%;  left: 50%; }
.business-pod--right  { top: 50%; left: 92%; }
.business-pod--bottom { top: 92%; left: 50%; }
.business-pod--left   { top: 50%; left: 8%; }

@media (max-width: 480px) {
  .business-pod { width: 140px; padding: 8px 12px; }
  .business-pod__logo { height: 26px; }
  .business-pod__desc { font-size: 10px; }
}

/* ══════════════════════════════════════════════════════════
   (end samspillet)
   ══════════════════════════════════════════════════════════ */

/* Foundation bar */
.structure-foundation {
  width: 100%;
  max-width: 1100px;
  margin-top: var(--space-6);
  padding: var(--space-5) var(--space-8);
  background: linear-gradient(180deg, #F0F1FA 0%, #E6E8F4 100%);
  border: 1px solid rgba(221, 221, 240, 0.7);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 1px 2px rgba(19,25,44,0.03);
}
.structure-foundation svg { color: var(--color-periwinkle-900); flex-shrink: 0; }
.structure-foundation__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy-900);
  letter-spacing: 0;
}
@media (max-width: 640px) {
  .structure-foundation { padding: var(--space-4) var(--space-5); }
  .structure-foundation__label { font-size: 13px; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   GROUP-ONLY — platform grid (4 hovedkomponenter)
   ══════════════════════════════════════════════════════════ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  max-width: 1260px;
  margin: 0 auto;
}
.platform-card {
  background: var(--color-white);
  border: 1px solid var(--color-lavender-100);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-7);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(19,25,44,0.08);
}
.platform-card__index {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-periwinkle-500);
  margin-bottom: var(--space-4);
}
.platform-card__icon {
  width: 70px;
  height: 70px;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.platform-card__icon svg {
  width: 70px;
  height: 70px;
  stroke: #DBE1F5;
}
.platform-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-navy-900);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.2px;
}
.platform-card__text {
  font-size: 15px;
  color: var(--color-navy-500);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1023px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .platform-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .platform-card { padding: var(--space-7) 30px; }
}

/* ══════════════════════════════════════════════════════════
   GROUP-ONLY — investor section (dark 4-card)
   ══════════════════════════════════════════════════════════ */
.investor-section {
  padding: var(--space-20) 0;
  background: var(--grad-navy-rich);
}
@media (max-width: 768px) {
  .investor-section { padding: var(--space-16) 0; }
}
.investor-section .section-intro { max-width: 820px; }
.investor-section .section-heading { color: var(--color-white); }
.investor-section .heading-accent { color: var(--color-periwinkle-500); }
.investor-section .section-eyebrow { color: var(--color-periwinkle-500); }
.investor-section .section-subheading { color: var(--color-white); }

.investor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  max-width: 1260px;
  margin: 0 auto;
}
.investor-card {
  padding: var(--space-8) var(--space-6);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease, transform 0.3s ease;
}
.investor-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.investor-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  color: var(--color-periwinkle-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.investor-card__icon svg { width: 22px; height: 22px; }
.investor-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.2px;
}
.investor-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-white);
  margin: 0;
}
@media (max-width: 1023px) {
  .investor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .investor-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .investor-card { padding: var(--space-7) 30px; }
}

