/* ============================================
   WEBPARTNEREN — COMPREHENSIVE STYLES
   High-converting homepage for håndværkere
   ============================================ */

/* ROOT VARIABLES */
:root {
  /* Sunset / orange palette — v14 (refined editorial neutrals) */
  --bg: #fefcfa;       /* paper white, barely warm */
  --bg2: #fbf5ee;      /* cream */
  --bg3: #f4e8d8;      /* warm sand */
  --ink: #1a0f08;      /* warm espresso */
  --ink2: #4d3a2c;     /* refined warm gray */
  --muted: #968274;    /* muted warm gray */
  /* Brand color tokens kept as --blue* for backwards compatibility */
  --blue: #ea580c;     /* primary sunset orange (unchanged — brand) */
  --blue-lt: #fff7ed;  /* very light peach bg */
  --blue-dk: #c2410c;  /* darker orange (hover) */
  --blue-light: #fed7aa; /* light peach tint */
  /* Deep secondary — for hero accents, footers, dark sections */
  --ember: #7c2d0a;    /* deep ember */
  --ember-dk: #4a1a05; /* deepest tonal */
  /* Extra sunset accents */
  --sunset-1: #fb923c;  /* soft orange */
  --sunset-2: #f97316;  /* vivid orange */
  --sunset-3: #e11d48;  /* magenta accent */
  --sunset-glow: radial-gradient(circle at 30% 20%, #fde68a 0%, transparent 55%),
                 radial-gradient(circle at 70% 80%, #fb7185 0%, transparent 50%),
                 linear-gradient(160deg, #fff7ed 0%, #ffedd5 55%, #fed7aa 100%);
  --border: #f3e4d2;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(194, 65, 12, 0.08);
  --shadow-md: 0 4px 16px rgba(194, 65, 12, 0.12);
  --shadow-lg: 0 8px 32px rgba(194, 65, 12, 0.18);

  /* Status / state tokens (semantic, not hard-coded at use site) */
  --status-live-bg: #dcfce7;
  --status-live-border: #bbf7d0;
  --status-live-fg: #15803d;
  --status-live-dot: #22c55e;
  --status-live-glow: rgba(34, 197, 94, 0.55);

  /* Trust / review color (review-platform green — recognisable signal of independent rating) */
  --trust-green: #00b67a;
  --trust-green-dk: #009868;
  /* Danish flag */
  --dk-red: #c8102e;

  /* Focus ring — single source of truth (HIG: visible keyboard focus everywhere) */
  --focus-ring: var(--blue);
  --focus-ring-offset: 3px;

  /* Typography — Plus Jakarta Sans throughout (display + sans share) */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Editorial motion */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --t-stagger: 80ms;
  --t-cinematic: 1200ms;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

/* Global desktop zoom-out (~20%) so layouts feel less oversized on large screens.
   Mobile/tablet keep their existing scale via the breakpoints below. */
@media (min-width: 1025px) {
  body { zoom: 0.80; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 54px;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2.4rem;
  z-index: 999;
  gap: 1.5rem;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
/* Browsers without backdrop-filter (rare) get the solid token instead */
@supports not (backdrop-filter: blur(1px)) {
  .site-nav { background: var(--bg); }
}

/* Transparent state — when over the light aurora hero. */
.site-nav.nav-hero {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: rgba(26, 15, 8, 0.06);
  box-shadow: none;
}
.site-nav.nav-hero .nav-link {
  color: rgba(26, 15, 8, 0.72);
}
.site-nav.nav-hero .nav-link:hover {
  color: var(--ink);
}
.site-nav.nav-hero .logo-wordmark {
  color: var(--ink);
}
.site-nav.nav-hero .nav-phone,
.site-nav.nav-hero .nav-login {
  color: rgba(26, 15, 8, 0.65);
}
.site-nav.nav-hero .nav-login:hover {
  color: var(--ink);
  background: rgba(26, 15, 8, 0.05);
  border-color: rgba(26, 15, 8, 0.16);
}
.site-nav.nav-hero .hamburger span {
  background: rgba(26, 15, 8, 0.82);
}
.site-nav.nav-hero .btn-primary-nav {
  background: var(--blue);
  color: #fff;
  border: none;
  box-shadow: 0 2px 14px rgba(234, 88, 12, 0.28);
  backdrop-filter: none;
}
.site-nav.nav-hero .btn-primary-nav:hover {
  background: var(--blue-dk);
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--ink);
  transition: opacity 200ms var(--ease-editorial);
}
.logo-wrap:hover { opacity: 0.82; }

.logo-mark {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 7px;
  object-fit: contain;
}

.logo-wordmark {
  height: 22px;
  width: auto;
  display: block;
  color: inherit;
}

.nav-spacer {
  flex: 1;
}

.nav-desktop {
  display: flex;
  gap: 1.6rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

.nav-login {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 220ms var(--ease-editorial),
              background 220ms var(--ease-editorial),
              border-color 220ms var(--ease-editorial);
}
.nav-login:hover {
  color: var(--blue);
  background: var(--blue-lt);
  border-color: rgba(234, 88, 12, 0.18);
}

.btn-primary-nav {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 7px;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  /* HIG: minimum 44×44pt tap target */
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  margin-right: -10px; /* compensate so visual position is preserved */
  border-radius: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: var(--blue);
  color: white;
  width: 100%;
  max-width: 400px;
}

.btn-primary-large:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg2);
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg3);
  border-color: var(--blue);
}

.btn-secondary-ghost {
  background: transparent;
  color: var(--ink);
  border: none;
  font-weight: 500;
  text-decoration: underline;
}

.btn-secondary-ghost:hover {
  color: var(--blue);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  margin-top: 54px;
}

.si {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 4rem 0;
}

.s-head {
  margin-bottom: 3rem;
}

.s-head.c {
  text-align: center;
}

.s-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.s-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.022em;
}
.s-title em {
  font-style: normal;
  color: var(--blue);
}

.s-sub {
  font-size: 1.1rem;
  color: var(--ink2);
  line-height: 1.6;
}

/* ============================================
   FEATURE GRID — brancher landing pages
   .why-grid > .why-card > .why-ico + content
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.1rem;
  align-items: start;
  padding: 1.5rem 1.5rem 1.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 280ms var(--ease-editorial),
              border-color 280ms var(--ease-editorial),
              box-shadow 280ms var(--ease-editorial);
}
.why-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--blue) 35%, var(--border));
  box-shadow: 0 12px 28px -16px color-mix(in srgb, var(--blue) 28%, transparent);
}

.why-ico {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 11px;
  background: var(--blue-lt);
  flex-shrink: 0;
}

.why-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.why-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink2);
}

@media (prefers-reduced-motion: reduce) {
  .why-card { transition: none; }
  .why-card:hover { transform: none; box-shadow: none; }
}

/* ============================================
   HERO — APPLEIZED (Liquid Glass, Dec 2025 HIG)
   Semantic tokens scoped to .hero-appleized so
   the rest of the site keeps using --ink/--bg/--blue.
   ============================================ */
.hero-appleized {
  /* Labels (HIG: Label / Secondary / Tertiary) */
  --color-label: var(--ink);
  --color-label-2: var(--ink2);
  --color-label-3: var(--muted);

  /* Backgrounds */
  --color-bg: var(--bg);
  --color-bg-2: var(--bg2);
  --color-bg-3: var(--bg3);

  /* Brand accent (kept) */
  --color-accent: var(--blue);
  --color-accent-strong: var(--blue-dk);
  --color-accent-soft: rgba(234, 88, 12, 0.10);

  /* Liquid Glass material */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(26, 15, 8, 0.08);
  --glass-blur: 24px;
  --glass-saturation: 1.6;

  /* Concentric corners */
  --r-card: 32px;
  --r-pill: 100px;

  /* Type scale (HIG translation) */
  --text-large-title: clamp(3rem, 6.5vw, 5.8rem);
  --text-headline: 0.975rem;
  --text-subhead: clamp(1rem, 1.6vw, 1.1rem);
  --text-footnote: 0.78rem;

  /* Weights */
  --w-large-title: 800;
  --w-headline: 600;

  /* Motion (reuses global editorial ease) */
  --hero-ease: var(--ease-editorial);
  --hero-dur-fast: 220ms;
}

@media (prefers-contrast: more) {
  .hero-appleized {
    --glass-bg: rgba(255, 255, 255, 0.94);
    --glass-bg-strong: #ffffff;
    --glass-border: rgba(26, 15, 8, 0.32);
    --color-label-2: #2a1a0c;
    --color-label-3: #5a4a3c;
  }
}

/* No dark-scheme block — site is light-only. */

/* ── Section ────────────────────────────────────── */
.hero.hero-appleized {
  position: relative;
  min-height: 100vh;
  margin-top: -54px;
  padding: 54px 24px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
}

/* ── Background: clean warm gradient + soft glow ── */
.hero.hero-appleized .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 50%, rgba(255, 247, 237, 0.0) 0%, rgba(254, 252, 250, 0.4) 100%),
    linear-gradient(180deg, #fffaf3 0%, #fef6ec 50%, #fef0e0 100%);
  z-index: 0;
}
/* Subtle dotted texture (Apple-style) */
.hero.hero-appleized .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(234, 88, 12, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 0%, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
}
.hero.hero-appleized .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.45;
  pointer-events: none;
  will-change: transform;
}
.hero.hero-appleized .hero-orb--1 {
  width: 540px; height: 540px;
  top: -200px; right: -240px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.42) 0%, transparent 65%);
  animation: heroOrbDrift 22s var(--hero-ease) infinite alternate;
}
.hero.hero-appleized .hero-orb--2 {
  width: 420px; height: 420px;
  bottom: -200px; left: -200px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.32) 0%, transparent 65%);
  animation: heroOrbDrift 28s var(--hero-ease) infinite alternate-reverse;
}
@keyframes heroOrbDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, 30px, 0) scale(1.08); }
}

/* ── Liquid Glass card ──────────────────────────── */
.hero.hero-appleized .hero-card {
  position: relative;
  z-index: 2;
  max-width: 920px;
  width: 100%;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--r-card);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
          backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(234, 88, 12, 0.06),
    0 24px 72px rgba(194, 65, 12, 0.10),
    0 12px 32px rgba(26, 15, 8, 0.06),
    0 2px 8px rgba(26, 15, 8, 0.03);
  text-align: center;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero.hero-appleized .hero-card { background: var(--glass-bg-strong); }
}

/* ── Editorial composition ──────────────────────── */
.hero.hero-appleized .hero-cinematic {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0;
  margin-top: 0;
  animation: none;
}

/* Tag pill */
.hero.hero-appleized .hero-motto {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--text-footnote);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border: 1px solid rgba(234, 88, 12, 0.18);
  border-radius: var(--r-pill);
  padding: 0.38rem 1rem 0.38rem 0.65rem;
  margin: 0 0 2rem;
  line-height: 1;
}
.hero.hero-appleized .hero-motto::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.18);
}

/* Headline (Large Title) */
.hero.hero-appleized .hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-large-title);
  font-weight: var(--w-large-title);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--color-label);
  margin: 0 0 1.4rem;
  text-align: center;
}

/* Brand-name hero — Webpartneren as the composition itself */
.hero.hero-appleized .hero-brand {
  font-size: clamp(2.8rem, 8.4vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 1.2rem;
  text-rendering: optimizeLegibility;
}
.hero.hero-appleized .hero-brand-inner {
  display: inline-block;
  background-image: linear-gradient(180deg, rgba(26, 15, 8, 1) 0%, rgba(26, 15, 8, 0.92) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.hero.hero-appleized .hb-web {
  color: var(--color-label);
}
.hero.hero-appleized .hb-partneren {
  color: var(--color-accent);
  background: linear-gradient(180deg, #f97316 0%, #ea580c 60%, #c2410c 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tagline — italic motto under the brand name */
.hero.hero-appleized .hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  letter-spacing: -0.005em;
  color: var(--color-label-2);
  margin: 0 0 1.4rem;
}
.hero.hero-appleized .hero-tagline::before,
.hero.hero-appleized .hero-tagline::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.45), transparent);
  vertical-align: middle;
  margin: 0 0.85rem;
}

/* Subhead */
.hero.hero-appleized .hero-motto-sub {
  font-size: var(--text-subhead);
  font-weight: 500;
  color: var(--color-label-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 auto 2.6rem;
  max-width: 480px;
  font-size: 0.78rem;
}

/* CTAs (glass pills, primary tinted) */
.hero.hero-appleized .hero-cinematic-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero.hero-appleized .btn-cinematic-primary,
.hero.hero-appleized .btn-cinematic-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 2.2rem;
  border-radius: var(--r-pill);
  font-size: var(--text-headline);
  font-weight: var(--w-headline);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--hero-dur-fast) var(--hero-ease),
    transform  var(--hero-dur-fast) var(--hero-ease),
    box-shadow var(--hero-dur-fast) var(--hero-ease),
    border-color var(--hero-dur-fast) var(--hero-ease);
}
.hero.hero-appleized .btn-cinematic-primary {
  background: var(--color-accent);
  color: #fff;
  border: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 4px 14px rgba(234,88,12,0.32),
    0 12px 32px rgba(234,88,12,0.18);
}
.hero.hero-appleized .btn-cinematic-primary:hover {
  background: var(--color-accent-strong);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 6px 18px rgba(234,88,12,0.40),
    0 14px 38px rgba(234,88,12,0.22);
}
.hero.hero-appleized .btn-cinematic-primary:active { transform: translateY(0); }

.hero.hero-appleized .btn-cinematic-ghost {
  background: var(--glass-bg-strong);
  color: var(--color-label);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.hero.hero-appleized .btn-cinematic-ghost:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(26, 15, 8, 0.18);
  transform: translateY(-1px);
}

