/* ==========================================================================
   Venue Manager — Design System
   v0.1 · 16. maj 2026
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens (CSS variables)
   Brand palette fra Venue Manager Designmanual Quickguide 1.0
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --c-primary:   #201C35;   /* Primary  · Pantone 5255 C */
  --c-secondary: #1A428A;   /* Secondary · Pantone 7687 C */
  --c-tertiary:  #345F9C;   /* Tertiary · Pantone 7684 C */

  /* Complementary accent — koral-orange, varm modspil til den blå brand-palette.
     Bruges sparsomt: eyebrow, accent-glow, result-card border, badges. */
  --c-accent: #F5703A;
  --c-accent-soft: #FF8B5C;
  --c-accent-hover: #E25C26;

  /* Derived for states & layering */
  --c-primary-soft:    #2D2849;
  --c-secondary-hover: #143270;
  --c-tertiary-soft:   #4673B0;

  /* Legacy aliases — eksisterende CSS holder */
  --c-navy-900: var(--c-primary);
  --c-navy-800: var(--c-primary-soft);
  --c-navy-700: var(--c-secondary);
  --c-teal: var(--c-tertiary);

  /* Neutral */
  --c-ink-900: #201C35;
  --c-ink-700: #4A4663;
  --c-ink-500: #757185;
  --c-ink-300: #B8B5C2;
  --c-line: #E5E4ED;
  --c-surface: #F7F6FA;
  --c-surface-2: #EFEDF4;
  --c-white: #FFFFFF;

  /* Type — Nunito Sans (designmanual) */
  --font-sans: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Nunito Sans", system-ui, sans-serif;

  /* Size scale (fluid) */
  --fs-xs: 0.8125rem;     /* 13 */
  --fs-sm: 0.9375rem;     /* 15 */
  --fs-base: 1rem;        /* 16 */
  --fs-md: 1.125rem;      /* 18 */
  --fs-lg: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --fs-2xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --fs-3xl: clamp(2.5rem, 1.8rem + 3vw, 4rem);
  --fs-4xl: clamp(3rem, 2rem + 4vw, 5rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.3,1);
  --dur: 200ms;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, .06), 0 1px 1px rgba(10, 37, 64, .04);
  --shadow-md: 0 6px 18px rgba(10, 37, 64, .08), 0 2px 4px rgba(10, 37, 64, .04);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, .12);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-ink-900);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a {
  color: var(--c-navy-800);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--c-accent); }

button { font: inherit; cursor: pointer; border: 0; background: transparent; }

input, textarea, select {
  font: inherit; color: inherit;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-white);
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--c-navy-700);
  outline-offset: 1px;
  border-color: var(--c-navy-700);
}

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

::selection { background: var(--c-navy-900); color: var(--c-white); }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-ink-900);
}
h1 { font-size: var(--fs-3xl); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-2xl); letter-spacing: -0.015em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { font-size: var(--fs-md); color: var(--c-ink-700); }
.lead { font-size: var(--fs-lg); color: var(--c-ink-700); line-height: 1.5; }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}
.section--dark .eyebrow { color: var(--c-accent-soft); }

.section-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-5);
  max-width: 36ch;
}
.section-subtitle {
  font-size: var(--fs-md);
  color: var(--c-ink-500);
  max-width: 60ch;
  margin-bottom: var(--sp-7);
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem); }
.section--tight { padding-block: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.section--dark { background: var(--c-navy-900); color: var(--c-white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-white); }
.section--dark p { color: rgba(255,255,255,.92); }
.section--dark .muted { color: rgba(255,255,255,.7); }
.section--surface { background: var(--c-surface); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: var(--sp-6); }
}

.split { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1.05fr 1fr; gap: var(--sp-8); } }
.split--reverse > :first-child { order: 2; }
@media (min-width: 960px) { .split--reverse > :first-child { order: 0; } }

