
/* ════════════════════════════════════════════════════
   CVI: 4 farver, Figtree Light (300) + Extra Bold (800)
   ════════════════════════════════════════════════════ */
:root {
  --dark-blue: #1a2227;
  --mint: #2effd1;
  --warm-sand: #EBD7AF;
  --cold-sand: #fafafa;

  --cs-soft: rgba(250, 250, 250, 0.75);
  --cs-faint: rgba(250, 250, 250, 0.5);
  --cs-line: rgba(250, 250, 250, 0.12);
  --db-soft: rgba(26, 34, 39, 0.7);
  --db-faint: rgba(26, 34, 39, 0.45);
  --db-line: rgba(26, 34, 39, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--warm-sand); }

body {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  color: var(--cold-sand);
  background: var(--dark-blue);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection { background: var(--mint); color: var(--dark-blue); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong, b { font-weight: 800; }
section[id] { scroll-margin-top: 100px; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* TYPE */
.h1 {
  font-size: clamp(48px, 5.6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.h2 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  font-weight: 300;
}
.eyebrow {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: none;
  color: var(--mint);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.005em;
  border: none;
  border-radius: 20px 0 20px 0;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-mint { background: var(--mint); color: var(--dark-blue); }
.btn-mint:hover { background: var(--cold-sand); }
.btn-ghost-light {
  background: transparent;
  color: var(--cold-sand);
  border: 1.5px solid var(--cs-line);
}
.btn-ghost-light:hover { background: var(--cold-sand); color: var(--dark-blue); border-color: var(--cold-sand); }
.btn-ghost-dark {
  background: transparent;
  color: var(--dark-blue);
  border: 1.5px solid var(--db-line);
}
.btn-ghost-dark:hover { background: var(--dark-blue); color: var(--cold-sand); }
.arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* BAUHAUS DIVIDER — video-bånd som visuel pause */
.bauhaus-divider {
  position: relative;
  height: 52vh;
  min-height: 440px;
  max-height: 640px;
  overflow: hidden;
  background: var(--dark-blue);
}
.bauhaus-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}
/* Animeret Bauhaus-SVG (erstatter videoen) */
.bauhaus-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.bh-bg   { fill: var(--dark-blue); }
.bh-pill { fill: var(--warm-sand); }
.bh-hole { fill: var(--dark-blue); }
.bh-disc { fill: var(--cold-sand); }
.bh-mint { fill: var(--mint); }
.bh-dot  { fill: var(--cold-sand); }
.bh-arc  { fill: none; stroke: var(--warm-sand); stroke-width: 3; stroke-linecap: round; }
.bh-text { fill: var(--mint); font-family: inherit; font-weight: 800; font-size: 42px; letter-spacing: -0.8px; }
.bh-text-on { fill: var(--dark-blue); }
.bauhaus-tagline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cold-sand);
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 2px 24px rgba(26,34,39,0.4);
}

/* TEXT-SCROLL: hver linje farves når den scrolles ind (ord-baseret) */
.text-scroll {
  color: var(--dark-blue);
}
.text-scroll .ts-word {
  display: inline-block;
  opacity: var(--w, 0.18);
  transition: opacity 0.25s linear;
}
.text-scroll.on-dark { color: var(--cold-sand); }
.text-scroll.on-dark .ts-word {
  opacity: 1;
  color: color-mix(in srgb, var(--mint) calc(var(--m, 0) * 100%), var(--cold-sand));
  transition: color 0.2s linear;
}
.text-scroll.on-mint { color: var(--dark-blue); }
.text-scroll.on-mint .ts-word { opacity: var(--w, 0.25); }

/* NAV (transparent over hero, solid on scroll) */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
nav.is-scrolled {
  background: rgba(26, 34, 39, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo img { height: 36px; display: block; }
.zeit-logo { height: 36px; width: auto; display: block; }
.footer-brand .zeit-logo { margin-bottom: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 300;
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--mint);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 11px 18px; font-size: 13px; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* HERO — fyld hele viewport, mørk, device-kolonner med film-rulle bevægelse */
.hero {
  position: relative;
  background: var(--dark-blue);
  color: var(--cold-sand);
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Device grid: 5 kolonner i bredden, devices stables i hver kolonne */
.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 24px;
  z-index: 1;
  pointer-events: none;
}
.hero-col {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Track holder for animerede kolonner (indeholder devices i tre sæt for sømløs loop, robust på høje skærme) */
.hero-col-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
/* Afstand via margin i stedet for gap, så hver kasse (også den sidste i sættet)
   har samme mellemrum. Det gør, at -33,333% rammer præcis ét sæt (tre sæt i alt), og loopet
   ikke hakker, når kolonnen starter forfra. */
.hero-col-track .device { margin-bottom: 24px; }

.device {
  flex-shrink: 0;
  background: var(--dark-blue);
  overflow: hidden;
  /* CVI-form: rette hjørner i to modsatte hjørner, runding i de to andre */
  border-radius: 40px 0 40px 0;
  position: relative;
  /* Egen kompositlag, så rundingen klipper billedet rent under animationen */
  isolation: isolate;
  transform: translateZ(0);
}
.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Billedet følger kassens hjørner, så det ikke stumper ud i hjørnerne */
  border-radius: inherit;
  transform: scale(1.01);
  object-position: center;
  filter: brightness(0.78) saturate(0.9);
}
.device.laptop { aspect-ratio: 16/10; }
.device.phone  { aspect-ratio: 9/16; }
.device.tablet { aspect-ratio: 3/4; }

/* Alle fem kolonner animerer med samme tempo (70s), forskudt via animation-delay.
   Retninger: 1 ned, 2 op, 3 ned, 4 op, 5 ned. */
.hero-col[data-anim="down"] .hero-col-track {
  animation: col-scroll-down 70s linear infinite;
}
.hero-col[data-anim="up"] .hero-col-track {
  animation: col-scroll-up 70s linear infinite;
}
/* Forskudt start så kolonnerne ikke flugter */
.hero-col:nth-child(1) .hero-col-track { animation-delay: 0s; }
.hero-col:nth-child(2) .hero-col-track { animation-delay: -14s; }
.hero-col:nth-child(3) .hero-col-track { animation-delay: -28s; }
.hero-col:nth-child(4) .hero-col-track { animation-delay: -42s; }
.hero-col:nth-child(5) .hero-col-track { animation-delay: -56s; }

@keyframes col-scroll-down {
  0%   { transform: translateY(-33.333%); }
  100% { transform: translateY(0%); }
}
@keyframes col-scroll-up {
  0%   { transform: translateY(0%); }
  100% { transform: translateY(-33.333%); }
}

/* Mørk overlay/gradient over devices — center er læsbar */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 55% at center, rgba(26,34,39,0.95) 0%, rgba(26,34,39,0.86) 40%, rgba(26,34,39,0.72) 70%, rgba(26,34,39,0.6) 100%);
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}
.hero-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-eyebrow {
  margin-bottom: 36px;
  color: var(--mint);
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: none;
  opacity: 0;
  transform: translateY(12px);
  animation: hero-intro 0.8s cubic-bezier(.2,.7,.2,1) 0.6s forwards;
}
.hero-eyebrow::before { display: none; }
.hero-headline {
  margin-bottom: 32px;
  color: var(--cold-sand);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-intro 0.9s cubic-bezier(.2,.7,.2,1) 0.85s forwards;
}
.hero-headline .hl {
  display: inline-block;
  background: var(--mint);
  color: var(--dark-blue);
  padding: 0 0.12em;
  margin: 0 0.02em;
  border-radius: 2px;
  line-height: 0.95;
}
.hero-sub {
  margin: 0 auto;
  color: var(--cold-sand);
  max-width: 60ch;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-intro 0.9s cubic-bezier(.2,.7,.2,1) 1.1s forwards;
}
@keyframes hero-intro {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-cue (lille pil/tekst i bunden) */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: none;
  color: var(--cold-sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: hero-intro 0.8s ease 1.4s forwards;
}
.hero-scroll-cue::after {
  content: '';
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--cs-faint), transparent);
  animation: cue-pulse 2s ease-in-out infinite;
}
@keyframes cue-pulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

@media (max-width: 900px) {
  .hero { height: 100vh; min-height: 600px; }
  .hero-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 14px; }
  .hero-col:nth-child(4), .hero-col:nth-child(5) { display: none; }
  .hero-overlay {
    background: radial-gradient(ellipse 95% 60% at center, rgba(26,34,39,0.95) 0%, rgba(26,34,39,0.82) 60%, rgba(26,34,39,0.7) 100%);
  }
}

/* WORDMARKS — infinite marquee (højre → venstre) */
.wordmarks-section {
  padding: 56px 0 64px;
  overflow: hidden;
}
.wordmarks-label {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: none;
  color: var(--cold-sand);
  text-align: center;
  margin-bottom: 36px;
  transition: color .5s ease;
}
.wordmarks-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #1a2227 8%, #1a2227 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #1a2227 8%, #1a2227 92%, transparent 100%);
}
.wordmarks-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 72px;
  will-change: transform;
  animation: marquee 60s linear infinite;
  color: var(--cold-sand);
}

/* client logos in marquee — equal optical footprint, seamless loop */
.wm-logo { display:flex; align-items:center; justify-content:center; flex:0 0 auto; margin-right:52px; opacity:.85; transition:opacity .3s ease; }
.wm-logo:hover { opacity:1; }
.wm-logo svg { display:block; width:auto; height:auto; max-height:28px; max-width:128px; transition: fill .5s ease; }
.wm-logo svg[aria-label="Kia"] { max-height:23px; max-width:104px; }
.wm-logo svg[aria-label="Aura"] { max-height:24px; max-width:104px; }
.wm-logo svg[aria-label="Norlys"] { max-height:38px; }
.wm-logo svg[aria-label="Mr Green"] { max-height:38px; }
.wm-logo svg[aria-label="Jyllands-Posten"] { max-width:160px; }
.wm-logo svg[aria-label="F\E5 rup Sommerland"] { max-height:40px; }
.wm-logo svg[aria-label="Lidl"] { max-height:40px; }
.wm-img[src$="logo-11.svg"] { max-height:36px; }
.wm-img[src$="logo-29.svg"] { max-height:36px; }

/* Når baggrunden under sektionen glider over i sandfarven, skifter
   label + logoer til mørkeblå, så de forbliver læsbare */