/* Reduced motion: stop orb drift, stop hover lift */
@media (prefers-reduced-motion: reduce) {
  .hero.hero-appleized .hero-orb { animation: none; }
  .hero.hero-appleized .btn-cinematic-primary:hover,
  .hero.hero-appleized .btn-cinematic-ghost:hover { transform: none; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.trust-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-stat {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.trust-text {
  font-size: 0.9rem;
  color: var(--ink2);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problems-section {
  border-bottom: 1px solid var(--border);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.problem-card {
  padding: 2rem;
  background: linear-gradient(135deg, #fff5f0 0%, #fff8f6 100%);
  border-radius: var(--radius);
  border-left: 4px solid #ff6b4a;
  transition: transform 0.2s, box-shadow 0.2s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--ink2);
  line-height: 1.6;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.solution-card {
  padding: 2rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.solution-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.solution-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.solution-card p {
  font-size: 0.95rem;
  color: var(--ink2);
  line-height: 1.8;
}

.solution-card strong {
  color: var(--ink);
  font-weight: 700;
}

/* ============================================
   PROCESS/TIMELINE
   ============================================ */
.process-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
  padding: 2rem;
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.timeline-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.timeline-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 2rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.pricing-featured {
  border: 3px solid var(--blue);
  background: var(--blue-lt);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--blue);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.pricing-features {
  flex: 1;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-feature {
  font-size: 0.9rem;
  color: var(--ink2);
  margin-bottom: 0.75rem;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 1rem;
}

.pricing-guarantee {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================
   VALUE GRID
   ============================================ */
.value-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.value-item {
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink2);
  border-left: 4px solid var(--blue);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.faq-items {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  transition: background 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: var(--bg2);
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.faq-item[open] .faq-question {
  background: var(--blue-lt);
  color: var(--blue);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 3rem;
  color: var(--ink2);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================
   PROOF SECTION
   ============================================ */
.proof-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.proof-card {
  padding: 2rem;
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.proof-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.proof-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.proof-card p {
  font-size: 0.95rem;
  color: var(--ink2);
  line-height: 1.7;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final {
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  color: white;
  border-bottom: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}

.cta-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cta-option {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.cta-option h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-option p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-option .btn {
  width: 100%;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: white;
  background: white;
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.18);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1a1d23;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--blue-light);
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--blue-light);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 0;
  z-index: 998;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.mobile-menu.active {
  max-height: 480px;
}

.mobile-menu a {
  padding: 1rem 2rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--bg2);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-child] {
  opacity: 0;
  transform: translateY(20px);
}

[data-reveal].revealed [data-reveal-child] {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .si {
    padding: 0 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-stats {
    margin-top: 2rem;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-contact {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    min-width: auto;
    width: 100%;
  }

  .hero-h1 {
    font-size: 1.8rem;
  }

  .hero-h2 {
    font-size: 1.4rem;
  }

  .s-title {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .cta-options {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-nav {
    padding: 0 1rem;
    gap: 1rem;
  }

  .logo-wordmark {
    height: 18px;
  }

  .logo-mark {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .si {
    padding: 0 1rem;
  }

  section {
    padding: 2rem 0;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-h1 {
    font-size: 1.4rem;
  }

  .hero-h2 {
    font-size: 1.1rem;
  }

  .s-title {
    font-size: 1.3rem;
  }

  .problems-grid,
  .solution-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .solution-card,
  .proof-card {
    padding: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    gap: 0.75rem;
  }

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.c {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ============================================
   NEW SECTIONS — v12 (wireframe v2)
   ============================================ */

/* Trust strip — 4 columns variant */
.trust-cards.trust-cards-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .trust-cards.trust-cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .trust-cards.trust-cards-4 {
    grid-template-columns: 1fr;
  }
}

/* Problem bridge line */
.problem-bridge {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #ea580c;
  font-weight: 600;
}

/* Compare table (bureau vs Webpartneren) */
.compare-table {
  max-width: 900px;
  margin: 2rem auto 0;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,15,20,0.05);
}
.compare-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  background: #f4f6f9;
  font-weight: 700;
  color: #0d0f14;
}
.compare-col-them, .compare-col-us {
  padding: 1rem 1.2rem;
  text-align: center;
  font-size: 1.05rem;
}
.compare-col-us {
  background: #fff7ed;
  color: #c2410c;
}
.compare-col-them {
  color: #8a909e;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-top: 1px solid #e4e7ed;
}
.compare-label {
  padding: 1rem 1.2rem;
  font-weight: 600;
  background: #f9fafb;
  color: #3a3f4a;
}
.compare-them, .compare-us {
  padding: 1rem 1.2rem;
  text-align: center;
}
.compare-them {
  color: #8a909e;
  text-decoration: line-through;
  text-decoration-color: rgba(220,38,38,0.4);
}
.compare-us {
  color: #0d0f14;
  font-weight: 600;
  background: #fff8f0;
}
@media (max-width: 700px) {
  .compare-header, .compare-row {
    grid-template-columns: 1fr;
  }
  .compare-header .compare-col-label { display: none; }
  .compare-label {
    background: #0d0f14;
    color: #fff;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .compare-them, .compare-us {
    text-align: left;
    padding: 0.8rem 1rem;
  }
  .compare-them::before { content: "Bureau: "; font-weight: 700; color: #dc2626; }
  .compare-us::before { content: "Webpartneren: "; font-weight: 700; color: #c2410c; }
}

.solution-cta, .process-cta, .proof-cta, .objection-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Value cards (8-grid with icon + title + text) */
.value-grid.value-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.value-card {
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 12px;
  padding: 1.4rem;
  text-align: left;
}
.value-card .value-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.value-card h4 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: #0d0f14;
}
.value-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  color: #3a3f4a;
}
@media (max-width: 900px) {
  .value-grid.value-grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .value-grid.value-grid-8 { grid-template-columns: 1fr; }
}

/* Before / After block */
.before-after {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e4e7ed;
}
.ba-header {
  text-align: center;
  margin-bottom: 2rem;
}
.ba-header h3 {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
  color: #0d0f14;
}
.ba-header p {
  color: #3a3f4a;
  margin: 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ba-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e4e7ed;
}
.ba-label {
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #dc2626;
  color: #fff;
}
.ba-label.ba-label-good {
  background: #16a34a;
}
.ba-mock {
  padding: 1rem;
  background: #f4f6f9;
  min-height: 200px;
}
.ba-mock-before {
  font-family: "Times New Roman", serif;
}
.ba-mock-nav {
  background: #888;
  color: #fff;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}
.ba-mock-h1-bad {
  font-weight: 700;
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.ba-mock-text-bad {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.ba-mock-box-bad {
  display: inline-block;
  border: 1px solid #999;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  color: #555;
  background: #e4e7ed;
}
.ba-mock-after {
  background: #fff;
  border: 1px solid #e4e7ed;
}
.ba-mock-nav-good {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid #e4e7ed;
  margin-bottom: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1rem;
}
.ba-mock-brand {
  font-weight: 800;
  color: #0d0f14;
}
.ba-mock-phone-btn {
  background: #ea580c;
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}
.ba-mock-h1-good {
  font-weight: 800;
  font-size: 1.15rem;
  color: #0d0f14;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.ba-mock-sub-good {
  font-size: 0.85rem;
  color: #3a3f4a;
  margin-bottom: 1rem;
}
.ba-mock-btn-good {
  display: inline-block;
  background: #ea580c;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.ba-list {
  list-style: none;
  padding: 1rem 1.2rem;
  margin: 0;
  background: #fff;
}
.ba-list li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
}
.ba-list-bad li { color: #8a909e; }
.ba-list-good li { color: #0d0f14; font-weight: 500; }
@media (max-width: 700px) {
  .ba-grid { grid-template-columns: 1fr; }
  .before-after { padding: 1.2rem; }
}

/* Objections (open, not accordion) */
.objections-section {
  padding: 5rem 0;
  background: #f9fafb;
}
.objection-list {
  max-width: 900px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.objection-block {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  border-left: 4px solid #ea580c;
  box-shadow: 0 2px 12px rgba(13,15,20,0.04);
}
.objection-q {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d0f14;
  margin: 0 0 0.6rem;
  line-height: 1.3;
}
.objection-a {
  color: #3a3f4a;
  line-height: 1.65;
  margin: 0;
  font-size: 1rem;
}
.objection-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.objection-cta p {
  margin-bottom: 1rem;
  color: #0d0f14;
  font-size: 1.05rem;
}
.objection-phone {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #8a909e;
}
.objection-phone a {
  color: #ea580c;
  font-weight: 700;
  text-decoration: none;
}
.btn.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Pricing footnote & description & no-feature */
.pricing-desc {
  color: #3a3f4a;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  font-style: italic;
  min-height: 2.8em;
}
.pricing-footnote {
  text-align: center;
  color: #8a909e;
  font-size: 0.92rem;
  margin-top: 2rem;
  line-height: 1.6;
}
.pricing-footnote a {
  color: #ea580c;
  text-decoration: none;
  font-weight: 600;
}
.pricing-feature-no {
  color: #8a909e;
  text-decoration: line-through;
  text-decoration-color: rgba(138,144,158,0.4);
}

/* Final CTA trust line */
.cta-trust {
  text-align: center;
  margin-top: 2rem;
  color: #8a909e;
  font-size: 0.95rem;
}

/* ============================================
   HERO: Animated rotating word (v12)
   ============================================ */
.hero-h1-animated {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15em;
  color: #0d0f14;
}
.hero-h1-animated .hero-line-1,
.hero-h1-animated .hero-line-2 {
  display: block;
}
.hero-rotator {
  position: relative;
  display: inline-block;
  height: 1.35em;
  min-width: 14ch;
  padding: 0 0.3em;
  overflow: hidden;
  vertical-align: bottom;
  color: #ea580c;
  line-height: 1.1;
}
.hero-rotate-item {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 120%);
  opacity: 0;
  white-space: nowrap;
  font-weight: 800;
  line-height: 1.2;
  padding-bottom: 0.08em;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
}
.hero-rotate-item.is-active {
  transform: translate(-50%, 0);
  opacity: 1;
}
.hero-rotate-item.is-leaving {
  transform: translate(-50%, -120%);
  opacity: 0;
}
@media (max-width: 520px) {
  .hero-h1-animated {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }
  .hero-rotator { min-width: 10ch; }
}

/* ============================================
   SUNSET ICON SYSTEM — replaces all emojis
   (uses SVG sprite #i-* via <use href="#i-xxx"/>)
   ============================================ */
.h-stat-icon,
.trust-icon,
.problem-icon,
.value-icon,
.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: #f3f4f6;
  color: #ea580c;
  border: 1px solid #e8e9ec;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  font-size: 0;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.h-stat-icon svg,
.trust-icon svg,
.problem-icon svg,
.value-icon svg,
.proof-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-icon { width: 2.75rem; height: 2.75rem; margin-bottom: 0; }
.trust-icon svg { width: 1.35rem; height: 1.35rem; }
.h-stat-icon { width: 2.75rem; height: 2.75rem; }
.h-stat-icon svg { width: 1.4rem; height: 1.4rem; }
.proof-icon { width: 3.5rem; height: 3.5rem; border-radius: 16px; }
.proof-icon svg { width: 1.75rem; height: 1.75rem; }
.value-icon { width: 2.75rem; height: 2.75rem; border-radius: 12px; }
.value-icon svg { width: 1.4rem; height: 1.4rem; }

.trust-card:hover .trust-icon,
.problem-card:hover .problem-icon,
.value-card:hover .value-icon,
.proof-card:hover .proof-icon {
  transform: translateY(-1px);
  background: #ebebed;
  box-shadow: 0 3px 8px rgba(0,0,0,0.10);
}

/* Sunset check / cross marks inside pricing features + lists */
.sun-check,
.sun-cross {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  margin-right: 0.35em;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sun-check { stroke: #ea580c; }
.sun-cross { stroke: #a3a3a3; }
.pricing-feature-no .sun-cross,
.ba-list-bad .sun-cross { stroke: #c2410c; opacity: 0.55; }
.ba-list-good .sun-check { stroke: #ea580c; }

/* Pricing badge (replaces 🏆) */
.pricing-badge .sun-badge-ico {
  width: 0.9em;
  height: 0.9em;
  vertical-align: -0.15em;
  margin-right: 0.3em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Inline sunset icon (used in headings like CTA final) */
.sun-inline {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  margin-right: 0.4em;
  fill: none;
  stroke: #ea580c;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mock "Ring nu" phone button icon in before/after card */
.ba-mock-phone-btn .sun-mock-ico {
  width: 0.85em;
  height: 0.85em;
  vertical-align: -0.1em;
  margin-right: 0.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hidden SVG sprite wrapper */
.sun-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ============================================================
   v16 — ANIMATIONS, PRICING, TESTIMONIALS
   ============================================================ */

/* ── Smoother scroll reveal ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-child] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
[data-reveal].revealed [data-reveal-child] {
  opacity: 1;
  transform: translateY(0);
}

/* Card stagger inside revealed sections */
[data-reveal].revealed .value-card:nth-child(1) { transition-delay:  0ms; }
[data-reveal].revealed .value-card:nth-child(2) { transition-delay: 60ms; }
[data-reveal].revealed .value-card:nth-child(3) { transition-delay:120ms; }
[data-reveal].revealed .value-card:nth-child(4) { transition-delay:180ms; }
[data-reveal].revealed .value-card:nth-child(5) { transition-delay:240ms; }
[data-reveal].revealed .value-card:nth-child(6) { transition-delay:300ms; }
[data-reveal].revealed .value-card:nth-child(7) { transition-delay:360ms; }
[data-reveal].revealed .value-card:nth-child(8) { transition-delay:420ms; }

[data-reveal].revealed .problem-card:nth-child(1) { transition-delay:  0ms; }
[data-reveal].revealed .problem-card:nth-child(2) { transition-delay: 70ms; }
[data-reveal].revealed .problem-card:nth-child(3) { transition-delay:140ms; }
[data-reveal].revealed .problem-card:nth-child(4) { transition-delay:210ms; }

[data-reveal].revealed .proof-card:nth-child(1)  { transition-delay:  0ms; }
[data-reveal].revealed .proof-card:nth-child(2)  { transition-delay: 80ms; }
[data-reveal].revealed .proof-card:nth-child(3)  { transition-delay:160ms; }

[data-reveal].revealed .pricing-card:nth-child(1) { transition-delay:  0ms; }
[data-reveal].revealed .pricing-card:nth-child(2) { transition-delay: 80ms; }
[data-reveal].revealed .pricing-card:nth-child(3) { transition-delay:160ms; }

/* Give individual cards their own reveal animation */
.value-card, .problem-card, .pricing-card, .trust-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s ease,
              box-shadow 0.22s ease;
  will-change: opacity, transform;
}
[data-reveal].revealed .value-card,
[data-reveal].revealed .problem-card,
[data-reveal].revealed .pricing-card,
[data-reveal].revealed .trust-card {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav blur on scroll (class added by JS) ─────────────── */
.site-nav {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-nav.nav--scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(194,65,12,0.09);
}

/* ── Smoother card hover ────────────────────────────────── */
.value-card {
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s ease,
              box-shadow 0.22s ease;
}
.value-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(234,88,12,0.12);
}
.problem-card {
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s ease;
}
.problem-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 28px rgba(194,65,12,0.14);
}
.proof-card {
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s ease;
}
.proof-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 28px rgba(194,65,12,0.14);
}

/* ── Pricing feature list (new pf-* classes) ─────────────── */
.pricing-bureau {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(154,132,119,0.5);
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
}
.pricing-kr {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}
.pf-list {
  list-style: none;
  margin: 1.4rem 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.pf-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.45;
}
.pf-list li svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 0.15rem;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pf-yes {
  color: var(--ink2);
}
.pf-yes svg {
  stroke: #16a34a;
}
.pf-no {
  color: var(--muted);
}
.pf-no svg {
  stroke: #ef4444;
  opacity: 0.55;
}
.pf-btn {
  width: 100%;
  margin-top: auto;
}
/* Remove old pricing-features override */
.pricing-features { display: none; }
.pricing-guarantee { display: none; }

/* ── Testimonial carousel ────────────────────────────────── */
.testi-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.testi-outer {
  overflow: hidden;
  margin: 0 -0.5rem;
  padding: 0.5rem;
}
.testi-track {
  display: flex;
  gap: 24px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.testi-track:active { cursor: grabbing; }
.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.75rem;
}
.testi-dots div {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1),
              background 0.35s ease;
  width: 8px;
}

/* Testimonial card content */
.t-card {
  background: var(--bg) !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.t-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.t-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink2);
  flex: 1;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-avatar-photo {
  object-fit: cover;
  object-position: center top;
}
.t-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.t-link:hover {
  text-decoration: underline;
}
/* Live "site is online" pill — pulsing dot + "Live nu" text next to testimonial site links.
   Capsule shape (HIG concentric capsule), tokens not hex. */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 6px;
  padding: 2px 8px 2px 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--status-live-fg);
  background: var(--status-live-bg);
  border: 1px solid var(--status-live-border);
  border-radius: 9999px;
  vertical-align: middle;
  line-height: 1.4;
  white-space: nowrap;
}
.live-dot {
  display: inline-block;
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--status-live-dot);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--status-live-glow);
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 var(--status-live-glow); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}
.t-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.t-role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ── v17: clean icons + text shadows ───────────────────────── */

/* Subtle depth on the main hero headline */
.hero-h1-animated,
.hero-h1 {
  text-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Section titles */
.s-title {
  text-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* Big pricing numbers */
.pricing-price {
  text-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Hero stats (3–10, 100%, 3.999) */
.h-stat-num {
  text-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

/* Problem card headings — slightly stronger since they sit on a tinted bg */
.problem-card h3 {
  text-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* Also clean up any remaining gradient on the h-stat-icon background */
.h-stat-icon {
  background: #f3f4f6;
  border: 1px solid #e8e9ec;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* ============================================
   SERVICES STRIP — 4 service cards
   ============================================ */
.services-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sunset-1));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ink2);
  line-height: 1.55;
  flex: 1;
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-lt);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--blue-light);
  width: fit-content;
}

/* ============================================
   APPLE MOTION LAYER — v18
   Systematisk token-baseret animation upgrade
   Regel-tjek: alle 6 bestået
   ============================================ */

/* — Token injection (supplement :root) — */
:root {
  --ease-out:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out:     cubic-bezier(0.45, 0.05, 0.55, 0.95);
  --ease-spring:     cubic-bezier(0.34, 1.02, 0.64, 1.00);
  --ease-decelerate: cubic-bezier(0.00, 0.00, 0.20, 1.00);
  --ease-accelerate: cubic-bezier(0.40, 0.00, 1.00, 1.00);
  --scale-press:     0.975;
  --scale-pop:       1.012;
}

/* — Regel 6: prefers-reduced-motion CSS guard — */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ──────────────────────────────────────────────
   1. BUTTON PRESS FEEDBACK
   Regel 4: hvert tryk fortæller brugeren "jeg hørte dig"
   ────────────────────────────────────────────── */
.btn {
  transition:
    transform     100ms var(--ease-out),
    background    200ms var(--ease-out),
    box-shadow    200ms var(--ease-out),
    border-color  200ms var(--ease-out) !important;
  will-change: transform;
}
.btn:active {
  transform: scale(var(--scale-press));
  box-shadow: none !important;
}
.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ──────────────────────────────────────────────
   2. TRUST CARDS — hover lift (Regel 4: "dette er klikbart")
   ────────────────────────────────────────────── */
.trust-card {
  cursor: default;
  transition:
    transform   200ms var(--ease-out),
    box-shadow  200ms var(--ease-out);
  will-change: transform, box-shadow;
}
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover, 0 8px 24px rgba(0,0,0,.12));
}

/* ──────────────────────────────────────────────
   3. TIMELINE ITEMS — stagger scroll reveal
   Regel 5: sekventiel bevægelse → spatial forståelse
   ────────────────────────────────────────────── */
.timeline-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   500ms var(--ease-decelerate),
    transform 500ms var(--ease-decelerate);
  will-change: opacity, transform;
}
[data-reveal].revealed .timeline-item:nth-child(1) { opacity:1; transform:none; transition-delay:  0ms; }
[data-reveal].revealed .timeline-item:nth-child(2) { opacity:1; transform:none; transition-delay: 90ms; }
[data-reveal].revealed .timeline-item:nth-child(3) { opacity:1; transform:none; transition-delay:180ms; }
[data-reveal].revealed .timeline-item:nth-child(4) { opacity:1; transform:none; transition-delay:270ms; }
[data-reveal].revealed .timeline-item:nth-child(5) { opacity:1; transform:none; transition-delay:360ms; }

/* ──────────────────────────────────────────────
   4. SERVICE CARDS — stagger + fix transition tokens
   ────────────────────────────────────────────── */
.service-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity      480ms var(--ease-decelerate),
    transform    480ms var(--ease-decelerate),
    box-shadow   200ms var(--ease-out),
    border-color 200ms var(--ease-out) !important;
  will-change: opacity, transform;
}
[data-reveal].revealed .service-card:nth-child(1) { opacity:1; transform:none; transition-delay:  0ms; }
[data-reveal].revealed .service-card:nth-child(2) { opacity:1; transform:none; transition-delay: 70ms; }
[data-reveal].revealed .service-card:nth-child(3) { opacity:1; transform:none; transition-delay:140ms; }
[data-reveal].revealed .service-card:nth-child(4) { opacity:1; transform:none; transition-delay:210ms; }

/* ──────────────────────────────────────────────
   5. OBJECTION BLOCKS — slide-in fra venstre
   Regel 5: retning fortæller "vi afviser indvendingen"
   ────────────────────────────────────────────── */
.objection-block {
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity   440ms var(--ease-decelerate),
    transform 440ms var(--ease-decelerate);
  will-change: opacity, transform;
}
[data-reveal].revealed .objection-block:nth-child(1) { opacity:1; transform:none; transition-delay:  0ms; }
[data-reveal].revealed .objection-block:nth-child(2) { opacity:1; transform:none; transition-delay: 80ms; }
[data-reveal].revealed .objection-block:nth-child(3) { opacity:1; transform:none; transition-delay:160ms; }
[data-reveal].revealed .objection-block:nth-child(4) { opacity:1; transform:none; transition-delay:240ms; }

/* ──────────────────────────────────────────────
   6. FAQ ITEMS — smooth accordion
   ────────────────────────────────────────────── */
.faq-item {
  transition: background 200ms var(--ease-out);
}
.faq-item summary {
  transition:
    color      200ms var(--ease-out),
    background 200ms var(--ease-out);
}
.faq-item[open] summary {
  color: var(--blue);
}
.faq-answer {
  animation: faq-open 300ms var(--ease-decelerate) both;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-icon {
  transition: transform 250ms var(--ease-spring);
  display: inline-block;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

/* ──────────────────────────────────────────────
   7. FORM FOCUS RING — Apple-style
   Regel 4: signal til brugeren "dette felt er aktivt"
   ────────────────────────────────────────────── */
.contact-form input,
.contact-form textarea,
.contact-form select {
  transition:
    border-color 200ms var(--ease-out),
    box-shadow   200ms var(--ease-out);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.14);
}

/* ──────────────────────────────────────────────
   8. PRICING BADGE — subtle pulse (breathe)
   Regel 4: signal "dette er det anbefalede valg"
   ────────────────────────────────────────────── */
@keyframes badge-breathe {
  0%,100% { box-shadow: 0 0 0 0   rgba(234,88,12, 0.20); }
  50%     { box-shadow: 0 0 0 7px rgba(234,88,12, 0.00); }
}
.pricing-badge {
  animation: badge-breathe 2.6s var(--ease-in-out) infinite;
}

/* ──────────────────────────────────────────────
   9. COMPARE TABLE — row hover
   ────────────────────────────────────────────── */
.compare-row {
  transition: background 180ms var(--ease-out);
}
.compare-row:hover {
  background: var(--bg2);
}

/* ──────────────────────────────────────────────
   10. NAV LINKS — fix easing (var i stedet for 0.2s)
   ────────────────────────────────────────────── */
.nav-link {
  transition: color 200ms var(--ease-out) !important;
}
.site-nav {
  transition:
    background   400ms var(--ease-out),
    border-color 400ms var(--ease-out),
    box-shadow   400ms var(--ease-out) !important;
}

/* ──────────────────────────────────────────────
   11. BEFORE/AFTER MOCK CARDS — hover lift
   ────────────────────────────────────────────── */
.ba-card {
  transition:
    transform  220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
  will-change: transform, box-shadow;
}
.ba-card:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 12px 32px rgba(0,0,0,.13);
}

/* ──────────────────────────────────────────────
   12. PROOF CARDS — fix hover lift (Regel 1: ease-out)
   ────────────────────────────────────────────── */
.proof-card {
  transition:
    transform    200ms var(--ease-out),
    box-shadow   200ms var(--ease-out),
    border-color 200ms var(--ease-out) !important;
  will-change: transform, box-shadow;
}
.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.11);
}

/* ──────────────────────────────────────────────
   14. TRUST STRIP — stagger reveal
   ────────────────────────────────────────────── */
.trust-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity    480ms var(--ease-decelerate),
    transform  480ms var(--ease-decelerate),
    box-shadow 200ms var(--ease-out) !important;
}
[data-reveal].revealed .trust-card:nth-child(1) { opacity:1; transform:none; transition-delay:  0ms; }
[data-reveal].revealed .trust-card:nth-child(2) { opacity:1; transform:none; transition-delay: 70ms; }
[data-reveal].revealed .trust-card:nth-child(3) { opacity:1; transform:none; transition-delay:140ms; }
[data-reveal].revealed .trust-card:nth-child(4) { opacity:1; transform:none; transition-delay:210ms; }

/* ──────────────────────────────────────────────
   15. TESTIMONIAL CARDS — subtle scale on hover
   ────────────────────────────────────────────── */
.t-card {
  transition:
    transform    220ms var(--ease-out),
    box-shadow   220ms var(--ease-out) !important;
  will-change: transform;
}
.t-card:hover {
  transform: translateY(-3px) scale(1.004);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}

/* ──────────────────────────────────────────────
   16. CTA SECTION — trust line fade in
   ────────────────────────────────────────────── */
.cta-trust {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity   400ms var(--ease-decelerate),
    transform 400ms var(--ease-decelerate);
  transition-delay: 300ms;
}
[data-reveal].revealed .cta-trust {
  opacity: 1;
  transform: none;
}

/* ──────────────────────────────────────────────
   17. FOOTER LOGO — subtle hover
   ────────────────────────────────────────────── */
.footer-logo {
  transition: opacity 200ms var(--ease-out);
}
.footer-logo:hover {
  opacity: 0.8;
}

/* ──────────────────────────────────────────────
   18. LOGO WRAP — micro-scale on click
   ────────────────────────────────────────────── */
.logo-wrap {
  transition: transform 150ms var(--ease-out);
}
.logo-wrap:active {
  transform: scale(0.96);
}

/* ============================================
   PROOF CARDS — premium animations
   Op til 60 dages garanti · Filer · Ingen binding
   ============================================ */

/* Shared: mørkere hover + outline (Regel 4: "dette er et vigtigt løfte") */
.proof-card {
  position: relative;
  overflow: visible;
  transition:
    transform    200ms var(--ease-out),
    box-shadow   200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    background   200ms var(--ease-out) !important;
  will-change: transform, box-shadow;
}
.proof-card:hover {
  transform: translateY(-4px) !important;
  background: var(--bg3) !important;
  border-color: var(--blue-light) !important;
  box-shadow: 0 0 0 2px rgba(234,88,12,0.18), 0 8px 28px rgba(0,0,0,.10) !important;
}

/* ── KORT 1: Garanti progress-bar ───────────────── */
.proof-bar-wrap {
  margin: 0.85rem 0 0.75rem;
}
.proof-bar-track {
  height: 5px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.proof-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--sunset-1));
  border-radius: 999px;
  transition: width 1.4s var(--ease-decelerate);
  will-change: width;
}
[data-reveal].revealed .proof-bar-fill {
  width: 100%;
  transition-delay: 250ms;
}
/* Restart on card hover for delight */
.proof-card--garanti:hover .proof-bar-fill {
  width: 0%;
  transition: width 0ms;
}
.proof-card--garanti:hover .proof-bar-fill {
  animation: bar-refill 1.4s var(--ease-decelerate) 80ms both;
}
@keyframes bar-refill {
  from { width: 0%; }
  to   { width: 100%; }
}
.proof-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 5px;
  letter-spacing: 0.01em;
}

/* ── KORT 2: Filer — boks + glow ─────────────────── */
.proof-files-preview {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1rem;
  margin-bottom: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.proof-card--filer:hover .proof-files-preview {
  background: var(--bg2);
  border-color: var(--blue-light);
}
.proof-fc-cluster {
  gap: 16px !important;
  justify-content: center;
}

/* Sequential outer glow: HTML → CSS → JS (top → bottom, én ad gangen, hurtigt) */
@keyframes file-glow {
  0%   { filter: drop-shadow(0 0 0px rgba(234,88,12,0));    }
  35%  { filter: drop-shadow(0 0 8px rgba(234,88,12,0.55)); }
  65%  { filter: drop-shadow(0 0 8px rgba(234,88,12,0.55)); }
  100% { filter: drop-shadow(0 0 0px rgba(234,88,12,0));    }
}

/* On scroll reveal — fire once */
[data-reveal].revealed .proof-fc-cluster [data-file-card]:nth-child(1) .fc-wrap {
  animation: file-glow 0.55s var(--ease-in-out) 0.5s both;
}
[data-reveal].revealed .proof-fc-cluster [data-file-card]:nth-child(2) .fc-wrap {
  animation: file-glow 0.55s var(--ease-in-out) 0.95s both;
}
[data-reveal].revealed .proof-fc-cluster [data-file-card]:nth-child(3) .fc-wrap {
  animation: file-glow 0.55s var(--ease-in-out) 1.4s both;
}

/* On hover — loop the glow */
@keyframes file-glow-loop {
  0%,100% { filter: drop-shadow(0 0 0px  rgba(234,88,12,0));    }
  40%,60% { filter: drop-shadow(0 0 10px rgba(234,88,12,0.50)); }
}
.proof-card--filer:hover .proof-fc-cluster [data-file-card]:nth-child(1) .fc-wrap {
  animation: file-glow-loop 0.5s var(--ease-in-out) 0ms    infinite;
}
.proof-card--filer:hover .proof-fc-cluster [data-file-card]:nth-child(2) .fc-wrap {
  animation: file-glow-loop 0.5s var(--ease-in-out) 0.18s  infinite;
}
.proof-card--filer:hover .proof-fc-cluster [data-file-card]:nth-child(3) .fc-wrap {
  animation: file-glow-loop 0.5s var(--ease-in-out) 0.36s  infinite;
}

/* ── KORT 3: Ingen binding — strikethrough ─────────── */
.proof-strike-demo {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  height: 22px;
}
.strike-text {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.strike-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  color: var(--blue);
  overflow: visible;
}
.strike-line line {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset 0.6s var(--ease-decelerate);
}
/* Animate on reveal */
[data-reveal].revealed .strike-line line {
  stroke-dashoffset: 0;
  transition-delay: 350ms;
}
/* Re-animate on hover */
.proof-card--binding:hover .strike-line line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s var(--ease-decelerate) 60ms;
}
.proof-card--binding .strike-line line {
  stroke-dashoffset: 80;
}

/* ============================================
   HERO WORD CYCLING — slot-machine letter reveal
   imponere → konvertere → dominere
   Slowed for editorial pacing (4.8s display, 420ms exit).
   ============================================ */
.hero-word-cycle {
  position: relative;
  display: inline-flex;
  justify-content: center;
  vertical-align: bottom;
}

.hero-word-ghost {
  visibility: hidden;
  display: inline-block;
  pointer-events: none;
  user-select: none;
  text-align: center;
}

.hero-word-slot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  clip-path: inset(-20px -16px -20px -16px);
}

.hero-word-cycle .hwc-word {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  transform: translateX(-50%) scale(0.97);
  transition: transform 620ms var(--ease-editorial);
  will-change: transform;
}
.hero-word-cycle .hwc-word.hwc-active {
  transform: translateX(-50%) scale(1);
}
.hero-word-cycle .hwc-word.hwc-exit {
  transform: translateX(-50%) scale(0.97);
}

.hero-word-cycle .hwc-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.32em);
  filter: blur(8px);
  transition:
    opacity 620ms var(--ease-editorial),
    transform 620ms var(--ease-editorial),
    filter 620ms var(--ease-editorial);
  will-change: opacity, transform, filter;
}
.hero-word-cycle.is-revealed .hwc-word.hwc-active .hwc-letter {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.hero-word-cycle .hwc-word.hwc-exit .hwc-letter {
  transition-delay: 0ms !important;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(0);
  transition:
    opacity 360ms var(--ease-editorial),
    filter 360ms var(--ease-editorial);
}

/* Reduced motion: pure opacity cross-fade */
@media (prefers-reduced-motion: reduce) {
  .hero-word-cycle .hwc-word {
    transform: translateX(-50%) !important;
    transition: opacity 320ms ease !important;
    opacity: 0;
  }
  .hero-word-cycle .hwc-word.hwc-active {
    opacity: 1;
  }
  .hero-word-cycle .hwc-letter {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.hero-period { display: inline; }

/* ============================================
   HERO → SECTION TRANSITION FIX — v22
   ============================================ */

/* 1. Nav tekst — altid læsbar på hvid baggrund */
.site-nav:not(.nav-hero) .nav-link {
  color: var(--ink) !important;
}
.site-nav:not(.nav-hero) .nav-phone,
.site-nav:not(.nav-hero) .nav-login {
  color: var(--ink) !important;
}
.site-nav:not(.nav-hero) .logo-wordmark {
  color: var(--ink);
}
/* Blød overgang når hero forsvinder fra nav */
.site-nav {
  transition:
    background   350ms var(--ease-out),
    border-color 350ms var(--ease-out),
    box-shadow   350ms var(--ease-out) !important;
}
.site-nav:not(.nav-hero) {
  box-shadow: 0 1px 0 var(--border), 0 2px 12px rgba(0,0,0,0.06);
}

/* 3. Smooth transition: hero → trust strip
   Hero-overlay fader allerede til --bg2.
   Fjern hård kant på trust-strip og lad den flyde ind. */
.trust-strip {
  border-top: none !important;
  border-bottom: none !important;
  background: transparent !important;
  /* Gradient fra --bg2 til hvid — seamless */
  background: linear-gradient(
    to bottom,
    var(--bg2) 0%,
    var(--bg) 100%
  ) !important;
  margin-top: -2px; /* overlap hero bottom edge */
  padding-top: 3rem;
}


/* ============================================
   EDITORIAL POLISH — v24
   Premium typography, refined motion, micro-interactions
   ============================================ */

/* Trust strip seamless gradient — match new --bg/--bg2 */
.trust-strip {
  background: linear-gradient(to bottom, var(--bg2) 0%, var(--bg) 100%) !important;
}

/* Disable old hero-cinematic blanket animation — replaced by per-child reveal */
.hero-cinematic {
  animation: none !important;
}

/* ── Hero entrance — JS-driven word reveal ─────────────────
   Words start hidden, JS adds .is-revealed to trigger fade-up.
   Each word gets inline transition-delay from JS for stagger. */
.hero-headline .hh-word,
.hero-headline .hh-static,
.sp-hero h1 .hh-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 720ms var(--ease-editorial),
    transform 720ms var(--ease-editorial);
  will-change: opacity, transform;
}
.hero-headline.is-revealed .hh-word,
.hero-headline.is-revealed .hh-static,
.sp-hero h1.is-revealed .hh-word {
  opacity: 1;
  transform: translateY(0);
}

/* Subhead and CTA fade up after headline finishes */
.hero-cinematic .hero-motto,
.hero-cinematic .hero-motto-sub,
.hero-cinematic .hero-cinematic-actions {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 720ms var(--ease-editorial),
    transform 720ms var(--ease-editorial);
}
.hero-cinematic.is-revealed .hero-motto      { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.hero-cinematic.is-revealed .hero-motto-sub  { opacity: 1; transform: translateY(0); transition-delay: 100ms; }
.hero-cinematic.is-revealed .hero-cinematic-actions { opacity: 1; transform: translateY(0); transition-delay: 200ms; }

/* Hero background: scale-settle from 1.05 to 1.0 over cinematic timing.
   Uses a one-shot animation so the inline `.hero-bg { transition: none }`
   override doesn't interfere, and the scroll handler can take over via
   inline style.transform after the animation lands. */
.hero-bg {
  opacity: 0;
  transform: scale(1.05);
}
.hero-bg.is-revealed {
  animation: heroBgEnter var(--t-cinematic) var(--ease-editorial) both;
}
@keyframes heroBgEnter {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}

/* Reduced motion — bypass entrance, show immediately */
@media (prefers-reduced-motion: reduce) {
  .hero-headline .hh-word,
  .hero-headline .hh-static,
  .sp-hero h1 .hh-word,
  .hero-cinematic .hero-motto,
  .hero-cinematic .hero-motto-sub,
  .hero-cinematic .hero-cinematic-actions,
  .hero-bg {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Refined card hover — subtle brightness lift ─────────── */
.pillar-card,
.routing-card,
.feat-card {
  transition:
    transform 280ms var(--ease-editorial),
    box-shadow 280ms var(--ease-editorial),
    border-color 280ms var(--ease-editorial),
    filter 280ms var(--ease-editorial);
}
.pillar-card:hover,
.routing-card:hover,
.feat-card:hover {
  filter: brightness(1.015);
}

/* ── Animated link underlines (in-content links only) ────── */
main a:not(.btn):not(.nav-link):not(.routing-card):not(.pillar-card):not(.rc-cta) {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 220ms var(--ease-editorial);
}
main a:not(.btn):not(.nav-link):not(.routing-card):not(.pillar-card):not(.rc-cta):hover {
  background-size: 100% 1px;
}

/* ── Editorial spacing on desktop ─────────────────────────
   More generous breathing room above the fold and between sections. */
@media (min-width: 1024px) {
  .hero-cinematic { margin-top: 11vh; padding-bottom: 3.5rem; }
}

/* ── Service-page display typography (sp-* family) ──────── */
.sp-hero h1 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
}
.sp-hero h1 em {
  font-style: normal !important;
  color: var(--blue);
}
.sp-title {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.022em !important;
}
.sp-title em {
  font-style: normal !important;
  color: var(--blue);
}

/* Service-page hero backgrounds are now defined per-page (each service page sets its own .sp-hero background inline) */

/* Service-page entrance fade — added by JS to each hero element */
.he-fade {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 720ms var(--ease-editorial),
    transform 720ms var(--ease-editorial);
  will-change: opacity, transform;
}
.he-fade.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .he-fade { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ================================================================
   MULTI-STEP CONTACT FORM (.cf-*)
   Steps: email → service → message → success
   Used on homepage and all 4 service pages.
   ================================================================ */

/* Progress indicator */
.cf-progress {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}
.cf-dot {
  width: 28px; height: 4px;
  border-radius: 99px;
  background: var(--border);
  transition: background var(--t-base) var(--ease-editorial),
              width var(--t-base) var(--ease-editorial);
}
.cf-dot.is-active { background: var(--blue); width: 36px; }
.cf-dot.is-done   { background: var(--blue); }

/* Step stage — auto-sizes to active step */
.cf-stage { position: relative; }
.cf-step { display: none; }
.cf-step.is-active {
  display: block;
  animation: cfStepIn 380ms var(--ease-editorial) both;
}
@keyframes cfStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Headings */
.cf-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
.cf-sub {
  font-size: 0.95rem;
  color: var(--ink2);
  line-height: 1.55;
  margin: 0 0 1.6rem;
}

/* Underlined input field */
.cf-field { position: relative; margin-bottom: 1.6rem; }
.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 0.6rem 0;
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  background: transparent;
  outline: none;
  resize: none;
  transition: border-color 200ms var(--ease-editorial);
}
.cf-field textarea { min-height: 96px; line-height: 1.55; }
.cf-field input:focus,
.cf-field textarea:focus { border-color: var(--blue); }
.cf-field label {
  position: absolute;
  left: 0; top: 0.6rem;
  font-size: 1.05rem;
  color: var(--muted);
  pointer-events: none;
  transition: all 200ms var(--ease-editorial);
  transform-origin: left top;
}
.cf-field input:focus ~ label,
.cf-field input:not(:placeholder-shown) ~ label,
.cf-field textarea:focus ~ label,
.cf-field textarea:not(:placeholder-shown) ~ label {
  top: -0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cf-field.error input,
.cf-field.error textarea { border-color: #ef4444; }
.cf-field.error label,
.cf-field.error input:not(:placeholder-shown) ~ label,
.cf-field.error input:focus ~ label { color: #ef4444; }
.cf-error-msg {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ef4444;
}
.cf-field.error + .cf-error-msg { display: block; }

/* Service grid — primary picker (homepage) and additional picker (service pages) */
.cf-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 480px) { .cf-services { grid-template-columns: 1fr; } }
.cf-svc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 220ms var(--ease-editorial),
              background 220ms var(--ease-editorial),
              transform 220ms var(--ease-editorial),
              box-shadow 220ms var(--ease-editorial);
}
.cf-svc:hover {
  border-color: rgba(234, 88, 12, 0.45);
  transform: translateY(-1px);
}
.cf-svc.is-selected {
  border-color: var(--blue);
  background: var(--blue-lt);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.18);
}
.cf-svc-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cf-svc.is-selected .cf-svc-name { color: var(--blue-dk); }
.cf-svc-meta { font-size: 0.78rem; color: var(--muted); }
.cf-svc.cf-svc-other {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* Action row */
.cf-row { display: flex; gap: 0.7rem; align-items: center; }
.cf-btn {
  position: relative;
  flex: 1;
  padding: 0.95rem 1.2rem;
  border: none;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 200ms var(--ease-editorial),
              transform 160ms var(--ease-editorial),
              box-shadow 220ms var(--ease-editorial),
              opacity 220ms var(--ease-editorial);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.28);
}
.cf-btn:hover { background: var(--blue-dk); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(234, 88, 12, 0.38); }
.cf-btn:active { transform: scale(0.98); }
.cf-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  background: var(--blue);
}
.cf-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.cf-btn.cf-secondary {
  background: transparent;
  color: var(--ink2);
  border: 1.5px solid var(--border);
  box-shadow: none;
  flex: 0 0 auto;
  padding: 0.95rem 1.1rem;
}
.cf-btn.cf-secondary:hover {
  background: var(--bg2);
  color: var(--ink);
  border-color: var(--ink2);
  box-shadow: none;
}
.cf-btn.is-loading { pointer-events: none; }
.cf-btn.is-loading .cf-btn-label,
.cf-btn.is-loading svg { opacity: 0; }
.cf-btn .cf-spinner {
  position: absolute;
  top: 50%; left: 50%;
  margin: -9px 0 0 -9px;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.32);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.7s linear infinite;
}
.cf-btn.is-loading .cf-spinner { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.cf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.cf-success.is-shown { display: flex; }
.cf-check {
  width: 84px; height: 84px;
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 360ms var(--ease-editorial),
              transform 480ms var(--ease-spring);
}
.cf-success.is-revealed .cf-check {
  opacity: 1;
  transform: scale(1);
}
.cf-check svg { width: 100%; height: 100%; overflow: visible; }
.cf-check-circle {
  fill: none;
  stroke: #16a34a;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transition: stroke-dashoffset 520ms var(--ease-editorial);
}
.cf-success.is-revealed .cf-check-circle { stroke-dashoffset: 0; }
.cf-check-mark {
  fill: none;
  stroke: #16a34a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 380ms var(--ease-editorial) 320ms;
}
.cf-success.is-revealed .cf-check-mark { stroke-dashoffset: 0; }
.cf-success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms var(--ease-editorial) 600ms,
              transform 480ms var(--ease-editorial) 600ms;
}
.cf-success-sub {
  font-size: 0.95rem;
  color: var(--ink2);
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms var(--ease-editorial) 720ms,
              transform 480ms var(--ease-editorial) 720ms;
}
.cf-success.is-revealed .cf-success-title,
.cf-success.is-revealed .cf-success-sub {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cf-step, .cf-check, .cf-check-circle, .cf-check-mark,
  .cf-success-title, .cf-success-sub {
    transition: none !important;
  }
}

/* Service-page primary callout — shown above step 1 to confirm what
   the user is asking about (e.g. "Du har spurgt om: SEO") */
.cf-primary-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  background: var(--blue-lt);
  border: 1px solid rgba(234, 88, 12, 0.18);
  color: var(--blue-dk);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cf-primary-tag svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* Customer-trust strip — overlapping faces + "100% kundetilfredshed".
   Decorative imagery, not tied to specific testimonials. */
.kunde-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 1.2rem 0.55rem 0.7rem;
  margin: 1.3rem auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(26, 15, 8, 0.06);
}
.kunde-trust-faces {
  display: inline-flex;
  align-items: center;
}
.kunde-trust-face {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.kunde-trust-face + .kunde-trust-face { margin-left: -10px; }
.kunde-trust-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.kunde-trust-text strong {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.kunde-trust-text span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* Service page form section */
.sp-form-section {
  background: var(--bg2);
  padding: 5rem 1.5rem 6rem;
  position: relative;
}
.sp-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(26, 15, 8, 0.10);
}
.sp-form-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.sp-form-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.7rem;
}
.sp-form-header p {
  font-size: 1.02rem;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 560px) {
  .sp-form-wrap { padding: 1.75rem 1.4rem; }
  .sp-form-section { padding: 4rem 1rem 4.5rem; }
}

/* ==============================================
   NAVIGATION — active state, mobile polish, a11y
   ============================================== */

/* Desktop active page indicator */
.nav-link.nav-link-active {
  color: #ea580c;
  font-weight: 700;
  position: relative;
}
.nav-link.nav-link-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #ea580c;
  border-radius: 2px;
  transform-origin: left;
  animation: navUnderlineIn 240ms var(--ease-out, cubic-bezier(.22,1,.36,1)) both;
}
@keyframes navUnderlineIn {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
.site-nav.nav-hero .nav-link.nav-link-active {
  color: #fff;
}
.site-nav.nav-hero .nav-link.nav-link-active::after {
  background: #fff;
}

/* Mobile menu — current page tint */
.mobile-menu a.mobile-active {
  color: #ea580c;
  font-weight: 700;
  background: rgba(234, 88, 12, 0.06);
  border-left: 3px solid #ea580c;
  padding-left: calc(2rem - 3px);
}

/* Mobile menu — primary CTA pill (Ring os) */
.mobile-menu a.mobile-cta {
  background: #ea580c;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 0.75rem 1rem 1rem;
  border-radius: 12px;
  border-bottom: none;
  padding: 1rem 1.5rem;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.32);
  letter-spacing: 0.01em;
}
.mobile-menu a.mobile-cta:hover {
  background: #c2410c;
  color: #fff;
}

/* Hamburger → X animation when menu open */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hamburger span {
  transition: transform 220ms ease, opacity 180ms ease;
  transform-origin: center;
}

/* Body scroll lock when mobile menu open */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* Focus-visible — keyboard nav clarity */
.site-nav a:focus-visible,
.site-nav button:focus-visible,
.mobile-menu a:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
  border-radius: 4px;
}

/* Skip-to-content link — visible only on focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: #ea580c;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  z-index: 9999;
  transition: top 180ms ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ==============================================
   ARTICLE / LANDING-PAGE STYLES
   (recovered from styles-backup v4 — were missing in current styles.css)
   ============================================== */

/* Tick / cross marks used in pricing comparison lists */
.tick {
  width: 16px; height: 16px;
  background: #f0fdf4;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; margin-right: 6px;
}
.tick svg { width: 10px; height: 10px; stroke: #16a34a; stroke-width: 2.5; fill: none; }
.cross {
  width: 16px; height: 16px;
  background: #fee2e2;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; margin-right: 6px;
}
.cross svg { width: 10px; height: 10px; stroke: #ef4444; stroke-width: 2.5; fill: none; }

/* ============================================
   PRICING CARDS — brancher landing pages
   .p-grid > .p-card[.feat] > .p-name + .p-price + .p-desc + .p-feats + .p-cta
   ============================================ */
.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 0 2rem;
  align-items: stretch;
}
@media (max-width: 960px) {
  .p-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.p-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem 1.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 280ms var(--ease-editorial),
              border-color 280ms var(--ease-editorial),
              box-shadow 280ms var(--ease-editorial);
}
.p-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--blue) 35%, var(--border));
  box-shadow: 0 14px 32px -18px color-mix(in srgb, var(--blue) 30%, transparent);
}

/* Featured (popular) variant — dark with sunset accent */
.p-card.feat {
  background: linear-gradient(160deg, #1a0f08 0%, #2a1810 100%);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 18px 40px -20px color-mix(in srgb, var(--blue) 50%, transparent);
}
.p-card.feat .p-name,
.p-card.feat .p-price { color: #fff; }
.p-card.feat .p-desc { color: #f4e8d8; opacity: .85; }
.p-card.feat .p-feats { color: #fbf5ee; }
.p-card.feat .p-feats li { border-bottom-color: rgba(255,255,255,.08); }
.p-card.feat .p-div { border-color: rgba(255,255,255,.12); }

.feat-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -4px color-mix(in srgb, var(--blue) 50%, transparent);
}

.p-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: .35rem;
}

.p-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: .15rem;
}
.p-price sub {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  bottom: 0;
  margin-left: .15rem;
}
.p-card.feat .p-price sub { color: #f4e8d8; opacity: .8; }

.p-desc {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink2);
  margin: .6rem 0 0;
  min-height: 2.8em;
}

.p-div {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.1rem 0 .9rem;
}

.p-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  font-size: .9rem;
  line-height: 1.5;
  flex-grow: 1;
}
.p-feats li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  padding: .5rem 0;
  color: var(--ink);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.p-feats li:last-child { border-bottom: none; }
.p-feats li.no { color: var(--muted); }

.p-cta {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: .8rem 1.4rem;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.005em;
  margin-top: auto;
  transition: background 220ms var(--ease-editorial),
              border-color 220ms var(--ease-editorial),
              color 220ms var(--ease-editorial),
              transform 220ms var(--ease-editorial);
}
.p-cta-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid color-mix(in srgb, var(--blue) 50%, var(--border));
}
.p-cta-outline:hover {
  background: var(--blue-lt);
  border-color: var(--blue);
}
.p-cta-solid {
  background: var(--blue);
  color: #fff;
  border: 1.5px solid var(--blue);
  box-shadow: 0 6px 18px -6px color-mix(in srgb, var(--blue) 60%, transparent);
}
.p-cta-solid:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
}
.p-card.feat .p-cta-solid {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.p-card.feat .p-cta-solid:hover {
  background: var(--bg2);
  border-color: var(--bg2);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .p-card, .p-cta { transition: none; }
  .p-card:hover { transform: none; box-shadow: none; }
}

/* ============================================
   FAQ — brancher landing pages
   .faq-grid > details.faq-item > summary + .faq-ico + .faq-a
   ============================================ */
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 220ms var(--ease-editorial),
              box-shadow 220ms var(--ease-editorial);
}
.faq-item:hover {
  border-color: color-mix(in srgb, var(--blue) 30%, var(--border));
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
  cursor: pointer;
  list-style: none;
  user-select: none;
  min-height: 44px;
  transition: color 200ms var(--ease-editorial),
              background 200ms var(--ease-editorial);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary:hover { color: var(--blue); }
.faq-item[open] summary {
  color: var(--blue);
  background: var(--blue-lt);
  border-bottom: 1px solid color-mix(in srgb, var(--blue) 18%, var(--border));
}

.faq-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 250ms var(--ease-editorial);
}
.faq-item[open] .faq-ico { transform: rotate(45deg); }

.faq-a {
  margin: 0;
  padding: 1rem 1.15rem 1.15rem;
  font-size: .92rem;
  line-height: 1.65;
  color: var(--ink2);
  animation: faq-open 280ms var(--ease-editorial) both;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item, .faq-item summary, .faq-ico { transition: none; }
  .faq-item[open] .faq-ico { transform: none; }
  .faq-a { animation: none; }
}

/* FAQ grid for article pages */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin: 3rem 0;
  align-items: start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr !important; }
}