.flow > * + * { margin-block-start: var(--sp-4); }
.flow-lg > * + * { margin-block-start: var(--sp-5); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  font-weight: 600;
  font-size: var(--fs-base);
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-secondary);
  color: var(--c-white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--c-secondary-hover); color: var(--c-white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--secondary {
  background: var(--c-primary);
  color: var(--c-white);
}
.btn--secondary:hover { background: var(--c-primary-soft); color: var(--c-white); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--c-navy-900);
  border: 1px solid var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-navy-900); color: var(--c-navy-900); background: var(--c-surface); }

.btn--inverted {
  background: var(--c-white);
  color: var(--c-navy-900);
}
.btn--inverted:hover { background: var(--c-surface); color: var(--c-navy-900); }

.btn--lg { padding: var(--sp-4) var(--sp-6); font-size: var(--fs-md); }

.link-inline {
  font-weight: 600;
  color: var(--c-navy-900);
  border-bottom: 2px solid var(--c-accent);
  padding-bottom: 1px;
}
.link-inline:hover { color: var(--c-accent); }

.link-arrow::after { content: " →"; display: inline-block; transition: transform var(--dur) var(--ease); }
.link-arrow:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: var(--sp-5);
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  height: 40px;
}
.site-header__logo img,
.site-header__logo svg {
  display: block;
  height: 32px;
  width: auto;
}
@media (min-width: 640px) {
  .site-header__logo img,
  .site-header__logo svg { height: 36px; }
}

.site-nav { display: none; align-items: center; gap: var(--sp-6); }
.site-nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-ink-700);
}
.site-nav a:hover { color: var(--c-navy-900); }

.site-nav__dropdown {
  position: relative;
}
.site-nav__dropdown summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--c-ink-700);
}
.site-nav__dropdown summary::-webkit-details-marker { display: none; }
.site-nav__dropdown summary::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -3px; transition: transform var(--dur) var(--ease);
}
.site-nav__dropdown[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.site-nav__dropdown[open] summary { color: var(--c-navy-900); }

.site-nav__panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  min-width: 260px;
  box-shadow: var(--shadow-md);
  display: grid; gap: var(--sp-3);
}
.site-nav__panel a { display: block; padding: var(--sp-2); border-radius: var(--radius-sm); font-weight: 500; color: var(--c-ink-900); }
.site-nav__panel a:hover { background: var(--c-surface); color: var(--c-navy-900); }
.site-nav__panel a small { display: block; font-size: var(--fs-xs); font-weight: 400; color: var(--c-ink-500); margin-top: 2px; }

.site-header__actions { display: flex; align-items: center; gap: var(--sp-4); }
.lang-switch {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.lang-switch a { color: var(--c-ink-300); }
.lang-switch a[aria-current="true"] { color: var(--c-navy-900); }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-navy-900); transition: all var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 960px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; inset: 72px 0 0 0;
  background: var(--c-white);
  z-index: 49;
  padding: var(--sp-5);
  overflow-y: auto;
}
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav a { display: block; padding: var(--sp-4) 0; font-size: var(--fs-lg); color: var(--c-ink-900); border-bottom: 1px solid var(--c-line); font-weight: 600; }
.mobile-nav__sub { padding-left: var(--sp-4); margin-bottom: var(--sp-3); }
.mobile-nav__sub a { font-size: var(--fs-base); font-weight: 500; color: var(--c-ink-700); padding: var(--sp-3) 0; }
.mobile-nav__cta { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }

