/* ============================================================
   NYBRUD.NET – Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;1,14..32,300;1,14..32,400&display=swap');

/* === TOKENS === */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f3;
  --bg-dark: #111111;
  --text: #111111;
  --text-muted: #6b6b6b;
  --text-inverse: #ffffff;
  --border: #e5e5e2;
  --blue: #0bb4aa;
  --blue-hover: #0a9c95;
  --blue-light: #e6faf9;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
  --container: 1280px;
  --nav-height: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* === TYPOGRAPHY === */
.display {
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.h1 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.h3 { font-size: 1.125rem; font-weight: 500; line-height: 1.4; }
.h4 { font-size: 1rem; font-weight: 600; line-height: 1.4; }
.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body { font-size: 1rem; line-height: 1.7; }
.caption {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.text-muted { color: var(--text-muted); }
.text-inverse { color: var(--text-inverse); }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 840px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-lg { padding: 8rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 2rem; }
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 2rem; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 2rem; }
.mb-xl { margin-bottom: 3rem; }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.nav .container { height: 100%; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--text);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--transition);
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  background: var(--text);
  color: var(--text-inverse) !important; /* beats .nav-links a { color: var(--text-muted) } */
  border-radius: var(--radius);
  transition: opacity var(--transition);
}
.nav-cta:hover { opacity: 0.82; color: var(--text-inverse) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.nav-mobile a:last-child { border-bottom: none; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { opacity: 0.83; color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--text); }
.btn-outline-inv { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-inv:hover { border-color: rgba(255,255,255,0.8); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-hover); color: #fff; }
.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-icon { font-size: 1.125rem; }

/* === HERO (front page) === */
.hero {
  padding: 9rem 0 7rem;
  border-bottom: 1px solid var(--border);
}
.hero-kicker { margin-bottom: 1.75rem; }
.hero-headline { margin-bottom: 1.5rem; max-width: 18ch; white-space: pre-line; }
.hero-body {
  max-width: 44ch;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4rem;
}
.hero-scroll-line {
  width: 32px;
  height: 1px;
  background: var(--border);
}

/* === HERO: video/image baggrund === */
.hero-media {
  position: relative;
  overflow: hidden;
  background: #111;
  border-bottom: none;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.hero-media > .container {
  position: relative;
  z-index: 2;
}
.hero-media .hero-headline { color: #fff; }
.hero-media .hero-body { color: rgba(255, 255, 255, 0.8); }
.hero-media .caption { color: rgba(255, 255, 255, 0.7); }
.hero-media .hero-scroll { color: rgba(255, 255, 255, 0.35); }
.hero-media .hero-scroll-line { background: rgba(255, 255, 255, 0.15); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 5.5rem 0 4rem;
}
.page-hero-kicker { margin-bottom: 1rem; }
.page-hero-headline { margin-bottom: 1rem; max-width: 22ch; }
.page-hero-body { max-width: 52ch; color: var(--text-muted); font-size: 1.0625rem; }

/* === SECTION LABELS === */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-label-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-label-right::before {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* === CARDS === */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-alt { background: var(--bg-alt); border: none; }
.card-dark { background: #1a1a1a; color: #fff; border: none; }
.card-number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.card-icon { margin-bottom: 1.25rem; color: var(--blue); }
.card-title { font-size: 1.125rem; font-weight: 500; margin-bottom: 0.75rem; }
.card-body { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.5rem;
  color: var(--text);
}
.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover::after { transform: translateX(4px); }
.card-link-blue { color: var(--blue); }

/* === MEDIA CARDS (Talks-teaser forsiden) === */
.media-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}
.media-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.media-card-visual {
  padding: 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.media-card-visual-deco {
  position: absolute;
  bottom: -0.5rem;
  right: 1.25rem;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}
.media-card-footer {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
}
.media-card-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.media-card-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === TAGS === */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-alt);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}
.tag-blue { background: var(--blue-light); color: var(--blue); }
.tag-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }
.tag-demo { background: #fef3c7; color: #92400e; }

/* === DEMO NOTICE === */
.demo-notice {
  padding: 0.875rem 1.25rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: #78350f;
  margin-bottom: 2rem;
}

/* === STATS === */
.stat-value {
  font-size: 2.75rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.375rem; }
.stat-change {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}
.stat-change.up { background: #dcfce7; color: #166534; }
.stat-change.down { background: #fee2e2; color: #991b1b; }
.stat-change.neutral { background: var(--bg-alt); color: var(--text-muted); }

/* === CASES === */
.case-list { margin-top: 1rem; }
.case-item {
  border-top: 1px solid var(--border);
  transition: background var(--transition);
  cursor: pointer;
}
.case-item:last-child { border-bottom: 1px solid var(--border); }
.case-item:hover { background: var(--bg-alt); }
.case-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 1.75rem;
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-row {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
}
.case-meta { }
.case-number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}
.case-client { font-size: 0.875rem; font-weight: 500; }
.case-content { }
.case-title { font-size: 1.25rem; font-weight: 400; margin-bottom: 0.625rem; }
.case-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.case-arrow { font-size: 1.25rem; color: var(--text-muted); }

/* === INSIGHTS === */
.insight-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.insight-visual {
  height: 180px;
  background: var(--bg-alt);
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.insight-body { padding: 1.5rem; }
.insight-tag { margin-bottom: 0.75rem; }
.insight-title { font-size: 1.0625rem; font-weight: 500; margin-bottom: 0.5rem; line-height: 1.35; }
.insight-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.insight-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.insight-footer a { color: var(--blue); font-weight: 500; }
.insight-footer a:hover { text-decoration: underline; }

/* === CHART CONTAINERS === */
.chart-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.chart-header { margin-bottom: 1.25rem; }
.chart-title { font-size: 0.9375rem; font-weight: 500; margin-bottom: 0.25rem; }
.chart-subtitle { font-size: 0.8125rem; color: var(--text-muted); }
.chart-source {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.chart-canvas-wrap { position: relative; height: 280px; }
.chart-canvas-wrap-sm { position: relative; height: 200px; }
.chart-title-row { display: flex; align-items: center; gap: 0.375rem; }

/* === INFO POPUP === */
.info-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; flex-shrink: 0;
  border: none; background: none; padding: 0; cursor: pointer;
  color: var(--text-muted); opacity: 0.55; transition: opacity 0.15s;
}
.info-btn:hover { opacity: 1; }
#info-popup {
  position: fixed; z-index: 9999;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  max-width: 296px; padding: 1rem 1.125rem 0.875rem;
  font-size: 0.8125rem; line-height: 1.6; color: var(--text);
  display: none;
}
#info-popup.visible { display: block; }
#info-popup-title {
  font-weight: 600; font-size: 0.875rem;
  margin-bottom: 0.625rem; padding-right: 1.25rem;
}
#info-popup-body p { margin-bottom: 0.45rem; color: var(--text-muted); }
#info-popup-body p:last-child { margin-bottom: 0; }
#info-popup-body strong { color: var(--text); font-weight: 600; }
#info-popup-close {
  position: absolute; top: 0.5rem; right: 0.625rem;
  background: none; border: none; font-size: 1rem; line-height: 1;
  cursor: pointer; color: var(--text-muted); padding: 0.125rem 0.25rem;
}
#info-popup-close:hover { color: var(--text); }

/* === DOWNLOAD BUTTONS === */
.download-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5625rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg);
  transition: all var(--transition);
  color: var(--text);
}
.download-btn:hover { background: var(--bg-alt); border-color: var(--text); }
.download-btn svg { width: 14px; height: 14px; }

.period-btn {
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.period-btn:hover { border-color: #0bb4aa; color: #0bb4aa; }
.period-btn.active { background: #0bb4aa; border-color: #0bb4aa; color: #fff; }

.week-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}
.week-nav-btn:hover:not(:disabled) { border-color: #0bb4aa; color: #0bb4aa; }
.week-nav-btn:disabled { opacity: 0.28; cursor: default; }

/* === CTA SECTION === */
.cta-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 7rem 0;
  text-align: center;
}
.cta-section .h2 { color: #fff; max-width: 22ch; margin: 0 auto 1.25rem; }
.cta-section p {
  color: rgba(255,255,255,0.55);
  max-width: 46ch;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === TEAM / PARTNERS === */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.team-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  overflow: hidden;
  flex-shrink: 0;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.team-role-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.team-name { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.team-role { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.875rem; }
.team-bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.team-collab {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === NUMBERED LIST (services) === */
.numbered-list { }
.numbered-item {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2rem;
  align-items: start;
}
.numbered-item:last-child { border-bottom: 1px solid var(--border); }
.numbered-item-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-top: 0.375rem;
}
.numbered-item-body { }
.numbered-item-title { font-size: 1.375rem; font-weight: 400; margin-bottom: 0.875rem; letter-spacing: -0.01em; }
.numbered-item-text { font-size: 0.9375rem; color: var(--text-muted); max-width: 58ch; line-height: 1.7; }
.numbered-item-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* === QUOTE === */
.quote-block {
  border-left: 2px solid var(--text);
  padding-left: 1.75rem;
  margin: 2.5rem 0;
}
.quote-text {
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.quote-author { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.875rem; }

/* === DIVIDER === */
.divider { height: 1px; background: var(--border); }

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { opacity: 0.35; }

/* === BADGE === */
.badge {
  display: inline-block;
  padding: 0.3125rem 0.75rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* === MINI BAR CHART (SVG, inline) === */
.mini-chart { width: 100%; }

/* === TALKS CARD === */
.talk-item {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  transition: opacity var(--transition);
}
.talk-item:first-child { border-top: none; }
.talk-item:last-child { border-bottom: 1px solid var(--border); }
.talk-item:hover { opacity: 0.65; }
.talk-date { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.375rem; }
.talk-title { font-size: 1.0625rem; font-weight: 500; margin-bottom: 0.375rem; }
.talk-desc { font-size: 0.875rem; color: var(--text-muted); }
.talk-tags { display: flex; gap: 0.5rem; margin-top: 0.875rem; flex-wrap: wrap; }

/* === PODCAST EPISODE === */
.episode-item {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.episode-item:last-child { border-bottom: 1px solid var(--border); }
.episode-num {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}
.episode-title { font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; }
.episode-meta { font-size: 0.8125rem; color: var(--text-muted); }

/* === DAGENS NYBRUD === */
.dn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .dn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dn-grid { grid-template-columns: 1fr; } }

.dn-card.dn-hidden { display: none; }
.dn-show-more {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.dn-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dn-video {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-dark);
  overflow: hidden;
}
.dn-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.dn-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
}
.dn-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; }
.dn-meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.dn-title { font-size: 0.9375rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.625rem; }
.dn-text { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* === KONTAKT FORM === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(17,17,17,0.06);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #c0c0bc; }
.form-textarea { min-height: 150px; resize: vertical; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.375rem; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* === FOOTER === */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 5.5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 28ch;
}
.footer-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* === LOGO IMAGE === */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  /* Hvid logo → sort på lys nav-baggrund */
  filter: brightness(0);
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 0.65; }

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  /* Hvid logo på mørk footer – ingen filter */
}

/* === INSIGHTS TEASER (forsiden) === */
.insights-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* === PHOTO SECTION === */
.photo-section {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
}
.photo-section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.photo-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.40) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.photo-section-content {
  max-width: 580px;
}
.photo-section-quote {
  font-size: clamp(1.1875rem, 2.2vw, 1.6875rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.photo-section-attr {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-weight: 400;
}
.photo-section-attr strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

@media (max-width: 768px) {
  .photo-section { height: 70vh; min-height: 440px; }
  .photo-section-overlay { padding-bottom: 2.5rem; }
}

/* === ANIMATE IN === */
.animate-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: none;
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* === PROSE === */
.prose p { margin-bottom: 1.25rem; color: var(--text-muted); line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: 1.375rem; font-weight: 500; margin: 2rem 0 0.875rem; }
.prose ul { list-style: none; padding: 0; }
.prose ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
}

/* === INSIGHT DASHBOARD === */
.dashboard-header {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.dashboard-stat {
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
}
.dashboard-charts { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.dashboard-charts-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }

/* === SECTION STATEMENT === */
.section-statement {
  padding: 7rem 0;
  background: var(--bg-dark);
  color: #fff;
}
.statement-line {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.55);
}
.statement-line.statement-em {
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  margin-top: 0.25rem;
}
.statement-line.statement-accent {
  color: var(--blue);
}

/* === KUNDEREJSE === */
.journey-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.journey-item {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}
.journey-item:last-child { border-right: none; }
.journey-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.625rem;
}
.journey-headline {
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.journey-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* === AI SECTION === */
.ai-section {
  background: var(--bg-alt);
  border-left: 3px solid var(--blue);
  padding: 2.5rem 3rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.ai-section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.ai-punkter {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 240px;
}
.ai-punkter li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
  position: relative;
  padding-left: 1.25rem;
}
.ai-punkter li:last-child { border-bottom: none; }
.ai-punkter li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.8rem;
}

/* === ARBEJDSFORM === */
.arbejdsform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.arbejdsform-tag {
  padding: 0.375rem 0.875rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition);
}
.arbejdsform-tag:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}

/* === CASE NARRATIVE === */
.case-narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
  margin-top: 1rem;
}
.case-narrative-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.case-narrative-grid p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* === HERO MULTI-LINE === */
.hero-line {
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .dashboard-charts { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* ── Layout & spacing ───────────────────────────────────────── */
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 5rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .hero-scroll { display: none; }
  .page-hero { padding: 3rem 0 2rem; }
  .container { padding: 0 1.25rem; }
  .container-sm { padding: 0 1.25rem; }

  /* ── Grid: collapse + cap inline gaps via !important ────────── */
  .grid-2, .grid-3 { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .grid-4 { grid-template-columns: 1fr; }
  #nc-talks-teaser { grid-template-columns: 1fr !important; }

  /* ── Typography ─────────────────────────────────────────────── */
  .body-lg { font-size: 1rem; line-height: 1.7; }
  .section-label { margin-bottom: 1.75rem; }
  .section-label-right { margin-bottom: 1.75rem; }

  /* ── Navigation bar ─────────────────────────────────────────── */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 24px; }

  /* ── Hamburger → × when open ─────────────────────────────────  */
  .nav-hamburger span { transform-origin: center; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ── Mobile nav: smooth slide-down ──────────────────────────── */
  .nav-mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    padding: 0 1.5rem;
    border-top: none;
  }
  .nav-mobile.open {
    max-height: 400px;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
  }

  /* ── Footer ─────────────────────────────────────────────────── */
  footer { padding: 3.5rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
  .footer-legal { gap: 1rem; }

  /* ── Components ─────────────────────────────────────────────── */
  .case-row { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.5rem 0; }
  .case-image { height: 220px; }
  .case-arrow { display: none; }
  .card { padding: 1.5rem; }
  .cta-section { padding: 4rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 0.75rem 1.625rem; font-size: 0.9375rem; }
  .numbered-item { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.75rem 0; }
  .numbered-item-num { padding-top: 0; }
  .talk-item { grid-template-columns: 1fr; gap: 1rem; }
  .form-2col { grid-template-columns: 1fr; }

  /* ── Dashboards ─────────────────────────────────────────────── */
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .dashboard-charts-3 { grid-template-columns: 1fr; }

  /* ── Insight cards ──────────────────────────────────────────── */
  .insights-cards { grid-template-columns: 1fr; }
  .insights-cards .insight-card { grid-column: auto !important; }
  .insight-card-inner { grid-template-columns: 1fr !important; }
  .insight-card-inner .insight-card-visual { display: none; }

  /* ── Nye editorielle komponenter ────────────────────────────── */
  .journey-row { grid-template-columns: 1fr; }
  .journey-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
  .journey-item:last-child { border-bottom: none; }
  .ai-section { padding: 1.75rem; }
  .ai-section-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .ai-punkter { min-width: auto; }
  .case-narrative-grid { grid-template-columns: 1fr; gap: 1rem; }
  .section-statement { padding: 4rem 0; }
}

/* ============================================================
   DESIGN ENHANCEMENTS
   ============================================================ */

/* Nav CTA: teal brand colour */
.nav-cta {
  background: var(--blue) !important;
}
.nav-cta:hover {
  background: var(--blue-hover) !important;
  opacity: 1 !important;
}

/* Quote block: teal left border */
.quote-block {
  border-left-color: var(--blue);
  border-left-width: 3px;
}

/* Buttons: subtle lift on hover */
.btn {
  transition: all var(--transition), transform var(--transition);
}
.btn:hover {
  transform: translateY(-1px);
}

/* Numbered item: new label/product hierarchy */
.numbered-item {
  transition: border-top-color var(--transition);
}
.numbered-item:hover {
  border-top-color: var(--blue);
}
.numbered-item-num {
  transition: color var(--transition);
}
.numbered-item:hover .numbered-item-num {
  color: var(--blue);
}
.numbered-item-subtitle {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.numbered-item-title {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.numbered-item-tagline {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.numbered-item-formats {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.numbered-item-formats-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.numbered-item-format-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.4rem 0 0.4rem 1.375rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.55;
}
.numbered-item-format-item:last-child { border-bottom: none; }
.numbered-item-format-item::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: var(--blue);
  font-size: 0.75rem;
}
.numbered-item-horizon {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.numbered-item-horizon strong {
  color: var(--text);
  font-weight: 500;
}

/* Case item: teal title + arrow translate on hover */
.case-item {
  transition: background var(--transition);
}
.case-item:hover {
  opacity: 1;
  background: rgba(11, 180, 170, 0.025);
}
.case-title {
  transition: color var(--transition);
}
.case-item:hover .case-title {
  color: var(--blue);
}
.case-arrow {
  transition: color var(--transition), transform var(--transition);
}
.case-item:hover .case-arrow {
  color: var(--blue);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .numbered-item-formats { padding: 1rem; }
  .numbered-item-title { font-size: 1.375rem; }
}