/* ============================================
   BRANCHER PAGE — article-style hero, pakker CTA,
   kontakt + footer. Peach gradients, sunset accents,
   refined typography matching hvad-koster.
   ============================================ */

/* Hero — light, calm, article-style. Replaces the
   loud orange gradient block. Generous top padding
   so H1 clears the fixed nav. */
.b-hero {
  background: linear-gradient(180deg, #fff7ed 0%, #fefcfa 100%);
  padding: 4rem 5% 3.25rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--blue) 14%, var(--border));
}
.b-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 80px;
  height: 2px;
  background: var(--blue);
  transform: translateX(-50%);
  border-radius: 2px;
}

.b-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.b-hero-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .9rem;
  padding: .35rem .85rem;
  background: color-mix(in srgb, var(--blue) 10%, transparent);
  border-radius: 100px;
}

.b-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -.026em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.b-hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.6;
  color: var(--ink2);
  max-width: 620px;
  margin: 0 auto 1.85rem;
  font-weight: 500;
}

.b-hero-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

.b-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: .9rem 1.85rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.005em;
  box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--blue) 60%, transparent);
  transition: background 220ms var(--ease-editorial),
              transform 220ms var(--ease-editorial),
              box-shadow 220ms var(--ease-editorial);
}
.b-hero-cta:hover {
  background: var(--blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -10px color-mix(in srgb, var(--blue) 65%, transparent);
}

.b-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink2);
  letter-spacing: -.005em;
}
.b-hero-meta svg { color: var(--blue); flex-shrink: 0; }