@media (min-width: 960px) {
  .mobile-nav { display: none !important; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding-block: clamp(3rem, 2rem + 5vw, 6rem) clamp(3rem, 2rem + 4vw, 5rem);
  background: linear-gradient(180deg, var(--c-surface) 0%, var(--c-white) 100%);
  position: relative; overflow: hidden;
}
.hero__inner { display: grid; gap: var(--sp-7); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.1fr 1fr; gap: var(--sp-8); }
}
.hero h1 { font-size: var(--fs-4xl); margin-bottom: var(--sp-5); }
.hero__sub { font-size: var(--fs-lg); color: var(--c-ink-700); margin-bottom: var(--sp-6); max-width: 32ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.hero__pill {
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--c-ink-700);
  line-height: 1.5;
}
.hero__pill-num {
  color: var(--c-accent);
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero__pill-text a {
  color: var(--c-secondary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.hero__pill-text a:hover { color: var(--c-accent); }
.hero__media {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__svg { width: 100%; height: 100%; display: block; }

/* --------------------------------------------------------------------------
   8. Logo strip
   -------------------------------------------------------------------------- */
.logo-strip {
  padding-block: var(--sp-7);
  background: var(--c-primary);
  color: var(--c-white);
}
.logo-strip__label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: var(--sp-6);
}
.logo-strip__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3) var(--sp-7);
}

/* 12-logo grid in 2 rows */
.logo-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6) var(--sp-5);
  align-items: center;
  justify-items: center;
}
@media (min-width: 640px) { .logo-strip__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 960px) { .logo-strip__grid { grid-template-columns: repeat(6, 1fr); } }
.logo-strip__grid img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity var(--dur) var(--ease);
}

/* --------------------------------------------------------------------------
   9. Cards (segment, product, case, value)
   -------------------------------------------------------------------------- */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: var(--sp-3);
  height: 100%;
}
.card:hover { border-color: var(--c-navy-700); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card a { color: inherit; }

.card__title { font-size: var(--fs-lg); font-weight: 700; color: var(--c-ink-900); }
.card__body { color: var(--c-ink-500); font-size: var(--fs-base); flex-grow: 1; }
.card__footer { padding-top: var(--sp-3); font-weight: 600; color: var(--c-navy-900); }

.card__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  margin: var(--sp-3) auto var(--sp-5);
}

.card--dark {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary-soft);
}
.card--dark .card__title { color: var(--c-white); }
.card--dark .card__body { color: rgba(255,255,255,.92); }
.card--dark .card__footer { color: var(--c-accent-soft); }
.card--dark .card__eyebrow { color: var(--c-accent-soft); }
.card--dark .checklist li { color: rgba(255,255,255,.92); }

.card__eyebrow {
  display: inline-flex; align-items: center;
  font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--c-accent);
}

/* Consolidation visual */
.consolidate {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  display: grid; grid-template-columns: 1fr; gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 760px) { .consolidate { grid-template-columns: 1fr auto 1fr; } }
.consolidate__col h4 { font-size: var(--fs-md); margin-bottom: var(--sp-3); color: var(--c-ink-500); font-weight: 600; }
.consolidate__list { display: flex; flex-direction: column; gap: var(--sp-2); }
.consolidate__chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: 999px;
  padding: var(--sp-2) var(--sp-4); font-size: var(--fs-sm); color: var(--c-ink-500);
}
.consolidate__chip--strike { text-decoration: line-through; opacity: 0.6; }
.consolidate__chip--strong { background: var(--c-navy-900); color: var(--c-white); border-color: var(--c-navy-900); font-weight: 600; }
.consolidate__arrow {
  font-size: var(--fs-2xl);
  color: var(--c-accent);
  text-align: center;
  font-weight: 700;
}
@media (max-width: 759px) {
  .consolidate__arrow { transform: rotate(90deg); }
}

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  text-align: left;
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats.stats--five { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .stats.stats--five { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .stats.stats--five { grid-template-columns: repeat(5, 1fr); } }
.stat__value {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
  margin-top: var(--sp-2);
}

/* --------------------------------------------------------------------------
   11. Testimonials & cases
   -------------------------------------------------------------------------- */
.quote {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}
.quote blockquote {
  font-size: var(--fs-lg);
  color: var(--c-ink-900);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: var(--sp-5);
}
.quote blockquote::before { content: "“"; font-size: 3rem; line-height: 0; color: var(--c-accent); margin-right: 4px; vertical-align: -0.3em; }
.quote__author { font-weight: 600; color: var(--c-ink-900); font-size: var(--fs-sm); }
.quote__role { color: var(--c-ink-500); font-size: var(--fs-sm); }

.result-card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  border-left: 4px solid var(--c-accent);
}
.result-card__value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--c-navy-900);
  margin-bottom: var(--sp-3);
}
.result-card__quote {
  color: var(--c-ink-700);
  font-style: italic;
  font-size: var(--fs-base);
  margin-bottom: var(--sp-4);
}
.result-card__author { font-weight: 600; font-size: var(--fs-sm); color: var(--c-ink-900); }

