/* ==========================================================================
   GEZAR.DK: Production Stylesheet
   Redesign 2026
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. DESIGN TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* Colors */
  --color-bg: #f8f5f0;
  --color-bg-alt: #f0ebe3;
  --color-text: #1a1a1a;
  --color-text-secondary: #2d2d2d;
  --color-text-muted: #6f6a5e;
  --color-accent: #c04a2d;
  --color-accent-hover: #a13d25;
  --color-border: #e8e0d4;
  --color-dark: #111111;
  --color-light: #faf8f5;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 160px);
  --container-max: 1280px;
  --container-padding: clamp(24px, 4vw, 48px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.3s;
}


/* --------------------------------------------------------------------------
   1. RESET / BASE
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  line-height: 1.1;
}

p {
  overflow-wrap: break-word;
  max-width: 75ch;
}

::selection {
  background-color: var(--color-accent);
  color: var(--color-light);
}


/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */

/* --- Display / Headlines (Syne) --- */

.heading-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.heading-section,
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.heading-card {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.heading-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Body (DM Sans) --- */

.body-large {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
}

.body-default {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

.body-small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
}

.body-medium {
  font-family: var(--font-body);
  font-weight: 500;
}

.body-semibold {
  font-family: var(--font-body);
  font-weight: 600;
}

/* --- Mono / Labels / Badges (Space Mono) --- */

.label,
.badge,
.metric-text {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.label--light {
  color: var(--color-bg);
}

.metric-number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}


/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* Tighter reading width for CSS-partner landing sections (hero/calc/faq/pricing).
   Brugt af de 15 landing-pillars + EN-master; var udefineret -> edge-to-edge bug. */
.container--narrow {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-padding);
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-bg);
}

.section--dark .section-title {
  color: var(--color-bg);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.6;
}

/* --- Grid System --- */

.grid {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--asymmetric {
  grid-template-columns: 7fr 5fr;
}

.grid--asymmetric-reverse {
  grid-template-columns: 5fr 7fr;
}

.grid--align-center {
  align-items: center;
}


/* --------------------------------------------------------------------------
   4. NAVBAR
   -------------------------------------------------------------------------- */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background-color: transparent;
  transition: background-color var(--duration) ease,
              backdrop-filter var(--duration) ease,
              padding var(--duration) ease;
}

.navbar--scrolled {
  background-color: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.navbar__logo {
  flex-shrink: 0;
  z-index: 1001;
}

.navbar__logo img {
  height: 28px;
  width: auto;
  filter: brightness(0);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Language switcher */
.navbar__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar__lang a {
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 2px 4px;
  transition: color var(--duration) ease;
}

.navbar__lang a:hover,
.navbar__lang a.navbar__lang--active {
  color: var(--color-accent);
}

.navbar__lang-divider {
  color: var(--color-border);
  user-select: none;
}

.navbar__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
  position: relative;
  transition: color var(--duration) ease;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-accent);
  transition: width var(--duration) var(--ease-out);
}

.navbar__link:hover {
  color: var(--color-accent);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  flex-shrink: 0;
}

/* --- Hamburger --- */

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  /* 44x44 tappable target (WCAG 2.5.5): 28px icon + 8px padding each side.
     box-sizing is border-box globally, so the icon bars stay 28px wide. */
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 1px;
  transition: transform var(--duration) ease,
              opacity var(--duration) ease;
  transform-origin: center;
}

.nav-open .navbar__hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .navbar__hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-open .navbar__hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Nav Overlay --- */

.navbar__mobile-menu {
  display: none;
}


/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero__content {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero__kinetic {
  display: inline-block;
  position: relative;
  color: var(--color-accent);
  min-width: 3ch;
  vertical-align: baseline;
}

.hero__kinetic-word {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  color: var(--color-accent);
}

.hero__kinetic-word--active {
  position: relative;
  opacity: 1;
  animation: fadeInUp 0.5s var(--ease-out) forwards;
}

.hero__kinetic-word--exit {
  position: absolute;
  animation: fadeOutUp 0.5s var(--ease-out) forwards;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 65ch;
  margin-inline: auto;
  margin-bottom: 48px;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-light);
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 58, 0.25);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 58, 0.25);
}

