:root {
  color-scheme: light;
  --ink: #151817;
  --muted: #5c625f;
  --line: #dddcd5;
  --paper: #f3f2ed;
  --white: #fffefa;
  --night: #0e1110;
  --night-soft: #171c1b;
  --accent: #bd784d;
  --logo-green: #0ac18e;
  --accent-2: var(--logo-green);
  --green-deep: var(--logo-green);
  --copper-soft: #d6a07a;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 28px 70px rgba(10, 12, 12, .28);
  --max: 1240px;
  --header-height: 72px;
  --subhero-height: 620px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

#t3-inspector {
  right: auto !important;
  left: 1rem !important;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: manual;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  font-size: 4.45rem;
  font-weight: 840;
  line-height: 1;
}

h2 {
  font-size: 3.15rem;
  font-weight: 820;
  line-height: 1.04;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.16;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 20;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease, box-shadow .2s ease;
}

.site-header[data-scrolled] {
  background: rgba(14, 17, 16, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.brand-logo {
  display: block;
  width: clamp(132px, 15vw, 176px);
}

.brand-logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 254, 250, .82);
  font-size: .9rem;
  font-weight: 720;
}

.nav-links a {
  padding: 7px 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-actions .language-switch {
  display: none;
}

.nav-links a:hover,
.nav-links a.is-active,
.language-link {
  color: var(--white);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 0 !important;
  background: rgba(255, 255, 255, .06);
}

.language-link.is-current {
  border-color: rgba(10, 193, 142, .56);
  background: rgba(10, 193, 142, .1);
}

.language-link:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid rgba(10, 193, 142, .72);
  outline-offset: 3px;
}

.language-flag {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 17px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .22);
}

.language-link-de .language-flag {
  background: linear-gradient(#151515 0 33.333%, #d61724 33.333% 66.666%, #ffcf33 66.666%);
}

.language-link-da .language-flag {
  background: #c8102e;
}

.language-link-da .language-flag::before,
.language-link-da .language-flag::after {
  position: absolute;
  content: "";
  background: #fff;
}

.language-link-da .language-flag::before {
  left: 0;
  right: 0;
  top: 7px;
  height: 3px;
}

.language-link-da .language-flag::after {
  top: 0;
  bottom: 0;
  left: 8px;
  width: 3px;
}

.language-name {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.nav-toggle-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: currentColor;
  transition: background .18s ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .22s ease;
}

.nav-toggle-lines::before { transform: translateY(-6px); }
.nav-toggle-lines::after { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(10, 193, 142, .45);
  background: rgba(10, 193, 142, .15);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  background: var(--night);
  color: var(--white);
  overflow: hidden;
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 17, 16, 1) 0%, rgba(14, 17, 16, .96) 42%, rgba(14, 17, 16, .36) 70%, rgba(14, 17, 16, .16) 100%),
    linear-gradient(180deg, rgba(14, 17, 16, .28), rgba(14, 17, 16, .1) 42%, rgba(14, 17, 16, .66));
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 54px;
}

.hero-copy {
  display: grid;
  gap: 30px;
}

.hero-panel {
  max-width: 530px;
  min-width: 0;
}

.hero-copy p {
  max-width: 47ch;
  color: rgba(255, 254, 250, .82);
  font-size: 1.22rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--green-deep);
  border-radius: var(--radius);
  background: var(--green-deep);
  color: var(--white);
  font-weight: 760;
  box-shadow: 0 14px 34px rgba(10, 193, 142, .18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

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

.button-ghost {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .38);
  box-shadow: none;
}

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

.section {
  padding: 104px 0;
}

.subhero {
  position: relative;
  display: block;
  min-height: var(--subhero-height);
  padding: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 16%, rgba(10, 193, 142, .14), transparent 30%),
    linear-gradient(135deg, rgba(10, 193, 142, .1), transparent 38%),
    linear-gradient(180deg, #0e1110 0%, #111615 100%);
  color: var(--white);
  overflow: hidden;
}

.subhero::before {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 254, 250, .052) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 254, 250, .035) 0 1px, transparent 1px 72px);
  content: "";
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: .5;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: nuweb-subhero-grid 34s linear infinite;
  z-index: 0;
}

.subhero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(10, 193, 142, .18), transparent 28%),
    linear-gradient(112deg, transparent 18%, rgba(10, 193, 142, 0) 36%, rgba(10, 193, 142, .2) 49%, rgba(255, 254, 250, .08) 51%, rgba(10, 193, 142, 0) 66%, transparent 84%);
  background-size: 220% 100%;
  content: "";
  mix-blend-mode: screen;
  opacity: .68;
  pointer-events: none;
  animation: nuweb-subhero-sheen 18s ease-in-out infinite alternate;
  z-index: 0;
}

.subhero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .48fr);
  gap: clamp(42px, 8vw, 108px);
  align-items: start;
}

.subhero > .section-inner {
  position: relative;
  z-index: 1;
  min-height: var(--subhero-height);
  padding-top: 140px;
  padding-bottom: 48px;
  box-sizing: border-box;
}

.subhero-copy {
  display: grid;
  gap: 22px;
  max-width: 720px;
}

.subhero h1 {
  max-width: 10.5ch;
}

.subhero-kicker {
  color: var(--accent-2);
  font-size: .8rem;
  font-weight: 880;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent-2);
  font-size: .78rem;
  font-weight: 880;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.subhero p {
  color: rgba(255, 254, 250, .76);
  font-size: 1.18rem;
  max-width: 62ch;
}

.legal-hero,
.legal-hero > .section-inner {
  min-height: 318px;
}

.legal-hero > .section-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-height) + 46px);
  padding-bottom: 46px;
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.legal-hero .subhero-kicker {
  margin-bottom: 12px;
}

.legal-body {
  max-width: 62ch;
}

.legal-body p {
  color: rgba(255, 254, 250, .76);
  font-size: 1.08rem;
  line-height: 1.65;
}

.legal-body p + p {
  margin-top: 1rem;
}

.legal-body h2,
.legal-body h3,
.legal-body p:has(> strong:first-child) {
  margin-top: 1.8rem;
  color: var(--paper);
  font-size: 1.1rem;
  line-height: 1.3;
}