/* --------------------------------------------------------------------------
   12. CTA + form
   -------------------------------------------------------------------------- */
.cta-block { padding-block: var(--sp-9); }
.cta-block__inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); }
@media (min-width: 960px) { .cta-block__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-9); } }

.form-card {
  background: var(--c-white);
  color: var(--c-ink-900);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}
.form-card .field + .field { margin-top: var(--sp-4); }
.form-card label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--c-ink-900);
}
.form-card .btn { width: 100%; justify-content: center; margin-top: var(--sp-5); }

.form-card .field--check { margin-top: var(--sp-5); }
.form-card .check {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.45;
  color: var(--c-ink-700);
  cursor: pointer;
  margin-bottom: 0;
}
.form-card .check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--c-accent);
  cursor: pointer;
}
.form-card .check em {
  font-style: italic;
  color: var(--c-ink-900);
}
.form-card__alt {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-ink-500);
  text-align: center;
}
.form-card__alt a {
  color: var(--c-secondary);
  font-weight: 600;
  text-decoration: none;
}
.form-card__alt a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-navy-900);
  color: rgba(255,255,255,.78);
  padding-block: var(--sp-9) var(--sp-6);
}
.site-footer__grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-7); } }

.site-footer__brand { display: inline-block; margin-bottom: var(--sp-4); }
.site-footer__brand img,
.site-footer__brand svg { display: block; height: 36px; width: auto; }
.site-footer__tagline {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.92);
  font-weight: 500;
  line-height: 1.5;
  max-width: 36ch;
  margin-bottom: var(--sp-5);
}
.site-footer h5 { color: var(--c-white); font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.site-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer a { color: rgba(255,255,255,.78); font-size: var(--fs-sm); }
.site-footer a:hover { color: var(--c-white); }
.site-footer__office { font-size: var(--fs-sm); line-height: 1.6; }
.site-footer__office strong { color: var(--c-white); display: block; margin-bottom: var(--sp-1); }
.site-footer__bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-4);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.6);
}

/* --------------------------------------------------------------------------
   14. Utilities
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.center { text-align: center; }
.muted { color: var(--c-ink-500); }
.no-wrap { white-space: nowrap; }
.divider { height: 1px; background: var(--c-line); margin-block: var(--sp-6); }

.checklist {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.checklist li {
  position: relative; padding-left: 2rem;
  color: var(--c-ink-700);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px;
  background: var(--c-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.section--dark .checklist li { color: rgba(255,255,255,.85); }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq {
  display: flex; flex-direction: column;
  gap: var(--sp-3);
  border-top: 1px solid var(--c-line);
}
.faq__item {
  border-bottom: 1px solid var(--c-line);
  padding-block: var(--sp-4);
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--c-primary);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-4);
  padding-right: var(--sp-2);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-secondary);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq__item[open] > summary::after {
  content: "−";
}
.faq__item > p {
  margin-top: var(--sp-3);
  color: var(--c-ink-500);
  max-width: 70ch;
}

/* Section CTA variant */
.section--cta {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  color: var(--c-white);
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
}
.section--cta h1, .section--cta h2, .section--cta h3 { color: var(--c-white); }
.section--cta p { color: rgba(255,255,255,.92); }

/* Card CTA link variant */
.card--link {
  text-decoration: none;
  display: flex; flex-direction: column;
}
.card--link:hover { border-color: var(--c-secondary); }
.card__cta {
  margin-top: auto;
  padding-top: var(--sp-3);
  font-weight: 600;
  color: var(--c-secondary);
  font-size: var(--fs-sm);
}

/* --------------------------------------------------------------------------
   Form
   -------------------------------------------------------------------------- */