@media (max-width: 600px) {
  .b-hero { padding: 3rem 5% 2.75rem; }
  .b-hero-tag { font-size: .62rem; padding: .3rem .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .b-hero-cta { transition: none; }
  .b-hero-cta:hover { transform: none; }
}



/* Pakker CTA — replaces the per-page pricing block.
   Single source of truth lives at /hjemmesider/#pakker */
.b-pakker-cta { padding: 4rem 0 3.5rem; }

.b-cta-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.75rem 2rem 2.5rem;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 70%);
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--border));
  border-left: 4px solid var(--blue);
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 18px 44px -28px color-mix(in srgb, var(--blue) 28%, transparent);
}

.b-cta-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .85rem;
}

.b-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 .85rem;
}

.b-cta-lede {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink2);
  max-width: 560px;
  margin: 0 auto 1.6rem;
  font-weight: 500;
}

.b-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: .95rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.005em;
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--blue) 65%, transparent);
  transition: background 220ms var(--ease-editorial),
              transform 220ms var(--ease-editorial),
              box-shadow 220ms var(--ease-editorial);
}
.b-cta-btn:hover {
  background: var(--blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px color-mix(in srgb, var(--blue) 70%, transparent);
}

.b-cta-pills {
  display: flex;
  justify-content: center;
  gap: 1.5rem 1.75rem;
  flex-wrap: wrap;
  margin-top: 1.85rem;
  padding-top: 1.6rem;
  border-top: 1px dashed color-mix(in srgb, var(--blue) 25%, var(--border));
}

.b-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink2);
  letter-spacing: -.005em;
}
.b-pill svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