.legal-body > :first-child {
  margin-top: 0;
}

.legal-body ul,
.legal-body ol {
  margin: 1rem 0 1.2rem;
  padding-left: 1.35rem;
  color: rgba(255, 254, 250, .76);
}

.legal-body li + li {
  margin-top: .35rem;
}

.legal-body a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.legal-section {
  background: var(--white);
  padding: 72px 0 96px;
}

.legal-section .legal-body p,
.legal-section .legal-body ul,
.legal-section .legal-body ol {
  color: var(--muted);
}

.legal-section .legal-body h2,
.legal-section .legal-body h3,
.legal-section .legal-body p:has(> strong:first-child) {
  color: var(--ink);
}

.subhero-focus {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 1px;
  width: 100%;
  min-height: 376px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
}

.subhero-focus article,
.price-hero-panel a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 8px 24px;
  align-items: start;
  min-height: 124px;
  padding: 26px;
  background: rgba(255, 255, 255, .045);
}

.subhero-focus span,
.price-hero-panel span {
  grid-row: span 2;
  color: var(--accent-2);
  font-size: clamp(2.35rem, 3.1vw, 3.1rem);
  font-weight: 900;
  line-height: .9;
}

.subhero-focus strong,
.price-hero-panel strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.18;
}

.subhero-focus p,
.price-hero-panel small {
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255, 254, 250, .64);
}

.narrow {
  max-width: 850px;
}

.subhero .narrow {
  display: grid;
  align-content: start;
  gap: 22px;
}

.legal-hero > .section-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}

.two-col,
.feature-split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
}

.detail-media {
  margin: 0;
  aspect-ratio: 45 / 31;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
}

.detail-media picture,
.detail-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-media img {
  object-fit: cover;
}

.solution-detail-hero-grid {
  grid-template-columns: minmax(0, .76fr) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 104px);
}

.solution-detail-copy {
  display: grid;
  align-content: center;
  max-width: 620px;
  min-height: clamp(430px, 42vw, 560px);
  padding: clamp(36px, 5vw, 72px) 0;
}

.solution-detail-copy .meta {
  margin-bottom: 24px;
}

.solution-detail-copy h1 {
  max-width: 11ch;
}

.solution-detail-copy h1 + p {
  max-width: 46ch;
  margin-top: 34px;
  font-size: clamp(1.06rem, 1.15vw, 1.22rem);
  line-height: 1.68;
}

.solution-consulting-section {
  background:
    linear-gradient(180deg, rgba(10, 193, 142, .045), transparent 42%),
    var(--white);
}

.solution-consulting {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.solution-consulting-card,
.solution-capabilities {
  position: relative;
  display: grid;
  align-content: start;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(21, 24, 23, .12);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 250, .78);
  box-shadow: 0 20px 56px rgba(14, 17, 16, .07);
}

.solution-consulting-card {
  min-height: 250px;
}

.solution-consulting-card span,
.solution-capabilities > span {
  margin-bottom: 22px;
  color: var(--green-deep);
  font-size: .74rem;
  font-weight: 880;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.solution-consulting-card h2,
.solution-capabilities h2 {
  max-width: 16ch;
  font-size: clamp(1.5rem, 1.85vw, 2.05rem);
  line-height: 1.08;
}

.solution-consulting-card p {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.solution-capabilities {
  grid-column: 1 / -1;
}

.solution-capabilities h2 {
  max-width: 24ch;
}

.solution-capabilities.richtext ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 36px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.solution-capabilities.richtext li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: .98rem;
  font-weight: 720;
  line-height: 1.35;
}

.solution-capabilities.richtext li + li {
  margin-top: 0;
}

.solution-capabilities.richtext li::before {
  position: absolute;
  top: .42em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-deep);
  content: "";
}

.lead-stack {
  display: grid;
  gap: 20px;
  font-size: 1.08rem;
}

.craft-section {
  background:
    radial-gradient(circle at 22% 20%, rgba(10, 193, 142, .08), transparent 34%),
    linear-gradient(180deg, #fffefa 0%, var(--paper) 100%);
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.45fr);
  gap: 70px;
  align-items: center;
}

.craft-intro {
  display: grid;
  gap: 22px;
}

.craft-intro h2 {
  font-size: 2.25rem;
  line-height: 1.08;
}

.craft-intro p {
  font-size: 1.06rem;
}

.craft-slider {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.craft-slider-tools {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.craft-slider-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(19, 24, 23, .16);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, .82);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(19, 24, 23, .08);
}

.craft-slider-button::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.craft-slider-button[data-feature-prev]::before {
  transform: translateX(2px) rotate(-135deg);
}

.craft-slider-button[data-feature-next]::before {
  transform: translateX(-2px) rotate(45deg);
}

.craft-slider-button:disabled {
  opacity: .36;
  cursor: default;
}