.form {
  display: flex; flex-direction: column;
  gap: var(--sp-5);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
@media (max-width: 640px) {
  .form__row { grid-template-columns: 1fr; }
}
.form__field {
  display: flex; flex-direction: column;
  gap: var(--sp-2);
}
.form__field label {
  font-weight: 600;
  color: var(--c-primary);
  font-size: var(--fs-sm);
}
.form__field label .req {
  color: var(--c-accent);
  margin-left: 2px;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--c-white);
  font: inherit;
  color: var(--c-ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 3px rgba(26, 66, 138, 0.15);
}
.form__field textarea {
  min-height: 140px;
  resize: vertical;
}
.form__hint {
  font-size: var(--fs-sm);
  color: var(--c-ink-500);
}
.form__submit {
  display: flex; align-items: center; gap: var(--sp-4);
  margin-top: var(--sp-3);
  flex-wrap: wrap;
}
.form__status {
  font-size: var(--fs-sm);
  color: var(--c-ink-500);
}
.form__status[data-state="success"] { color: #1e7e34; font-weight: 600; }
.form__status[data-state="error"] { color: #c0392b; font-weight: 600; }

/* Honeypot — hidden field, not styled visibly */
.form__honeypot {
  position: absolute; left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Two-column layout for contact form + sidebar */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-aside {
  background: var(--c-surface);
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
}
.contact-aside h3 {
  font-size: var(--fs-md);
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}
.contact-aside p { color: var(--c-ink-500); margin-bottom: var(--sp-4); }
.contact-aside .office { margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: 1px solid var(--c-line); }
.contact-aside .office:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.contact-aside .office strong { display: block; color: var(--c-primary); margin-bottom: var(--sp-2); }
.contact-aside .office a { color: var(--c-secondary); }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 8px;
  background: var(--c-navy-900); color: white;
  padding: 8px 16px; border-radius: 4px;
  z-index: 100;
}
.skip-link:focus { top: 8px; color: var(--c-white); }

/* ==========================================================================
   DESIGN REFRESH v0.2 — Modern lift
   22. maj 2026 · 2026-trend opdatering
   Større display-typografi, mesh-gradient backgrounds, gradient-borders på
   hover, accent-glow, scroll-reveal, smoothere micro-interactions.
   ========================================================================== */

/* ---- 1. Typografi: tightere tracking, bedre kerning, harmoniserede H-størrelser ---- */
:root {
  --fs-display-sm: clamp(1.875rem, 1.4rem + 2.2vw, 2.875rem);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out-quart: cubic-bezier(.76, 0, .24, 1);
}

body {
  font-feature-settings: "kern", "liga", "calt", "ss01";
}

h1, h2, h3, h4 {
  font-feature-settings: "kern", "liga", "ss01";
}

h1 {
  font-size: var(--fs-display-sm);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.05;
}
h2 {
  letter-spacing: -0.025em;
  font-weight: 800;
}

.section-title {
  font-size: var(--fs-display-sm);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.05;
  max-width: 26ch;
}

/* Hero h1 — lidt mindre end section-titles for at give plads til illustration */
.hero h1 {
  font-size: clamp(1.875rem, 1.4rem + 2.2vw, 2.875rem);
  letter-spacing: -0.028em;
  line-height: 1.08;
}

/* Hero media — fjern shadow/baggrund når vi viser PNG-illustration med transparent baggrund */
.hero__media--illustration {
  border-radius: 0;
  aspect-ratio: auto;
  overflow: visible;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__media--illustration img {
  width: 100%;
  height: auto;
  max-width: 520px;
  display: block;
}

/* Rotator: crossfade mellem 3 illustrationer (attraktioner / events / sport) */
.hero__media--rotator {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: visible;
}
.hero__media--rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: hero-rotator 9s infinite ease-in-out;
}
.hero__media--rotator img:nth-child(1) { animation-delay: -1s; }
.hero__media--rotator img:nth-child(2) { animation-delay:  2s; }
.hero__media--rotator img:nth-child(3) { animation-delay:  5s; }

@keyframes hero-rotator {
  0%   { opacity: 0; }
  11%  { opacity: 1; }
  33%  { opacity: 1; }
  44%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media--rotator img {
    animation: none;
    opacity: 1;
  }
  .hero__media--rotator img:not(:first-child) { display: none; }
}

.lead {
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.3125rem);
  line-height: 1.55;
  color: var(--c-ink-700);
  font-weight: 400;
}

/* Hero H1 in dark sections — extra weight on display */
.section--dark h1 {
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.82) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- 2. Eyebrow: med accent-dot prefix ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(245, 112, 58, 0.18);
}

/* ---- 3. Dark sections: solid dark med subtilt grid-overlay (ingen edge-fade) ---- */
.section--dark {
  position: relative;
  background: var(--c-navy-900);
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.section--dark > * { position: relative; z-index: 1; }

/* ---- 4. Surface sections: subtle dot pattern ---- */
.section--surface {
  position: relative;
  background:
    radial-gradient(circle at 1px 1px, rgba(32, 28, 53, 0.06) 1px, transparent 0),
    var(--c-surface);
  background-size: 24px 24px;
}

/* ---- 5. Buttons: gradient + accent-glow ---- */
.btn {
  position: relative;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: transform var(--dur) var(--ease-out-expo),
              box-shadow var(--dur) var(--ease-out-expo),
              background-color var(--dur) var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-tertiary) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 6px 16px rgba(26, 66, 138, 0.35),
    0 1px 2px rgba(10, 37, 64, 0.2);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--c-secondary-hover) 0%, var(--c-secondary) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 10px 28px rgba(26, 66, 138, 0.45),
    0 2px 6px rgba(10, 37, 64, 0.2),
    0 0 0 6px rgba(26, 66, 138, 0.12);
}
.btn--lg {
  padding: var(--sp-4) var(--sp-7);
  font-size: var(--fs-md);
}