@media (max-width: 600px) {
  .b-cta-card { padding: 2rem 1.4rem 1.85rem; }
  .b-cta-pills { gap: .85rem 1.2rem; }
  .b-pill { font-size: .78rem; }
}

/* Kontakt section — final dark-sunset CTA */
.b-kontakt {
  background: linear-gradient(160deg, #1a0f08 0%, #2a1810 60%, #3d1f0c 100%);
  color: #fff;
  padding: 4.5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.b-kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, color-mix(in srgb, var(--blue) 28%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.b-kontakt-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.b-kontakt-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}

.b-kontakt-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-weight: 500;
}

.b-kontakt-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 360px;
  margin: 0 auto;
}

.b-kontakt-btn {
  display: block;
  text-decoration: none;
  padding: .9rem 1.6rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.005em;
  text-align: center;
  transition: background 220ms var(--ease-editorial),
              border-color 220ms var(--ease-editorial),
              transform 220ms var(--ease-editorial);
}
.b-kontakt-btn-primary {
  background: var(--blue);
  color: #fff;
  border: 1.5px solid var(--blue);
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--blue) 60%, transparent);
}
.b-kontakt-btn-primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  transform: translateY(-1px);
}
.b-kontakt-btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.22);
}
.b-kontakt-btn-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.36);
}