.craft-line {
  position: relative;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  margin: 0;
  padding: 2px 0 10px;
  list-style: none;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.craft-line::-webkit-scrollbar {
  display: none;
}

.craft-line li {
  position: relative;
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 18px;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 258px;
  padding: 22px;
  border: 1px solid rgba(19, 24, 23, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(10, 193, 142, .08), rgba(255, 254, 250, .95) 48%),
    var(--white);
  box-shadow: 0 20px 46px rgba(19, 24, 23, .08);
  scroll-snap-align: start;
  text-align: left;
}

.craft-line span {
  display: block;
  color: var(--green-deep);
  font-size: clamp(3.35rem, 4.2vw, 5.15rem);
  font-weight: 920;
  line-height: .82;
}

.craft-line strong {
  max-width: 12ch;
  font-size: 1.08rem;
  line-height: 1.18;
  text-wrap: balance;
}

.craft-line p {
  max-width: 24ch;
  font-size: .97rem;
  line-height: 1.55;
}

.intro-band {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2 {
  max-width: 12ch;
}

.text-link {
  color: var(--accent-2);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.solutions-editorial {
  background: var(--night);
  color: var(--white);
  padding-bottom: 60px;
}

.solutions-editorial + .workflow-section .feature-split {
  padding-top: 44px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: 90px;
  align-items: start;
}

.editorial-heading {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 26px;
}

.editorial-heading h2 {
  max-width: 10.5ch;
}

.solution-editorial-list {
  display: grid;
}

.solution-editorial-list article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: 34px;
  row-gap: 10px;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.solution-editorial-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.solution-editorial-list span {
  grid-row: 1 / span 2;
  color: var(--accent-2);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: .82;
}

.solution-editorial-list h3 {
  grid-column: 2;
  font-size: 1.45rem;
}

.solution-editorial-list p {
  grid-column: 2;
  margin-top: 0;
  color: rgba(255, 254, 250, .7);
  max-width: 46ch;
  font-size: .98rem;
  line-height: 1.62;
}

.solution-grid,
.project-grid,
.price-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.solution-card,
.project-card,
.price-card,
.process-grid article,
.contact-card,
.contact-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.solution-card img,
.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.solution-card div,
.project-card div,
.price-card,
.process-grid article,
.contact-card,
.contact-note {
  padding: 24px;
}

.solution-card,
.project-card,
.price-card {
  min-height: 100%;
}

.solution-card p,
.project-card p,
.price-card p {
  margin-top: 12px;
}

.dark-band {
  background: var(--night);
  color: var(--white);
}

.dark-band p {
  color: rgba(255, 254, 250, .76);
}

.workflow-section {
  padding: 0;
}

.workflow-section .feature-split {
  padding: 72px 0;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  gap: 72px;
  align-items: start;
}

.workflow-media {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  background: var(--night);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.workflow-media img,
.about-hero img {
  width: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04) brightness(1.08);
}

.workflow-media img {
  aspect-ratio: 4 / 3;
}

.multilingual-teaser-section,
.multilingual-section {
  background: var(--white);
}

.multilingual-teaser {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.multilingual-teaser > div:first-child,
.multilingual-bento article,
.multilingual-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(19, 22, 20, .045);
}

.multilingual-teaser > div:first-child {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 3.4vw, 48px);
}

.multilingual-teaser h2,
.multilingual-lead h2,
.multilingual-strip h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 2.65vw, 2.95rem);
  line-height: 1.03;
}

.language-bento,
.multilingual-bento {
  display: grid;
  gap: 16px;
}

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

.language-bento article,
.multilingual-bento article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(24px, 3vw, 38px);
}

.language-bento span,
.multilingual-bento article > span {
  color: var(--accent-2);
  font-size: clamp(2.15rem, 3.2vw, 3.6rem);
  font-weight: 900;
  line-height: .9;
}

.language-bento strong {
  font-size: 1.08rem;
  line-height: 1.15;
}

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

.multilingual-lead {
  grid-column: span 2;
}

.multilingual-lead p:last-child {
  max-width: 66ch;
  font-size: 1.08rem;
  line-height: 1.7;
}

.multilingual-dark .feature-split {
  padding: 108px 0;
}

.multilingual-strip-section {
  padding: 44px 0;
  background: var(--white);
}

.multilingual-strip {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .64fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(34px, 4vw, 58px) clamp(34px, 4.5vw, 64px);
}

.multilingual-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-self: end;
  max-width: 48ch;
}

.multilingual-strip-copy p {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1.04rem, 1.2vw, 1.2rem);
  line-height: 1.55;
}

.about-hero img {
  height: clamp(300px, 27vw, 360px);
  border-radius: var(--radius-lg);
}

.about-hero h1 {
  max-width: 13ch;
}

.feature-split div {
  display: grid;
  gap: 22px;
}

.process-section {
  background: var(--white);
}

.process-section h2 {
  max-width: 13ch;
  margin-bottom: 42px;
}

.process-section .process-grid article {
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  padding: 28px 0 0;
  overflow: visible;
}

.process-grid article span {
  display: block;
  color: var(--green-deep);
  font-size: clamp(3.2rem, 4.6vw, 5.35rem);
  font-weight: 900;
  line-height: .9;
  margin-bottom: 36px;
}

.process-grid article h3 + p {
  margin-top: 12px;
}

.process-section .process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-section .process-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .075), transparent 42%),
    var(--white);
  box-shadow: 0 18px 52px rgba(14, 17, 16, .055);
}

.process-section .process-grid article:nth-child(3) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(112px, .22fr) minmax(0, 1fr);
  align-items: center;
  min-height: 176px;
  background:
    linear-gradient(90deg, rgba(10, 193, 142, .12), rgba(10, 193, 142, .035) 46%, transparent),
    var(--white);
}

.process-section .process-grid article:nth-child(3) span {
  grid-row: span 2;
  margin-bottom: 0;
}

.process-section .process-grid article span {
  margin-bottom: 14px;
}

.project-stage {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.project-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(1.08);
  opacity: .72;
}

.project-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 17, 16, .96), rgba(14, 17, 16, .34) 56%, rgba(14, 17, 16, .72)),
    linear-gradient(0deg, rgba(14, 17, 16, .9), rgba(14, 17, 16, .08) 68%);
  content: "";
}

.project-stage-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1fr);
  gap: 70px;
  align-items: end;
  padding: 104px 0;
}

.project-stage-copy {
  display: grid;
  gap: 22px;
}

.project-stage-copy h2 {
  max-width: 12ch;
}

.project-stage-copy p {
  color: rgba(255, 254, 250, .76);
}

.project-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.project-rail article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 160px;
  padding: 28px 32px;
  background: rgba(14, 17, 16, .68);
}

.project-rail article:only-child {
  grid-column: 1 / -1;
  min-height: 0;
  padding-bottom: 30px;
}

.project-rail p {
  color: rgba(255, 254, 250, .72);
}

.project-rail article .meta {
  margin-bottom: 7px;
  color: rgba(255, 254, 250, .68);
  font-size: .75rem;
  line-height: 1.15;
}

.project-rail article h3 {
  margin-bottom: 9px;
  font-size: clamp(1.35rem, 1.45vw, 1.62rem);
  line-height: 1.08;
}

.project-rail article > p:last-child {
  max-width: 66ch;
  font-size: clamp(1rem, 1.04vw, 1.12rem);
  line-height: 1.44;
}

.solution-list,
.project-list {
  display: grid;
  gap: 26px;
}

.detail-row,
.project-wide {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-row img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius);
}

.detail-row img {
  object-fit: cover;
}