.wordmarks-section.on-light .wordmarks-label { color: var(--dark-blue); }
.wordmarks-section.on-light .wm-logo svg { fill: var(--dark-blue); }
.wordmarks-section.on-light .wm-img { filter: brightness(0); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.wm { font-size: clamp(18px, 1.6vw, 24px); font-weight: 800; letter-spacing: -0.02em; opacity: 0.85; white-space: nowrap; }
.wm.italic { font-style: italic; }
.wm.spaced { letter-spacing: 0.16em; font-size: clamp(13px, 1.2vw, 17px); }
.wm.lower { font-weight: 300; }
@media (max-width: 900px) {
  .wordmarks-track { animation-duration: 44s; }
  .wm-logo { margin-right: 44px; }
}

/* KPI (warm sand) */
.kpi {
  background: var(--warm-sand);
  color: var(--dark-blue);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.kpi::after {
  content: '';
  position: absolute;
  top: 48px; right: 48px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(26, 34, 39, 0.04);
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  position: relative;
  z-index: 1;
}
.kpi-item { display: flex; flex-direction: column; gap: 18px; }
.kpi-number {
  font-size: clamp(64px, 8.5vw, 132px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--dark-blue);
}
.kpi-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 28ch;
  color: var(--dark-blue);
}
@media (max-width: 800px) { .kpi-grid { grid-template-columns: 1fr; gap: 40px; } }

/* VALUE PROP (dark blue) */
.valueprop {
  padding: 120px 0 190px;
  position: relative;
  overflow: hidden;
}
.valueprop::after {
  content: '';
  position: absolute;
  bottom: 80px; right: -60px;
  width: 240px; height: 120px;
  background: var(--warm-sand);
  border-radius: 240px 240px 0 0;
  opacity: 0.85;
}
.valueprop::before {
  content: '';
  position: absolute;
  /* hele cirklen ligger inde i sektionen (med løftet på -100px giver det ~40px luft
     til bunden), så overflow:hidden aldrig klipper den — heller ikke når den drifter/popper */
  bottom: -60px; right: 100px;
  width: 220px; height: 220px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.85;
}
/* Når en bullet foldes ud: halvcirklerne bliver til hele cirkler og skalerer så ned til 0.
   Lukkes teksten igen, spoles animationen baglæns (vokser op, og bliver halvcirkler igen). */
.valueprop::after, .valueprop::before {
  transform-origin: center;
  transform: translateY(-100px) scale(1);   /* cirklerne løftet 100px op */
  /* LUK-sekvens (når .vp-open fjernes): pop blødt op igen, morf derefter tilbage */
  transition:
    transform .5s cubic-bezier(.34, 1.4, .64, 1) 0s,
    opacity .32s ease 0s,
    height .5s cubic-bezier(.4, 0, .2, 1) .5s,
    bottom .5s cubic-bezier(.4, 0, .2, 1) .5s,
    border-radius .5s cubic-bezier(.4, 0, .2, 1) .5s;
}
.valueprop.vp-open::after,
.valueprop.vp-open::before {
  /* ÅBN-sekvens: morf blødt til hel cirkel → pust kraftigt op (balloon) → brist som en ballon */
  transition:
    height .5s cubic-bezier(.4, 0, .2, 1) 0s,
    bottom .5s cubic-bezier(.4, 0, .2, 1) 0s,
    border-radius .5s cubic-bezier(.4, 0, .2, 1) 0s,
    transform .46s cubic-bezier(.34, 0, .56, -.7) .5s,
    opacity .12s ease .82s;
  transform: translateY(-100px) scale(0);
  opacity: 0;
}
.valueprop.vp-open::after {
  height: 240px;            /* fra halvcirkel (120px) → hel cirkel */
  bottom: 0;
  border-radius: 50%;
}
.valueprop.vp-open::before {
  bottom: 0;                /* mint-cirklen løftes helt op, så den ses som en hel cirkel */
}

/* SCROLL STAGE — liquid display heading on a pinned panel */
.stage { position: relative; height: 100vh; background: var(--dark-blue); }
.stage-pin {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark-blue);
}
.stage-svg {
  width: min(92vw, 1180px); height: auto;
  will-change: transform; transform-origin: center center;
}
.stage-text {
  font-family: 'Figtree', sans-serif; font-weight: 900;
  font-size: 240px; fill: var(--cold-sand);
}

/* AIDA — ord der skifter blødt mellem Attention / Interest / Desire / Action */
.aida {
  position: relative;
  width: min(92vw, 1180px);
  height: 1.1em;
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: clamp(54px, 15.5vw, 206px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cold-sand);
  transition: color .35s ease;     /* blødt farveskift på scroll */
}
.aida-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  will-change: transform, opacity, filter;
  /* hviletilstand: venter under linjen, sløret og usynligt */
  opacity: 0;
  filter: blur(18px);
  transform: translateY(0.5em) scale(0.97);
  transition: opacity .6s ease,
              filter .6s ease,
              transform .8s cubic-bezier(.16,.84,.3,1);
}
.aida-word.is-in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.aida-word.is-out {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(-0.5em) scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .aida-word, .aida-word.is-in, .aida-word.is-out {
    filter: none !important;
    transform: none !important;
    transition: opacity .45s ease !important;
  }
}
.stage-corner, .stage-side {
  position: absolute; color: var(--cold-sand);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
}
.stage-corner.tl { top: 40px; left: 40px; }
.stage-corner.tr { top: 40px; right: 40px; }
.stage-corner.mint { color: var(--mint); }
.stage-side { top: 50%; }
.stage-side.sl { left: 34px; transform: translateY(-50%) rotate(-90deg); transform-origin: left center; }
.stage-side.sr { right: 34px; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }
.stage-bar {
  position: absolute; left: 0; right: 0; bottom: 44px;
  display: flex; justify-content: center; gap: 46px;
  color: var(--cold-sand); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
@media (max-width: 900px) {
  .stage { height: 100vh; }
  .stage-side { display: none; }
  .stage-bar { gap: 16px; font-size: 9px; flex-wrap: wrap; padding: 0 16px; bottom: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .stage { height: auto; }
  .stage-pin { height: 78vh; }
}
.vp-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.vp-eyebrow { margin-bottom: 24px; color: var(--cold-sand); letter-spacing: normal; font-weight: 800; font-size: 15px; text-transform: none; }
.vp-top h2 { max-width: 12ch; }
.vp-list { list-style: none; display: flex; flex-direction: column; }
.vp-list li {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--cold-sand);
}

/* value-prop accordion */
.vp-item { display: block; }
.vp-q {
  display: flex; align-items: flex-start; gap: 18px; width: 100%;
  padding: 22px 0; background: none; border: 0; cursor: pointer;
  color: var(--cold-sand); font: inherit; font-size: 16px; font-weight: 300;
  line-height: 1.45; text-align: left;
}
.vp-q-text { flex: 1; transition: color .3s ease; }
.vp-item.open .vp-q-text,
.vp-q:hover .vp-q-text { color: var(--mint); }
.vp-ic { position: relative; flex-shrink: 0; width: 16px; height: 16px; margin-top: 4px;
  transform: scale(0); opacity: 0; transform-origin: center;
  transition: transform .6s cubic-bezier(.2, 2, .35, 1) .18s, opacity .4s ease .18s; }
.vp-item.in .vp-ic { transform: scale(1); opacity: 1; }
.vp-q:hover .vp-ic { transform: scale(1) rotate(360deg); transition-delay: 0s; }
@media (prefers-reduced-motion: reduce){ .vp-ic { opacity: 1 !important; transform: none !important; } }
.vp-ic::before, .vp-ic::after {
  content: ""; position: absolute; background: var(--mint);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}
.vp-ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.vp-ic::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.vp-item.open .vp-ic::after { transform: rotate(90deg); opacity: 0; }
.vp-a { overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease; }
.vp-item.open .vp-a { opacity: 1; }
.vp-a p { margin: 0; padding: 0 0 26px 0; font-size: 15px; line-height: 1.6;
  color: var(--cold-sand); max-width: 62ch; }
.vp-tri {
  flex-shrink: 0;
  width: 0; height: 0;
  border-left: 12px solid var(--mint);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-top: 4px;
}

/* PARTNER CARDS (continues dark blue) */
.partner {
  padding: 80px 0 130px;
  position: relative;
  z-index: 1;
}
.partner-eyebrow {
  margin-bottom: 24px;
  color: var(--cold-sand);
  letter-spacing: normal;
  font-weight: 800;
  font-size: 15px;
  text-transform: none;
}
.partner h3 {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 50px;
  max-width: 22ch;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.partner-item {
  padding-top: 28px;
}
.partner-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.partner-item h4 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--cold-sand);
  max-width: 22ch;
}
@media (max-width: 900px) {
  .vp-top { grid-template-columns: 1fr; gap: 32px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}

/* SERVICES (warm sand) */
.services {
  background: var(--warm-sand);
  color: var(--dark-blue);
  padding: 120px 0;
}
.services-head .eyebrow { color: var(--dark-blue); }
.services-head h2 { margin-top: 22px; margin-bottom: 70px; max-width: 16ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(26, 34, 39, 0.18);
}
.service {
  border-bottom: 1px solid rgba(26, 34, 39, 0.18);
  border-right: 1px solid rgba(26, 34, 39, 0.18);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
}
.service:nth-child(3n) { border-right: none; }
.service:nth-last-child(-n+3) { border-bottom: none; }
.service-icon { width: 44px; height: 44px; margin-bottom: 12px; }
.service-icon svg { width: 100%; height: 100%; display: block; }
.service h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.015em; color: var(--dark-blue); }
.service p { font-size: 14px; font-weight: 300; line-height: 1.5; color: var(--dark-blue); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: none !important; border-bottom: 1px solid rgba(26,34,39,0.18) !important; }
  .service:last-child { border-bottom: none !important; }
}

/* ZEIT animeret mærke (services-sektion) — scroll-scrubbed */
.zeit-mark { margin-top: 80px; display: flex; justify-content: center; }
.zeit-mark svg { width: 100%; max-width: 440px; height: auto; overflow: visible; }
.zeit-mark-line {
  fill: none; stroke: var(--dark-blue); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1; /* drevet af scroll via JS */
}
.zeit-mark-fill {
  fill: var(--dark-blue); opacity: 0; transform: scale(.6);
  transform-box: fill-box; transform-origin: center;
}
@media (max-width: 600px){ .zeit-mark { margin-top: 52px; } }
@media (prefers-reduced-motion: reduce){
  .zeit-mark-line { stroke-dashoffset: 0 !important; }
  .zeit-mark-fill { opacity: 1 !important; transform: none !important; }
}

/* CASES — Show-off layout: stort billede øverst, info nedenunder */
.cases {
  background: var(--cold-sand);
  color: var(--dark-blue);
  padding: 120px 0 100px;
  overflow: hidden;
}
.cases-head .eyebrow { color: var(--dark-blue); }
.cases-head {
  display: block;
  margin-bottom: 64px;
}
.cases-head h2 { margin-top: 22px; max-width: none; }
.cases-head p { color: var(--dark-blue); max-width: 42ch; }

.cases-carousel {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.cases-carousel:active { cursor: grabbing; }
.cases-carousel::-webkit-scrollbar { display: none; }

.cases-track {
  display: flex;
  gap: 32px;
  padding: 0 max(40px, calc((100vw - 1280px) / 2));
}

.case-card {
  flex: 0 0 calc(min(720px, 80vw));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.case-card:hover { transform: translateY(-6px); }

/* Stort billede med case-info nederst inde i billedet */
.case-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-blue);
  border-radius: 4px;
}
.case-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.case-card:hover .case-img img { transform: scale(1.04); }
.case-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,34,39,0.7) 100%);
  pointer-events: none;
}
.case-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: none;
  color: var(--cold-sand);
  background: rgba(26, 34, 39, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 2;
}
.case-meta-on-img {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: none;
  font-weight: 800;
  color: var(--cold-sand);
  z-index: 2;
}
.case-meta-on-img .case-meta-tag { color: var(--mint); }