/* Brancher footer — flat layout (logo + nav + copy) */
.brancher-footer {
  background: #0d0a07;
  color: rgba(255,255,255,.6);
  padding: 2.5rem 5% 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.brancher-footer .footer-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
  margin: 0;
}
.brancher-footer .logo-text { color: #fff; }
.brancher-footer .logo-text .partneren { color: var(--blue); }
.brancher-footer .f-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem 1.75rem;
}
.brancher-footer .f-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: color 200ms var(--ease-editorial);
}
.brancher-footer .f-links a:hover { color: var(--blue); }
.brancher-footer .f-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .b-cta-btn, .b-kontakt-btn, .brancher-footer .f-links a { transition: none; }
  .b-cta-btn:hover, .b-kontakt-btn:hover { transform: none; }
}

/* Section sub-text on article hero/heads */
.s-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 620px;
  line-height: 1.7;
  font-weight: 500;
}
.s-head.c .s-sub { margin: 0 auto; }

/* ── PAGE NETWORK BACKGROUND (decorative animated arcs/dots/logos) ── */
.page-bg-network {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-bg-network .pn-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-bg-network .pn-svg .pn-arc {
  fill: none;
  stroke: #ea580c;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  opacity: 0.18;
  animation: pnDashFlow 16s linear infinite;
}
.page-bg-network .pn-svg .pn-arc.slow { animation-duration: 24s; opacity: 0.12; }
.page-bg-network .pn-svg .pn-arc.fast { animation-duration: 12s; }
.page-bg-network .pn-svg .pn-node {
  fill: #ea580c;
  opacity: 0.4;
  animation: pnNodeGlow 4s ease-in-out infinite;
}
.page-bg-network .pn-svg .pn-node.alt  { animation-delay: -1.5s; }
.page-bg-network .pn-svg .pn-node.alt2 { animation-delay: -3s; }
.page-bg-network .pn-svg .pn-glow {
  fill: #fb923c;
  opacity: 0.10;
  animation: pnGlowPulse 4s ease-in-out infinite;
}
.page-bg-network .pn-svg .pn-glow.alt  { animation-delay: -1.5s; }
.page-bg-network .pn-svg .pn-glow.alt2 { animation-delay: -3s; }
.page-bg-network .pn-logo {
  position: absolute;
  opacity: 0.05;
  will-change: transform;
}
.page-bg-network .pn-logo.fl-a { animation: pnFloatY 14s ease-in-out infinite; }
.page-bg-network .pn-logo.fl-b { animation: pnFloatY2 18s ease-in-out infinite; }
.page-bg-network .pn-logo.fl-c { animation: pnFloatDrift 22s ease-in-out infinite; }

@keyframes pnDashFlow { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -200; } }
@keyframes pnNodeGlow { 0%,100% { opacity: 0.4; } 50% { opacity: 0.7; } }
@keyframes pnGlowPulse { 0%,100% { opacity: 0.06; transform: scale(1); } 50% { opacity: 0.18; transform: scale(1.4); } }
@keyframes pnFloatY { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(0,-26px) rotate(8deg); } }
@keyframes pnFloatY2 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(12px,22px) rotate(-10deg); } }
@keyframes pnFloatDrift { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(-18px,14px) rotate(6deg); } 66% { transform: translate(20px,-12px) rotate(-4deg); } }

/* Reduced motion: stop network animations */
@media (prefers-reduced-motion: reduce) {
  .page-bg-network .pn-arc,
  .page-bg-network .pn-node,
  .page-bg-network .pn-glow,
  .page-bg-network .pn-logo { animation: none !important; }
}

/* Lift article content above the network background */
body:has(.page-bg-network) main > section,
body:has(.page-bg-network) main > article,
body:has(.page-bg-network) main > footer {
  position: relative;
  z-index: 1;
}

/* Wide white card containing article sections (hvad-koster, etc.) */
body:has(.page-bg-network) main > article.page-card {
  background: #ffffff;
  border: 1px solid #e4e7ed;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15,23,42,.08), 0 2px 8px rgba(15,23,42,.04);
  max-width: 1280px;
  margin: 2.5rem auto !important;
  padding: 0 !important;
  overflow: hidden;
}
@media (max-width: 1024px) {
  body:has(.page-bg-network) main > article.page-card { margin: 1.5rem 1.5rem !important; }
}
@media (max-width: 640px) {
  body:has(.page-bg-network) main > article.page-card {
    margin: 1rem .75rem !important;
    border-radius: 18px;
  }
}

/* Standalone article card variant (lokal-haandvaerker, wordpress-vs-html, flere-kunder-online) */
body:has(.page-bg-network) main > article:not(.page-card) {
  background: #ffffffeb;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid #e4e7ed;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15,23,42,.08), 0 2px 8px rgba(15,23,42,.04);
  padding: 3rem 2.5rem 3.5rem !important;
  margin: 2.5rem auto !important;
  max-width: 1080px;
}
@media (max-width: 640px) {
  body:has(.page-bg-network) main > article:not(.page-card) {
    padding: 2rem 1.25rem 2.5rem !important;
    margin: 1.25rem 1rem !important;
    border-radius: 16px;
  }
}

/* ==============================================
   ARTICLE TEMPLATE (.art-*)
   Used by /hjemmesider/brancher/<article>/index.html
   ============================================== */

/* Reading progress bar (top of viewport) */
.art-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #ea580c 0%, #fb923c 100%);
  z-index: 99999;
  transition: width 80ms linear;
  box-shadow: 0 0 10px rgba(234,88,12,.5);
}

/* Article shell */
.art-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .art-shell { padding: 1.5rem 1.25rem 3.5rem; }
}

/* Breadcrumb */
.art-crumb {
  font-size: .82rem;
  color: #94a3b8;
  margin-bottom: 1.75rem;
}
.art-crumb a {
  color: #ea580c;
  text-decoration: none;
  font-weight: 600;
}
.art-crumb a:hover { text-decoration: underline; }
.art-crumb .sep { margin: 0 .45rem; color: #cbd5e1; }
.art-crumb .current { color: #475569; font-weight: 600; }

/* Article hero */
.art-hero { margin-bottom: 2.25rem; }
.art-cat {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid rgba(234,88,12,.18);
  padding: .35rem .8rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.art-h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0d0f14;
  margin: 0 0 1.25rem;
}
.art-lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: #475569;
  font-weight: 500;
  margin: 0 0 1.5rem;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .85rem;
  color: #94a3b8;
  font-weight: 600;
  padding: 1rem 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  flex-wrap: wrap;
}
.art-meta .dot { color: #cbd5e1; }

/* TL;DR / key takeaway box */
.art-tldr {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border: 1px solid rgba(234,88,12,.22);
  border-left: 4px solid #ea580c;
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  margin: 2rem 0 2.5rem;
  position: relative;
}
.art-tldr-label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ea580c;
  margin-bottom: .65rem;
}
.art-tldr p {
  font-size: 1rem;
  line-height: 1.7;
  color: #1f2937;
  margin: 0;
  font-weight: 500;
}
.art-tldr ul {
  margin: .5rem 0 0;
  padding-left: 1.2rem;
  list-style: none;
}
.art-tldr li {
  font-size: .98rem;
  line-height: 1.65;
  color: #1f2937;
  font-weight: 500;
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .5rem;
}
.art-tldr li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ea580c;
  font-weight: 800;
}
.art-tldr li:last-child { margin-bottom: 0; }

/* Body typography */
.art-body { font-size: 1.05rem; line-height: 1.75; color: #1f2937; }
.art-body p { margin: 0 0 1.2rem; }
.art-body strong { color: #0d0f14; font-weight: 700; }
.art-body a:not(.art-cta-btn) {
  color: #ea580c;
  text-decoration: underline;
  text-decoration-color: rgba(234,88,12,.35);
  text-underline-offset: 3px;
  font-weight: 600;
  transition: text-decoration-color 180ms ease;
}
.art-body a:not(.art-cta-btn):hover { text-decoration-color: #ea580c; }
.art-body h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0d0f14;
  margin: 3rem 0 1rem;
  position: relative;
  padding-left: 1rem;
}
.art-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35em;
  bottom: .35em;
  width: 4px;
  border-radius: 2px;
  background: #ea580c;
}
.art-body h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #0d0f14;
  letter-spacing: -0.015em;
  margin: 2rem 0 .75rem;
}
.art-body ul, .art-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}
.art-body li {
  margin-bottom: .55rem;
  line-height: 1.7;
}
.art-body ul li::marker { color: #ea580c; }
.art-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-left: 3px solid #ea580c;
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #334155;
  font-style: italic;
}

/* Comparison table */
.art-compare {
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 14px;
  overflow: hidden;
  margin: 2rem 0;
}
.art-compare-head, .art-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 1rem 1.25rem;
  align-items: center;
}
.art-compare-head {
  background: #fafbfc;
  border-bottom: 1px solid #e4e7ed;
}
.art-compare-head span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #94a3b8;
}
.art-compare-head .us { color: #ea580c; }
.art-compare-row {
  border-bottom: 1px solid #f1f5f9;
  font-size: .92rem;
}
.art-compare-row:last-child { border-bottom: none; }
.art-compare-row .lbl { color: #475569; font-weight: 600; }
.art-compare-row .yes { color: #059669; font-weight: 700; }
.art-compare-row .no  { color: #dc2626; font-weight: 700; }
.art-compare-row .meh { color: #d97706; font-weight: 700; }
@media (max-width: 560px) {
  .art-compare-head, .art-compare-row {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: .75rem .9rem;
    font-size: .8rem;
  }
}

/* Inline mid-article CTA */
.art-cta-inline {
  background: linear-gradient(135deg, #0d0f14 0%, #1a1f2e 100%);
  color: #fff;
  border-radius: 18px;
  padding: 2rem 2rem;
  margin: 2.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.art-cta-inline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(234,88,12,.12) 0%, transparent 70%);
  pointer-events: none;
}
.art-cta-inline-inner { position: relative; z-index: 1; }
.art-cta-inline h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .5rem;
  letter-spacing: -0.02em;
}
.art-cta-inline p {
  font-size: .98rem;
  color: rgba(255,255,255,.7);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.art-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #ea580c;
  color: #fff;
  padding: .85rem 1.75rem;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: .95rem;
  transition: background 200ms ease, transform 200ms ease;
  box-shadow: 0 6px 20px rgba(234,88,12,.4);
}
.art-cta-btn:hover { background: #c2410c; transform: translateY(-2px); }

/* Related articles grid */
.art-related {
  margin: 4rem auto 0;
  max-width: 1100px;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.art-related-title {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ea580c;
  text-align: center;
  margin-bottom: 1.25rem;
}
.art-related h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0d0f14;
  text-align: center;
  margin: 0 0 2rem;
}
.art-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) { .art-related-grid { grid-template-columns: 1fr; } }
.art-related-card {
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 14px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms cubic-bezier(.22,1,.36,1), box-shadow 220ms ease, border-color 220ms ease;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.art-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,15,20,.07);
  border-color: rgba(234,88,12,.4);
}
.art-related-cat {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ea580c;
}
.art-related-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0d0f14;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
}
.art-related-card p {
  font-size: .85rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}
.art-related-card .arrow {
  margin-top: auto;
  font-size: 1rem;
  color: #cbd5e1;
  transition: transform 220ms ease, color 220ms ease;
  align-self: flex-end;
}
.art-related-card:hover .arrow { color: #ea580c; transform: translateX(4px); }

/* Scroll-reveal for article elements */
.art-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(.22,1,.36,1), transform 600ms cubic-bezier(.22,1,.36,1);
}
.art-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .art-progress { transition: none; }
  .art-reveal { opacity: 1; transform: none; transition: none; }
}

/* ==============================================
   APPLE HIG ACCESSIBILITY FLOOR (added 2026-04-28)
   Global safety nets so any new component inherits
   correct focus / motion / contrast behavior.
   ============================================== */

/* 1. Global focus-visible fallback — every keyboard-tabbable element
      gets a visible ring even if its component forgot to define one.
      Components with their own :focus-visible (btn, site-nav, .skip-link)
      override this naturally. Modern browsers respect each element's
      existing border-radius on outline, so no need to set one here. */
:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

/* 2. Global reduced-motion safety net — short transitions and animations
      collapse to near-instant cross-fades. Per-component overrides above
      remain authoritative; this just catches anything missed. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 3. Touch-pointer floor — on devices using a coarse pointer (touch),
      ensure interactive controls meet HIG's 44×44pt minimum target.
      Doesn't affect mouse/trackpad users — they get their normal density. */
@media (pointer: coarse) {
  .btn,
  .btn-primary,
  .btn-primary-large,
  .btn-secondary,
  .btn-secondary-ghost,
  .btn-cinematic-primary,
  .btn-cinematic-ghost,
  .nav-login,
  .btn-primary-nav,
  .nav-phone,
  .hamburger,
  .skip-link,
  .mobile-menu a {
    min-height: 44px;
  }
  /* Inline text links inside cards/footers — give them comfortable tap padding
     without changing their visual look. */
  .t-link,
  .footer-link,
  .nav-link {
    padding-block: 6px;
  }
}

/* 4. Increased-contrast variant — bumps separators and muted text so
      WCAG AAA-leaning users get a stronger read on hierarchy. */
@media (prefers-contrast: more) {
  :root {
    --border: #c8b69a;        /* darker separator */
    --muted: #5a4a3c;         /* darker secondary label */
    --ink2: #2a1a0c;          /* darker tertiary label */
    --status-live-fg: #14532d;
    --status-live-border: #86efac;
  }
  .site-nav {
    background: var(--bg);    /* drop translucency for full opacity */
    border-bottom-width: 2px;
  }
  :focus-visible {
    outline-width: 3px;
  }
}

/* =====================================================================
   OM OS — team intro section
   ===================================================================== */
.om-os-section {
  padding: 80px 0;
  background: var(--bg);
}
.om-os-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .om-os-grid { grid-template-columns: 1fr; }
}