.project-browser {
  overflow: hidden;
  border: 1px solid rgba(21, 24, 23, .16);
  border-radius: var(--radius-lg);
  background: #171918;
  box-shadow: 0 26px 72px rgba(14, 17, 16, .2);
}

.browser-chrome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .64);
}

.browser-dots {
  display: inline-flex;
  gap: 6px;
}

.browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
}

.browser-address {
  overflow: hidden;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  font-size: .76rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-screen {
  position: relative;
  background: #ebe9e2;
}

.browser-screen::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 84px;
  background: linear-gradient(0deg, rgba(23, 25, 24, .24), rgba(23, 25, 24, 0));
  content: "";
  pointer-events: none;
}

.browser-viewport {
  height: clamp(460px, 44vw, 600px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 255, 255, .5) rgba(0, 0, 0, .08);
  scrollbar-width: thin;
}

.browser-viewport::-webkit-scrollbar {
  width: 9px;
}

.browser-viewport::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, .08);
}

.browser-viewport::-webkit-scrollbar-thumb {
  border: 2px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
}

.project-screenshot {
  width: 100%;
  height: auto;
  max-width: none;
}

.browser-scroll-cue {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  background: rgba(14, 17, 16, .18);
  pointer-events: none;
}

.browser-scroll-cue::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  content: "";
  animation: nuweb-browser-scroll-cue 1.8s ease-in-out infinite;
  transform: translateX(-50%);
}

.detail-row > div,
.project-copy {
  padding: clamp(8px, 1.8vw, 22px) 0;
  display: grid;
  gap: 24px;
}

.project-wide h2 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 3.75vw, 4.1rem);
  line-height: 1.01;
}

.project-copy > p {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.68;
}

.detail-pair,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-pair div,
.detail-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, .72);
}

.detail-actions {
  margin-top: 24px;
}

.project-wide .detail-pair {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 62ch;
}

.project-wide .detail-pair div {
  padding: 0 0 0 18px;
  border: 0;
  border-left: 2px solid rgba(189, 120, 77, .55);
  border-radius: 0;
  background: transparent;
}

.project-wide .detail-pair strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 880;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-wide .detail-pair p,
.project-wide .richtext p {
  font-size: 1rem;
  line-height: 1.68;
}

.project-wide .richtext {
  max-width: 66ch;
}

.detail-full {
  grid-column: 1 / -1;
}

.richtext ul,
.contact-note ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.richtext li + li,
.contact-note li + li {
  margin-top: .45rem;
}

.meta {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
}

.price-hero {
  padding-bottom: 0;
}

.price-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .48fr);
  gap: clamp(42px, 8vw, 108px);
  align-items: start;
}

.price-hero-copy {
  max-width: 860px;
}

.price-hero-copy h1 {
  max-width: 16ch;
  text-wrap: balance;
  hyphens: none;
}

.price-hero-copy p {
  max-width: 62ch;
}

.price-hero-copy .button {
  margin-top: 8px;
}

.price-hero-panel {
  display: grid;
  grid-auto-rows: 1fr;
  overflow: hidden;
  width: 100%;
  min-height: 376px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.price-hero-panel a {
  color: var(--white);
  text-decoration: none;
  min-height: 112px;
}

.price-hero-panel a + a {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.price-hero-panel .price-hero-custom {
  background:
    linear-gradient(150deg, rgba(10, 193, 142, .22), rgba(255, 255, 255, .05)),
    rgba(255, 255, 255, .06);
}

.price-hero-panel small {
  white-space: normal;
}

.pricing-section {
  padding-top: 92px;
}

.pricing-stack {
  display: grid;
  gap: 26px;
}

.pricing-package {
  display: grid;
  grid-template-columns: minmax(250px, .86fr) minmax(240px, .72fr) minmax(220px, .56fr) minmax(220px, .56fr);
  gap: 34px;
  align-items: start;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(19, 22, 20, .06);
  scroll-margin-top: 112px;
}

.pricing-package.is-featured {
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .18), rgba(10, 193, 142, 0) 36%),
    var(--night);
  box-shadow: 0 28px 72px rgba(19, 22, 20, .22);
}

.pricing-intro > span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent-2);
  font-size: clamp(3.4rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: .82;
}

.pricing-intro h2 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 3vw, 3.45rem);
  line-height: .98;
  text-wrap: balance;
  hyphens: none;
}

.pricing-intro p {
  max-width: 34ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.pricing-package.is-featured .pricing-intro p,
.pricing-package.is-featured .pricing-money span,
.pricing-package.is-featured .pricing-money small,
.pricing-package.is-featured .pricing-money p,
.pricing-package.is-featured .pricing-list li {
  color: rgba(255, 254, 250, .72);
}

.pricing-money {
  display: grid;
  gap: 18px;
}

.pricing-money div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pricing-package.is-featured .pricing-money div {
  border-color: rgba(255, 255, 255, .14);
}

.pricing-money span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-money strong {
  display: block;
  font-size: clamp(1.65rem, 2.2vw, 2.65rem);
  line-height: 1.04;
  text-wrap: balance;
}

.pricing-money small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .9rem;
}

.pricing-money p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
}

.pricing-money p strong {
  display: inline;
  font-size: 1rem;
}

.pricing-list {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pricing-package.is-featured .pricing-list {
  border-color: rgba(255, 255, 255, .14);
}

.pricing-list h3 {
  margin-bottom: 18px;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-list ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.44;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: .56em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.pricing-care-section {
  background: var(--night);
  color: var(--white);
}

.pricing-care {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.pricing-care h2,
.pricing-closing h2 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: .98;
  text-wrap: balance;
  hyphens: none;
}

.page-about-da .pricing-closing h2,
.page-about-de .pricing-closing h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 2.2vw, 2.65rem);
  line-height: 1.06;
}

.pricing-care p {
  max-width: 58ch;
  margin-top: 22px;
  color: rgba(255, 254, 250, .72);
  font-size: 1.08rem;
  line-height: 1.72;
}

.care-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.care-list span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 254, 250, .82);
  font-size: .96rem;
  line-height: 1.2;
}

.pricing-closing-section {
  background: var(--white);
}

.pricing-closing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
}