/* Forenklet case: firmanavn på billedet */
.case-name {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--cold-sand);
}

/* CASES — to rækker af miljøbilleder der kører i hver sin retning */
.cases-marquee {
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.cases-row {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}
.cases-row.row-left,
.cases-row.row-right { transform: translateX(0); }
@media (max-width: 760px){ .hsub-br { display: none; } }
.cases-row { cursor: grab; user-select: none; -webkit-user-select: none; }
.cases-row img, .cases-row .case-link { -webkit-user-drag: none; user-select: none; }
.cases-marquee.dragging, .cases-marquee.dragging .case-link { cursor: grabbing; }

/* --- Sideovergang: pak sammen, glid videre, pak ud (View Transitions) --- */
@view-transition { navigation: auto; }
::view-transition { background-color: #EBD7AF; }
/* Standard = forward (maalside til hoejre): ny side fra hoejre, gammel ud til venstre.
   :root.vt-back (maalside til venstre): ny side fra venstre, gammel ud til hoejre.
   3 faser uden pauser: pak sammen -> flyt -> pak ud (0,5s hver). */
::view-transition-old(root){ animation: vt-out-fwd 2250ms both; transform-origin: center center; filter: drop-shadow(0 22px 44px rgba(26,34,39,.38)); }
::view-transition-new(root){ animation: vt-in-fwd 2250ms both; transform-origin: center center; filter: drop-shadow(0 22px 44px rgba(26,34,39,.38)); }
:root.vt-back::view-transition-old(root){ animation-name: vt-out-back; }
:root.vt-back::view-transition-new(root){ animation-name: vt-in-back; }
@keyframes vt-out-fwd {
  0%   { transform: translateX(0) scale(1); clip-path: inset(0px round 0px 0px 0px 0px); animation-timing-function: cubic-bezier(.7,0,.22,1); }
  33%  { transform: translateX(0) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); animation-timing-function: cubic-bezier(.83,0,.17,1); }
  67%  { transform: translateX(-110%) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); }
  100% { transform: translateX(-110%) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); }
}
@keyframes vt-in-fwd {
  0%   { transform: translateX(110%) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); animation-timing-function: linear; }
  33%  { transform: translateX(110%) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); animation-timing-function: cubic-bezier(.83,0,.17,1); }
  67%  { transform: translateX(0) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); animation-timing-function: cubic-bezier(.16,1,.3,1); }
  100% { transform: translateX(0) scale(1); clip-path: inset(0px round 0px 0px 0px 0px); }
}
@keyframes vt-out-back {
  0%   { transform: translateX(0) scale(1); clip-path: inset(0px round 0px 0px 0px 0px); animation-timing-function: cubic-bezier(.7,0,.22,1); }
  33%  { transform: translateX(0) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); animation-timing-function: cubic-bezier(.83,0,.17,1); }
  67%  { transform: translateX(110%) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); }
  100% { transform: translateX(110%) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); }
}
@keyframes vt-in-back {
  0%   { transform: translateX(-110%) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); animation-timing-function: linear; }
  33%  { transform: translateX(-110%) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); animation-timing-function: cubic-bezier(.83,0,.17,1); }
  67%  { transform: translateX(0) scale(.86); clip-path: inset(0px round 0px 200px 0px 200px); animation-timing-function: cubic-bezier(.16,1,.3,1); }
  100% { transform: translateX(0) scale(1); clip-path: inset(0px round 0px 0px 0px 0px); }
}
@media (prefers-reduced-motion: reduce){
  ::view-transition-old(root),::view-transition-new(root){ animation: none; }
}
/* Rækkerne drives af JS: auto-rul + dobbelt tempo ved scroll */

.cases-shot {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 440px);
  aspect-ratio: 1 / 1;
  border-radius: 32px 0 32px 0;
  overflow: hidden;
  background: var(--dark-blue);
  margin: 0;
}
.cases-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cases-shot .case-name { display: none; }
.cases-shot::after { content:''; position:absolute; inset:0; z-index:1; background: linear-gradient(to top, rgba(26,34,39,0.6), rgba(26,34,39,0) 50%); pointer-events:none; }
.cases-shot .case-logo { position:absolute; left:22px; bottom:20px; z-index:2; width:auto; height:auto; max-height:28px; max-width:50%; transform:none; filter: brightness(0) invert(1); }
/* Stoerre logoer for udvalgte cases */
.case-logo[src*="logo-11"], /* Sport 24 */
.case-logo[src*="logo-18"], /* Faarup */
.case-logo[src*="logo-20"], /* Lidl */
.case-logo[src*="logo-22"], /* Norlys */
.case-logo[src*="logo-24"], /* Mr Green */
.case-logo[src*="logo-26"], /* Semler Mobility */
.case-logo[src*="logo-29"]  /* MG Motors */
{ max-height: 44px; max-width: 66%; }
/* Billed-framing pr. case */
   /* Frie: venstre figur, rykket helt til venstre */
.cases-shot .case-cta { position:absolute; right:22px; bottom:20px; z-index:2; display:inline-flex; align-items:center; gap:6px; color:var(--cold-sand); font-size:14px; font-weight:600; letter-spacing:.01em; white-space:nowrap; transition:color .25s ease; pointer-events:none; }
.cases-shot .case-cta svg { width:14px; height:14px; display:block; transition:transform .25s ease; }
.cases-shot:hover .case-cta { color: var(--mint); }
.cases-shot:hover .case-cta svg { transform: translateX(3px); }
@media (max-width: 720px){
  .cases-shot .case-logo { left:16px; bottom:16px; max-width:40%; }
  .cases-shot .case-cta { right:16px; bottom:16px; font-size:11px; gap:4px; }
  .cases-shot .case-cta svg { width:11px; height:11px; }
}
.cases-shot .case-link { display:block; width:100%; height:100%; cursor:pointer; margin: 0; padding: 0; }
.wm-img { width:auto; height:auto; max-height:28px; max-width:128px; display:block; filter: brightness(0) invert(1); transition: filter .5s ease; }
@media (max-width: 700px){
  .cases-shot { width: clamp(220px, 70vw, 300px); }
}

/* Info under billedet (uden for boksen — på cold sand baggrund) */
.case-body {
  padding: 28px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-client {
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--dark-blue);
}
.case-tagline {
  font-size: 17px;
  font-weight: 300;
  color: var(--dark-blue);
  line-height: 1.45;
  max-width: 52ch;
}
.case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid var(--db-line);
}
.case-stat strong {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  color: var(--dark-blue);
  letter-spacing: -0.015em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.case-stat span {
  font-size: 12px;
  color: var(--dark-blue);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: none;
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark-blue);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: none;
  align-self: flex-start;
  border-bottom: 1px solid var(--dark-blue);
  padding-bottom: 4px;
}
.cases-shot .case-link:hover { color: var(--mint); border-bottom: 0; }

/* Carousel navigation */
.cases-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.cases-counter {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--dark-blue);
  font-variant-numeric: tabular-nums;
  min-width: 60px;
}
.cases-counter span { color: var(--dark-blue); }
.cases-progress {
  flex: 1;
  height: 2px;
  background: var(--db-line);
  border-radius: 2px;
  overflow: hidden;
  min-width: 120px;
}
.cases-progress-fill {
  height: 100%;
  background: var(--dark-blue);
  width: 11.1%;
  transition: width .35s cubic-bezier(.2,.8,.2,1);
}
.cases-buttons { display: flex; gap: 10px; }
.cases-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--db-line);
  background: transparent;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  font-family: inherit;
}
.cases-btn svg { width: 18px; height: 18px; }
.cases-btn:hover:not(:disabled) {
  background: var(--dark-blue);
  color: var(--cold-sand);
  border-color: var(--dark-blue);
}
.cases-btn:hover:not(:disabled) { transform: scale(1.05); }
.cases-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* Drag-to-scroll cursor */
.cases-carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.cases-carousel.is-dragging .case-card { pointer-events: none; }

