@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: optional;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_18pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: optional;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_18pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: optional;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: optional;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_28pt-ExtraBold.woff2") format("woff2");
  font-weight: 800 900;
  font-display: optional;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/IBMPlexMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: optional;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/IBMPlexMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: optional;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/IBMPlexMono-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: optional;
}

:root {
  --purple: #3E3597;
  --red: #DD1339;
  --orange: #FFA83D;
  --ink: #171326;
  --paper: #F7F2EA;
  --white: #FFFFFF;
  --muted: r#171326
  --radius: 28px;
  --max: 1180px;
  --page-x: clamp(22px, 6vw, 88px);
  --page-y: clamp(22px, 5.5svh, 72px);
  --loader-bg: #3E3597;
  --ease: cubic-bezier(.2, .82, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

body.nav-open,
body.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

p a {
    text-decoration:underline;
    font-weight:800;
}



button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.eyebrow, .section-kicker {
    font-size:14px;
}



/* Loader fra forsiden, men med webdesign-farve */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: var(--loader-bg);
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  transform: scale(0);
  animation: loaderBatmanZoom .9s cubic-bezier(.2, .82, .2, 1) forwards;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.28));
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderBatmanZoom {
  0% {
    transform: scale(0) rotate(-3deg);
    opacity: 0;
  }

  45% {
    transform: scale(1.08) rotate(0deg);
    opacity: 1;
  }

  62% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: scale(0) rotate(3deg);
    opacity: 0;
  }
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--white), var(--purple));
}

/* Universal header/navigation */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 3.4vw, 52px);
  color: var(--white);
  pointer-events: none;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(17, 15, 24, .22);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 16px rgba(0,0,0,.12);
}