.pricing-closing article {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.pricing-closing p {
  max-width: 58ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.pricing-closing .text-link {
  margin-top: 22px;
}

.contact-section {
  background:
    linear-gradient(180deg, var(--white) 0%, #f5f6f2 100%);
}

.contact-bento {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.contact-card,
.contact-note {
  position: relative;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(30px, 4vw, 56px);
  border-radius: var(--radius-lg);
}

.contact-card-primary {
  overflow: hidden;
  border-color: rgba(255, 254, 250, .14);
  background:
    linear-gradient(135deg, rgba(10, 193, 142, .2), transparent 42%),
    linear-gradient(160deg, #0e1110 0%, #151c1a 62%, #10241f 100%);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(14, 17, 16, .18);
}

.contact-card-primary::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 254, 250, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 254, 250, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  opacity: .38;
  pointer-events: none;
}

.contact-card-primary > * {
  position: relative;
  z-index: 1;
}

.contact-note-steps {
  background:
    linear-gradient(180deg, rgba(10, 193, 142, .045), transparent 42%),
    var(--white);
  box-shadow: 0 22px 58px rgba(14, 17, 16, .08);
}

.contact-kicker {
  color: var(--green-deep);
  font-size: .76rem;
  font-weight: 880;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-card h2,
.contact-note h2 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 3.15vw, 3.55rem);
  line-height: .98;
}

.contact-note h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 2.65vw, 3rem);
}

.contact-intro {
  max-width: 36ch;
  color: rgba(255, 254, 250, .72);
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  line-height: 1.58;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.contact-card .contact-action {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 254, 250, .16);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, .07);
}