/* ---- 6. Cards: gradient border on hover + smooth lift ---- */
.card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: var(--sp-6);
  transition:
    transform 320ms var(--ease-out-expo),
    box-shadow 320ms var(--ease-out-expo),
    border-color 320ms var(--ease);
}
.card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-accent) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 320ms var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow:
    0 24px 60px rgba(32, 28, 53, 0.12),
    0 6px 18px rgba(32, 28, 53, 0.06);
}
.card:hover::before { opacity: 1; }

.card--dark {
  background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-soft) 100%);
  border-color: rgba(255,255,255,0.08);
}

/* ---- 7. Stats: bigger, with accent underline ---- */
.stat__value {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-tertiary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section--dark .stat__value {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  color: var(--c-ink-500);
}
.section--dark .stat__label { color: rgba(255,255,255,0.7); }

/* ---- 8. Site header: subtler, more refined ---- */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(229, 228, 237, 0.6);
}

/* ---- 9. Logo strip: auto-scrolling marquee ---- */
.logo-strip {
  overflow: hidden;
  background: var(--c-navy-900);
  padding-block: clamp(2.5rem, 1.6rem + 3vw, 4rem);
}
.logo-strip .container {
  position: relative;
}
.logo-strip__label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-6);
}
.logo-strip__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-strip__track {
  display: flex;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  width: max-content;
  align-items: center;
  animation: marquee-scroll 60s linear infinite;
}
.logo-strip__track img {
  height: clamp(40px, 30px + 1vw, 56px);
  width: auto;
  max-width: none;
  opacity: 0.85;
  /* Assets i /logos/white/ er allerede hvide PNG/SVG — intet CSS-filter behøves */
  transition: opacity 200ms var(--ease);
  flex-shrink: 0;
}
.logo-strip__track img[data-placeholder="true"] {
  /* Legacy: bevares for bagudkompatibilitet hvis ældre sider stadig bruger flag'et */
  filter: none;
}
.logo-strip__track img:hover { opacity: 1; }
.logo-strip:hover .logo-strip__track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Memberships row */
.memberships {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.memberships__label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-500);
  margin-bottom: var(--sp-5);
}
.memberships__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 1rem + 2vw, 3.5rem);
}
.memberships__row img {
  height: clamp(44px, 36px + 1.2vw, 68px);
  width: auto;
  opacity: 1;
  transition: transform 200ms var(--ease);
}
.memberships__row img:hover {
  transform: translateY(-2px);
}