@media (max-width: 1000px) {
  .case-card {
    flex: 0 0 calc(min(520px, 88vw));
  }
  .case-img { aspect-ratio: 4/3; }
  .case-body { padding: 22px 4px 0; gap: 12px; }
  .case-stats { gap: 22px; }
  .cases-head { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .case-body { padding: 24px; }
  .case-stats { gap: 14px; }
  .cases-nav { gap: 16px; }
  .cases-btn { width: 44px; height: 44px; }
}

/* TESTIMONIAL (mint) */
.testimonial {
  background: var(--mint);
  color: var(--dark-blue);
  padding: 130px 0;
  position: relative;
  overflow: clip;
  overflow-clip-margin: 240px;
}
.testimonial::before {
  content: '';
  position: absolute;
  bottom: -135px; left: 20px;
  width: 290px; height: 290px;
  background: var(--cold-sand);
  border-radius: 50%;
  opacity: 1;
  transform: translateX(var(--t-roll, 0px)) rotate(var(--t-roll-deg, 0deg));
  will-change: transform;
}
.t-inner { position: relative; z-index: 1; max-width: 900px; }
.t-mark {
  margin-bottom: 16px;
  line-height: 0;
  color: var(--dark-blue);
}
.t-mark svg { width: clamp(112px, 12vw, 150px); height: auto; display: inline-block; }
.t-text {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 22ch;
}
.t-meta { font-size: 14px; font-weight: 300; }
.t-meta strong { font-weight: 800; }

/* TEAM (dark blue) */
.team {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.team::after {
  content: '';
  position: absolute;
  top: 80px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(250,250,250,0.04);
  border-radius: 50%;
}
.team-head .eyebrow { color: var(--mint); }
.team-head h2 { margin-top: 22px; margin-bottom: 20px; max-width: 14ch; }
.team-head p { color: var(--cold-sand); max-width: 44ch; margin-bottom: 70px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.member { display: flex; flex-direction: column; gap: 14px; }
.avatar {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--warm-sand);
}
.avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.member:hover .avatar img { transform: scale(1.05); }
.avatar-pending { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 10px; background: var(--warm-sand); color: var(--dark-blue); font-size: 12px; font-weight: 300; line-height: 1.3; }
.member-name { font-size: 15px; font-weight: 800; letter-spacing: -0.015em; color: var(--cold-sand); }
.member-role { font-size: 12px; font-weight: 300; color: var(--cold-sand); margin-top: -8px; }

@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* CROSS-SELL (warm sand) */
.crosssell {
  background: var(--cold-sand);
  color: var(--dark-blue);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.crosssell::after {
  content: '';
  position: absolute;
  top: 80px; right: -60px;
  width: 240px; height: 240px;
  border: 1.5px solid rgba(26,34,39,0.12);
  border-radius: 50%;
}
.crosssell-head .eyebrow { color: var(--dark-blue); }
.crosssell-head h2 { margin-top: 22px; margin-bottom: 16px; max-width: 18ch; }
.crosssell-head p { color: var(--dark-blue); max-width: 50ch; margin-bottom: 56px; }
/* Andre dele af Zeit: dekorative brand-elementer oeverst til hoejre (Pernilles mockup) */
.crosssell::after { display: none; }
.crosssell .wrap { position: relative; }
.crosssell-head { position: relative; z-index: 1; }
.crosssell-deco { position: absolute; top: 6px; right: 0; width: 440px; height: 289px; z-index: 0; pointer-events: none; overflow: hidden; }
.crosssell-deco .cd { position: absolute; display: block; height: auto; }
/* placering tracet efter Pernilles oplaeg */
.crosssell-deco .cd1 { width: 296px; left: 148px; top: -10px; }
.crosssell-deco .cd3 { width: 298px; left: -28px; top: -73px; }
.crosssell-deco .cd2 { width: 230px; left: -65px; top: 88px; transform: rotate(90deg); }
  /* De tre former falder paa plads naar cross-sell kommer i syne (kun >1060px) */
  .crosssell-deco .cd { opacity: 0; transition: opacity .5s ease, transform .8s cubic-bezier(.16,1,.3,1); }
  .crosssell-deco .cd1, .crosssell-deco .cd3 { transform: translateY(-36px); }
  .crosssell-deco .cd2 { transform: translateY(-36px) rotate(90deg); }
  .crosssell-deco.in .cd3 { opacity: 1; transform: translateY(0); transition-delay: .04s; }
  .crosssell-deco.in .cd1 { opacity: 1; transform: translateY(0); transition-delay: .15s; }
  .crosssell-deco.in .cd2 { opacity: 1; transform: translateY(0) rotate(90deg); transition-delay: .26s; }
  @media (prefers-reduced-motion: reduce) {
    .crosssell-deco .cd { transition: opacity .3s ease; }
    .crosssell-deco .cd1, .crosssell-deco .cd3 { transform: none; }
    .crosssell-deco .cd2 { transform: rotate(90deg); }
  }
@media (max-width: 1060px){ .crosssell-deco { display: none; } }

.crosssell-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 1; }
.product {
  background: var(--dark-blue);
  color: var(--cold-sand);
  border-radius: 0 72px 0 72px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}
.product:hover { transform: translateY(-4px); }
/* Mint-lag med kopi af teksten i moerkeblaa; afsloeres af en clip-path-cirkel der vokser fra hjoernet */
.product-fill {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--mint);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  pointer-events: none;
  clip-path: circle(95px at 100% 100%);
  transition: clip-path .55s cubic-bezier(.65,0,.35,1);
  will-change: clip-path;
}
.product .product-fill .product-eyebrow,
.product .product-fill h3,
.product .product-fill p,
.product .product-fill .product-link { color: var(--dark-blue); }
.product-eyebrow {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: none;
  color: var(--mint);
  position: relative;
  z-index: 1;
}
.product h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}
.product p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cold-sand);
  flex: 1;
  position: relative;
  z-index: 1;
}
.product-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--cold-sand);
  position: relative;
  z-index: 1;
}
/* Hover (desktop) + scroll-fremhævning (mobil): baggrund -> #fafafa, lys tekst -> mørkeblå */
.product, .product .product-eyebrow, .product h3, .product p, .product .product-link {
  transition: transform .3s ease, background .3s ease, color .45s ease;
}
/* Mobil scroll-fremhaevning beholder lys baggrund + moerk tekst */
.crosssell .product.in-focus { background: var(--cold-sand); }
.crosssell .product.in-focus .product-eyebrow,
.crosssell .product.in-focus h3,
.crosssell .product.in-focus p,
.crosssell .product.in-focus .product-link { color: var(--dark-blue); }
  /* Mobil: in-focus kort blev cold-sand paa cold-sand sektion = usynligt. Goer det mint (synligt, CVI-ok) */
  @media (max-width: 800px) { .crosssell .product.in-focus { background: var(--mint); } }
/* Desktop hover: cirklen vokser fra hjoernet og masker tekst-kopien (moerkeblaa) ind */
@media (hover: hover) and (min-width: 721px) {
  .product:hover .product-fill { clip-path: circle(1200px at 100% 100%); }
}
@media (max-width: 800px) { .crosssell-grid { grid-template-columns: 1fr; } }

/* ───────── NEWSLETTER (mint) ───────── */
.newsletter {
  background: var(--mint);
  color: var(--dark-blue);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.nl-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.nl-visual { display: flex; justify-content: center; }
.nl-visual .zeit-mark { margin: 0; width: 100%; }
.nl-visual .zeit-mark svg { max-width: 340px; }
.newsletter .wrap { position: relative; z-index: 1; }
.nl-inner { max-width: 560px; margin: 0; }
.newsletter .eyebrow { color: var(--dark-blue); display: block; margin-bottom: 20px; }
.newsletter h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 16px;
}
.newsletter p {
  color: var(--dark-blue); font-size: 16px; line-height: 1.55;
  max-width: 46ch; margin: 0 0 32px;
}
.nl-form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; margin: 0; }
.nl-row { display: flex; gap: 10px; }
.nl-consent { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; line-height: 1.45; text-align: left; color: var(--dark-blue); cursor: pointer; }
.nl-consent input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--dark-blue); flex: none; cursor: pointer; }
.nl-consent a { color: var(--dark-blue); text-decoration: underline; }
.nl-input {
  flex: 1; min-width: 0; padding: 15px 18px;
  border: 1.5px solid var(--dark-blue); border-radius: 12px 0 12px 0;
  background: var(--cold-sand); color: var(--dark-blue);
  font: inherit; font-size: 15px; outline: none;
  transition: box-shadow .2s ease;
}
.nl-input::placeholder { color: rgba(26,34,39,0.5); }
.nl-input:focus { box-shadow: 0 0 0 3px rgba(26,34,39,0.18); }
.nl-btn {
  padding: 15px 26px; background: var(--dark-blue); color: var(--mint);
  border: 0; border-radius: 12px 0 12px 0; font: inherit; font-weight: 800; font-size: 15px;
  cursor: pointer; white-space: nowrap; transition: transform .2s ease;
}
.nl-btn:hover { transform: translateY(-2px); }
.nl-note { font-size: 12px; color: var(--dark-blue); margin-top: 14px; }
.nl-success { font-size: 15px; font-weight: 700; color: var(--dark-blue); margin-top: 12px; min-height: 1.3em; }
@media (max-width: 720px) {
  .newsletter { padding: 72px 0; text-align: center; }
  .nl-grid { grid-template-columns: 1fr; gap: 36px; }
  .nl-inner { margin: 0 auto; }
  .nl-form { margin: 0 auto; }
  .newsletter p { margin: 0 auto 32px; }
  .nl-visual .zeit-mark svg { max-width: 260px; }
  .nl-row { flex-direction: column; }
  .nl-btn { width: 100%; }
}

/* FINAL CTA / BOOKING (dark blue) */
.finalcta {
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}
.booking-grid {
  display: block;
  position: relative;
  z-index: 1;
}
.booking-left { margin-bottom: 46px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px 64px; align-items: center; }
.booking-intro { max-width: 640px; }
.booking-includes { align-self: center; }
.booking-left .eyebrow { display: block; margin-bottom: 22px; }
.booking-left h2 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 22px;
}
.booking-left p {
  font-size: 16px;
  font-weight: 300;
  color: var(--cold-sand);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 44ch;
}
.booking-includes { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.booking-includes li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  font-weight: 300;
  color: var(--cold-sand);
}
.booking-includes li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%2238%2014%20126%20140%22%20fill%3D%22%232effd1%22%3E%3Cpolygon%20points%3D%2270.3%20146.8%2044.1%2099.6%2048.4%2097.3%2070.7%20137.5%20146.2%2026.6%20150.2%2029.3%2070.3%20146.8%22%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
}

/* Booking-kort (kalender) */
.booking-card {
  background: var(--cold-sand);
  color: var(--dark-blue);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 30px 60px -20px rgba(26,34,39,0.45);
}
.booking-embed { position: relative; z-index: 1; }
.booking-embed iframe { width: 100%; height: 760px; border: 8px solid var(--mint); border-radius: 20px 0 20px 0; background: var(--cold-sand); display: block; box-shadow: 0 50px 90px -25px #252f35; }
.booking-fallback { display: inline-block; margin-top: 16px; font-size: 14px; color: var(--mint); text-decoration: none; border-bottom: 1px solid transparent; }
.booking-fallback:hover { border-bottom-color: var(--mint); }
@media (max-width: 720px){ .booking-embed iframe { height: 100vh; height: 100dvh; } }
.booking-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.booking-card-month { font-size: 15px; font-weight: 800; }
.booking-card-nav { display: flex; gap: 6px; }
.booking-card-nav-btn {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--db-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  cursor: pointer;
  transition: background .15s ease;
}
.booking-card-nav-btn:hover { background: rgba(26,34,39,0.16); }
.booking-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 18px;
}
.booking-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.booking-day.header { font-size: 11px; font-weight: 800; opacity: 0.5; cursor: default; }
.booking-day:not(.header):hover { background: rgba(26,34,39,0.05); }
.booking-day.disabled { opacity: 0.3; cursor: not-allowed; }
.booking-day.disabled:hover { background: transparent; }
.booking-day.available { background: rgba(46,255,209,0.18); color: var(--dark-blue); font-weight: 800; }
.booking-day.available:hover { background: var(--mint); }
.booking-day.selected { background: var(--dark-blue); color: var(--mint); font-weight: 800; }
.booking-slots { border-top: 1px solid var(--db-line); padding-top: 18px; }
.booking-slots-label { font-size: 11px; font-weight: 800; letter-spacing: normal; opacity: 1; margin-bottom: 10px; }
.booking-slot-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.booking-slot {
  text-align: center;
  padding: 10px 6px;
  font-size: 13px; font-weight: 800;
  border: 1px solid var(--db-line);
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.booking-slot:hover { background: var(--dark-blue); color: var(--mint); border-color: var(--dark-blue); }
.booking-slot.selected { background: var(--dark-blue); color: var(--mint); border-color: var(--dark-blue); }
.booking-confirm {
  margin-top: 16px;
  background: var(--dark-blue); color: var(--mint);
  font-weight: 800; font-size: 14.5px;
  padding: 14px;
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  border: 0;
  width: 100%;
  font-family: inherit;
  transition: transform .2s ease;
}
.booking-confirm:hover { transform: translateY(-1px); }
@media (max-width: 860px) {
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* FOOTER */
footer {
  padding: 80px 0 36px;
  border-top: 1px solid var(--cs-line);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand img { height: 36px; margin-bottom: 22px; }
.footer-brand p { font-size: 13px; font-weight: 300; color: var(--cold-sand); max-width: 32ch; line-height: 1.5; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--mint);
  letter-spacing: normal;
  text-transform: none;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 13px; font-weight: 300; }
.footer-col a { color: var(--cold-sand); transition: color .2s; }
.footer-col a:hover { color: var(--mint); }

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--cs-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 12px;
  font-weight: 300;
  color: var(--cold-sand);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal a { color: var(--cold-sand); transition: color .2s; }
.footer-legal a:hover { color: var(--mint); }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  margin-top: 20px;
  border-radius: 50%;
  border: 1px solid var(--cs-line);
  color: var(--cold-sand);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.footer-social-link:hover { color: var(--dark-blue); background: var(--mint); border-color: var(--mint); }
.footer-cert {
  margin-top: 18px;
  font-size: 12px; font-weight: 300; color: var(--cold-sand);
  letter-spacing: 0.02em;
}
.footer-cert a { color: inherit; text-decoration: none; transition: color .2s ease; }
.footer-cert a:hover { color: var(--mint); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1.3s ease, transform 1.4s cubic-bezier(.16,.84,.3,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Text color-reveal — words fade from soft gray to full color on scroll */
.text-reveal .word {
  display: inline-block;
  color: rgba(26, 34, 39, 0.18);
  transition: color .6s ease;
}
.text-reveal.in .word.lit { color: var(--dark-blue); }
.text-reveal .word.hl,
.text-reveal .word .hl,
.text-reveal .hl .word { color: var(--dark-blue) !important; }

/* ════════════════════════════════════════════════════
   AUTO ANIMATIONS — Bauhaus geometriske elementer
   ════════════════════════════════════════════════════ */
/* Drift bruger den selvstændige `translate`-egenskab (ikke `transform`),
   så den kan svæve uden at overskrive løft/pop, der styres via `transform`. */
@keyframes drift-slow {
  0%, 100% { translate: 0 0; }
  50% { translate: -10px -14px; }
}
@keyframes drift-medium {
  0%, 100% { translate: 0 0; }
  50% { translate: 12px -8px; }
}
@keyframes drift-diag {
  0%, 100% { translate: 0 0; }
  50% { translate: -14px 10px; }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes breathe-soft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.9; }
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(46, 255, 209, 0.55); }
  100% { box-shadow: 0 0 0 28px rgba(46, 255, 209, 0); }
}
@keyframes shimmer-translate {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-6px); }
}