.btn--secondary:active {
  transform: translateY(0);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-accent);
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  letter-spacing: 0.05em;
}

.btn--ghost:hover {
  color: var(--color-accent-hover);
  text-underline-offset: 6px;
}

.btn--small {
  padding: 12px 24px;
  font-size: 0.8125rem;
}

.btn--large {
  padding: 20px 40px;
  font-size: 0.9375rem;
}


/* --------------------------------------------------------------------------
   7. CLIENT LOGOS / MARQUEE
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  padding-block: 40px;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.section--alt .marquee::before {
  background: linear-gradient(to right, var(--color-bg-alt), transparent);
}

.section--alt .marquee::after {
  background: linear-gradient(to left, var(--color-bg-alt), transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee__track img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity var(--duration) ease,
              filter var(--duration) ease;
}

.marquee__track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* --------------------------------------------------------------------------
   8. SERVICE CARDS
   -------------------------------------------------------------------------- */

.service-card {
  background-color: var(--color-bg-alt);
  padding: 40px 32px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--color-border);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.service-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.service-card__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: color var(--duration) ease,
              text-underline-offset var(--duration) ease;
}

.service-card__link:hover {
  color: var(--color-accent-hover);
  text-underline-offset: 6px;
}


/* --------------------------------------------------------------------------
   9. PROCESS / METHOD SECTION
   -------------------------------------------------------------------------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.process-step {
  position: relative;
  padding-top: 16px;
}

.process-step__number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.55;
  margin-bottom: 16px;
  display: block;
}

.process-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--color-text);
}

.process-step__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}


/* --------------------------------------------------------------------------
   10. RESULTS / CASES
   -------------------------------------------------------------------------- */

.metrics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
  padding-block: 40px;
}

.metric {
  text-align: center;
}

.metric__number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 8px;
  display: block;
}

.metric__label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Dark section metrics */
.section--dark .metric__number {
  color: var(--color-accent);
}

.section--dark .metric__label {
  color: rgba(248, 245, 240, 0.5);
}

/* --- Case Cards --- */

.case-card {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  padding: 32px;
  transition: border-color var(--duration) ease,
              transform var(--duration) var(--ease-out);
}

.case-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.case-card__tag {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  display: inline-block;
}

.case-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--color-text);
}

.case-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.case-card__metrics {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.case-card__metric-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-accent);
  display: block;
}

.case-card__metric-label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   11. FOUNDER SECTION
   -------------------------------------------------------------------------- */

.founder {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.founder__image-wrapper {
  position: relative;
  overflow: hidden;
}

.founder__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.founder__content {
  padding-block: 20px;
}

.founder__label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.founder__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.founder__role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.founder__bio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.founder__values {
  list-style: none;
  padding: 0;
}

.founder__values li {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.founder__values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
}


/* --------------------------------------------------------------------------
   12. PRICING CARDS
   -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  align-items: start;
}

.pricing-card {
  padding: 48px 32px;
  border: 1px solid var(--color-border);
  text-align: center;
  background-color: var(--color-light);
  position: relative;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.pricing-card--popular {
  border-color: var(--color-accent);
  border-width: 2px;
}

.pricing-card--popular::before {
  content: var(--popular-label, 'Mest populær');
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 6px 16px;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-text);
}

.pricing-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 100%;
}

.pricing-card__price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 4px;
}

.pricing-card__period {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.pricing-card__divider {
  width: 40px;
  height: 1px;
  background-color: var(--color-border);
  margin: 0 auto 32px;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-card__features li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.875rem;
}

.pricing-card__amount {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
}


/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.testimonial-card {
  background-color: #1a1a1a;
  color: var(--color-bg);
  padding: 48px 40px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 6rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.3;
  pointer-events: none;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--color-bg);
  display: block;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-card__company {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.5);
  opacity: 0.7;
  display: block;
  margin-top: 4px;
}


/* --------------------------------------------------------------------------
   14. FAQ ACCORDION
   -------------------------------------------------------------------------- */

.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

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

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.4;
  color: var(--color-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
  transition: color var(--duration) ease;
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s var(--ease-out);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-text);
  border-radius: 1px;
}

.faq-item__icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.faq-item__answer p {
  padding-bottom: 24px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   15. CTA SECTION
   -------------------------------------------------------------------------- */

.cta-section {
  padding-block: clamp(80px, 12vw, 180px);
  text-align: center;
}

.cta-section__label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  display: block;
}