/* Value-løfte cards (Mere omsætning, Lavere kompleksitet, ...) */
.value-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 640px) { .value-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .value-cards { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: var(--sp-6);
  text-align: left;
  overflow: hidden;
  transition: transform 320ms var(--ease-out-expo), box-shadow 320ms var(--ease-out-expo), border-color 320ms var(--ease);
}
.value-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-accent) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 320ms var(--ease);
  pointer-events: none;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(32, 28, 53, 0.12), 0 6px 18px rgba(32, 28, 53, 0.06);
}
.value-card:hover::before { opacity: 1; }
.value-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(26, 66, 138, 0.08) 0%, rgba(245, 112, 58, 0.08) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
}
.value-card__icon img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}
.value-card__body {
  font-size: var(--fs-sm);
  color: var(--c-ink-500);
  line-height: 1.5;
}
.value-card__num {
  position: absolute;
  top: var(--sp-5); right: var(--sp-5);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-ink-300);
  letter-spacing: 0.06em;
}

/* ---- 10. Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease-out-expo),
    transform 800ms var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal[data-state="visible"] {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }
.reveal:nth-child(6) { transition-delay: 400ms; }

/* ---- 11. CTA section: enhanced gradient ---- */
.section--cta {
  position: relative;
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(52, 95, 156, 0.5) 0%, transparent 60%),
    radial-gradient(60% 50% at 80% 100%, rgba(245, 112, 58, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  overflow: hidden;
}

/* Lead magnet — 15-30% playbook */
.lead-magnet__inner { align-items: center; gap: clamp(2rem, 1rem + 4vw, 4.5rem); }
.lead-magnet__title {
  color: var(--c-white);
  max-width: 22ch;
  margin-bottom: var(--sp-5);
}
.lead-magnet__body { color: rgba(255,255,255,.92); max-width: 56ch; }
.lead-magnet__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}
.lead-magnet__alt {
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: var(--fs-md);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.lead-magnet__alt:hover {
  color: var(--c-accent);
  border-bottom-color: var(--c-accent);
}
.lead-magnet__meta {
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
}
.lead-magnet__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  backdrop-filter: blur(8px);
}
.lead-magnet__card-eyebrow {
  color: var(--c-accent-soft);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.lead-magnet__list { color: rgba(255,255,255,1); }
.lead-magnet__list li {
  color: rgba(255,255,255,.95);
  margin-bottom: var(--sp-4);
  line-height: 1.55;
}
.lead-magnet__list li strong {
  color: var(--c-white);
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}
.lead-magnet__list li span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: var(--fs-sm);
  font-weight: 400;
}
.lead-magnet__list li::before {
  color: var(--c-accent) !important;
}

/* Value-cards footer CTA — link to playbook */
.value-cards__cta {
  text-align: center;
  margin-top: var(--sp-7);
  font-size: var(--fs-md);
  color: var(--c-ink-700);
}
.value-cards__cta a {
  color: var(--c-secondary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease;
}
.value-cards__cta a:hover { border-bottom-color: var(--c-accent); }

/* ---- 12. Form fields: rounder, more confident ---- */
.form__field input,
.form__field select,
.form__field textarea {
  border-radius: 10px;
  padding: 0.875rem 1rem;
  border-width: 1.5px;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 100ms var(--ease);
}
.form__field input:hover,
.form__field select:hover,
.form__field textarea:hover {
  border-color: var(--c-ink-300);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 4px rgba(26, 66, 138, 0.12);
}

/* ---- 13. Link arrows with smoother motion ---- */
.link-arrow::after,
.card__footer.link-arrow::after,
.card__cta::after {
  transition: transform 240ms var(--ease-out-expo);
}
.card:hover .link-arrow::after,
.card:hover .card__cta::after,
.card:hover .card__footer.link-arrow::after { transform: translateX(4px); }

/* ---- 14. Section dividers: subtle gradient line ---- */
.section + .section--surface,
.section--dark + .section,
.section + .section--dark { border-top: 0; }

/* ---- 15. Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