/* Apply to existing pseudo-element decorations */
.kpi::after { animation: drift-slow 14s ease-in-out infinite; transform-origin: center; }
.valueprop::after { animation: drift-medium 12s ease-in-out infinite; transform-origin: center; }
.valueprop::before { animation: drift-diag 15s ease-in-out infinite; transform-origin: center; }
.testimonial::before { transform-origin: center; }
/* Mobil: fjern dekorative cirkler. Testimonial-bolden ruller bredt ud og forskyder nav; product-fill hjoerne-cirklen laekker et tekst-fragment ("ror"). Inline = uafhaengig af cachet style.css. */
@media (max-width: 900px) {
  .testimonial::before, .product-fill,
  .kpi::after, .valueprop::before, .valueprop::after, .team::after, .crosssell::after,
  .subhero::before, .band::before { display: none !important; }
  /* Reveal-observeren er to-vejs (fjerner .in naar man scroller forbi) -> kasser/tekst forsvinder paa mobil. Hold reveal-elementer altid synlige paa mobil. */
  .reveal { opacity: 1 !important; transform: none !important; }
}
.team::after { animation: breathe-soft 9s ease-in-out infinite; transform-origin: center; }
.crosssell::after { animation: rotate-slow 60s linear infinite; transform-origin: center; }
.finalcta::after { animation: drift-medium 16s ease-in-out infinite; transform-origin: center; }
/* (produkt-cirklen er erstattet af .product-fill med clip-path) */

/* Case mockup decorations */
.ad-3::before { animation: breathe 6s ease-in-out infinite; transform-origin: center; }
.ad-6 .ad-ring::after { animation: breathe-soft 4.5s ease-in-out infinite; transform-origin: center; }
.ad-1::after { animation: shimmer-translate 7s ease-in-out infinite; }
.ad-2-grid span:nth-child(1) { animation: breathe-soft 3.5s ease-in-out infinite; }
.ad-2-grid span:nth-child(5) { animation: breathe-soft 4.2s ease-in-out infinite 0.5s; }

/* Reduced motion — respect user preferences */
@media (prefers-reduced-motion: reduce) {
  .kpi::after,
  .valueprop::after,
  .valueprop::before,
  .testimonial::before,
  .team::after,
  .crosssell::after,
  .finalcta::after,
  .product::after,
  .ad-3::before,
  .ad-6 .ad-ring::after,
  .ad-1::after,
  .ad-2-grid span { animation: none !important; }
  .product-fill { transition: none !important; }
  .reveal { transition: opacity .3s ease !important; transform: none !important; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 24px; }
  .nav-inner { padding: 16px 24px; }
}

/* ════════════════════════════════════════════════════
   MOTION LAYER — animerede ikoner, flow-linjer, baggrundsskift, hover
   ════════════════════════════════════════════════════ */
/* kun jeres fire farver + transparens/nuancer */

/* Fjern stor bogstavafstand på alle små overskrifter/labels */
.eyebrow,
.hero-scroll-cue,
.wordmarks-label,
.vp-eyebrow,
.partner-eyebrow,
.case-num,
.case-meta-on-img,
.product-eyebrow,
.footer-col h4 { letter-spacing: normal; }

/* Baggrunds-canvas der glider mellem sektionsfarver på scroll */
body { background: transparent; }
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--dark-blue);
  transition: none;
}

/* ── ANIMEREDE LINE-ART IKONER ── */
.service-icon .ai { width: 100%; height: 100%; overflow: visible; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.service-icon .ai * { transition: stroke .35s ease, fill .35s ease; }

/* Tegn-ind når kortet scrolles i syne */
.ai-draw { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.05s cubic-bezier(.6,0,.2,1); transition-delay: var(--reveal-delay, 0s); }
.service.in .ai-draw { stroke-dashoffset: 0; }
.ai-dot { opacity: 0; transition: opacity .4s ease .6s; }
.service.in .ai-dot { opacity: 1; }

/* Idle-bevægelse */
.ai-spin { transform-box: view-box; transform-origin: 22px 22px; }
.spin-cw  { animation: ai-rot  26s linear infinite; }
.spin-ccw { animation: ai-rotr 30s linear infinite; }
@keyframes ai-rot  { to { transform: rotate(360deg); } }
@keyframes ai-rotr { to { transform: rotate(-360deg); } }

.ai-shift { animation: ai-breathe 5.5s ease-in-out infinite; }
@keyframes ai-breathe { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-3px,-3px); } }

.ai-ripple { transform-box: fill-box; transform-origin: center; }
.r1 { animation: ai-pulse 3s ease-out infinite; }
.r2 { animation: ai-pulse 3s ease-out infinite .45s; }
.r3 { animation: ai-pulse 3s ease-out infinite .9s; }
@keyframes ai-pulse {
  0%   { transform: scale(.55); opacity: .25; }
  35%  { opacity: 1; }
  100% { transform: scale(1.18); opacity: .1; }
}

/* Hover på service-kortet — ikon spinner hurtigere, alt skifter til grøn accent, kort løfter */
.service { transition: background .35s ease; }
.service:hover { background: var(--cold-sand); }
/* Dobbelt tempo på de animerede ikoner ved hover (halv varighed) */
.service:hover .spin-cw  { animation-duration: 13s; }
.service:hover .spin-ccw { animation-duration: 15s; }
.service:hover .ai-shift { animation-duration: 2.75s; }
.service:hover .r1,
.service:hover .r2,
.service:hover .r3 { animation-duration: 1.5s; }
.service h3 { transition: color .3s ease; }