.contact-action span {
  color: rgba(255, 254, 250, .58);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-action strong {
  color: var(--white);
  font-size: clamp(1.05rem, 1.22vw, 1.22rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-note .contact-step-list {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.contact-note .contact-step-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.contact-note .contact-step-list li:last-child {
  padding-bottom: 0;
}

.contact-note .contact-step-list span {
  color: var(--green-deep);
  font-size: clamp(2.2rem, 3.4vw, 3.05rem);
  font-weight: 900;
  line-height: .9;
}

.contact-note .contact-step-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.contact-note .contact-step-list p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-note .text-link {
  margin-top: 8px;
}

.footer-cta {
  padding: 76px 0;
  background: var(--accent-2);
  color: var(--white);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-panel .button {
  flex: 0 0 auto;
  min-width: max-content;
  padding-inline: 34px;
  white-space: nowrap;
}

.cta-panel p {
  margin-top: 12px;
  color: rgba(255, 254, 250, .8);
}

.site-footer {
  padding: 56px 0;
  background: var(--night);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 42px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 254, 250, .72);
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-top: 8px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  width: 152px;
}

.cms-missing {
  display: inline-block;
  padding: .35rem .5rem;
  border: 2px solid #d20f39;
  border-radius: var(--radius);
  color: #d20f39;
  background: #fff;
  font-weight: 800;
}

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

@media (max-width: 1180px) {
  .price-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .price-hero-panel {
    max-width: 560px;
  }

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

  .pricing-intro {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    column-gap: 26px;
    align-items: start;
  }

  .pricing-intro > span {
    margin-bottom: 0;
  }

  .pricing-intro p {
    grid-column: 2;
  }

  .solution-capabilities.richtext ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --subhero-height: 560px;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-header[data-menu-open],
  .site-header[data-scrolled][data-menu-open] {
    background: rgba(14, 17, 16, .94);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
  }

  .site-header::after {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 0;
    background: rgba(6, 8, 8, .48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    content: "";
    transition: opacity .24s ease, visibility 0s linear .24s;
  }

  .site-header[data-menu-open]::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-actions .language-switch {
    display: inline-flex;
  }

  .nav-actions .language-link {
    min-height: 42px;
    border-radius: var(--radius);
  }

  .nav-links .language-switch {
    display: none;
  }

  .nav-links {
    position: fixed;
    z-index: 3;
    top: calc(var(--header-height) + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(22, 27, 25, .99), rgba(10, 13, 12, .985));
    box-shadow: 0 28px 72px rgba(0, 0, 0, .34);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(.985);
    transform-origin: top right;
    transition: opacity .22s ease, transform .28s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .28s;
  }

  .nav-links::before {
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 193, 142, 0), rgba(10, 193, 142, .75), rgba(10, 193, 142, 0));
    content: "";
  }

  .nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .065);
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity .22s ease, transform .28s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }

  .nav-links a::before {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-right: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    content: "";
    transition: background .2s ease, box-shadow .2s ease;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    border-color: rgba(10, 193, 142, .48);
    background: rgba(10, 193, 142, .13);
  }

  .nav-links a.is-active::before {
    background: var(--accent-2);
    box-shadow: 0 0 0 5px rgba(10, 193, 142, .12);
  }

  .nav-links[data-open] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-links[data-open] a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links[data-open] a:nth-child(1) { transition-delay: .03s; }
  .nav-links[data-open] a:nth-child(2) { transition-delay: .06s; }
  .nav-links[data-open] a:nth-child(3) { transition-delay: .09s; }
  .nav-links[data-open] a:nth-child(4) { transition-delay: .12s; }
  .nav-links[data-open] a:nth-child(5) { transition-delay: .15s; }

  @media (prefers-reduced-motion: reduce) {
    .nav-links,
    .nav-links a,
    .site-header::after,
    .nav-toggle-lines,
    .nav-toggle-lines::before,
    .nav-toggle-lines::after {
      transition: none;
    }
  }

  .hero-grid,
  .subhero-grid,
  .craft-grid,
  .editorial-grid,
  .multilingual-teaser,
  .language-bento,
  .multilingual-bento,
  .multilingual-strip,
  .project-stage-content,
  .two-col,
  .feature-split,
  .contact-grid,
  .detail-row,
  .project-wide,
  .solution-detail-hero-grid,
  .solution-consulting {
    grid-template-columns: 1fr;
  }

  .solution-detail-copy {
    min-height: 0;
    padding: 24px 0 0;
  }

  .subhero-grid {
    align-items: start;
    gap: 34px;
  }

  .subhero-focus {
    max-width: 560px;
  }

  .subhero > .section-inner {
    padding-top: 126px;
    padding-bottom: 62px;
  }

  .subhero-copy {
    gap: 18px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-stage {
    min-height: 680px;
    align-items: end;
    padding-bottom: 54px;
  }

  .hero-backdrop img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 17, 16, .92), rgba(14, 17, 16, .5)),
      linear-gradient(0deg, rgba(14, 17, 16, .92), rgba(14, 17, 16, .16) 68%);
  }

  .craft-grid,
  .editorial-grid,
  .project-stage-content {
    gap: 42px;
  }

  .craft-line {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .craft-line li {
    grid-template-columns: 96px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .craft-line strong,
  .craft-line p {
    grid-column: 2;
  }

  .craft-line p {
    max-width: 42ch;
  }

  .editorial-heading {
    position: static;
  }

  .workflow-section .feature-split {
    padding: 72px 0;
    grid-template-columns: 1fr;
  }

  .multilingual-lead {
    grid-column: auto;
  }

  .multilingual-strip {
    align-items: start;
  }

  .multilingual-strip-copy {
    justify-self: start;
  }

  .project-stage {
    min-height: auto;
  }

  .project-stage-content {
    padding: 72px 0;
  }

  .project-rail {
    grid-template-columns: 1fr;
  }

  .project-wide {
    gap: 28px;
    padding: 18px;
  }

  .detail-row {
    gap: 28px;
    padding: 18px;
  }

  .detail-row img {
    min-height: 280px;
  }

  .browser-viewport {
    height: min(620px, 72vh);
  }

  .project-wide h2 {
    max-width: 14ch;
    font-size: 3.2rem;
  }

  .solution-grid,
  .project-grid,
  .price-grid,
  .pricing-package,
  .pricing-care,
  .pricing-closing,
  .process-grid,
  .detail-pair,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .solution-capabilities.richtext ul {
    grid-template-columns: 1fr;
  }

  .detail-full {
    grid-column: auto;
  }

  .section-head,
  .cta-panel {
    display: grid;
  }

  .pricing-intro {
    display: block;
  }

  .pricing-intro > span {
    margin-bottom: 22px;
  }

  .pricing-intro p {
    max-width: 48ch;
  }

  .pricing-care,
  .pricing-closing,
  .contact-bento {
    gap: 26px;
  }
}

@media (min-width: 720px) and (max-width: 900px) {
  :root {
    --subhero-height: 660px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section {
    padding: 78px 0;
  }

  .section-head,
  .cta-panel {
    display: flex;
    align-items: end;
  }

  .subhero-grid,
  .price-hero-grid,
  .solution-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(258px, .72fr);
    gap: 30px;
    align-items: center;
  }

  .price-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .price-hero-panel {
    max-width: 560px;
  }

  .subhero > .section-inner {
    padding-top: 116px;
    padding-bottom: 54px;
  }

  .subhero h1 {
    max-width: 12ch;
  }

  .subhero p {
    font-size: 1.06rem;
  }

  .subhero-focus,
  .price-hero-panel {
    min-height: 0;
    max-width: none;
  }

  .subhero-focus article,
  .price-hero-panel a {
    grid-template-columns: 66px minmax(0, 1fr);
    min-height: 108px;
    gap: 7px 16px;
    padding: 20px;
  }

  .subhero-focus span,
  .price-hero-panel span {
    font-size: 2.35rem;
  }

  .subhero-focus strong,
  .price-hero-panel strong {
    font-size: .98rem;
  }

  .subhero-focus p,
  .price-hero-panel small {
    font-size: .86rem;
    line-height: 1.42;
  }

  .legal-hero,
  .legal-hero > .section-inner {
    min-height: 300px;
  }

  .legal-hero > .section-inner {
    padding-top: 108px;
    padding-bottom: 40px;
  }

  .legal-hero h1 {
    max-width: none;
    font-size: 3.2rem;
  }

  .craft-grid,
  .editorial-grid,
  .multilingual-teaser,
  .feature-split,
  .workflow-section .feature-split,
  .project-stage-content,
  .pricing-care,
  .pricing-closing,
  .contact-bento {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 34px;
  }

  .craft-line {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .craft-line li {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .craft-line span {
    font-size: 3.1rem;
  }

  .craft-intro h2,
  .editorial-heading h2,
  .project-stage-copy h2,
  .process-section h2,
  .pricing-care h2,
  .pricing-closing h2,
  .contact-card h2,
  .contact-note h2 {
    font-size: 2.15rem;
    line-height: 1.04;
  }

  .editorial-heading {
    position: static;
  }

  .solution-editorial-list article {
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 22px;
    padding: 28px 0;
  }

  .solution-editorial-list span {
    font-size: 3.15rem;
  }

  .workflow-section .feature-split,
  .multilingual-dark .feature-split {
    padding: 64px 0;
  }

  .solutions-editorial {
    padding-bottom: 46px;
  }

  .solutions-editorial + .workflow-section .feature-split {
    padding-top: 36px;
  }

  .language-bento {
    grid-template-columns: 1fr;
  }

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

  .multilingual-lead {
    grid-column: 1 / -1;
  }

  .language-bento article,
  .multilingual-bento article {
    padding: 24px;
  }

  .multilingual-strip {
    grid-template-columns: minmax(0, .9fr) minmax(260px, .68fr);
    gap: 30px;
    padding: 34px;
  }

  .project-stage {
    min-height: 600px;
  }

  .project-stage-content {
    padding: 82px 0;
  }

  .project-rail {
    grid-template-columns: 1fr;
  }

  .project-rail article {
    min-height: 0;
    padding: 22px 24px;
  }

  .solution-list .detail-row,
  .detail-row,
  .solution-detail-hero-grid,
  .solution-consulting {
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1fr);
  }

  .detail-row {
    gap: 26px;
    padding: 18px;
  }

  .detail-row img {
    min-height: 320px;
  }

  .detail-row > div,
  .project-copy {
    gap: 18px;
  }

  .solution-consulting-card,
  .solution-capabilities {
    padding: 28px;
  }

  .solution-capabilities {
    grid-column: 1 / -1;
  }

  .solution-capabilities.richtext ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-wide {
    gap: 24px;
    padding: 18px;
  }

  .browser-viewport {
    height: 420px;
  }

  .project-wide h2 {
    max-width: 18ch;
    font-size: 2.45rem;
  }

  .project-copy > p,
  .project-wide .detail-pair p,
  .project-wide .richtext p {
    font-size: .98rem;
    line-height: 1.58;
  }

  .solution-grid,
  .project-grid,
  .price-grid,
  .process-grid,
  .detail-pair,
  .detail-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    gap: 26px;
  }

  .process-grid article {
    padding-top: 22px;
  }

  .process-grid article span {
    margin-bottom: 22px;
  }

  .process-section .process-grid article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .pricing-package {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    padding: 34px;
  }

  .pricing-intro {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    column-gap: 22px;
  }

  .pricing-intro > span {
    margin-bottom: 0;
    font-size: 3rem;
  }

  .pricing-intro p {
    grid-column: 2;
    max-width: 52ch;
  }

  .pricing-money strong {
    font-size: 1.9rem;
  }

  .contact-card,
  .contact-note {
    padding: 34px;
  }

  .contact-note .contact-step-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1.18fr .8fr .8fr;
    gap: 28px;
  }
}