.cta-section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 900px;
  margin-inline: auto;
}

.cta-section__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 48px;
}

.section--dark .cta-section__label {
  color: rgba(248, 245, 240, 0.5);
}

.section--dark .cta-section__title {
  color: var(--color-bg);
}

.section--dark .cta-section__subtitle {
  color: rgba(248, 245, 240, 0.7);
}

.cta-section__note {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 24px;
  margin-inline: auto;
  text-align: center;
}


/* --------------------------------------------------------------------------
   16. BREADCRUMB NAVIGATION
   -------------------------------------------------------------------------- */

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb__item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '›';
  margin: 0 8px;
  color: var(--color-text-muted);
}

.breadcrumb__item a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration) ease;
}

.breadcrumb__item a:hover {
  color: var(--color-accent);
}

.breadcrumb__item--active {
  color: var(--color-text);
}

/* Breadcrumb above hero: navbar clearance on service/location pages */
main > .breadcrumb:first-child {
  padding-top: 24px;
  padding-bottom: 0;
  background: var(--color-bg);
}

/* Override article-content list styling for breadcrumbs */
.article-content .breadcrumb__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* Legacy breadcrumb separator (ordbog terms) */
.breadcrumb__separator {
  margin: 0 8px;
}


/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */

.footer {
  background-color: var(--color-dark);
  color: var(--color-bg);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 60px;
}

.footer__brand {
  grid-column: span 1;
}

.footer__brand p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer__logo {
  display: block;
  height: 32px;
  width: auto;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__brand-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.6);
  margin-top: 16px;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-bg);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(248, 245, 240, 0.6);
  transition: color var(--duration) ease;
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(248, 245, 240, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(248, 245, 240, 0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(248, 245, 240, 0.4);
  transition: color var(--duration) ease;
}

.footer__legal a:hover {
  color: var(--color-accent);
}


/* --------------------------------------------------------------------------
   17. GRAIN / NOISE TEXTURE
   -------------------------------------------------------------------------- */

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}


/* --------------------------------------------------------------------------
   18. SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for child elements */

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}

.reveal-stagger.reveal--visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.reveal--visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.reveal--visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.reveal--visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.reveal--visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.reveal--visible > *:nth-child(6) { transition-delay: 500ms; }

.reveal-stagger.reveal--visible > *,
.reveal-stagger > .reveal--visible {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------------------------------------------------------
   19. KINETIC TYPOGRAPHY ANIMATIONS
   -------------------------------------------------------------------------- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}


/* --------------------------------------------------------------------------
   20. RESPONSIVE
   -------------------------------------------------------------------------- */

/* --- Desktop: 1024px+ (default) --- */

/* --- Tablet: 768px - 1023px --- */