.team-card {
  text-align: center;
  padding: 36px 28px;
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  line-height: 1;
  margin: 0 auto 20px;
  border: 1px solid var(--border);
}
.team-role {
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 4px 0 12px;
}
.team-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 18px;
  padding: 10px 18px;
  min-height: 44px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.team-phone-ico {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}
.team-phone:hover,
.team-phone:focus-visible {
  background: #ffffff;
  border-color: var(--blue);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.18);
}
.team-phone:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .team-phone { transition: none; }
  .team-phone:hover,
  .team-phone:focus-visible { transform: none; }
  .team-phone:active { transform: none; }
}

/* ============================================================
   WORKSHOP WARM HERO  (2026-05-09)
   Type-driven hero on warm paper. Sunset orange CTA only.
   No decorative imagery. All tokens already in :root.
   ============================================================ */

.hero-workshop {
  background: linear-gradient(180deg,
    var(--bg) 0%,
    var(--bg) 55%,
    var(--bg2) 100%);
  padding: clamp(2.25rem, 4vw, 4.5rem) 0 clamp(2rem, 3.5vw, 3.5rem);
  position: relative;
  isolation: isolate;
}

/* ---------- Hero layout — text left, kalender right (collapses on mobile) ---------- */
.hw-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  position: relative;
  z-index: 1;
}

.hw-inner > .hw-text {
  max-width: 64ch;
}

.hw-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

/* ---------- Right-side service-cards: always visible 2x2 with personality ---------- */
.hw-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 500px;
  margin-left: auto;
  padding-top: 8px;
}

.hw-cards-eyebrow {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: hw-eyebrow-in 700ms var(--ease-editorial) 100ms both;
}
.hw-cards-eyebrow::before,
.hw-cards-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}
@keyframes hw-eyebrow-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hw-cards {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 460px;
}

.hw-cards-hint {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  animation: hw-hint-in 600ms var(--ease-editorial) 1700ms both;
}
.hw-cards-hint::before {
  content: "↗ ";
  color: var(--blue);
  font-weight: 700;
}
@keyframes hw-hint-in {
  from { opacity: 0; transform: translate(-50%, 6px); }
  to   { opacity: 0.7; transform: translate(-50%, 0); }
}

.hw-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 214px;
  min-height: 264px;
  margin: -132px 0 0 -107px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow:
    0 1px 2px rgba(26, 15, 8, 0.04),
    0 10px 24px rgba(26, 15, 8, 0.07),
    0 24px 60px rgba(194, 65, 12, 0.07);
  text-decoration: none;
  color: var(--ink);
  transform-origin: center center;
  will-change: transform, box-shadow;
  transition:
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  isolation: isolate;
}

/* Subtle 2px accent line at top — single color per service */
.hw-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
}

/* Default fanned positions — softer rotation than v1 */
.hw-card--1 { transform: translate3d(-118px, -110px, 0) rotate(-2deg);   z-index: 4; }
.hw-card--2 { transform: translate3d(118px,  -104px, 0) rotate(1.8deg);  z-index: 3; }
.hw-card--3 { transform: translate3d(-114px, 110px,  0) rotate(-1.5deg); z-index: 2; }
.hw-card--4 { transform: translate3d(122px,  116px,  0) rotate(2.4deg);  z-index: 1; }

/* ----- Per-service personality (subtle, no blobs) ----- */
.hw-card--web::before  { background: var(--blue); }
.hw-card--web .hw-card-ico { background: #fff1e2; color: var(--blue-dk); }
.hw-card--web .hw-card-eyebrow { color: var(--blue-dk); }

.hw-card--seo::before  { background: #d97706; }
.hw-card--seo .hw-card-ico { background: #fef3c7; color: #b45309; }
.hw-card--seo .hw-card-eyebrow { color: #b45309; }

.hw-card--gads::before { background: var(--blue); }
.hw-card--gads .hw-card-ico { background: #ffedd5; color: var(--blue); }
.hw-card--gads .hw-card-eyebrow { color: var(--blue); }

.hw-card--meta::before { background: #be185d; }
.hw-card--meta .hw-card-ico { background: #fce7f3; color: #be185d; }
.hw-card--meta .hw-card-eyebrow { color: #be185d; }

/* Each card has a slow gentle float — different per card so they don't sync */
.hw-card--1 { animation: hw-card-in-1 1100ms cubic-bezier(0.16, 1, 0.3, 1) 200ms both, hw-float-1 9s ease-in-out 1400ms infinite alternate; }
.hw-card--2 { animation: hw-card-in-2 1100ms cubic-bezier(0.16, 1, 0.3, 1) 320ms both, hw-float-2 8s ease-in-out 1500ms infinite alternate; }
.hw-card--3 { animation: hw-card-in-3 1100ms cubic-bezier(0.16, 1, 0.3, 1) 440ms both, hw-float-3 10s ease-in-out 1600ms infinite alternate; }
.hw-card--4 { animation: hw-card-in-4 1100ms cubic-bezier(0.16, 1, 0.3, 1) 560ms both, hw-float-4 9.5s ease-in-out 1700ms infinite alternate; }

@keyframes hw-float-1 {
  0%   { transform: translate3d(-118px, -110px, 0) rotate(-2deg); }
  100% { transform: translate3d(-118px, -116px, 0) rotate(-2.8deg); }
}
@keyframes hw-float-2 {
  0%   { transform: translate3d(118px, -104px, 0) rotate(1.8deg); }
  100% { transform: translate3d(118px,  -98px, 0) rotate(2.4deg); }
}
@keyframes hw-float-3 {
  0%   { transform: translate3d(-114px, 110px, 0) rotate(-1.5deg); }
  100% { transform: translate3d(-114px, 116px, 0) rotate(-2.2deg); }
}
@keyframes hw-float-4 {
  0%   { transform: translate3d(122px, 116px, 0) rotate(2.4deg); }
  100% { transform: translate3d(122px, 110px, 0) rotate(3deg); }
}

/* Individual hover/focus — pause float, lift card, bring to front */
.hw-card:hover,
.hw-card:focus-visible {
  z-index: 10;
  animation-play-state: paused;
  box-shadow:
    0 2px 4px rgba(26, 15, 8, 0.08),
    0 22px 44px rgba(26, 15, 8, 0.16),
    0 36px 80px rgba(194, 65, 12, 0.18);
}
.hw-card--1:hover, .hw-card--1:focus-visible { transform: translate3d(-118px, -122px, 0) rotate(-2deg)   scale(1.045); }
.hw-card--2:hover, .hw-card--2:focus-visible { transform: translate3d(118px,  -116px, 0) rotate(1.8deg)  scale(1.045); }
.hw-card--3:hover, .hw-card--3:focus-visible { transform: translate3d(-114px,  98px,  0) rotate(-1.5deg) scale(1.045); }
.hw-card--4:hover, .hw-card--4:focus-visible { transform: translate3d(122px,  104px,  0) rotate(2.4deg)  scale(1.045); }

/* Card content layout */
.hw-card-ico {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-lt);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-card-ico svg { width: 22px; height: 22px; }

.hw-card-eyebrow {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
}

.hw-card-title {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.hw-card-text {
  position: relative;
  z-index: 2;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink2);
  margin: 0;
  flex: 1;
}

.hw-card-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.hw-card-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.hw-card-arrow {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  transition: transform 220ms var(--ease-editorial);
}
.hw-card:hover .hw-card-arrow { transform: translateX(5px); }

/* Entrance — softer lift into fanned positions */
.hw-card { opacity: 0; }

@keyframes hw-card-in-1 {
  0%   { opacity: 0; transform: translate3d(-118px, -76px, 0) scale(0.94) rotate(-4deg); }
  100% { opacity: 1; transform: translate3d(-118px, -110px, 0) rotate(-2deg); }
}
@keyframes hw-card-in-2 {
  0%   { opacity: 0; transform: translate3d(118px, -70px, 0) scale(0.94) rotate(4deg); }
  100% { opacity: 1; transform: translate3d(118px, -104px, 0) rotate(1.8deg); }
}
@keyframes hw-card-in-3 {
  0%   { opacity: 0; transform: translate3d(-114px, 76px, 0) scale(0.94) rotate(-4deg); }
  100% { opacity: 1; transform: translate3d(-114px, 110px, 0) rotate(-1.5deg); }
}
@keyframes hw-card-in-4 {
  0%   { opacity: 0; transform: translate3d(122px, 82px, 0) scale(0.94) rotate(4deg); }
  100% { opacity: 1; transform: translate3d(122px, 116px, 0) rotate(2.4deg); }
}

/* Smaller right column — scale cards down so they fit narrower desktops */
@media (max-width: 1180px) {
  .hw-card { width: 198px; min-height: 248px; margin: -124px 0 0 -99px; padding: 18px; }
  .hw-card--1 { animation: hw-card-in-1-sm 1100ms cubic-bezier(0.16, 1, 0.3, 1) 200ms both, hw-float-1-sm 9s ease-in-out 1400ms infinite alternate; }
  .hw-card--2 { animation: hw-card-in-2-sm 1100ms cubic-bezier(0.16, 1, 0.3, 1) 320ms both, hw-float-2-sm 8s ease-in-out 1500ms infinite alternate; }
  .hw-card--3 { animation: hw-card-in-3-sm 1100ms cubic-bezier(0.16, 1, 0.3, 1) 440ms both, hw-float-3-sm 10s ease-in-out 1600ms infinite alternate; }
  .hw-card--4 { animation: hw-card-in-4-sm 1100ms cubic-bezier(0.16, 1, 0.3, 1) 560ms both, hw-float-4-sm 9.5s ease-in-out 1700ms infinite alternate; }

  @keyframes hw-card-in-1-sm { 0% { opacity: 0; transform: translate3d(-105px, -68px, 0) scale(0.94) rotate(-4deg); } 100% { opacity: 1; transform: translate3d(-105px, -100px, 0) rotate(-2deg); } }
  @keyframes hw-card-in-2-sm { 0% { opacity: 0; transform: translate3d(105px, -64px, 0) scale(0.94) rotate(4deg); } 100% { opacity: 1; transform: translate3d(105px, -94px, 0) rotate(1.8deg); } }
  @keyframes hw-card-in-3-sm { 0% { opacity: 0; transform: translate3d(-101px, 68px, 0) scale(0.94) rotate(-4deg); } 100% { opacity: 1; transform: translate3d(-101px, 100px, 0) rotate(-1.5deg); } }
  @keyframes hw-card-in-4-sm { 0% { opacity: 0; transform: translate3d(108px, 74px, 0) scale(0.94) rotate(4deg); } 100% { opacity: 1; transform: translate3d(108px, 106px, 0) rotate(2.4deg); } }

  @keyframes hw-float-1-sm { 0% { transform: translate3d(-105px, -100px, 0) rotate(-2deg); } 100% { transform: translate3d(-105px, -106px, 0) rotate(-2.8deg); } }
  @keyframes hw-float-2-sm { 0% { transform: translate3d(105px, -94px, 0) rotate(1.8deg); } 100% { transform: translate3d(105px, -88px, 0) rotate(2.4deg); } }
  @keyframes hw-float-3-sm { 0% { transform: translate3d(-101px, 100px, 0) rotate(-1.5deg); } 100% { transform: translate3d(-101px, 106px, 0) rotate(-2.2deg); } }
  @keyframes hw-float-4-sm { 0% { transform: translate3d(108px, 106px, 0) rotate(2.4deg); } 100% { transform: translate3d(108px, 100px, 0) rotate(3deg); } }

  .hw-card--1:hover { transform: translate3d(-105px, -112px, 0) rotate(-2deg)   scale(1.045); }
  .hw-card--2:hover { transform: translate3d(105px,  -106px, 0) rotate(1.8deg)  scale(1.045); }
  .hw-card--3:hover { transform: translate3d(-101px,  88px,  0) rotate(-1.5deg) scale(1.045); }
  .hw-card--4:hover { transform: translate3d(108px,   94px,  0) rotate(2.4deg)  scale(1.045); }
}

/* Hide card stack below 900px — text-only on tablet/mobile */
@media (max-width: 899px) {
  .hw-inner { grid-template-columns: 1fr; }
  .hw-visual { display: none; }
}

/* Reduced motion — fade only, no transforms */
@media (prefers-reduced-motion: reduce) {
  .hw-card {
    animation: hw-card-fade 500ms linear both !important;
    transition: opacity 200ms linear, box-shadow 200ms linear !important;
    transform: none !important;
  }
  .hw-card:hover { transform: none !important; }
  .hw-cards-hint { animation: none; opacity: 0.85; }
}
@keyframes hw-card-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hw-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 6.4vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}

.hw-sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink2);
  margin: 0;
  max-width: 56ch;
  font-weight: 400;
}

.hw-sub strong {
  color: var(--ink);
  font-weight: 700;
}

.hw-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hw-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 220ms var(--ease-editorial),
              border-color 220ms var(--ease-editorial),
              color 220ms var(--ease-editorial),
              transform 180ms var(--ease-editorial),
              box-shadow 220ms var(--ease-editorial);
}

.hw-cta-primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  box-shadow: 0 1px 2px rgba(194, 65, 12, 0.12);
}
.hw-cta-primary:hover,
.hw-cta-primary:focus-visible {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.hw-cta-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(194, 65, 12, 0.12);
}

.hw-cta-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.hw-cta-secondary .hw-phone-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue);
}
.hw-cta-secondary:hover,
.hw-cta-secondary:focus-visible {
  background: var(--bg2);
  border-color: var(--ink2);
  transform: translateY(-1px);
}

.hw-trust {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.hw-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

/* Review-style rating block — square green tiles with white stars (independent-review look) */
.hw-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.hw-rating-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.hw-stars-tp {
  display: inline-flex;
  gap: 2px;
}
.hw-star-tp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--trust-green);
  border-radius: 3px;
}
.hw-star-tp svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