/* ── FLOW-LINJER: bøjer som elastik når man scroller forbi ── */
.flow-divider { display: block; width: 100%; height: 40px; overflow: visible; margin: 6px 0; }
.flow-divider svg { width: 100%; height: 40px; display: block; overflow: visible; }
.flow-divider path {
  fill: none;
  stroke: var(--db-line);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.flow-divider.on-dark path { stroke: var(--cs-line); }
.vp-flow { padding: 0 !important; border-top: none !important; }

/* ── EKSTRA HOVER / SCROLL-DETALJER ── */
.partner-item { transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.partner-item:hover { transform: translateY(-4px); }
.partner-item h4 { transition: color .3s ease; color: var(--dark-blue); }

/* Partner-sektion på lys baggrund (#FAFAFA) — mørk tekst */
.partner-eyebrow { color: var(--dark-blue); }
.partner h3 { color: var(--dark-blue); }

/* Tal: mintgrønt — vokser til dobbelt størrelse når punktet scrolles i syne (ét ad gangen via --reveal-delay) */
.partner-num {
  display: inline-block;
  color: var(--mint);
  transform-origin: left bottom;
  transform: scale(var(--num-scale, 1));
  transition: color .3s ease, transform .6s cubic-bezier(.2,.8,.2,1);
  transition-delay: 0s, var(--reveal-delay, 0s);
}
.partner-item.in .partner-num { --num-scale: 2; }

/* Hover: byt om — tallet bliver mørkeblåt, teksten bliver mint */
.partner-item:hover .partner-num { color: var(--dark-blue); }
.partner-item:hover h4 { color: var(--mint); }

.kpi-item { transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.kpi-item:hover { transform: translateY(-3px); }
.kpi-number { transition: transform .4s cubic-bezier(.2,.8,.2,1); transform-origin: left center; }
.kpi-item:hover .kpi-number { transform: scale(1.04); }

.wm { transition: opacity .3s ease, color .3s ease; cursor: default; }
.wm:hover { opacity: 1; color: var(--mint); }

.member-name { transition: color .3s ease; }
.member:hover .member-name { color: var(--mint); }

/* ── PERPETUEL BEVÆGELSE: elementer der aldrig falder helt til ro ── */
.service-icon { animation: ai-float 7.5s ease-in-out infinite; }
.service:nth-child(2) .service-icon { animation-duration: 9s;   animation-delay: -2s; }
.service:nth-child(3) .service-icon { animation-duration: 6.8s; animation-delay: -4s; }
.service:nth-child(4) .service-icon { animation-duration: 9.6s; animation-delay: -1s; }
.service:nth-child(5) .service-icon { animation-duration: 8.2s; animation-delay: -3s; }
.service:nth-child(6) .service-icon { animation-duration: 8.6s; animation-delay: -5s; }
@keyframes ai-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ───────── Skræddersyede ikon-animationer (mobil + desktop) ───────── */
.service-icon .ai { transform-origin: 50% 50%; }
.s1-arrow,.s1-target,.s2-l1,.s2-l2,.s2-l3,.s2-l4,.s4-bolt,.s5-base,.s5-c,.s5-sq,.s6-dot { transform-box: view-box; }

/* 1) Strategi: pilen skydes ind i skydeskiven og vibrerer ved anslag */
.s1-arrow { transform-origin: 94px 83px; animation: s1-shoot 4.6s cubic-bezier(.5,0,.18,1) infinite; }
.s1-target { transform-origin: 89px 83px; animation: s1-hit 4.6s ease infinite; }
@keyframes s1-shoot {
  0%   { transform: translate(76px,-58px); opacity: 0; }
  10%  { opacity: 1; }
  34%  { transform: translate(0,0) rotate(0deg); }
  40%  { transform: translate(0,0) rotate(5deg); }
  46%  { transform: translate(0,0) rotate(-3.5deg); }
  52%  { transform: translate(0,0) rotate(2deg); }
  58%  { transform: translate(0,0) rotate(-1deg); }
  64%  { transform: translate(0,0) rotate(0deg); }
  90%  { opacity: 1; }
  100% { transform: translate(0,0) rotate(0deg); opacity: 0; }
}
@keyframes s1-hit {
  0%,32% { transform: scale(1); }
  38%    { transform: scale(1.14); }
  47%    { transform: scale(1); }
  100%   { transform: scale(1); }
}

/* 2) Kreative koncepter: stregerne trækkes ind mod midten og ud igen i forskudt tempo */
.s2-l1,.s2-l2,.s2-l3,.s2-l4 { transform-origin: 100.6px 83px; }
.s2-l1 { animation: s2-pump 3.1s ease-in-out infinite; }
.s2-l2 { animation: s2-pump 4.3s ease-in-out infinite -0.7s; }
.s2-l3 { animation: s2-pump 2.6s ease-in-out infinite -1.5s; }
.s2-l4 { animation: s2-pump 3.7s ease-in-out infinite -0.3s; }
@keyframes s2-pump { 0%,100% { transform: scale(1); } 50% { transform: scale(.24); } }

/* 3) Annonceproduktion: tandhjulet drejer i et roligt tempo */
.service:nth-child(3) .service-icon .ai { animation: s3-gear 13s linear infinite; }
@keyframes s3-gear { to { transform: rotate(360deg); } }

/* 4) High impact: lynet sitrer og flimrer */
.s4-bolt { transform-origin: 100.6px 83px; animation: s4-zap 2.6s ease-in-out infinite; }
@keyframes s4-zap {
  0%,58%,100% { transform: translate(0,0) rotate(0deg); opacity: 1; }
  60% { transform: translate(-1.5px,1px) rotate(-2.5deg); opacity: .5; }
  62% { transform: translate(2px,-1.5px) rotate(2.5deg); opacity: 1; }
  64% { transform: translate(-2px,1.5px) rotate(-3deg); opacity: .6; }
  66% { transform: translate(1.5px,-1px) rotate(2deg); opacity: 1; }
  68% { transform: translate(-1px,1px) rotate(-1deg); opacity: 1; }
  70% { transform: translate(0,0) rotate(0deg); opacity: 1; }
  84% { transform: translate(1.5px,-1px) rotate(1.5deg); opacity: .7; }
  86% { transform: translate(-1.5px,1px) rotate(-2deg); opacity: 1; }
  88% { transform: translate(0,0) rotate(0deg); opacity: 1; }
}

/* 5) Versionering: morpher gennem cirkel og firkant og tilbage */
.s5-base,.s5-c,.s5-sq { transform-origin: 100.6px 83px; }
.s5-c,.s5-sq { opacity: 0; }
.s5-base { animation: s5-base 6.6s ease-in-out infinite; }
.s5-c { animation: s5-circ 6.6s ease-in-out infinite; }
.s5-sq { animation: s5-squa 6.6s ease-in-out infinite; }
@keyframes s5-base {
  0%,16% { opacity: 1; transform: scale(1); }
  24%,74% { opacity: 0; transform: scale(.55); }
  84%,100% { opacity: 1; transform: scale(1); }
}
@keyframes s5-circ {
  0%,18% { opacity: 0; transform: scale(.5); }
  26%,40% { opacity: 1; transform: scale(1); }
  48%,100% { opacity: 0; transform: scale(.5); }
}
@keyframes s5-squa {
  0%,44% { opacity: 0; transform: scale(.5); }
  52%,66% { opacity: 1; transform: scale(1); }
  74%,100% { opacity: 0; transform: scale(.5); }
}

/* 6) Teknisk validering: fluebenet tegnes */
.s6-check { animation: s6-draw 3.4s ease infinite; }
.s6-dot { transform-origin: 147px 27px; animation: s6-dot 3.4s ease infinite; }
@keyframes s6-draw {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0; }
  6%   { opacity: 1; }
  42%  { clip-path: inset(0 0 0 0); }
  86%  { clip-path: inset(0 0 0 0); opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 0; }
}
@keyframes s6-dot {
  0%,40% { opacity: 0; transform: scale(0); }
  50%    { opacity: 1; transform: scale(1.25); }
  56%    { transform: scale(1); }
  86%    { opacity: 1; }
  100%   { opacity: 0; }
}

/* Hover (desktop) + scroll-fremhævning (mobil): 4× animationstempo på ikonerne */
.service:hover .service-icon, .service.in-focus .service-icon { animation-duration: 2s; }
.service:hover .s1-arrow, .service.in-focus .s1-arrow,
.service:hover .s1-target, .service.in-focus .s1-target { animation-duration: 1.15s; }
.service:hover .s2-l1, .service.in-focus .s2-l1 { animation-duration: 0.78s; }
.service:hover .s2-l2, .service.in-focus .s2-l2 { animation-duration: 1.08s; }
.service:hover .s2-l3, .service.in-focus .s2-l3 { animation-duration: 0.65s; }
.service:hover .s2-l4, .service.in-focus .s2-l4 { animation-duration: 0.93s; }
.service:nth-child(3):hover .service-icon .ai,
.service:nth-child(3).in-focus .service-icon .ai { animation-duration: 3.25s; }
.service:hover .s4-bolt, .service.in-focus .s4-bolt { animation-duration: 0.65s; }
.service:hover .s5-base, .service.in-focus .s5-base,
.service:hover .s5-c, .service.in-focus .s5-c,
.service:hover .s5-sq, .service.in-focus .s5-sq { animation-duration: 1.65s; }
.service:hover .s6-check, .service.in-focus .s6-check,
.service:hover .s6-dot, .service.in-focus .s6-dot { animation-duration: 0.85s; }

/* Langsommere, mere flydende drift på de dekorative former */
.kpi::after        { animation-duration: 24s; }
.valueprop::after  { animation-duration: 22s; }
.valueprop::before { animation-duration: 26s; }
.team::after       { animation-duration: 16s; }
.finalcta::after   { animation-duration: 28s; }

/* Parallax-drift styret af scroll */
[data-parallax] { will-change: transform; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #bg-canvas { transition: none; }
  .ai-spin, .ai-shift, .ai-ripple, .service-icon, .service-icon .ai, .service-icon .ai * { animation: none !important; }
  .ai-draw { stroke-dashoffset: 0 !important; transition: none !important; }
  .ai-dot { opacity: 1 !important; }
  .flow-divider path { transition: none; }
  [data-parallax] { transform: none !important; }
}
.lang-switch { display: inline-flex; align-items: center; gap: 2px; font-size: 12px; font-weight: 800; letter-spacing: 0.02em; }
.lang-switch button { background: none; border: 0; cursor: pointer; font: inherit; color: var(--cold-sand); padding: 4px 7px; border-radius: 8px 0 8px 0; transition: color .2s ease, background .2s ease; }
.lang-switch button:hover { color: var(--mint); }
.lang-switch button.active { color: var(--dark-blue); background: var(--mint); }
.lang-switch .lang-sep { color: var(--cs-line); }
.nav-right { display: flex; align-items: center; gap: 18px; }

/* ROLLER / PERSONAS (mørkeblå) */
.roles { padding: 120px 0; position: relative; overflow: hidden; }
.roles-head .eyebrow { color: var(--mint); }
.roles-head h2 { margin-top: 22px; margin-bottom: 18px; max-width: 18ch; }
.roles-head p { color: var(--cold-sand); max-width: 54ch; margin-bottom: 44px; font-weight: 300; line-height: 1.5; }
.roles-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.roles-tab { font: inherit; font-size: 14px; font-weight: 800; cursor: pointer; padding: 12px 22px; border-radius: 12px 0 12px 0; background: transparent; color: var(--cold-sand); border: 1.5px solid var(--cs-line); transition: background .25s ease, color .25s ease, border-color .25s ease; }
.roles-tab:hover { border-color: var(--mint); color: var(--cold-sand); }
.roles-tab.active { background: var(--mint); color: var(--dark-blue); border-color: var(--mint); }
.roles-panel { display: none; }
.roles-panel.active { display: grid; grid-template-columns: 1fr 1.35fr; gap: 48px; align-items: start; animation: roleIn .5s cubic-bezier(.2,.8,.2,1); }
@keyframes roleIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.roles-panel h3 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--cold-sand); }
.role-intro { color: var(--cold-sand); font-weight: 300; line-height: 1.55; margin-top: 16px; max-width: 38ch; }
@media (max-width: 800px){ .ri-br { display: none; } }
.role-benefits { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.role-benefits li { position: relative; padding-left: 30px; color: var(--cold-sand); font-weight: 300; line-height: 1.45; }
.role-benefits li::before { content: ''; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%2238%2014%20126%20140%22%20fill%3D%22%232effd1%22%3E%3Cpolygon%20points%3D%2270.3%20146.8%2044.1%2099.6%2048.4%2097.3%2070.7%20137.5%20146.2%2026.6%20150.2%2029.3%2070.3%20146.8%22%2F%3E%3C%2Fsvg%3E") center/contain no-repeat; }
@media (max-width: 800px){ .roles-panel.active { grid-template-columns: 1fr; gap: 26px; } }

/* SAMMENLIGNING (warm sand) */
.compare { padding: 120px 0; position: relative; overflow: hidden; }
.compare-head .eyebrow { color: var(--dark-blue); }
.compare-head h2 { margin-top: 22px; margin-bottom: 16px; max-width: 16ch; }
.compare-head p { color: var(--dark-blue); max-width: 56ch; margin-bottom: 44px; font-weight: 300; line-height: 1.5; }
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 660px; border-collapse: collapse; position: relative; z-index: 1; }
.compare-table th, .compare-table td { padding: 16px 14px; text-align: center; font-size: 14px; }
.compare-table thead th { font-weight: 800; color: var(--dark-blue); border-bottom: 2px solid var(--db-line); }
.compare-table tbody th { text-align: left; font-weight: 800; color: var(--dark-blue); border-bottom: 1px solid var(--db-line); white-space: nowrap; }
.compare-table tbody td { border-bottom: 1px solid var(--db-line); font-weight: 800; font-size: 17px; }
.compare-table td.c-yes { color: var(--dark-blue); }
.compare-table td.c-mid { color: var(--dark-blue); }
.compare-table td.c-no  { color: var(--dark-blue); opacity: 1; }
.compare-table .compare-zeit { background: var(--dark-blue); color: var(--mint); }
.compare-table thead .compare-zeit { color: var(--mint); border-bottom-color: var(--dark-blue); border-radius: 14px 14px 0 0; }
.compare-table tbody .compare-zeit { color: var(--mint); border-bottom-color: rgba(250,250,250,0.14); }
.compare-table tbody tr:last-child .compare-zeit { border-radius: 0 0 14px 14px; border-bottom: 0; }
.compare .c-yes { font-size: 0; }
.compare .c-yes::before { content: ''; display: inline-block; width: 19px; height: 19px; vertical-align: -4px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%2238%2014%20126%20140%22%20fill%3D%22%231a2227%22%3E%3Cpolygon%20points%3D%2270.3%20146.8%2044.1%2099.6%2048.4%2097.3%2070.7%20137.5%20146.2%2026.6%20150.2%2029.3%2070.3%20146.8%22%2F%3E%3C%2Fsvg%3E") center/contain no-repeat; }
.compare td.compare-zeit.c-yes::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%2238%2014%20126%20140%22%20fill%3D%22%232effd1%22%3E%3Cpolygon%20points%3D%2270.3%20146.8%2044.1%2099.6%2048.4%2097.3%2070.7%20137.5%20146.2%2026.6%20150.2%2029.3%2070.3%20146.8%22%2F%3E%3C%2Fsvg%3E"); }
.compare-legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 24px; font-size: 13px; font-weight: 300; color: var(--dark-blue); }
.compare-legend span { display: inline-flex; align-items: center; gap: 8px; }
.compare-legend i { font-style: normal; font-weight: 800; font-size: 15px; }
.compare-legend i.c-yes { color: var(--dark-blue); }
.compare-legend i.c-mid { color: var(--dark-blue); }
.compare-legend i.c-no  { color: var(--dark-blue); opacity: 1; }

/* ════════════════════════════════════════════════════
   MOBIL-OPTIMERING — telefoner under 720px og 480px
   ════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Wrap + sektion-padding (mindre luft, så indholdet fylder uden tomgang) */
  .wrap { padding: 0 20px; }
  .hero, .partner, .services, .valueprop, .cases, .testimonial, .roles, .compare, .team, .crosssell, .finalcta {
    padding-top: 72px; padding-bottom: 72px;
  }
  .testimonial { padding-top: 88px; padding-bottom: 88px; }

  /* Nav: kompakt CTA, mindre afstand */
  .nav-inner { padding: 14px 20px; }
  .nav-right { gap: 12px; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  .lang-switch { font-size: 11px; }
  .lang-switch button { padding: 4px 5px; }

  /* Hero — mindre overskrift og luft */
  .hero { min-height: auto; }
  .hero-headline { font-size: clamp(36px, 9vw, 48px); line-height: 1.04; }
  .hero-sub { font-size: 15px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-col { display: none; } /* skjul device-mosaic på telefon for at fokusere på budskab */
  .hero-content-wrap { padding: 24px 0; }

  /* AIDA-stage — ikke 100vh på telefon */
  .stage { height: auto; min-height: 70vh; }
  .stage-pin { height: auto; padding: 80px 0; }
  .stage-text { font-size: clamp(48px, 16vw, 96px); }
  .stage-corner, .stage-side { display: none; }

  /* KPI — allerede 1 kolonne <800; mindre tal */
  .kpi-number { font-size: clamp(56px, 16vw, 88px); }
  .kpi-desc { font-size: 14px; }

  /* Valueprop accordion — mindre tekst og padding */
  .vp-q { padding: 22px 0; gap: 14px; }
  .vp-q-text { font-size: 17px; line-height: 1.3; }
  .vp-a p { font-size: 15px; }

  /* Partner — 1 kolonne, mindre tal */
  .partner-grid { grid-template-columns: 1fr; gap: 28px; }
  .partner-num { font-size: 28px; }
  .partner-item h4 { font-size: 18px; }

  /* Services — allerede 1 kol; mindre padding på kort */
  .services-grid { gap: 16px; }
  .service { padding: 24px; }

  /* Cases — mindre billedhøjde */
  .cases-shot { width: 280px; }
  .cases-shot img { height: 100%; }

  /* Testimonial — mindre tekst og cirkel */
  .t-text { font-size: clamp(20px, 5vw, 28px); }
  .testimonial::before { width: 200px; height: 200px; bottom: -90px; left: 12px; opacity: 1; }

  /* Roller — vandret scroll på faner i stedet for wrap */
  .roles-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 8px; padding-bottom: 8px; margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; scrollbar-width: none; }
  .roles-tabs::-webkit-scrollbar { display: none; }
  .roles-tab { flex: 0 0 auto; padding: 10px 16px; font-size: 13px; }
  .roles-panel h3 { font-size: clamp(24px, 6vw, 32px); }
  .role-intro { font-size: 15px; }
  .role-benefits li { font-size: 15px; }

  /* Sammenligning — tabel mere mobilvenlig */
  .compare-table { min-width: 560px; }
  .compare-table th, .compare-table td { padding: 12px 8px; font-size: 12px; }
  .compare-table tbody td { font-size: 15px; }
  .compare-table tbody th { font-size: 12px; }
  .compare-legend { gap: 14px; font-size: 12px; }

  /* Bauhaus-divider — lavere på telefon */
  .bauhaus-divider { height: 36vh; min-height: 280px; }

  /* Team — allerede 2 kol <600 */
  .team-grid { gap: 24px; }
  .member-name { font-size: 16px; }
  .member-role { font-size: 12px; }

  /* Crosssell — allerede 1 kol; stramme produktbokse */
  .product { padding: 28px; border-radius: 0 48px 0 48px; }
  .product h3 { font-size: 26px; }

  /* Booking — kalender mere kompakt */
  .booking-grid { gap: 28px; }
  .booking-left { grid-template-columns: 1fr; gap: 24px; }
  .booking-left h2 { font-size: clamp(36px, 9vw, 56px); }
  .booking-card { padding: 18px; border-radius: 14px; }
  .booking-days { gap: 4px; }
  .booking-day { padding: 8px 0; font-size: 13px; }
  .booking-slots-label { font-size: 11px; }
  .booking-slot { padding: 10px 12px; font-size: 13px; }
  .booking-confirm { width: 100%; padding: 14px; font-size: 14px; }

  /* Footer — allerede 1 kol <600; mindre padding */
  footer { padding: 60px 0 28px; }
  .footer-top { padding-bottom: 36px; gap: 32px; }
  .footer-bottom { flex-wrap: wrap; gap: 16px; font-size: 12px; }
}

@media (max-width: 480px) {
  /* Lidt mere ekstra strammet på meget smal telefon */
  .wrap { padding: 0 18px; }
  .hero, .partner, .services, .valueprop, .cases, .testimonial, .roles, .compare, .team, .crosssell, .finalcta {
    padding-top: 60px; padding-bottom: 60px;
  }
  .hero-headline { font-size: clamp(32px, 9.5vw, 42px); }
  .roles-tab { padding: 9px 14px; font-size: 12px; }
  .compare-table { min-width: 520px; }
  .testimonial::before { width: 175px; height: 175px; }
}

/* ════════════════════════════════════════════════════
   MOBIL — overskrivende blok (nye sektion-specifikke regler)
   ════════════════════════════════════════════════════ */

/* Wordmarks linjeskift på mobil */
.m-br { display: none; }

/* Burger og mobil-menu (skjult på desktop) */
.burger { display: none; }
.mobile-menu { display: none; }

/* Hero mobil-stribe (skjult på desktop) */
.hero-mobile-strip { display: none; }

@media (max-width: 900px) {
  /* Nav: skjul desktop-sprogvælger og links, vis burger */
  .nav-lang { display: none; }
  .burger {
    display: inline-flex; flex-direction: column; justify-content: center;
    width: 38px; height: 38px; padding: 9px;
    background: transparent; border: 1.5px solid var(--cs-line);
    border-radius: 10px; cursor: pointer; gap: 5px;
  }
  .burger span {
    display: block; height: 2px; width: 100%;
    background: var(--cold-sand); border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile menu overlay */
  .mobile-menu {
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    position: fixed; inset: 0;
    background: var(--dark-blue); z-index: 95;
    padding: 110px 24px 56px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 36px; width: 100%; margin: 0; position: static;
  }
  .mobile-nav-links {
    display: flex; flex-direction: column; align-items: center;
    gap: 26px; margin: 0; padding: 0; position: static; flex: none; width: auto;
  }
  .mobile-nav-links a {
    color: var(--cold-sand); text-decoration: none;
    font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
    transition: color .2s ease;
  }
  .mobile-nav-links a:hover, .mobile-nav-links a:focus { color: var(--mint); }
  .mobile-lang {
    margin: 0; gap: 14px; position: static; flex: none;
  }
  .mobile-lang button { padding: 9px 18px; font-size: 14px; }
}

@media (max-width: 720px) {
  /* ────────── WORDMARKS LINJESKIFT ────────── */
  .m-br { display: inline; }

  /* ────────── HERO ────────── */
  .hero-col { display: none !important; }
  .hero-grid { display: none; }
  .hero-mobile-strip {
    display: block; overflow: hidden; position: relative;
    margin-top: 28px; width: 100vw;
    margin-left: calc(50% - 50vw);
    -webkit-mask: linear-gradient(90deg, transparent, #1a2227 6%, #1a2227 94%, transparent);
            mask: linear-gradient(90deg, transparent, #1a2227 6%, #1a2227 94%, transparent);
  }
  .hms-track {
    display: flex; gap: 10px; width: max-content;
    animation: hmsMove 36s linear infinite;
    padding: 0 20px;
  }
  .hms-track img {
    height: 130px; width: 200px; object-fit: cover;
    border-radius: 14px; flex-shrink: 0;
  }
  @keyframes hmsMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ────────── WORDMARKS-LABEL CENTRERET (allerede center, men sikres) ────────── */
  .wordmarks-label { line-height: 1.35; }

  /* ────────── KPI 8× 90% 2× CENTRERET ────────── */
  .kpi-grid { text-align: center; }
  .kpi-item { align-items: center; text-align: center; }

  /* ────────── AIDA / STAGE: lige luft over og under, cyklisk ord ────────── */
  .stage { display: none; }   /* AIDA fjernet på mobil */
  .stage-pin { position: static; height: auto; padding: 0; display: flex; justify-content: center; align-items: center; }
  .stage-text { font-size: clamp(48px, 14vw, 84px); }
  .aida { position: relative; min-height: 1.1em; width: 100%; text-align: center; }
  .aida-word, .aida-word.is-in {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; transition: none;
    animation: aidaCycle 8s infinite;
  }
  .aida-word:nth-child(1) { animation-delay: 0s; }
  .aida-word:nth-child(2) { animation-delay: 2s; }
  .aida-word:nth-child(3) { animation-delay: 4s; }
  .aida-word:nth-child(4) { animation-delay: 6s; }
  @keyframes aidaCycle {
    0%, 21% { opacity: 1; }
    25%, 100% { opacity: 0; }
  }

  /* ────────── VALUEPROP CENTRERET + SWIPEBARE KORT ────────── */
  .vp-top { display: block; }
  .vp-top > div { text-align: center; }
  .vp-eyebrow { text-align: center; }
  .valueprop h2 { text-align: center; margin-left: auto; margin-right: auto; }
  .vp-list {
    display: flex; flex-direction: row; flex-wrap: nowrap; gap: 14px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    list-style: none; padding: 12px 20px 16px; margin: 24px -20px 0;
    scrollbar-width: none;
  }
  .vp-list::-webkit-scrollbar { display: none; }
  .vp-item {
    flex: 0 0 84%; scroll-snap-align: center;
    background: rgba(26,34,39,0.8);
    border: 1px solid var(--cs-line);
    border-radius: 16px; padding: 22px;
    display: block !important;
  }
  .vp-q { padding: 0 !important; pointer-events: none; cursor: default; gap: 0; }
  .vp-q-text { color: var(--mint); font-size: 16px; font-weight: 800; line-height: 1.3; }
  .vp-ic { display: none !important; }
  .vp-a {
    max-height: none !important; overflow: visible !important;
    opacity: 1 !important; padding-top: 12px !important;
  }
  .vp-a p { font-size: 14px; color: var(--cold-sand); line-height: 1.5; }

  /* Dekorative cirkler: ned under de fire kort, mint-cirkel altid fuldt synlig */
  .valueprop { padding-bottom: 120px; }
  .valueprop::after, .valueprop::before { transform: none; }
  .valueprop::before {
    width: 160px; height: 160px;
    bottom: 26px; right: 26px; left: auto; z-index: 1;
  }
  .valueprop::after {
    width: 180px; height: 90px;
    bottom: 0; right: -24px; left: auto;
  }

  /* ────────── PARTNER CENTRERET ────────── */
  .partner-head { text-align: center; }
  .partner-eyebrow, .partner h3 { text-align: center; margin-left: auto; margin-right: auto; }
  .partner-item { text-align: center; }
  .partner-item h4 { margin-left: auto; margin-right: auto; }
  .partner-num { margin-left: auto; margin-right: auto; transform-origin: center bottom; }

  /* ────────── SERVICES CENTRERET + IN-FOCUS MINT ────────── */
  .services-head { text-align: center; }
  .services-head .eyebrow, .services-head h2 { text-align: center; margin-left: auto; margin-right: auto; }
  .service { text-align: center; transition: background .35s ease, color .35s ease, border-color .35s ease; }
  .service-icon { margin-left: auto; margin-right: auto; }
  /* Mobil: ingen hover-effekt på service-kort (hover gælder kun desktop/tablet) */
  .service:hover { background: transparent; }
  .service:hover .service-icon { animation-duration: 8s; }
  .service:hover .s1-arrow, .service:hover .s1-target { animation-duration: 4.6s; }
  .service:hover .s2-l1 { animation-duration: 3.1s; }
  .service:hover .s2-l2 { animation-duration: 4.3s; }
  .service:hover .s2-l3 { animation-duration: 2.6s; }
  .service:hover .s2-l4 { animation-duration: 3.7s; }
  .service:nth-child(3):hover .service-icon .ai { animation-duration: 13s; }
  .service:hover .s4-bolt { animation-duration: 2.6s; }
  .service:hover .s5-base, .service:hover .s5-c, .service:hover .s5-sq { animation-duration: 6.6s; }
  .service:hover .s6-check, .service:hover .s6-dot { animation-duration: 3.4s; }

  /* Mobil: ingen hover på produkt-kasser (hover gælder kun desktop/tablet) */
  .product:hover { background: var(--dark-blue); transform: none; }
  .product:hover .product-eyebrow { color: var(--mint); }
  .product:hover h3, .product:hover .product-link { color: var(--cold-sand); }
  .product:hover p { color: var(--cold-sand); }
  .service.in-focus {
    background: var(--cold-sand);
    border-color: var(--cold-sand);
  }
  .service.in-focus h3,
  .service.in-focus p { color: var(--dark-blue); }
  .service.in-focus .service-icon svg { stroke: var(--dark-blue); }

  /* ────────── CASES CENTRERET + INGEN FADE I SIDERNE ────────── */
  .cases-head { display: block; text-align: center; }
  .cases-head .eyebrow, .cases-head h2, .cases-head p {
    text-align: center; margin-left: auto; margin-right: auto;
  }
  .cases-marquee {
    -webkit-mask: none !important;
            mask: none !important;
  }

  /* ────────── ROLLER CENTRERET + SWIPE-KORT ────────── */
  .roles-head { text-align: center; }
  .roles-head .eyebrow, .roles-head h2, .roles-head p {
    text-align: center; margin-left: auto; margin-right: auto;
  }
  .roles-tabs { display: none !important; }
  .roles-panels {
    display: flex; flex-wrap: nowrap; gap: 14px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 12px 20px 16px; margin: 12px -20px 0;
    scrollbar-width: none;
  }
  .roles-panels::-webkit-scrollbar { display: none; }
  .roles-panel, .roles-panel.active {
    display: block !important;
    flex: 0 0 86%; scroll-snap-align: center;
    grid-template-columns: 1fr; gap: 0;
    background: rgba(250,250,250,0.04);
    border: 1px solid var(--cs-line);
    border-radius: 16px; padding: 22px;
    animation: none;
  }
  .roles-panel h3 { font-size: 24px; margin-bottom: 6px; }
  .role-intro { font-size: 14px; line-height: 1.5; }
  .role-benefits { margin-top: 16px; gap: 12px; }
  .role-benefits li { font-size: 14px; line-height: 1.45; }

  /* ────────── SAMMENLIGNING: kolonneoverskrifter øverst, krit. som rækker ────────── */
  .compare-head { text-align: center; }
  .compare-head .eyebrow, .compare-head h2, .compare-head p {
    text-align: center; margin-left: auto; margin-right: auto;
  }
  .compare { overflow: visible; }
  .compare-wrap { overflow-x: visible; }
  .compare-table {
    display: block; min-width: 0; width: 100%;
    border-collapse: separate; border-spacing: 0;
  }
  .compare-table thead {
    display: block; background: var(--cold-sand);
    border: 1px solid var(--db-line);
    border-radius: 12px; padding: 6px;
    margin-bottom: 14px;
    position: sticky; top: 72px; z-index: 5;
  }
  .compare-table thead tr { display: flex; gap: 4px; }
  .compare-table thead th {
    flex: 1; padding: 8px 2px;
    font-size: 11px; font-weight: 800;
    border: 0; text-align: center; line-height: 1.15;
    color: var(--dark-blue); white-space: normal;
    display: flex; align-items: center; justify-content: center;
  }
  .compare-table thead th:first-child { display: none; }
  .compare-table thead .compare-zeit {
    background: var(--dark-blue); color: var(--mint);
    border-radius: 8px;
  }
  .compare-table tbody { display: block; }
  .compare-table tbody tr {
    display: block; padding: 14px 4px 12px;
    border-bottom: 1px solid var(--db-line);
  }
  .compare-table tbody tr:last-child { border-bottom: 0; }
  .compare-table tbody tr th {
    display: block; text-align: left;
    padding: 0 0 10px; font-size: 14px;
    border: 0; white-space: normal;
  }
  .compare-table tbody tr td {
    display: inline-block; width: 25%;
    text-align: center; padding: 4px 0;
    font-size: 20px; border: 0; vertical-align: middle;
  }
  .compare-table tbody .compare-zeit {
    background: var(--dark-blue); color: var(--mint);
    border-radius: 6px;
  }
  /* Sidste række skal have samme boks-form som de øvrige på mobil */
  .compare-table tbody tr:last-child .compare-zeit {
    border-radius: 6px; border-bottom: 0;
  }

  /* ────────── TEAM CENTRERET ────────── */
  .team-head { text-align: center; }
  .team-head .eyebrow, .team-head h2, .team-head p {
    text-align: center; margin-left: auto; margin-right: auto;
  }
}

/* Slå hover-effekter fra på touch-enheder (mobil) */
@media (hover: none) {
  .service:hover,
  .partner-item:hover,
  .product:hover,
  .roles-tab:hover,
  .vp-q:hover,
  .vp-item:hover { transform: none; background-color: inherit; }
  .service:hover h3, .service:hover p { color: inherit; }
}

/* Sprogvælger: nav uden separator, footer som flag */
.nav-lang { gap: 7px; }
.footer-lang { gap: 12px; }
.footer-lang button {
  padding: 0; background: none !important; border: 0;
  border-radius: 4px; line-height: 0; cursor: pointer;
  opacity: 0.4; outline: 2px solid transparent; outline-offset: 3px;
  transition: opacity .2s ease, outline-color .2s ease;
}
.footer-lang button:hover { opacity: 1; }
.footer-lang button.active { opacity: 1; outline-color: var(--mint); }
.footer-lang svg { display: block; width: 26px; height: 19px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(250,250,250,0.25); }

/* Hero på mobil: ét lodret billedspor som på desktop (kun kolonne 1, kører oppefra og ned) */
@media (max-width: 720px) {
  .hero { height: 100vh; min-height: 560px; }
  .hero-mobile-strip { display: none !important; }
  .hero-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; }
  .hero-col { display: none !important; }
  .hero-col:nth-child(1), .hero-col:nth-child(2) { display: flex !important; }
}

  /* Eyebrows: ingen entre-animation paa mobil (altid synlige, ingen bevaegelse) */
  @media (max-width: 900px) {
    .hero-eyebrow, .eyebrow, .fm-eyebrow, .vp-eyebrow, .product-eyebrow, .partner-eyebrow {
      animation: none !important; opacity: 1 !important; transform: none !important;
    }
  }

.lang-switch a { background: none; border: 0; color: var(--cold-sand); cursor: pointer; font: inherit; padding: 4px 7px; border-radius: 8px 0 8px 0; text-decoration: none; transition: color .2s ease, background .2s ease; }
.lang-switch a:hover { color: var(--mint); }
.lang-switch a.active { color: var(--dark-blue); background: var(--mint); }

/* stoerre Easis + Faarup logoer */
.case-logo[src*="logo-03.svg"],.case-logo[src*="logo-04.svg"],.case-logo[src*="logo-12.svg"],.case-logo[src*="logo-10.svg"],.case-logo[src*="logo-26.svg"],.case-logo[src*="logo-22.svg"],.case-logo[src*="logo-13.svg"],.case-logo[src*="logo-16.svg"],.case-logo[src*="logo-09.svg"],.case-logo[src*="logo-06.svg"],.case-logo[src*="logo-coolshop.svg"],.case-logo[src*="logo-18.svg"]{width:88px;height:auto;max-width:none;max-height:none}
.case-logo[src*="logo-11.svg"],.case-logo[src*="logo-24.svg"],.case-logo[src*="logo-easis.svg"]{height:52px;width:auto;max-width:none;max-height:none}