@media (max-width: 1023px) {
  .hero__headline {
    font-size: clamp(2.2rem, 6vw, 4rem);
  }

  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--asymmetric,
  .grid--asymmetric-reverse {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

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

  .founder__image-wrapper {
    max-width: 480px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

/* --- Mobile: max-width 767px --- */

@media (max-width: 767px) {
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--asymmetric,
  .grid--asymmetric-reverse {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  /* Navbar mobile */
  .navbar__nav {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Mobile nav overlay: the existing .navbar__nav (#nav-menu) becomes a
     fullscreen dropdown when body.nav-open is set by the hamburger.
     (The site HTML has no separate .navbar__mobile-menu element, so we
     style .navbar__nav itself.) */
  .nav-open .navbar__nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px;
  }

  .nav-open .navbar__links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-open .navbar__nav .navbar__link {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .nav-open .navbar__nav .navbar__link::after {
    display: none;
  }

  /* Legacy: kept harmless in case any page still references it */
  .navbar__mobile-menu {
    display: none;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding-block: 60px;
  }

  .hero__headline {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    letter-spacing: 0.01em;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  /* Marquee mobile */
  .marquee__track img {
    height: 28px;
  }

  .marquee::before,
  .marquee::after {
    width: 60px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 36px 28px;
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: 12px;
    left: 20px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Founder */
  .founder {
    grid-template-columns: 1fr;
  }

  .founder__image-wrapper {
    max-width: 100%;
  }

  /* Buttons */
  .btn {
    width: 100%;
    text-align: center;
  }

  .btn--ghost {
    width: auto;
  }

  /* Metrics */
  .metrics-row {
    gap: 24px;
  }

  .metric {
    min-width: 120px;
  }
}

/* --- Reduced Motion --- */

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}


/* --------------------------------------------------------------------------
   21. UTILITY CLASSES
   -------------------------------------------------------------------------- */

/* --- Text --- */

.text-accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* --- Screen Reader Only --- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus,
.sr-only:focus-visible {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  clip: auto;
  overflow: visible;
  white-space: normal;
  margin: 0;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  z-index: 99999;
  border-radius: 0;
}

/* --- Focus Visible --- */

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

:focus:not(:focus-visible) {
  outline: none;
}

/* --- Spacing --- */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pt-4 { padding-top: 4rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
.pb-4 { padding-bottom: 4rem; }

/* --- Display --- */

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* --- Flex helpers --- */

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

/* --- Max widths --- */

.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 640px; }
.max-w-lg { max-width: 800px; }
.max-w-xl { max-width: 960px; }

/* --- Misc --- */

.mx-auto {
  margin-inline: auto;
}

.w-full {
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

/* ---------------------------------------------------------------
   Cookie Consent Banner
   --------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 0.925rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

.cookie-banner__text a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: var(--color-accent);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__btn--accept {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--color-text-secondary);
  border-color: var(--color-border);
}

.cookie-banner__btn--reject:hover {
  border-color: var(--color-text-secondary);
  color: var(--color-text);
}

@media (max-width: 767px) {
  .cookie-banner {
    padding: 16px 20px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    padding: 12px 16px;
  }
}

/* --- Touch targets (WCAG 2.5.5: min 44x44px on mobile) --- */
@media (max-width: 767px) {
  .navbar__lang a,
  .navbar__lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 10px;
  }

  .navbar__logo {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}


/* ============================================================
   CSS-PARTNER LANDING-PAGE STYLES (i18n pillars)
   Konsolideret fra frontend/en/css-partner.html's inline <style>
   saa alle /{lang}/css-partner pillars (som linker /style.css)
   deler hero/proof-strip/pricing/calculator/css-faq/cta-styling.
   Badge-tekst ('Most popular') lokaliseres i template, IKKE her.
   ============================================================ */
    /* ===== HERO SECTION ===== */
    .css-hero {
      background: var(--color-bg-alt);
      border-bottom: 1px solid var(--color-border);
      padding: 80px 0 72px;
    }

    .css-hero__tag {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-accent);
      font-weight: 700;
      display: block;
      margin-bottom: 20px;
    }

    .css-hero__title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 5vw, 3.5rem);
      line-height: 1.1;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      color: var(--color-text);
      margin-bottom: 24px;
    }

    .css-hero__title span {
      color: var(--color-accent);
    }

    .css-hero__lead {
      font-family: var(--font-body);
      font-size: 1.15rem;
      line-height: 1.75;
      color: var(--color-text-secondary);
      max-width: 640px;
      margin-bottom: 36px;
    }

    .css-hero__cta-group {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .css-hero__note {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: var(--color-text-muted);
      text-transform: uppercase;
    }

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

    .proof-strip__inner {
      display: flex;
      border-left: 1px solid var(--color-border);
    }

    .proof-strip__item {
      flex: 1;
      padding: 28px 24px;
      border-right: 1px solid var(--color-border);
      text-align: center;
    }

    .proof-strip__value {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 2rem;
      color: var(--color-accent);
      line-height: 1;
      margin-bottom: 6px;
    }

    .proof-strip__label {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      line-height: 1.5;
    }

    /* ===== SECTION LAYOUT ===== */
    .css-section {
      padding: 80px 0;
      border-bottom: 1px solid var(--color-border);
    }

    .css-section:last-of-type {
      border-bottom: none;
    }

    .css-section__label {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-accent);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .css-section h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.5rem, 3.5vw, 2.25rem);
      text-transform: uppercase;
      letter-spacing: 0.01em;
      color: var(--color-text);
      margin-bottom: 24px;
    }

    .css-section h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--color-text);
      margin-top: 36px;
      margin-bottom: 14px;
    }

    .css-section p {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.8;
      color: var(--color-text-secondary);
      max-width: 720px;
      margin-bottom: 20px;
    }

    /* ===== ANSWER BOX ===== */
    .answer-box {
      border: 2px solid var(--color-accent);
      background: var(--color-bg-alt);
      padding: 24px 28px;
      margin: 28px 0;
      max-width: 720px;
    }

    .answer-box__label {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-accent);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .answer-box p {
      margin-bottom: 0;
      max-width: none;
    }

    /* ===== HIGHLIGHT BOX ===== */
    .highlight-box {
      border-left: 3px solid var(--color-accent);
      background: var(--color-bg-alt);
      padding: 20px 24px;
      margin: 28px 0;
      max-width: 720px;
    }

    .highlight-box p {
      margin-bottom: 0;
      max-width: none;
    }

    /* ===== MECHANIC DIAGRAM ===== */
    .mechanic {
      border: 1px solid var(--color-border);
      overflow: hidden;
      margin: 32px 0;
      max-width: 720px;
    }

    .mechanic__header {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      background: var(--color-bg-alt);
      padding: 10px 20px;
      border-bottom: 1px solid var(--color-border);
    }

    .mechanic__row {
      display: flex;
      border-bottom: 1px solid var(--color-border);
    }

    .mechanic__row:last-child {
      border-bottom: none;
    }

    .mechanic__col {
      flex: 1;
      padding: 20px 20px;
      border-right: 1px solid var(--color-border);
    }

    .mechanic__col:last-child {
      border-right: none;
    }

    .mechanic__col-label {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: 10px;
    }

    .mechanic__col-value {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--color-text-secondary);
      line-height: 1.6;
    }

    .mechanic__col-value strong {
      color: var(--color-text);
    }

    .mechanic__col-value .accent {
      color: var(--color-accent);
      font-weight: 700;
    }

    /* ===== MONEY EXAMPLE ===== */
    .kr-example {
      border: 1px solid var(--color-border);
      overflow: hidden;
      margin: 32px 0;
      max-width: 640px;
    }

    .kr-example__header {
      background: var(--color-accent);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 10px 20px;
    }

    .kr-example__body {
      padding: 24px 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .kr-example__item {
      padding: 14px 16px;
      border-bottom: 1px solid var(--color-border);
      border-right: 1px solid var(--color-border);
    }

    .kr-example__item:nth-child(even) {
      border-right: none;
    }

    .kr-example__item:nth-last-child(-n+2) {
      border-bottom: none;
    }

    .kr-example__key {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: 6px;
    }

    .kr-example__val {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--color-text);
    }

    .kr-example__val.positive {
      color: #3a7a3a;
    }

    .kr-example__val.accent {
      color: var(--color-accent);
    }

    /* ===== COMPARE TABLE ===== */
    .compare-wrap {
      overflow-x: auto;
      margin: 32px 0;
      border: 1px solid var(--color-border);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-family: var(--font-body);
      min-width: 560px;
    }

    .compare-table th {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 18px;
      text-align: left;
      border-bottom: 2px solid var(--color-border);
    }

    .compare-table th:nth-child(1) {
      background: var(--color-bg-alt);
      color: var(--color-text-muted);
    }

    .compare-table th:nth-child(2) {
      background: #f0ebe3;
      color: #555;
    }

    .compare-table th:nth-child(3) {
      background: #f9ece9;
      color: var(--color-accent);
    }

    .compare-table td {
      padding: 14px 18px;
      border-bottom: 1px solid var(--color-border);
      font-size: 0.9rem;
      color: var(--color-text-secondary);
      line-height: 1.55;
      vertical-align: top;
    }

    .compare-table td:first-child {
      font-weight: 600;
      color: var(--color-text);
      font-size: 0.875rem;
    }

    .compare-table tr:last-child td {
      border-bottom: none;
    }

    .compare-table .check {
      color: #3a7a3a;
      font-weight: 700;
    }

    .compare-table .cross {
      color: var(--color-accent);
    }

    /* ===== STEPS ===== */
    .steps {
      margin: 32px 0;
      max-width: 720px;
    }

    .step {
      display: flex;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid var(--color-border);
      align-items: flex-start;
    }

    .step:last-child {
      border-bottom: none;
    }

    .step__num {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--color-accent);
      background: #f9ece9;
      padding: 5px 12px;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .step__content {
      flex: 1;
    }

    .step__title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--color-text);
      margin-bottom: 8px;
    }

    .step__text {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--color-text-secondary);
      line-height: 1.7;
      margin: 0;
    }

    /* ===== FAQ ===== */
    .css-faq {
      margin: 0;
    }

    .css-faq__title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.4rem, 3vw, 2rem);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--color-text);
      margin-bottom: 28px;
    }

    .css-faq__item {
      border: 1px solid var(--color-border);
      margin-bottom: 10px;
    }

    .css-faq__question {
      width: 100%;
      background: none;
      border: none;
      padding: 18px 20px;
      text-align: left;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: background 0.2s ease;
    }

    .css-faq__question:hover {
      background: var(--color-bg-alt);
    }

    .css-faq__icon {
      font-family: var(--font-mono);
      font-size: 1.2rem;
      color: var(--color-accent);
      flex-shrink: 0;
      transition: transform 0.25s ease;
      line-height: 1;
    }

    .css-faq__answer {
      display: none;
      padding: 16px 20px 18px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      line-height: 1.75;
      color: var(--color-text-secondary);
      border-top: 1px solid var(--color-border);
    }

    .css-faq__item.is-open .css-faq__answer {
      display: block;
    }

    .css-faq__item.is-open .css-faq__icon {
      transform: rotate(45deg);
    }

    /* ===== CTA SECTION ===== */
    .css-cta {
      background: var(--color-text);
      padding: 80px 0;
      text-align: center;
    }

    .css-cta__title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      text-transform: uppercase;
      color: var(--color-bg);
      margin-bottom: 20px;
    }

    .css-cta__title span {
      color: var(--color-accent);
    }

    .css-cta__text {
      font-family: var(--font-body);
      font-size: 1.05rem;
      line-height: 1.7;
      color: rgba(248,245,240,0.75);
      max-width: 560px;
      margin: 0 auto 36px;
    }

    .css-cta__note {
      margin-top: 16px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(248,245,240,0.4);
    }

    /* ===== PROOF BADGE ===== */
    .proof-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--color-border);
      padding: 12px 18px;
      background: var(--color-bg-alt);
      margin: 28px 0;
    }

    .proof-badge__icon {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--color-accent);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .proof-badge__text {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--color-text-secondary);
      line-height: 1.5;
    }

    .proof-badge__text strong {
      color: var(--color-text);
    }

    /* ===== READ ALSO ===== */
    .read-also__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }

    .read-also__card {
      display: block;
      padding: 1.25rem;
      border: 1px solid var(--color-border);
      text-decoration: none;
      color: inherit;
      transition: border-color 0.2s ease;
    }

    .read-also__card:hover {
      border-color: var(--color-accent);
    }

    .read-also__card-title {
      font-family: var(--font-display);
      font-weight: 700;
      display: block;
      margin-bottom: 0.25rem;
    }

    .read-also__card-text {
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 640px) {
      .css-hero__title {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
        letter-spacing: 0.01em;
      }
      .proof-strip__inner {
        flex-direction: column;
        border-left: none;
      }
      .proof-strip__item {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
      }
      .proof-strip__item:last-child {
        border-bottom: none;
      }
      .kr-example__body {
        grid-template-columns: 1fr;
      }
      .kr-example__item {
        border-right: none;
      }
      .kr-example__item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--color-border);
      }
      .kr-example__item:last-child {
        border-bottom: none;
      }
      .mechanic__row {
        flex-direction: column;
      }
      .mechanic__col {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
      }
      .mechanic__col:last-child {
        border-bottom: none;
      }
      .css-hero__cta-group {
        flex-direction: column;
        align-items: flex-start;
      }
      #css-results-grid {
        grid-template-columns: 1fr !important;
      }
      /* Lange lokaliserede CTA-labels (fx fransk/graesk) maa wrappe paa mobil,
         ellers tvinger .btn{white-space:nowrap} horisontal overflow i landing-CSS. */
      .css-hero .btn,
      .css-section .btn {
        white-space: normal;
        text-align: center;
        max-width: 100%;
      }
    }

    /* Localise the pricing "popular" badge for the English page */
    