@media (min-width: 800px) and (max-width: 900px) {
  .project-wide {
    grid-template-columns: minmax(315px, .92fr) minmax(0, 1fr);
  }

  .project-wide .detail-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .browser-viewport {
    height: 500px;
  }
}

@media (min-width: 561px) and (max-width: 1180px) {
  .page-about-da .process-section,
  .page-about-de .process-section {
    padding: 64px 0 62px;
  }

  .craft-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: start;
  }

  .craft-intro {
    max-width: 760px;
  }

  .craft-slider {
    max-width: 920px;
  }

  .craft-slider-tools {
    justify-content: flex-start;
  }

  .craft-slider .craft-line {
    display: flex;
    gap: 16px;
    max-width: none;
  }

  .craft-slider .craft-line li {
    grid-template-columns: 1fr;
    flex-basis: calc((100% - 16px) / 2);
    min-height: 236px;
    padding: 22px;
    border-top: 1px solid rgba(19, 24, 23, .12);
  }

  .craft-slider .craft-line li:first-child {
    border-top: 1px solid rgba(19, 24, 23, .12);
  }

  .craft-slider .craft-line span,
  .craft-slider .craft-line strong,
  .craft-slider .craft-line p {
    grid-column: auto;
  }

  .craft-line {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 860px;
  }

  .craft-line li {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 8px 26px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }

  .craft-line li:first-child {
    border-top: 0;
  }

  .craft-line span {
    grid-row: span 2;
    font-size: 3.35rem;
  }

  .craft-line strong,
  .craft-line p {
    grid-column: 2;
  }

  .craft-line strong {
    max-width: none;
  }

  .craft-line p {
    max-width: 46ch;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) {
    min-height: auto;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) > .section-inner {
    min-height: auto;
    padding-top: clamp(112px, 12vw, 136px);
    padding-bottom: clamp(58px, 7vw, 78px);
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) .subhero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) .subhero-copy {
    max-width: 760px;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) h1 {
    max-width: 13.5ch;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) .subhero-focus {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
    max-width: none;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) .subhero-focus article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background:
      linear-gradient(150deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
      rgba(255, 255, 255, .045);
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) .subhero-focus span {
    grid-row: auto;
    font-size: 2.15rem;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) .subhero-focus strong {
    font-size: 1rem;
  }

  .subhero:not(.price-hero):not(.solution-detail-hero):not(.legal-hero) .subhero-focus p {
    font-size: .88rem;
    line-height: 1.42;
  }
}