.codepusher-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.codepusher-brand .brand-main {
  font-size: clamp(1.8rem, 3.1vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.085em;
}

.codepusher-brand .brand-code {
  min-height: 1.15em;
  color: var(--orange);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(.74rem, .9vw, .98rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-caret {
  display: inline-block;
  width: .58em;
  height: 1em;
  margin-left: 3px;
  border-right: 2px solid currentColor;
  transform: translateY(.16em);
  animation: brandBlink .8s steps(1) infinite;
}

@keyframes brandBlink {
  50% { opacity: 0; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: clamp(.82rem, .88vw, .96rem);
  font-weight: 600;
}

.site-nav .mobile-menu-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.site-nav a {
  opacity: .92;
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

/* Desktop: logo synligt fra start. Menuen vises først efter scroll. */
.site-header .site-nav,
.site-header .nav-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .24s ease, transform .24s var(--ease), visibility .24s ease;
}

.site-header.is-scrolled .site-nav,
.site-header.is-scrolled .nav-toggle,
body.nav-open .site-nav,
body.nav-open .nav-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-contact {
  display: none;
}

@media (min-width: 941px) {
  .site-header .nav-toggle,
  .site-header.is-scrolled .nav-toggle {
    display: none;
  }
}

/* Scroll-container */
.webdesign-page {
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

@supports (height: 100dvh) {
  .webdesign-page {
    height: 100dvh;
  }
}

.webdesign-page::-webkit-scrollbar {
  display: none;
}

.screen {
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--page-y) var(--page-x);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@supports (height: 100dvh) {
  .screen {
    height: 100dvh;
    min-height: 100dvh;
  }
}

.screen-nav {
  position: fixed;
  z-index: 40;
  top: 50%;
  right: clamp(14px, 2vw, 28px);
  transform: translateY(-50%);
  display: grid;
  gap: 12px;
}

.screen-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 0 0 1px rgba(23, 19, 38, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.screen-dot:hover,
.screen-dot.is-active {
  transform: scale(1.45);
  background: var(--purple);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.38);
}

.screen-arrow {
  position: fixed;
  z-index: 40;
  right: clamp(22px, 3vw, 46px);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 19, 38, 0.32);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.screen-arrow:hover {
  transform: scale(1.08);
  background: var(--purple);
}

.screen-arrow:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
}

.screen-arrow-next {
  bottom: clamp(18px, 3vw, 34px);
  transform: rotate(90deg);
}

.screen-arrow-next:hover {
  transform: rotate(90deg) scale(1.08);
}

/* Teksten over overskrifterne som på forsiden */
.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  letter-spacing: .02em;
  opacity: .78;
  text-transform: none;
  font-weight: 500;
}

.section-kicker-light {
  color: rgba(255,255,255,.82);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: 100%;
  max-width: 12ch;
  font-size: clamp(4.6rem, min(13.8vw, 20svh), 17.5rem);
  line-height: 0.76;
  letter-spacing: -0.078em;
  margin-bottom: clamp(14px, 2.1svh, 30px);
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.4rem, min(6vw, 10svh), 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin-bottom: 0;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.65rem, min(3vw, 5svh), 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: clamp(12px, 2svh, 18px);
}

/* HERO: ingen bottom-padding på billedet */
.hero-section {
  background: var(--red);
  color: var(--white);
  display: grid;
  align-items: stretch;
  padding: 0;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  width: 100%;
  min-width: 0;
  padding: clamp(84px, 10svh, 120px) var(--page-x) 0;
  pointer-events: none;
}

.hero-copy .lead,
.hero-copy .cta-row,
.hero-copy .section-kicker {
  pointer-events: auto;
}

.hero-visual {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 clamp(8px, 4vw, 56px) 0 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-image {
  width: auto;
  height: min(100svh, 64vw);
  max-width: min(58vw, 980px);
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  margin: 0;
  transform: none;
  filter: drop-shadow(0 40px 55px rgba(0, 0, 0, 0.28));
}

.lead {
    margin: 0px;
  width: min(46vw, 620px);
  max-width: 620px;
  font-size: clamp(1rem, min(1.65vw, 2.4svh), 1.45rem);
  line-height: 1.42;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(18px, 3svh, 32px);
}

.cta-row.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 850;
  gap: 12px;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.button::after {
  content: "→";
  display: inline-block;
  transform: translateX(0);
  transition: transform .2s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(5px);
}

.button-light {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button-light:hover,
.button-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

/* Intro: billede venstre/bund, tekst højre */
.intro-section {
  padding: 0;
  display: block;
  background: var(--paper);
  color: var(--ink);
}

.intro-layout {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(24px, 5vw, 82px);
}

.intro-visual {
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.intro-image {
  width: auto;
  height: min(100%, 78vw);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom left;
  margin: 0;
  filter: drop-shadow(0 38px 60px rgba(62, 53, 151, .14));
}

.intro-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: var(--page-y) var(--page-x) var(--page-y) 0;
}

.intro-copy .section-kicker,
.process-section .section-kicker,
.faq-section .section-kicker {
  color: var(--purple);
  opacity: 1;
}

.text-stack {
  margin-top: clamp(22px, 3svh, 34px);
  font-size: clamp(1rem, min(1.45vw, 2.4svh), 1.35rem);
  line-height: 1.55;
  color: var(--muted);
}

.text-stack p:last-child,
.text-stack ul:last-child {
  margin-bottom: 0;
}

.tick-list,
.card ul {
  padding-left: 1.1em;
}

.tick-list li,
.card li {
  margin-bottom: 0.5em;
}

.process-section,
.faq-section {
  background: var(--paper);
}

.section-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.solutions-section {
  background: var(--purple);
  color: var(--white);
}

.section-header {
  width: min(100%, var(--max));
  margin: 0 auto clamp(24px, 5svh, 62px);
}

.cards {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

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

.card {
  border-radius: 0;
  padding: clamp(22px, min(4vw, 5svh), 48px);
  color: var(--ink);
}

.card-light {
  background: var(--white);
  border: 1px solid rgba(17, 19, 38, 0.08);
  box-shadow: 0 18px 45px rgba(17, 15, 24, 0.07);
  backdrop-filter: none;
}

.card h3 {
  color: var(--ink);
}

.card-number {
  display: inline-flex;
  color: rgba(23, 19, 38, 0.42);
  font-weight: 900;
  margin-bottom: clamp(18px, 4svh, 36px);
}

.card p,
.card li {
  color: rgba(23, 19, 38, 0.74);
  font-size: clamp(0.94rem, 1.1vw, 1.05rem);
  line-height: 1.45;
}

.section-note {
  margin-top: clamp(16px, 3svh, 28px);
  max-width: 420px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.5;
}

.process-list {
  list-style: none;
  counter-reset: steps;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(10px, 1.8svh, 16px);
}

.process-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(16px, 2.4svh, 22px);
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 18px 50px rgba(62, 53, 151, 0.08);
}

.process-list li::before {
  content: counter(steps, decimal-leading-zero);
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 950;
}

.process-list strong {
  display: block;
  color: var(--purple);
  font-size: 1.12rem;
  margin-bottom: 4px;
}

.process-list span {
  color: var(--muted);
}

.price-section {
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.price-box {
  width: min(920px, 100%);
  margin-inline: auto;
}

.price-box p:not(.section-kicker):not(.price) {
  font-size: clamp(1rem, min(1.6vw, 2.4svh), 1.35rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.price {
  margin: clamp(20px, 4svh, 30px) 0 clamp(14px, 3svh, 20px);
  font-size: clamp(4rem, min(12vw, 18svh), 10rem);
  line-height: 0.85;
  letter-spacing: -0.1em;
  font-weight: 950;
  color: var(--white);
}

.small {
  max-width: 700px;
  margin-inline: auto;
}

.faq-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

details {
  background: var(--white);
  border-radius: 0;
  padding: clamp(16px, 2.6svh, 22px) clamp(18px, 2vw, 24px);
  box-shadow: 0 18px 50px rgba(62, 53, 151, 0.08);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--purple);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

details p {
  color: var(--muted);
  line-height: 1.5;
  margin: 12px 0 0;
}

.final-cta {
  width: min(100%, var(--max));
  margin: clamp(22px, 4svh, 40px) auto 0;
  padding: clamp(20px, min(4vw, 4svh), 42px);
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.final-cta h3 {
  margin: 0;
}

/* Universal footer */
[data-footer-include] {
  scroll-snap-align: start;
}

.site-footer {
  background: #050505;
  color: var(--white);
  min-height: 42svh;
  padding: clamp(54px, 7vw, 92px) clamp(22px, 5vw, 82px);
  display: grid;
  align-items: center;
  scroll-snap-align: start;
}

.footer-inner {
  width: min(100%, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .7fr) auto;
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
}

.footer-logo {
  display: inline-block;
  font-size: clamp(2.6rem, 5.2vw, 6.8rem);
  line-height: .9;
  letter-spacing: -0.09em;
  font-weight: 800;
}

.footer-logo:hover {
  color: var(--orange);
}

.footer-brand p {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  line-height: 1.35;
  opacity: .76;
}

.footer-data {
  display: grid;
  gap: 12px;
}

.footer-data p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.footer-data span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .78rem;
  color: var(--orange);
}

.footer-data a,
.footer-data strong {
  font-size: 1rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer-social a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  transition: background .2s ease, transform .2s var(--ease), border-color .2s ease;
}

.footer-social a:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-social a:hover svg {
  fill: var(--ink);
}

/* Cursor fra forsiden */
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3000;
  opacity: 0;
  transform: translate3d(calc(var(--cursor-x, -100px) - 50%), calc(var(--cursor-y, -100px) - 50%), 0) scale(1);
  transition: opacity .18s ease, transform .16s ease, width .18s ease, height .18s ease, border-color .18s ease;
  mix-blend-mode: difference;
}

body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 57px;
  height: 57px;
  border-color: rgba(255,255,255,1);
}

@media (hover: none), (pointer: coarse) {
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 1100px) {
  h1 {
    max-width: 11ch;
  }

  .hero-image {
    max-width: 62vw;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 940px) {
  :root {
    --page-x: clamp(22px, 5vw, 42px);
    --page-y: clamp(22px, 4.5svh, 42px);
  }

  /* Mobil: ingen logo og ingen glass-header. Kun burger-knappen vises. */
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    height: 0;
    padding: 0;
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    pointer-events: none;
  }

  .site-header .brand,
  .site-header .codepusher-brand {
    display: none !important;
  }

  .nav-toggle,
  .site-header .nav-toggle,
  .site-header.is-scrolled .nav-toggle,
  body.nav-open .nav-toggle {
    position: fixed;
    z-index: 4002;
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
    display: grid !important;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: var(--red);
    box-shadow: 0 14px 38px rgba(17, 15, 24, .18);
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .nav-toggle span {
    grid-area: 1 / 1;
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    background: currentColor;
    border-radius: 999px;
    transition: transform .22s ease;
  }

  .nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .nav-toggle span:last-child {
    transform: translateY(4px);
  }

  .nav-toggle[aria-expanded="true"] span:first-child,
  body.nav-open .nav-toggle span:first-child {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child,
  body.nav-open .nav-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .site-nav,
  .site-header .site-nav,
  .site-header.is-scrolled .site-nav {
    position: fixed;
    inset: 0;
    z-index: 4000;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
    padding: clamp(92px, 14svh, 132px) clamp(24px, 7vw, 54px) clamp(30px, 7vw, 54px);
    border-radius: 0;
    background: var(--red);
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
    transform: translate3d(110%, 0, 0) !important;
    transition: transform .62s cubic-bezier(.19, 1, .22, 1) !important;
    will-change: transform;
  }

  body.nav-open .site-nav,
  .site-nav.is-open,
  .site-header.is-menu-open .site-nav {
    pointer-events: auto;
    transform: translate3d(0, 0, 0) !important;
  }

  .site-nav .mobile-menu-links {
    display: grid;
    align-content: center;
    gap: clamp(10px, 2.2svh, 18px);
  }

  .site-nav a {
    width: fit-content;
    padding: 0;
    border: 0;
    color: #ffffff;
    opacity: 1;
    font-size: clamp(2.2rem, 10.5vw, 5.5rem);
    line-height: .9;
    letter-spacing: -0.075em;
    font-weight: 800;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  }

  .site-nav a:hover {
    color: #ffffff;
    transform: translateX(8px);
  }

  .mobile-menu-contact {
    display: grid;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.32);
  }

  .mobile-menu-contact p {
    margin: 0;
    display: grid;
    gap: 4px;
  }

  .mobile-menu-contact span {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: .82rem;
    color: rgba(255,255,255,.72);
  }

  .mobile-menu-contact a {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(1.35rem, 5.4vw, 2.3rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .section-grid,
  .two-columns,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .lead {
    width: min(55vw, 560px);
  }

  .hero-image {
    height: min(100svh, 76vw);
    max-width: 72vw;
    object-position: bottom center;
  }

  .intro-layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(18px, 3vw, 38px);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .screen-nav {
    right: 10px;
    gap: 9px;
  }

  .screen-dot {
    width: 8px;
    height: 8px;
  }

  .screen-arrow {
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .hero-section {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .hero-copy {
    z-index: 3;
    padding: 82px 20px 0;
    pointer-events: auto;
  }

  .hero-visual {
    position: relative;
    z-index: 1;
    inset: auto;
    height: 100%;
    min-height: 0;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overflow: hidden;
  }

  .hero-image {
    height: 100%;
    max-height: 100%;
    max-width: 110vw;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
  }

  h1 {
    max-width: 8.8ch;
    font-size: clamp(3.5rem, min(17vw, 12svh), 7.2rem);
    line-height: 0.79;
    margin-bottom: clamp(10px, 1.7svh, 18px);
  }

  h2 {
    font-size: clamp(2.2rem, min(11vw, 8svh), 4.6rem);
  }

  .lead {
    width: min(100%, 36rem);
    font-size: clamp(0.92rem, 3.5vw, 1rem);
    line-height: 1.38;
  }

  .cta-row {
    gap: 10px;
    margin-top: clamp(12px, 2svh, 18px);
  }

  .button {
    min-height: 44px;
    padding: 12px 18px;
  }

  .intro-section {
    display: grid;
    grid-template-rows: minmax(0, 42%) minmax(0, 58%);
    padding: 0;
  }

  .intro-layout {
    display: contents;
  }

  .intro-visual {
    order: 2;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
  }

  .intro-image {
    height: 100%;
    width: auto;
    max-width: 100vw;
    object-position: bottom left;
  }

  .intro-copy {
    order: 1;
    padding: 82px 20px 16px;
    align-content: center;
  }

  .text-stack {
    margin-top: 18px;
  }

  .section-header {
    margin-bottom: 18px;
  }

  .card {
    padding: 20px;
  }

  .card-number {
    margin-bottom: 14px;
  }

  .process-list {
    gap: 10px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .process-list li::before {
    width: 42px;
    height: 42px;
  }

  details {
    padding: 14px 16px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-x: 20px;
    --page-y: 22px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.66rem;
  }

  .button {
    width: 100%;
  }

  .price {
    font-size: clamp(3rem, min(18vw, 13svh), 5rem);
  }

  .page-loader img {
    width: 220px;
    height: 220px;
  }

  .site-footer {
    min-height: 50svh;
    padding: 54px 18px;
  }
}

@media (max-height: 720px) and (min-width: 701px) {
  .hero-copy {
    padding-top: 82px;
  }

  h1 {
    font-size: clamp(4rem, min(12vw, 18svh), 13rem);
  }

  .lead {
    font-size: clamp(0.95rem, 1.25vw, 1.15rem);
    line-height: 1.35;
  }

  .button {
    min-height: 46px;
    padding-block: 12px;
  }
}

@media (max-height: 640px) and (max-width: 700px) {
  .hero-copy {
    padding-top: 76px;
  }

  h1 {
    font-size: clamp(3.1rem, min(15vw, 11svh), 5.4rem);
  }

  .lead {
    font-size: 0.86rem;
  }

  .button {
    min-height: 40px;
    padding-block: 9px;
  }

  .intro-copy {
    padding-top: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  .webdesign-page {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}


/* Universal header safety: mobile må kun vise burger-knappen */
@media (max-width: 940px) {
  .site-header .brand,
  .site-header .codepusher-brand {
    display: none !important;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    background: transparent !important;
    border: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}


/* === Proces-sektion fra tidligere inline CSS === */
/* Proces-sektion: ikoner i højre kolonne + span-tekst i fuld bredde */
    .process-section .process-grid {
      width: min(100%, 1180px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: center;
    }

    .process-section .process-copy {
      width: 100%;
      max-width: none;
    }

    .process-section .process-copy .section-note {
      width: 100%;
      max-width: none;
      margin-top: clamp(18px, 2vw, 28px);
    }

    .process-section .process-list {
      width: 100%;
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(14px, 1.8vw, 22px);
    }

    .process-section .process-list li {
      position: relative;
      min-width: 0;
      width: 100%;
      padding: clamp(20px, 2.1vw, 30px);
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      grid-template-areas:
        "icon title"
        "icon text";
      column-gap: clamp(16px, 2vw, 24px);
      row-gap: 8px;
      align-items: start;
      border: 1px solid rgba(17, 15, 24, .12);
      background: rgba(255, 255, 255, .72);
      box-shadow: 0 24px 70px rgba(17, 15, 24, .08);
      overflow: hidden;
    }

    .process-section .process-list li::before {
      content: attr(data-step);
      position: absolute;
      right: clamp(16px, 2vw, 28px);
      top: clamp(16px, 2vw, 28px);
      font-family: "IBM Plex Mono", ui-monospace, monospace;
      font-size: .82rem;
      font-weight: 700;
      opacity: .42;
    }

    .process-section .process-icon {
      grid-area: icon;
      width: clamp(48px, 4.8vw, 64px);
      height: clamp(48px, 4.8vw, 64px);
      display: grid;
      place-items: center;
      background: #3E3597;
      color: #ffffff;
    }

    .process-section .process-icon svg {
      width: 58%;
      height: 58%;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .process-section .process-list strong {
      grid-area: title;
      display: block;
      width: 100%;
      padding-right: 42px;
      font-size: clamp(1.35rem, 1.9vw, 2.15rem);
      line-height: .98;
      letter-spacing: -0.065em;
    }

    .process-section .process-list span:not(.process-icon) {
      grid-area: text;
      display: block;
      width: 100%;
      max-width: none;
      justify-self: stretch;
      font-size: clamp(1rem, 1.08vw, 1.14rem);
      line-height: 1.45;
      opacity: .78;
    }

    @media (max-width: 940px) {
      .process-section .process-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    @media (max-width: 560px) {
      .process-section .process-list li {
        grid-template-columns: 1fr;
        grid-template-areas:
          "icon"
          "title"
          "text";
      }

      .process-section .process-list strong {
        padding-right: 36px;
      }
    }


/* === Subpage performance helpers === */
.screen {
  content-visibility: auto;
  contain-intrinsic-size: 100svh;
}

.hero-section,
.intro-section {
  content-visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader img {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* === Subpage reveal / slide-in, samme princip som forsiden === */
.subpage-reveal {
  --reveal-delay: 0ms;
}

body.subpage-reveal-ready .subpage-reveal {
  opacity: 0;
  transform: translate3d(0, 72px, 0);
  transition:
    opacity .82s var(--ease),
    transform .82s var(--ease);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

body.subpage-reveal-ready .subpage-reveal.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.subpage-reveal-ready .subpage-reveal.reveal-left {
  transform: translate3d(-56px, 0, 0);
}

body.subpage-reveal-ready .subpage-reveal.reveal-right {
  transform: translate3d(56px, 0, 0);
}

body.subpage-reveal-ready .subpage-reveal.reveal-left.is-inview,
body.subpage-reveal-ready .subpage-reveal.reveal-right.is-inview {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 700px) {
  body.subpage-reveal-ready .subpage-reveal,
  body.subpage-reveal-ready .subpage-reveal.reveal-left,
  body.subpage-reveal-ready .subpage-reveal.reveal-right {
    transform: translate3d(0, 44px, 0);
  }

  body.subpage-reveal-ready .subpage-reveal.is-inview,
  body.subpage-reveal-ready .subpage-reveal.reveal-left.is-inview,
  body.subpage-reveal-ready .subpage-reveal.reveal-right.is-inview {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.subpage-reveal-ready .subpage-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Dots fjernet fra undersiderne */
.screen-nav,
.screen-dot {
  display: none !important;
}


/* === Mobil: scroll uden snap på undersider ===
   Vigtigt:
   .webdesign-page bliver ved med at være scroll-containeren.
   Vi slår kun scroll-snap fra, så lange sektioner kan læses på mobil.
*/
@media (max-width: 700px) {
  body:not(.nav-open):not(.is-loading) {
    overflow: hidden;
  }

  .webdesign-page {
    height: 100svh !important;
    min-height: 100svh;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-snap-type: none !important;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  @supports (height: 100dvh) {
    .webdesign-page {
      height: 100dvh !important;
      min-height: 100dvh;
    }
  }

  .screen {
    height: auto !important;
    min-height: 100svh;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
    overflow: visible;
  }

  @supports (height: 100dvh) {
    .screen {
      min-height: 100dvh;
    }
  }

  .screen-arrow,
  .screen-nav,
  .screen-dot {
    display: none !important;
  }

  .solutions-section,
  .process-section,
  .price-section,
  .faq-section {
    padding-top: clamp(82px, 14svh, 120px);
    padding-bottom: clamp(54px, 10svh, 90px);
  }
}


/* === Mobil: billedfix efter snap blev slået fra ===
   Når sektionerne ikke længere har fast 100svh-height med snap,
   må billeder ikke bruge height:100%, fordi containere kan få auto-højde.
*/
@media (max-width: 700px) {
  .intro-section {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .intro-layout {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    height: auto;
    gap: 0;
  }

  .intro-copy {
    order: 1;
    padding: 82px 20px 24px;
  }

  .intro-visual {
    order: 2;
    display: flex;
    min-height: 0;
    height: auto;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 20px;
    overflow: visible;
  }

  .intro-image {
    width: min(75%, 360px);
    max-width: 75%;
    height: auto !important;
    max-height: 52svh;
    object-fit: contain;
    object-position: bottom left;
  }

  .hero-image {
    width: auto;
    max-width: 75%;
    height: auto !important;
    max-height: 58svh;
    object-fit: contain;
    object-position: bottom center;
  }

  .hero-visual {
    min-height: 42svh;
  }

  .screen img:not(.page-loader img) {
    max-width: 75%;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 700px) {
    .intro-layout {
      min-height: 100dvh;
    }

    .intro-image {
      max-height: 52dvh;
    }

    .hero-image {
      max-height: 58dvh;
    }

    .hero-visual {
      min-height: 42dvh;
    }
  }
}


/* === Processektion: billede i højre side i stedet for kasser === */
.process-section {
  padding: 0;
  overflow: hidden;
}

.process-section .process-grid {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 82px);
  align-items: stretch;
}

.process-section .process-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: var(--page-y) 0 var(--page-y) var(--page-x);
}

.process-section .process-copy .section-note {
  width: min(100%, 680px);
  max-width: 680px;
  margin-top: clamp(18px, 2.2svh, 28px);
  color: var(--muted);
  font-size: clamp(1rem, min(1.45vw, 2.4svh), 1.28rem);
  line-height: 1.5;
}

.process-section .process-copy .section-note + .section-note {
  margin-top: clamp(14px, 1.8svh, 22px);
}

.process-visual {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 var(--page-x) 0 0;
  overflow: hidden;
  pointer-events: none;
}

.process-image {
  display: block;
  width: auto;
  height: min(100%, 74vw);
  max-width: min(52vw, 760px);
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  margin: 0;
  filter: drop-shadow(0 38px 60px rgba(62, 53, 151, .16));
}

@media (max-width: 940px) {
  .process-section .process-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(18px, 3vw, 38px);
  }
}

@media (max-width: 700px) {
  .process-section {
    display: block;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }

  .process-section .process-grid {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    height: auto;
    gap: 0;
  }

  .process-section .process-copy {
    order: 1;
    padding: 82px 20px 24px;
  }

  .process-section .process-copy .section-note {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.48;
  }

  .process-visual {
    order: 2;
    height: auto;
    min-height: 0;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 20px;
    overflow: visible;
  }

  .process-image {
    width: min(75%, 360px);
    max-width: 75%;
    height: auto !important;
    max-height: 52svh;
    object-fit: contain;
    object-position: bottom right;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 700px) {
    .process-section .process-grid {
      min-height: 100dvh;
    }

    .process-image {
      max-height: 52dvh;
    }
  }
}

/* === Rettelse: ens tekststørrelse på webdesign-siden ===
   Samler de teksttyper kunden pegede på:
   - <wordpress.solutions/> og <webdesign.needs/>
   - brødtekst i intro, kort og FAQ-intro
*/
:root {
  --cp-kicker-size: 14px;
  --cp-body-copy-size: clamp(1rem, min(1.45vw, 2.4svh), 1.35rem);
  --cp-body-copy-line: 1.55;
}

.eyebrow,
.section-kicker,
.hero-copy .section-kicker,
.intro-copy .section-kicker,
.section-header .section-kicker,
.price-box .section-kicker,
.process-section .section-kicker,
.faq-section .section-kicker {
  font-size: var(--cp-kicker-size) !important;
  line-height: 1.25;
}

.text-stack,
.text-stack p,
.text-stack li,
.card p,
.card li,
.section-intro {
  font-size: var(--cp-body-copy-size);
  line-height: var(--cp-body-copy-line);
}

.section-intro {
  max-width: 760px;
  margin: clamp(18px, 2.6svh, 30px) 0 0;
  color: var(--muted);
}

@media (max-width: 560px) {
  .eyebrow,
  .section-kicker {
    font-size: var(--cp-kicker-size) !important;
  }
}

/* === Rettelse: proces-tekst placeret som intro-teksten ===
   Flytter og centrerer tekstkolonnen i "Fra idé til færdig side",
   så den opleves som kolonnen i "Webløsninger der matcher dine behov". */
.process-section .process-grid {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 82px);
  align-items: stretch;
}

.process-section .process-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-content: start;
  padding: var(--page-y) 0 var(--page-y) clamp(88px, 10vw, 180px);
}

.process-section .process-copy .section-note {
  width: min(100%, 680px);
  max-width: 680px;
}

.process-section .process-visual {
  padding: 0 var(--page-x) 0 0;
}

@media (max-width: 940px) {
  .process-section .process-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(18px, 3vw, 38px);
  }

  .process-section .process-copy {
    padding-left: var(--page-x);
  }
}

@media (max-width: 700px) {
  .process-section .process-grid {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    height: auto;
    gap: 0;
  }

  .process-section .process-copy {
    order: 1;
    padding: 82px 20px 24px;
    align-content: center;
  }

  .process-section .process-copy .section-note {
    width: 100%;
    max-width: 100%;
  }
}

/* === Rettelse v11: proces-teksten løftet og placeret som intro-kolonnen ===
   Den uploadede HTML pegede stadig på v=9, så denne version tvinger
   proceskolonnen til fuld højde, centrerer indholdet og løfter det en smule,
   så "Fra idé til færdig side" ikke lander for langt nede i viewporten. */
.process-section {
  padding: 0 !important;
  overflow: hidden;
}

.process-section .process-grid {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 82px);
  align-items: stretch;
}

.process-section .process-copy {
  min-width: 0;
  height: 100%;
  display: grid;
  align-content: center;
  justify-content: start;
  padding: var(--page-y) 0 var(--page-y) var(--page-x);
  transform: translateY(clamp(-72px, -7svh, -42px));
}

.process-section .process-copy .section-note {
  width: min(100%, 680px);
  max-width: 680px;
  margin-top: clamp(14px, 1.8svh, 22px);
  color: var(--muted);
  font-size: clamp(.98rem, min(1.2vw, 2svh), 1.12rem);
  line-height: 1.48;
}

.process-section .process-copy .section-note + .section-note {
  margin-top: clamp(12px, 1.6svh, 18px);
}

.process-section .process-visual {
  padding: 0 var(--page-x) 0 0;
}

@supports (height: 100dvh) {
  .process-section .process-grid {
    min-height: 100dvh;
  }
}

@media (max-width: 940px) {
  .process-section .process-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(18px, 3vw, 38px);
  }

  .process-section .process-copy {
    transform: translateY(clamp(-56px, -6svh, -28px));
  }
}

@media (max-width: 700px) {
  .process-section {
    display: block;
    min-height: auto;
    overflow: visible;
  }

  .process-section .process-grid {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    height: auto;
    gap: 0;
  }

  .process-section .process-copy {
    order: 1;
    height: auto;
    padding: 82px 20px 24px;
    transform: none;
  }

  .process-section .process-copy .section-note {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.48;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 700px) {
    .process-section .process-grid {
      min-height: 100dvh;
    }
  }
}



/* === Rettelse v12: tre ændringer fra feedback ===
   1) Proces-brødtekst matcher intro-brødteksten.
   2) Løsningssektionen har tre kolonner: Hjemmeside, Webshop, Specialkodet.
   3) Pris-sektionen er erstattet af "Hvad lægger besøgende vægt på?". */

.text-stack,
.text-stack p,
.text-stack li,
.process-section .process-copy .section-note {
  font-size: var(--cp-body-copy-size) !important;
  line-height: var(--cp-body-copy-line) !important;
}

.process-section .process-copy .section-note {
  width: min(100%, 680px);
  max-width: 680px;
}

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

.solutions-section .section-header {
  margin-bottom: clamp(18px, 3.6svh, 42px);
}

.solutions-section .card {
  padding: clamp(18px, min(2.6vw, 3.8svh), 34px);
}

.solutions-section .card-number {
  margin-bottom: clamp(12px, 2svh, 20px);
}

.solutions-section .card h3 {
  font-size: clamp(1.45rem, min(2.4vw, 4svh), 2.85rem);
}

.solutions-section .card p,
.solutions-section .card li {
  font-size: clamp(.92rem, min(1vw, 1.8svh), 1.02rem) !important;
  line-height: 1.45 !important;
}

.solutions-section .card ul {
  margin-bottom: 0;
}

.visitor-priority-section {
  background: var(--ink);
  color: var(--white);
  text-align: left;
}

.visitor-priority-layout {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  gap: clamp(18px, 3.8svh, 42px);
}

.visitor-priority-header {
  max-width: 980px;
}

.visitor-priority-section h2 {
  max-width: 12.5ch;
  font-size: clamp(2.6rem, min(5.5vw, 8.6svh), 6.1rem);
}

.visitor-priority-intro {
  max-width: 860px;
  margin: clamp(16px, 2.4svh, 26px) 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: var(--cp-body-copy-size) !important;
  line-height: var(--cp-body-copy-line) !important;
}

.visitor-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

.fact-card {
  min-width: 0;
  padding: clamp(16px, min(2vw, 3svh), 26px);
  background: var(--white);
  border: 1px solid rgba(17, 19, 38, 0.08);
  box-shadow: 0 18px 45px rgba(17, 15, 24, 0.07);
  backdrop-filter: none;
  color: var(--ink);
}

.fact-percent {
  display: block;
  margin-bottom: clamp(8px, 1.3svh, 14px);
  color: var(--purple);
  font-size: clamp(2rem, min(4.3vw, 6.4svh), 4.4rem);
  line-height: .85;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.fact-card h3 {
  margin-bottom: clamp(8px, 1.2svh, 12px);
  color: var(--ink);
  font-size: clamp(1.05rem, min(1.45vw, 2.4svh), 1.45rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.fact-card p {
  margin: 0;
  color: rgba(23, 19, 38, 0.74);
  font-size: clamp(.9rem, min(1vw, 1.72svh), 1rem);
  line-height: 1.45;
}


.customer-quote {
  margin: clamp(22px, 3svh, 34px) 0 0;
  padding: clamp(20px, 2.6vw, 34px);
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.45);
}

.customer-quote blockquote {
  margin: 0;
  font-size: clamp(1.05rem, min(1.35vw, 2.2svh), 1.28rem);
  line-height: 1.5;
  font-weight: 700;
  color: var(--ink);
}

.customer-quote figcaption {
  margin-top: 14px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .visitor-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 700px) {
  .process-section .process-copy .section-note {
    font-size: var(--cp-body-copy-size) !important;
    line-height: var(--cp-body-copy-line) !important;
  }

  .visitor-priority-section {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    align-items: start;
    padding-top: 82px;
    padding-bottom: 48px;
  }

  .visitor-priority-layout {
    gap: 22px;
  }



  .visitor-facts {
    grid-template-columns: 1fr;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 700px) {
    .visitor-priority-section {
      min-height: 100dvh;
    }
  }
}