/* Small Danish flag — subtle "dansk ejet" signal, no text */
.hw-flag-dk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 11px;
  margin-left: 0.4rem;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(26, 15, 8, 0.08);
  vertical-align: -2px;
}
.hw-flag-dk svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hw-faces {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
}
.hw-face {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  margin-left: -10px;
  background: var(--bg2);
  box-shadow: 0 1px 3px rgba(26, 15, 8, 0.08);
}
.hw-face:first-child {
  margin-left: 0;
}

.hw-trust-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink2);
  margin: 0;
}
.hw-trust-text strong {
  color: var(--ink);
  font-weight: 700;
}

.hw-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hw-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--r-pill, 999px);
  background: transparent;
  color: var(--ink2);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hw-pill::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
}

/* Mobile — stack CTAs full-width, tighten trust strip */
@media (max-width: 639px) {
  .hw-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.65rem;
  }
  .hw-cta {
    width: 100%;
    min-height: 56px;
    padding: 1rem 1.25rem;
  }
  .hw-trust-row {
    gap: 0.6rem 0.75rem;
  }
  .hw-trust-text {
    width: 100%;
    font-size: 0.88rem;
  }
}

/* Reduced motion — collapse transforms */
@media (prefers-reduced-motion: reduce) {
  .hw-cta,
  .hw-cta:hover,
  .hw-cta:focus-visible,
  .hw-cta:active {
    transition: background 200ms linear, color 200ms linear, border-color 200ms linear;
    transform: none !important;
    box-shadow: none;
  }
}

/* Scale orbs down on small screens so they don't dominate */
@media (max-width: 639px) {
  .hw-orb { filter: blur(70px); }
  .hw-orb--peach { width: 360px; height: 360px; top: -120px; right: -110px; }
  .hw-orb--amber { width: 300px; height: 300px; bottom: -100px; left: -90px; }
  .hw-orb--rose  { width: 260px; height: 260px; top: 40%; left: 20%; }
}

/* Reduced motion — freeze orbs at start position */
@media (prefers-reduced-motion: reduce) {
  .hw-orb { animation: none !important; }
}

/* High-contrast — hide decorative orbs so type stays crisp */
@media (prefers-contrast: more) {
  .hw-bg { display: none; }
}

/* ============================================================
   HERO CALENDAR  (apple-style, fyldes op med kunder)
   Pure CSS animation — looper. Hidden under 900px.
   ============================================================ */
.hw-cal {
  --hwc-card-w: 100%;
  --hwc-cycle: 9s;
  --hwc-row-h: 58px;
  --hwc-min: calc(var(--hwc-row-h) / 60);
  --hwc-cols: 5;
  --hwc-gap: 4px;
  --hwc-hours-w: 38px;

  position: relative;
  width: 100%;
  max-width: 684px;
  justify-self: end;
  perspective: 1400px;
  filter: drop-shadow(0 10px 22px rgba(26, 15, 8, 0.10)) drop-shadow(0 3px 7px rgba(26, 15, 8, 0.05));
  animation: hwc-card-float 7s var(--ease-editorial) infinite alternate;
}

@keyframes hwc-card-float {
  0%   { transform: translateY(0) rotateX(0.6deg) rotateY(-1.2deg); }
  100% { transform: translateY(-6px) rotateX(-0.4deg) rotateY(1.2deg); }
}

.hwc-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  transform-style: preserve-3d;
  isolation: isolate;
}

/* Subtle inner highlight — Apple "specular" feel */
.hwc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 30%);
  pointer-events: none;
  z-index: 3;
}

/* macOS-style window chrome */
.hwc-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #fbf7f2 0%, #f6efe6 100%);
  border-bottom: 1px solid var(--border);
}
.hwc-traffic { display: flex; gap: 6px; }
.hwc-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.hwc-dot--r { background: #ff5f57; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.08); }
.hwc-dot--y { background: #febc2e; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.08); }
.hwc-dot--g { background: #28c840; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.08); }
.hwc-titlebar {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink2);
  letter-spacing: 0.01em;
  margin-right: 38px;
}

.hwc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
}
.hwc-month {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hwc-month-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hwc-month-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.hwc-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hwc-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  background: var(--bg2);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink2);
  border: 1px solid var(--border);
}
.hwc-nav-today {
  background: var(--blue-lt);
  color: var(--blue-dk);
  border-color: var(--blue-light);
}

.hwc-days {
  display: grid;
  grid-template-columns: var(--hwc-hours-w) repeat(var(--hwc-cols), 1fr);
  padding: 0 16px 8px;
}
.hwc-days::before { content: ""; }
.hwc-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 0 4px;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hwc-day-name { text-transform: lowercase; font-size: 0.62rem; letter-spacing: 0.06em; }
.hwc-day-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.hwc-day--today .hwc-day-name { color: var(--blue); }
.hwc-day--today .hwc-day-num {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.32);
}

.hwc-grid {
  display: grid;
  grid-template-columns: var(--hwc-hours-w) 1fr;
  padding: 0 16px 14px;
}
.hwc-hours {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.hwc-hour {
  height: var(--hwc-row-h);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  position: relative;
  transform: translateY(-5px);
}

.hwc-board {
  position: relative;
  height: calc(var(--hwc-row-h) * 7);
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(var(--hwc-row-h) - 1px),
      var(--border) calc(var(--hwc-row-h) - 1px),
      var(--border) var(--hwc-row-h)
    );
  border-radius: 6px;
}

.hwc-cols {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--hwc-cols), 1fr);
  pointer-events: none;
}
.hwc-col { background: transparent; border-right: 1px solid var(--border); }
.hwc-col:last-child { border-right: 0; }
.hwc-col--today { background: rgba(234, 88, 12, 0.045); }

/* Soft "now" line on Wed (today) */
.hwc-now {
  position: absolute;
  left: calc((100% / var(--hwc-cols)) * 2);
  width: calc(100% / var(--hwc-cols));
  top: calc(var(--hwc-row-h) * 2.5);
  height: 1.5px;
  background: var(--blue);
  border-radius: 2px;
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.12);
  z-index: 2;
}
.hwc-now::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.18);
  animation: hwc-pulse 2.4s var(--ease-editorial) infinite;
}
@keyframes hwc-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.06); }
}

/* Booking cards — positioned via --col (1-5) and --start/--span in minutes */
.hwc-bk {
  position: absolute;
  left: calc((100% / var(--hwc-cols)) * (var(--col) - 1) + 3px);
  width: calc((100% / var(--hwc-cols)) - 6px);
  top: calc(var(--start) * var(--hwc-min));
  height: calc(var(--span) * var(--hwc-min) - 2px);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 7px 5px;
  background: linear-gradient(180deg, #fff5ec 0%, #ffe9d6 100%);
  border-radius: 8px;
  border-left: 2.5px solid var(--blue);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 1px 2px rgba(26, 15, 8, 0.04);
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform-origin: 12% 50%;
  animation: hwc-bk-in var(--hwc-cycle) var(--ease-editorial) infinite;
  animation-delay: calc(var(--i) * 0.22s);
}

.hwc-bk--accent {
  background: linear-gradient(180deg, var(--blue) 0%, #d94d0a 100%);
  border-left-color: #9a3206;
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 4px 14px rgba(234, 88, 12, 0.28);
}
.hwc-bk--accent .hwc-bk-time,
.hwc-bk--accent .hwc-bk-svc { color: rgba(255, 255, 255, 0.86); }
.hwc-bk--accent .hwc-bk-name { color: #fff; }

.hwc-bk-time {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--blue-dk);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1px;
}
.hwc-bk-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hwc-bk-svc {
  font-size: 0.66rem;
  color: var(--ink2);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Compact layout for kort 45-min slots — drop service line */
.hwc-bk--short { padding-top: 5px; padding-bottom: 5px; }
.hwc-bk--short .hwc-bk-svc { display: none; }
.hwc-bk--short .hwc-bk-time { font-size: 0.6rem; margin-bottom: 2px; }

@keyframes hwc-bk-in {
  0%   { opacity: 0; transform: scale(0.86) translateY(4px); }
  4%   { opacity: 1; transform: scale(1.04) translateY(0); }
  8%   { transform: scale(1) translateY(0); }
  72%  { opacity: 1; transform: scale(1) translateY(0); }
  84%  { opacity: 0; transform: scale(0.96) translateY(-2px); }
  100% { opacity: 0; transform: scale(0.86) translateY(4px); }
}

.hwc-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #fefaf4 100%);
}
.hwc-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
  flex-shrink: 0;
}
.hwc-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #16a34a;
  opacity: 0;
  animation: hwc-pulse-ring 2s var(--ease-editorial) infinite;
}
@keyframes hwc-pulse-ring {
  0%   { opacity: 0.6; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.9); }
}
.hwc-footer-text {
  font-size: 0.78rem;
  color: var(--ink2);
  line-height: 1.2;
}
.hwc-footer-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* Hide on tablet/mobile — text-only hero */
@media (max-width: 899px) {
  .hw-cal { display: none; }
}

/* Reduced motion — freeze in "fully booked" state, no float, no pulse */
@media (prefers-reduced-motion: reduce) {
  .hw-cal { animation: none; transform: none; }
  .hwc-bk {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hwc-now::before,
  .hwc-pulse::after { animation: none; }
}

/* High-contrast — drop soft tints, keep type readable */
@media (prefers-contrast: more) {
  .hwc-card { box-shadow: 0 0 0 1px var(--ink); }
  .hwc-bk:not(.hwc-bk--accent) {
    background: #fff;
    border: 1px solid var(--ink);
  }
}

/* ============================================================
   PAGE-RHYTHM UTILITY  (paper / cream alternation)
   ============================================================ */
.bg-paper { background: var(--bg); }
.bg-cream { background: var(--bg2); }

/* ============================================================
   INDUSTRY MARQUEE — standalone section wrapper
   (existing .mission-marquee track styles continue to apply)
   ============================================================ */
.industry-marquee {
  padding: clamp(0.5rem, 1vw, 1rem) 0 clamp(1.25rem, 2vw, 1.75rem);
  overflow: hidden;
}

/* ============================================================
   SEAMLESS FLOW — every section fades into the next one
   Hero → Marquee → Services → Why → How → Testi → Om-os → CTA
   ============================================================ */

.industry-marquee.bg-cream {
  background: linear-gradient(180deg,
    var(--bg2) 0%,
    var(--bg2) 50%,
    var(--bg) 100%);
}

.services-routing.bg-paper {
  background: linear-gradient(180deg,
    var(--bg) 0%,
    var(--bg) 75%,
    var(--bg2) 100%);
}

.why-section.bg-cream {
  background: linear-gradient(180deg,
    var(--bg2) 0%,
    var(--bg2) 75%,
    var(--bg) 100%);
}

.how-section.bg-paper {
  background: linear-gradient(180deg,
    var(--bg) 0%,
    var(--bg) 75%,
    var(--bg2) 100%);
}

.testi-section.bg-cream {
  background: linear-gradient(180deg,
    var(--bg2) 0%,
    var(--bg2) 75%,
    var(--bg) 100%);
  border-bottom: none;
}

.om-os-section.bg-paper {
  background: linear-gradient(180deg,
    var(--bg) 0%,
    var(--bg) 75%,
    var(--bg2) 100%);
}

/* ============================================================
   OM-OS — editorial pulled-statement + team-cards magazine spread
   (replaces handshake video — type-driven per Workshop Warm brief)
   ============================================================ */
.om-os-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.om-os-statement {
  position: relative;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--bg2);
  border-left: 3px solid var(--blue);
  border-radius: 0 24px 24px 0;
  box-shadow:
    0 1px 3px rgba(26, 15, 8, 0.04),
    0 16px 36px rgba(26, 15, 8, 0.06);
}

.om-os-quote {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 2.125rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 1.25rem 0;
}

.om-os-quote-mark {
  color: var(--blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4em;
  line-height: 0;
  position: relative;
  top: 0.18em;
  margin-right: 0.04em;
  font-weight: 700;
}

.om-os-byline {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.om-os-team {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.om-os-team .team-card {
  margin: 0;
}

/* Mobile / tablet — stack statement above the team-cards */
@media (max-width: 899px) {
  .om-os-spread {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .om-os-statement {
    border-left: none;
    border-top: 3px solid var(--blue);
    border-radius: 24px;
  }
  .om-os-team {
    gap: 12px;
  }
}