@media (min-width: 720px) and (max-width: 1180px) {
  .price-hero-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
    min-height: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .price-hero-panel a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background:
      linear-gradient(150deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
      rgba(255, 255, 255, .045);
  }

  .price-hero-panel a + a {
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .price-hero-panel span {
    grid-row: auto;
    font-size: 2.35rem;
  }

  .price-hero-panel small {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 70px;
    --subhero-height: 0px;
  }

  h1 {
    font-size: 2.42rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.96rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .project-wide h2 {
    max-width: none;
    font-size: 2.35rem;
  }

  .project-copy {
    gap: 18px;
  }

  .browser-viewport {
    height: 430px;
  }

  .section-inner,
  .nav-shell {
    width: min(var(--max), calc(100% - 32px));
  }

  .brand-logo {
    width: 136px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .language-link {
    width: 40px;
    min-height: 40px;
    justify-content: center;
    padding: 0 !important;
  }

  .nav-actions .language-name {
    display: none;
  }

  .nav-links {
    top: calc(var(--header-height) + 8px);
    left: 16px;
    right: 16px;
    padding: 8px;
  }

  .nav-links a {
    min-height: 48px;
    padding-inline: 12px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-stage {
    min-height: 610px;
    padding-top: 86px;
    padding-bottom: 42px;
  }

  .hero-copy {
    gap: 22px;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .section {
    padding: 56px 0;
  }

  .subhero {
    min-height: auto;
    padding: 0;
  }

  .subhero > .section-inner {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .subhero h1 {
    max-width: 13ch;
  }

  .subhero p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .subhero-copy {
    gap: 16px;
  }

  .legal-body p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .legal-hero > .section-inner {
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .legal-hero h1 {
    max-width: none;
    font-size: 2.2rem;
  }

  .legal-hero .subhero-kicker {
    margin-bottom: 9px;
  }

  .legal-section {
    padding: 48px 0 64px;
  }

  .subhero-focus,
  .price-hero-panel {
    min-height: auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    scrollbar-width: none;
  }

  .subhero-focus::-webkit-scrollbar,
  .price-hero-panel::-webkit-scrollbar {
    display: none;
  }

  .subhero-focus article,
  .price-hero-panel a {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 6px 16px;
    flex: 0 0 min(244px, 78vw);
    min-height: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
  }

  .price-hero-panel a + a {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .subhero-focus span,
  .price-hero-panel span {
    font-size: 1.78rem;
  }

  .subhero-focus strong,
  .price-hero-panel strong {
    font-size: 1rem;
  }

  .subhero-focus p,
  .price-hero-panel small {
    font-size: .88rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    min-height: 50px;
    padding-inline: 18px;
  }

  .button {
    width: 100%;
  }

  .craft-slider {
    gap: 14px;
  }

  .craft-slider-tools {
    justify-content: flex-start;
  }

  .craft-slider-button {
    width: 40px;
    height: 40px;
  }

  .craft-intro {
    gap: 16px;
  }

  .craft-intro h2 {
    font-size: 1.96rem;
  }

  .craft-slider .craft-line {
    display: flex;
    gap: 12px;
    padding-bottom: 8px;
  }

  .craft-slider .craft-line li {
    grid-template-columns: 1fr;
    gap: 14px;
    flex-basis: 100%;
    min-height: 220px;
    padding: 20px;
  }

  .craft-line {
    gap: 16px;
  }

  .craft-line li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px 16px;
  }

  .craft-line span {
    font-size: 2.5rem;
  }

  .craft-line strong {
    max-width: none;
    font-size: 1rem;
  }

  .craft-line p {
    max-width: 36ch;
    font-size: .94rem;
  }

  .craft-slider .craft-line span,
  .craft-slider .craft-line strong,
  .craft-slider .craft-line p {
    grid-column: auto;
  }

  .craft-slider .craft-line span {
    font-size: 2.7rem;
  }

  .craft-slider .craft-line strong {
    max-width: 12ch;
  }

  .craft-slider .craft-line p {
    max-width: 24ch;
  }

  .multilingual-teaser > div:first-child,
  .language-bento article,
  .multilingual-bento article {
    padding: 22px;
  }

  .language-bento span,
  .multilingual-bento article > span {
    font-size: 2rem;
  }

  .workflow-section .feature-split {
    padding: 46px 0;
  }

  .solutions-editorial {
    padding-bottom: 34px;
  }

  .solutions-editorial + .workflow-section .feature-split {
    padding-top: 28px;
  }

  .workflow-media {
    order: 2;
  }

  .workflow-section .feature-split > div {
    order: 1;
  }

  .feature-split div,
  .project-stage-copy {
    gap: 18px;
  }

  .project-stage-content {
    padding: 60px 0;
  }

  .project-stage-copy h2 {
    max-width: none;
  }

  .about-hero .subhero-grid {
    gap: 24px;
  }

  .about-hero img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .detail-row,
  .project-wide {
    gap: 18px;
    padding: 14px;
  }

  .solution-list {
    gap: 18px;
  }

  .solution-list .detail-row {
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .detail-row img {
    min-height: 230px;
  }

  .solution-list .detail-row img {
    height: 184px;
    min-height: 0;
    border-radius: 0;
  }

  .detail-row > div,
  .project-copy {
    gap: 18px;
    padding: 8px 0;
  }

  .solution-list .detail-row > div {
    gap: 14px;
    padding: 18px;
  }

  .solution-list .detail-row h2 {
    font-size: 1.52rem;
    line-height: 1.06;
  }

  .solution-list .detail-row > div > p {
    font-size: .94rem;
    line-height: 1.5;
  }

  .detail-pair,
  .detail-grid {
    gap: 12px;
  }

  .solution-list .detail-pair {
    gap: 12px;
  }

  .detail-pair div,
  .detail-grid div {
    padding: 15px;
  }

  .solution-list .detail-pair div {
    padding: 0 0 0 12px;
    border: 0;
    border-left: 2px solid rgba(22, 192, 150, .45);
    border-radius: 0;
    background: transparent;
  }

  .solution-list .richtext ul {
    padding-left: 1rem;
  }

  .project-browser {
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(14, 17, 16, .16);
  }

  .browser-chrome {
    min-height: 36px;
    padding-inline: 12px;
  }

  .price-hero {
    padding-bottom: 0;
  }

  .price-hero-grid {
    gap: 36px;
  }

  .price-hero-panel {
    border-radius: 18px;
  }

  .price-hero-panel small {
    grid-column: 2;
    white-space: normal;
  }

  .pricing-section {
    padding-top: 56px;
  }

  .pricing-package {
    gap: 20px;
    padding: 22px;
    border-radius: 14px;
  }

  .pricing-intro h2,
  .pricing-care h2,
  .pricing-closing h2 {
    max-width: none;
    font-size: 1.9rem;
    line-height: 1.06;
  }

  .pricing-intro > span {
    margin-bottom: 16px;
    font-size: 2.45rem;
  }

  .pricing-intro p {
    margin-top: 14px;
  }

  .pricing-money strong {
    font-size: 1.65rem;
  }

  .pricing-care,
  .pricing-closing {
    gap: 22px;
  }

  .pricing-care p,
  .pricing-closing p {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .care-list span {
    width: 100%;
  }

  .solution-editorial-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .solution-editorial-list span {
    font-size: 2.5rem;
  }

  .solution-editorial-list h3,
  .solution-editorial-list p {
    grid-column: auto;
  }

  .project-rail article {
    min-height: 0;
    padding: 22px;
  }

  .process-section h2 {
    margin-bottom: 28px;
  }

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

  .process-grid article span {
    margin-bottom: 22px;
    font-size: 2.5rem;
  }

  .process-section .process-grid article:nth-child(3) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .process-section .process-grid article:nth-child(3) span {
    grid-row: auto;
    margin-bottom: 22px;
  }

  .contact-card,
  .contact-note {
    gap: 16px;
    padding: 22px;
  }

  .contact-card h2,
  .contact-note h2 {
    max-width: none;
    font-size: 1.9rem;
    line-height: 1.06;
  }

  .contact-actions {
    gap: 10px;
  }

  .contact-card .contact-action {
    padding: 14px 15px;
  }

  .contact-note .contact-step-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
  }

  .contact-note .contact-step-list span {
    font-size: 1.72rem;
  }

  .footer-cta {
    padding: 52px 0;
  }

  .cta-panel {
    gap: 18px;
  }

  .footer-grid {
    gap: 28px;
  }

  .site-footer {
    padding: 42px 0;
  }
}

@keyframes nuweb-subhero-grid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 96px 0, 0 72px;
  }
}

@keyframes nuweb-subhero-sheen {
  from {
    background-position: 120% 0;
  }

  to {
    background-position: -40% 0;
  }
}

@keyframes nuweb-browser-scroll-cue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  16% {
    opacity: .78;
  }

  58% {
    opacity: .78;
    transform: translate(-50%, 12px);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}