@font-face {
  font-family: "Manrope";
  src: url("assets/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 499;
  font-display: block;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/manrope-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 700;
  font-display: block;
}

:root {
  color-scheme: light;
  font-family: "Manrope", system-ui, sans-serif;
  font-synthesis: none;
  color: #142c40;
  background: #f5f9fb;
  text-rendering: optimizeLegibility;
}

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

html,
body {
  min-width: 20rem;
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(121, 166, 24, 0.48);
  border-radius: 999px;
  background: #fff;
  color: #142c40;
  font-size: 0.78rem;
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(0.65rem, 1.55vh, 1rem) clamp(1rem, 3vw, 3rem);
}

.header-layout {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 92rem);
  min-height: 3.15rem;
  margin: 0 auto;
}

.header-actions {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.primary-navigation,
.consultation-link,
.header-test-link,
.home-return,
.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(251, 253, 254, 0.74);
  box-shadow:
    0 0.65rem 2.2rem rgba(71, 99, 116, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(0.9rem) saturate(110%);
  transition:
    background-color 320ms ease,
    box-shadow 320ms ease;
}

.site-header.is-compact .primary-navigation,
.site-header.is-compact .consultation-link,
.site-header.is-compact .header-test-link,
.site-header.is-compact .home-return {
  background: rgba(251, 253, 254, 0.86);
  box-shadow:
    0 0.45rem 1.7rem rgba(71, 99, 116, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3.1vw, 3.35rem);
  min-height: 3.15rem;
  padding: 0 2.8rem;
  border-radius: 999px;
}

.primary-navigation a,
.consultation-link,
.header-test-link,
.home-return {
  color: rgba(24, 48, 66, 0.86);
  font-size: clamp(0.7rem, 0.68vw, 0.78rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.primary-navigation a {
  position: relative;
}

.primary-navigation .service-nav-link {
  display: none;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: #79a618;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 240ms ease, transform 240ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a.is-previewed::after,
.primary-navigation a.is-selected::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.consultation-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0 1.1rem 0 1.2rem;
  border-radius: 999px;
}

.header-test-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0 1.15rem;
  border-radius: 999px;
}

.home-return {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  min-height: 3.15rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  visibility: hidden;
  transition:
    background-color 320ms ease,
    box-shadow 320ms ease,
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms step-end;
}

.home-return i {
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
}

.home-return span {
  font-size: 0.68rem;
  letter-spacing: 0.17em;
}

.site-header.has-home-return .home-return {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition:
    background-color 320ms ease,
    box-shadow 320ms ease,
    opacity 260ms ease,
    transform 260ms ease,
    visibility 0ms step-start;
}

.home-return--archive {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.consultation-link i,
.header-test-link i {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 0.48rem;
  border-radius: 50%;
  background: #79a618;
  box-shadow: 0 0 0.65rem rgba(121, 166, 24, 0.42);
}

.primary-navigation a:focus-visible,
.consultation-link:focus-visible,
.header-test-link:focus-visible,
.home-return:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgba(121, 166, 24, 0.78);
  outline-offset: 0.3rem;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background-color: #f5f9fb;
  background-image: url("assets/paradicta-hero-background-v25-1920.png");
  background-image: image-set(
    url("assets/paradicta-hero-background-v25-1920.webp") 1x,
    url("assets/paradicta-hero-background-v25-2560.webp") 1.5x,
    url("assets/paradicta-hero-background-v25-3840.webp") 2x
  );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-scroll-link {
  position: absolute;
  z-index: 3;
  bottom: 0.8%;
  left: 50%;
  width: clamp(4.5rem, 8vw, 7.5rem);
  height: clamp(3.2rem, 8vh, 5.2rem);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-scroll-link:focus-visible {
  outline: 1px solid rgba(121, 166, 24, 0.58);
  outline-offset: -0.4rem;
}

.hero-service-plane {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: max(100vw, calc(100svh * 1.7783783784));
  height: max(100svh, calc(100vw / 1.7783783784));
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-service-actions {
  position: absolute;
  top: 65.2%;
  left: 87%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: clamp(0.7rem, 1.25svh, 1rem);
  width: 8.8%;
  transform: rotate(1.4deg);
  transform-origin: left center;
}

.hero-service-actions a {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-height: 2rem;
  align-items: center;
  padding: 0.32rem 0 0.28rem;
  color: rgba(15, 57, 87, 0.72);
  font-size: clamp(0.66rem, 1.28svh, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  pointer-events: auto;
  transition: color 240ms ease, text-shadow 240ms ease;
}

.hero-service-actions a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(24, 74, 105, 0.26);
  content: "";
  transform-origin: left center;
  transition: background-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.hero-service-actions a:hover,
.hero-service-actions a:focus-visible {
  color: #638719;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82),
    0 0 0.8rem rgba(121, 166, 24, 0.2);
  outline: none;
}

.hero-service-actions a:hover::after,
.hero-service-actions a:focus-visible::after {
  background: #8cb62d;
  box-shadow: 0 0 0.65rem rgba(121, 166, 24, 0.42);
  transform: scaleX(1.06);
}

.left-menu-lights {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: max(100vw, calc(100svh * 1.7783783784));
  height: max(100svh, calc(100vw / 1.7783783784));
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.left-menu-light {
  position: absolute;
  left: 3.163017%;
  width: 0.608273%;
  min-width: 0.34rem;
  aspect-ratio: 1;
  border: 1px solid rgba(190, 209, 216, 0.82);
  border-radius: 50%;
  background: rgba(241, 247, 249, 0.94);
  box-shadow:
    0 0 0.18rem rgba(255, 255, 255, 0.92),
    inset 0 0 0.16rem rgba(255, 255, 255, 0.96);
  transform: translate(-50%, -50%);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.left-menu-link {
  position: absolute;
  z-index: 1;
  left: 2.2%;
  width: 9.2%;
  height: 5.2%;
  border-radius: 999px;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
}

.left-menu-link:focus-visible {
  outline: none;
}

.left-menu-word-links {
  position: absolute;
  z-index: 3;
  display: none;
  pointer-events: none;
}

.left-menu-word-links.is-ready {
  display: block;
}

.left-menu-word-links a {
  position: absolute;
  display: block;
  border-radius: 0.4rem;
  cursor: pointer;
  pointer-events: auto;
}

.left-menu-light::after {
  position: absolute;
  inset: 28%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.96);
  content: "";
  transition:
    inset 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.left-menu-light[data-light-key="loesungen"],
.left-menu-link[data-hero-menu-target="loesungen"] {
  top: 32.936824%;
}

.left-menu-light[data-light-key="leistungen"],
.left-menu-link[data-hero-menu-target="leistungen"] {
  top: 39.200543%;
}

.left-menu-light[data-light-key="paradicta"],
.left-menu-link[data-hero-menu-target="paradicta"] {
  top: 45.24827%;
}

.left-menu-light[data-light-key="kontakt"],
.left-menu-link[data-hero-menu-target="kontakt"] {
  top: 51.619984%;
}

.left-menu-light[data-light-key="contergan"],
.left-menu-link[data-hero-menu-target="contergan"] {
  top: 57.991697%;
}

.left-menu-light.is-active {
  border-color: rgba(121, 166, 24, 0.44);
  background: rgba(246, 251, 245, 0.96);
  box-shadow:
    0 0 0.24rem rgba(255, 255, 255, 0.98),
    0 0 0.68rem rgba(146, 218, 35, 0.34),
    inset 0 0 0.16rem rgba(255, 255, 255, 0.98);
}

.left-menu-light.is-active::after {
  inset: 17%;
  background: #79a618;
  box-shadow:
    0 0 0.24rem rgba(176, 236, 61, 0.9),
    0 0 0.58rem rgba(121, 166, 24, 0.72);
}

.hero-semantic {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.transition-room {
  --transition-overlap: 18svh;

  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: calc(var(--transition-overlap) * -1);
  place-items: center;
  overflow: hidden;
  padding: clamp(6rem, 14vh, 10rem) clamp(1.5rem, 7vw, 8rem);
  background-color: #f7fafc;
  background-image:
    url("assets/paradicta-transition-lettering-v2-desktop.svg"),
    url("assets/paradicta-transition-background-v9-vector-base-3840.png");
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  isolation: isolate;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 var(--transition-overlap)
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 var(--transition-overlap)
  );
}

.transition-semantic {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.process-room {
  --solutions-overlap: 16svh;

  position: relative;
  z-index: 3;
  margin-top: calc(var(--solutions-overlap) * -1);
  background-color: #f3f8fb;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 var(--solutions-overlap));
  mask-image: linear-gradient(180deg, transparent 0, #000 var(--solutions-overlap));
}

.process-room__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-color: #f3f8fb;
  background-image: url("assets/paradicta-process-room-background-v4-desktop-tall.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.solutions-room {
  position: relative;
  z-index: 1;
  min-height: 118vh;
  min-height: 118svh;
  overflow: hidden;
  padding: clamp(14rem, 26svh, 19rem) clamp(1.5rem, 6vw, 7rem) clamp(7rem, 12svh, 10rem);
  background: transparent;
}

.solutions-interface {
  position: relative;
  z-index: 1;
  width: min(92rem, 92vw);
  margin: 0 auto;
}

.solutions-heading {
  margin: 0 auto clamp(2rem, 4vh, 3.5rem);
  text-align: center;
}

.solutions-heading p {
  margin: 0 0 0.8rem;
  color: rgba(39, 70, 91, 0.62);
  font-size: clamp(0.62rem, 0.7vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.solutions-heading h2 {
  margin: 0;
  color: #17364f;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.solution-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.7rem);
}

.solution-category,
.product-plate,
.product-detail,
.product-detail-close {
  font-family: inherit;
}

.solution-category {
  position: relative;
  display: grid;
  min-height: clamp(7rem, 14vh, 9rem);
  align-content: center;
  gap: 0.55rem;
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: clamp(2rem, 4vw, 4rem);
  background: rgba(249, 252, 253, 0.58);
  box-shadow:
    0 1.2rem 2.8rem rgba(77, 107, 123, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(142, 173, 188, 0.16);
  color: rgba(23, 54, 79, 0.76);
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(0.8rem) saturate(108%);
  transition:
    border-color 360ms ease,
    background-color 360ms ease,
    box-shadow 360ms ease,
    color 360ms ease,
    transform 360ms ease;
}

.solution-category strong {
  font-size: clamp(1.08rem, 1.35vw, 1.48rem);
  font-weight: 600;
  line-height: 1.1;
}

.solution-category span {
  font-size: clamp(0.72rem, 0.84vw, 0.9rem);
  font-weight: 400;
  line-height: 1.45;
}

.solution-category.is-active {
  border-color: rgba(173, 210, 94, 0.68);
  background: rgba(252, 254, 252, 0.82);
  box-shadow:
    0 1.45rem 3.4rem rgba(75, 105, 120, 0.1),
    0 0.55rem 1.6rem rgba(154, 213, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 0 rgba(121, 166, 24, 0.26);
  color: #17364f;
  transform: translateY(-0.2rem);
}

.solution-category.is-locked {
  border-color: rgba(121, 166, 24, 0.76);
}

.solution-category:focus-visible,
.product-plate:focus-visible,
.product-detail-close:focus-visible {
  outline: 2px solid rgba(121, 166, 24, 0.72);
  outline-offset: 0.35rem;
}

.product-plates {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
  margin-top: clamp(2.2rem, 5vh, 4rem);
}

.product-plate {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(0.55rem, 1vw, 0.85rem);
  align-items: center;
  min-height: clamp(4.4rem, 7vh, 5rem);
  padding: 0.75rem 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: clamp(1rem, 1.6vw, 1.5rem);
  background: rgba(250, 253, 254, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -0.6rem 1.8rem rgba(187, 209, 219, 0.08);
  color: rgba(20, 47, 67, 0.15);
  cursor: pointer;
  opacity: 0.48;
  text-align: left;
  transform: translateY(0);
  filter: saturate(35%);
  backdrop-filter: blur(0.45rem);
  transition:
    opacity 380ms ease,
    border-color 380ms ease,
    background-color 380ms ease,
    box-shadow 380ms ease,
    color 380ms ease,
    filter 380ms ease,
    transform 380ms ease;
}

.product-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(2.2rem, 3vw, 2.75rem);
  max-width: 2.75rem;
  max-height: 2.5rem;
  object-fit: contain;
  object-position: center;
  opacity: 0.28;
  filter: grayscale(1) contrast(0.78) brightness(1.08);
  transform: scale(0.96);
  transition:
    opacity 380ms ease,
    filter 380ms ease,
    transform 380ms ease;
}

.product-logo--speechlive {
  max-width: 2.65rem;
  max-height: 2.65rem;
}

.product-logo--dragon-copilot,
.product-logo--corti {
  max-width: 2.2rem;
  max-height: 2.2rem;
  justify-self: center;
}

.product-logo--ambivio {
  max-height: 1.8rem;
}

.product-plate::after {
  position: absolute;
  right: 16%;
  bottom: 0;
  left: 16%;
  height: 1px;
  background: #79a618;
  box-shadow: 0 0 0.9rem rgba(121, 166, 24, 0.46);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 380ms ease, transform 380ms ease;
}

.product-plate span {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(10rem, calc(100% - 3.3rem));
  font-size: clamp(0.66rem, 0.78vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.18;
  text-align: left;
  opacity: 0.46;
  transition: opacity 380ms ease;
}

.product-plate.is-active {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(251, 253, 254, 0.78);
  box-shadow:
    0 1.2rem 2.8rem rgba(77, 107, 123, 0.1),
    0 0.85rem 2rem rgba(255, 255, 255, 0.92),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -0.75rem 1.8rem rgba(205, 224, 231, 0.14);
  color: rgba(20, 47, 67, 0.92);
  opacity: 1;
  filter: none;
  transform: translateY(-0.38rem);
}

.product-plate.is-active::after {
  opacity: 0.62;
  transform: scaleX(1);
}

.product-plate.is-active span {
  opacity: 1;
}

.product-plate.is-active .product-logo {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.product-plate:nth-child(3n + 2) {
  transition-delay: 45ms;
}

.product-plate:nth-child(3n) {
  transition-delay: 90ms;
}

.product-detail {
  position: fixed;
  inset: 0;
  box-sizing: border-box;
  width: min(58rem, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100svh - 2rem);
  margin: auto;
  padding: clamp(1.7rem, 3vw, 2.7rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: clamp(1.5rem, 3vw, 2.6rem);
  background: rgba(249, 252, 253, 0.8);
  box-shadow:
    0 1.8rem 4rem rgba(65, 96, 113, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(1rem) saturate(110%);
}

.product-detail::backdrop {
  background: rgba(17, 43, 59, 0.2);
  backdrop-filter: blur(0.16rem);
}

.product-detail p,
.product-detail h3,
.product-detail ul {
  max-width: 46rem;
}

.product-detail > p:first-of-type {
  margin: 0 0 0.45rem;
  color: rgba(48, 79, 98, 0.58);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-detail h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 500;
}

.product-detail p:last-of-type {
  margin: 0 0 1rem;
  color: rgba(20, 47, 67, 0.8);
  line-height: 1.55;
}

.product-detail ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(20, 47, 67, 0.76);
  line-height: 1.45;
}

.product-detail-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  min-height: 2.3rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(163, 186, 197, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(20, 47, 67, 0.74);
  font-size: 0.68rem;
  cursor: pointer;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1.5rem;
}

.product-detail-test,
.product-detail-more {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  color: #21320f;
  border: 1px solid rgba(121, 166, 24, 0.66);
  border-radius: 999px;
  background: rgba(237, 247, 218, 0.92);
  box-shadow:
    0 0.75rem 2rem rgba(82, 111, 46, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.product-detail-more {
  color: #25465b;
  border-color: rgba(135, 169, 185, 0.6);
  background: rgba(255, 255, 255, 0.8);
}

.product-detail-more[hidden] {
  display: none;
}

.product-detail-test:hover,
.product-detail-test:focus-visible,
.product-detail-more:hover,
.product-detail-more:focus-visible {
  background: rgba(222, 242, 185, 0.98);
  box-shadow:
    0 0.85rem 2.2rem rgba(82, 111, 46, 0.14),
    0 0 1rem rgba(151, 205, 50, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  outline: none;
  transform: translateY(-0.12rem);
}

.guidance-room {
  --guidance-overlap: 14svh;

  position: relative;
  z-index: 4;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: calc(var(--guidance-overlap) * -1);
  overflow: hidden;
  padding: clamp(12rem, 23svh, 17rem) clamp(1.5rem, 6vw, 7rem) clamp(6rem, 12svh, 9rem);
  background: transparent;
}

.guidance-interface {
  position: relative;
  z-index: 1;
  width: min(92rem, 92vw);
  margin: 0 auto;
}

.guidance-heading {
  max-width: 58rem;
}

.guidance-heading > p {
  margin: 0 0 0.8rem;
  color: rgba(39, 70, 91, 0.62);
  font-size: clamp(0.62rem, 0.7vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.guidance-heading h2 {
  margin: 0;
  transform: translateX(-0.03em);
  color: #17364f;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.guidance-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2.3vw, 2.8rem);
  margin: clamp(4.5rem, 10vh, 7.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.guidance-journey::before,
.guidance-journey::after {
  position: absolute;
  z-index: 0;
  top: 0.44rem;
  right: 9.5%;
  left: 9.5%;
  height: 1px;
  content: "";
  transform-origin: left center;
}

.guidance-journey::before {
  background: rgba(104, 139, 158, 0.22);
  box-shadow: 0 0 0.8rem rgba(255, 255, 255, 0.8);
}

.guidance-journey::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(132, 178, 32, 0.66));
  box-shadow:
    0 0 1rem rgba(255, 255, 255, 0.95),
    0 0 0.55rem rgba(121, 166, 24, 0.25);
}

.guidance-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: 3.15rem;
  color: #17364f;
  text-align: center;
  outline: none;
}

.guidance-node {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 0.92rem;
  height: 0.92rem;
  border: 1px solid rgba(121, 166, 24, 0.68);
  border-radius: 50%;
  background: #f7fbef;
  box-shadow:
    0 0 0 0.42rem rgba(255, 255, 255, 0.68),
    0 0 1.15rem rgba(121, 166, 24, 0.34),
    inset 0 0 0 0.18rem rgba(156, 204, 52, 0.62);
  transform: translateX(-50%) scale(1.06);
}

.guidance-step h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  font-weight: 600;
  line-height: 1.2;
  opacity: 1;
}

.guidance-step p {
  max-width: 15rem;
  margin: 0 auto;
  color: rgba(20, 47, 67, 0.78);
  font-size: clamp(0.72rem, 0.82vw, 0.88rem);
  line-height: 1.55;
  opacity: 0.9;
}

.about-room {
  --about-overlap: 18svh;

  position: relative;
  z-index: 4;
  min-height: auto;
  margin-top: calc(var(--about-overlap) * -1);
  overflow: hidden;
  padding: calc(clamp(8rem, 17svh, 13rem) + var(--about-overlap)) clamp(1.5rem, 6vw, 7rem) clamp(7rem, 14svh, 10rem);
  color: #17364f;
  background:
    linear-gradient(180deg, rgba(241, 248, 250, 0.12), rgba(232, 243, 247, 0.38)),
    #edf5f8 url("assets/paradicta-guidance-room-background-v1.png") center center / cover no-repeat;
  isolation: isolate;
  scroll-margin-top: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 var(--about-overlap));
  mask-image: linear-gradient(180deg, transparent 0, #000 var(--about-overlap));
}

.about-room::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 24%),
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.5), transparent 33%);
  content: "";
  pointer-events: none;
}

.about-interface {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(15rem, 23vw, 21rem);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  width: min(92rem, 92vw);
  margin: 0 auto;
}

.about-heading {
  max-width: 61rem;
}

.about-heading > p:first-child {
  margin: 0 0 0.8rem;
  color: rgba(39, 70, 91, 0.64);
  font-size: clamp(0.62rem, 0.7vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.about-heading h2 {
  margin: 0;
  transform: translateX(-0.07em);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.about-lead {
  max-width: 51rem;
  margin: clamp(1.8rem, 4vw, 3rem) 0 0;
  color: rgba(23, 54, 79, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.about-brandmark {
  width: 100%;
  max-width: 21rem;
  margin: 0;
  justify-self: end;
  opacity: 0.96;
  filter: drop-shadow(0 1.2rem 2.6rem rgba(51, 91, 113, 0.14));
}

.about-brandmark img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-test-dialog-open {
  overflow: hidden;
}

.test-dialog {
  width: min(58rem, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100svh - 2rem);
  margin: auto;
  padding: 0;
  overflow: visible;
  color: #17364f;
  border: 0;
  background: transparent;
}

.test-dialog::backdrop {
  background: rgba(230, 240, 243, 0.04);
  backdrop-filter: blur(0.06rem) saturate(0.94) brightness(1.01);
}

.test-dialog[open] {
  animation: test-dialog-enter 280ms ease-out both;
}

.test-dialog__surface {
  position: relative;
  max-height: calc(100svh - 2rem);
  overflow: auto;
  padding: clamp(2rem, 5vw, 4.1rem);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: clamp(1.45rem, 3vw, 2.35rem);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.82), transparent 43%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(226, 240, 244, 0.82)),
    #edf5f7;
  box-shadow:
    0 2rem 6rem rgba(45, 73, 87, 0.16),
    0 0 0 1px rgba(208, 229, 235, 0.3),
    0 0 2.2rem rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 1px 0 0 rgba(255, 255, 255, 0.66),
    inset -1px 0 0 rgba(151, 186, 199, 0.18),
    inset 0 -1px 0 rgba(151, 186, 199, 0.3);
  backdrop-filter: blur(1rem) saturate(0.9) contrast(0.98);
}

.test-dialog__surface::before {
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.07) 32%, transparent 53%),
    linear-gradient(315deg, rgba(184, 216, 225, 0.12), transparent 36%);
  content: "";
  pointer-events: none;
}

.test-dialog__surface > :not(.test-dialog__close) {
  position: relative;
  z-index: 1;
}

.test-dialog__close {
  position: absolute;
  top: clamp(1rem, 2.5vw, 1.5rem);
  right: clamp(1rem, 2.5vw, 1.5rem);
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  place-items: center;
  color: rgba(23, 54, 79, 0.76);
  cursor: pointer;
  border: 1px solid rgba(159, 181, 191, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font: 300 1.7rem/1 Manrope, sans-serif;
  transition:
    border-color 220ms ease,
    background-color 220ms ease;
  z-index: 2;
  text-decoration: none;
}

.test-dialog__close:hover,
.test-dialog__close:focus-visible {
  border-color: rgba(121, 166, 24, 0.72);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.test-dialog__header {
  max-width: 45rem;
  padding-right: 3rem;
}

.test-dialog__header > p:first-child {
  margin: 0 0 0.85rem;
  color: #79a618;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.test-dialog__header h1,
.test-dialog__header h2 {
  margin: 0;
  color: #17364f;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.test-page {
  min-height: 100svh;
  overflow: auto;
  background:
    linear-gradient(rgba(231, 241, 244, 0.12), rgba(231, 241, 244, 0.12)),
    #e7f0f4 url("assets/paradicta-guidance-room-background-v1.png") center / cover fixed no-repeat;
}

.test-page__stage {
  display: grid;
  min-height: 100svh;
  padding: clamp(0.75rem, 3vw, 2rem);
  place-items: center;
}

.test-page__surface {
  width: min(58rem, 100%);
  max-height: none;
}

.test-dialog__header > p:last-child {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: rgba(23, 54, 79, 0.72);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.55;
}

.downloads-dialog {
  width: min(38rem, calc(100vw - 2rem));
}

.downloads-dialog__surface {
  padding: clamp(2rem, 4.5vw, 3.5rem);
}

.downloads-dialog__header h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.downloads-list {
  display: grid;
  margin-top: clamp(1.7rem, 4vw, 2.6rem);
  border-top: 1px solid rgba(105, 139, 152, 0.28);
}

.downloads-list__link {
  display: block;
  padding: 1.25rem 0.2rem;
  color: #638719;
  border-bottom: 1px solid rgba(105, 139, 152, 0.28);
  text-decoration: none;
}

.downloads-list__link span {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
}

.downloads-list__link:focus-visible {
  outline: 2px solid rgba(121, 166, 24, 0.72);
  outline-offset: -0.3rem;
}

.test-form {
  display: grid;
  gap: 1.1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.test-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.test-form__row--name {
  grid-template-columns: minmax(8.5rem, 0.56fr) repeat(2, minmax(0, 1fr));
}

.test-field {
  display: grid;
  gap: 0.48rem;
  color: rgba(23, 54, 79, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
}

.test-field[hidden] {
  display: none;
}

.test-product-selection {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  color: rgba(23, 54, 79, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
}

.test-product-selection[hidden] {
  display: none;
}

.test-product-selection strong {
  display: flex;
  min-height: 3.15rem;
  align-items: center;
  padding: 0 1rem;
  color: #17364f;
  border: 1px solid rgba(121, 166, 24, 0.42);
  border-radius: 0.85rem;
  background: rgba(244, 250, 234, 0.72);
  box-shadow:
    inset 0 0.15rem 0.6rem rgba(85, 117, 129, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.test-field input,
.test-field select,
.test-field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0 1rem;
  color: #17364f;
  border: 1px solid rgba(156, 182, 193, 0.42);
  border-radius: 0.85rem;
  background: rgba(250, 253, 253, 0.48);
  box-shadow:
    inset 0 0.15rem 0.6rem rgba(85, 117, 129, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8);
  font: 400 0.92rem/1.45 Manrope, sans-serif;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.test-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(23, 54, 79, 0.56) 50%),
    linear-gradient(135deg, rgba(23, 54, 79, 0.56) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) 1.4rem,
    calc(100% - 0.85rem) 1.4rem;
  background-repeat: no-repeat;
  background-size: 0.32rem 0.32rem;
}

.test-field textarea {
  min-height: 8.5rem;
  padding-block: 0.85rem;
  resize: vertical;
}

.test-field input::placeholder,
.test-field textarea::placeholder {
  color: rgba(67, 96, 108, 0.5);
}

.test-field input:focus,
.test-field select:focus,
.test-field textarea:focus {
  border-color: rgba(121, 166, 24, 0.75);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 0.2rem rgba(121, 166, 24, 0.08),
    0 0 1.1rem rgba(142, 203, 33, 0.1),
    inset 0 0.15rem 0.6rem rgba(85, 117, 129, 0.06);
  outline: none;
}

.test-form__footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.35rem;
}

.test-form__submit {
  flex: 0 0 auto;
  min-height: 3.25rem;
  padding: 0 1.7rem;
  color: #21320f;
  cursor: pointer;
  border: 1px solid rgba(121, 166, 24, 0.66);
  border-radius: 999px;
  background: rgba(237, 247, 218, 0.92);
  box-shadow:
    0 0.75rem 2rem rgba(82, 111, 46, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  font: 600 0.84rem/1 Manrope, sans-serif;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.test-form__submit:hover,
.test-form__submit:focus-visible {
  background: rgba(222, 242, 185, 0.98);
  box-shadow:
    0 0.85rem 2.2rem rgba(82, 111, 46, 0.14),
    0 0 1rem rgba(151, 205, 50, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  outline: none;
  transform: translateY(-0.12rem);
}

.test-form__submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.test-form__footer p,
.test-form__status {
  margin: 0;
  color: rgba(23, 54, 79, 0.62);
  font-size: 0.75rem;
  line-height: 1.45;
}

.test-form__status {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(121, 166, 24, 0.3);
  border-radius: 0.8rem;
  background: rgba(247, 251, 241, 0.68);
}

.test-form__status[data-state="error"] {
  border-color: rgba(157, 96, 70, 0.28);
  background: rgba(252, 245, 242, 0.72);
}

@keyframes test-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 100rem) and (min-aspect-ratio: 2 / 1) {
  .hero {
    background-image: url("assets/paradicta-hero-background-wide-v16-2560.webp");
    background-image: image-set(
      url("assets/paradicta-hero-background-wide-v16-2560.webp") 1x,
      url("assets/paradicta-hero-background-wide-v16-3440.webp") 1.5x,
      url("assets/paradicta-hero-background-wide-v16-3840.webp") 2x
    );
    background-position: center center;
    background-size: cover;
    isolation: isolate;
  }

  .hero::before {
    content: none;
  }

  .left-menu-lights {
    z-index: 2;
    width: calc(100svh * 1.7783783784);
    height: 100svh;
  }

  .left-menu-light {
    left: 6.6%;
  }

  .left-menu-link {
    left: 5.5%;
  }

  .hero-service-plane {
    width: calc(100svh * 1.7783783784);
    height: 100svh;
  }

  .hero-scroll-link {
    z-index: 3;
  }

  .transition-room {
    background-image:
      url("assets/paradicta-transition-lettering-v2-wide.svg"),
      url("assets/paradicta-transition-background-wide-v8-native-floor-3840.png");
  }

  .solutions-room {
    min-height: 108svh;
    background-size: cover;
  }

  .solutions-interface {
    width: min(118rem, 88vw);
  }

  .product-plates {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .guidance-room {
    min-height: 100svh;
    background-size: cover;
  }

  .guidance-interface {
    width: min(118rem, 88vw);
  }

  .about-interface {
    width: min(118rem, 88vw);
  }
}

@media (min-width: 125rem) and (max-aspect-ratio: 2 / 1) {
  .hero {
    background-image: image-set(
      url("assets/paradicta-hero-background-v25-2560.webp") 1x,
      url("assets/paradicta-hero-background-v25-3840.webp") 1.5x
    );
  }
}

@media (min-width: 180rem) and (max-aspect-ratio: 2 / 1) {
  .hero {
    background-image: image-set(
      url("assets/paradicta-hero-background-v25-3840.webp") 1x
    );
  }
}

@media (min-width: 240rem) and (max-aspect-ratio: 2 / 1) {
  .hero {
    background-image: url("assets/paradicta-hero-background-v25-3840.webp");
  }
}

@media (min-width: 180rem) and (min-aspect-ratio: 2 / 1) {
  .hero {
    background-image: image-set(
      url("assets/paradicta-hero-background-wide-v16-3440.webp") 1x,
      url("assets/paradicta-hero-background-wide-v16-3840.webp") 1.5x
    );
  }
}

@media (min-width: 250rem) and (min-aspect-ratio: 2 / 1) {
  .hero {
    background-image: url("assets/paradicta-hero-background-wide-v16-3840.webp");
  }
}

@media (min-width: 68.001rem) {
  .about-room {
    background-attachment: fixed;
  }
}

@media (min-width: 68.001rem) and (min-aspect-ratio: 3 / 2) {
  .process-room__background {
    background-image: url("assets/paradicta-process-room-background-v4-desktop-wide.webp");
  }
}

@media (min-width: 68.001rem) and (min-aspect-ratio: 2 / 1) {
  .process-room__background {
    background-image: url("assets/paradicta-process-room-background-v6-ultrawide.webp");
  }
}

@media (max-aspect-ratio: 3 / 2) and (min-width: 68.001rem) {
  .hero-service-plane {
    display: none;
  }

  .primary-navigation {
    gap: clamp(0.9rem, 1.7vw, 1.5rem);
    padding-inline: 1.7rem;
  }

  .primary-navigation .service-nav-link {
    display: inline-flex;
  }
}

@media (min-width: 68.001rem) and (max-width: 90rem) {
  .primary-navigation {
    gap: 1.3rem;
    padding-right: 1.8rem;
    padding-left: 1.8rem;
  }
}

@media (min-width: 68.001rem) and (max-width: 76rem) and (max-aspect-ratio: 3 / 2) {
  .header-layout {
    min-height: 6.3rem;
  }

  .header-actions {
    top: 3.5rem;
  }
}

@media (max-width: 68rem) {
  .process-room__background {
    background-image: url("assets/paradicta-process-room-background-v4-tablet.webp");
  }

  .left-menu-link {
    display: none;
  }

  .hero-service-plane {
    display: none;
  }

  .site-header {
    padding: 0.75rem;
  }

  .header-layout {
    justify-content: flex-end;
    min-height: 3rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 3rem;
    padding: 0 1.1rem;
    border-radius: 999px;
    color: rgba(24, 48, 66, 0.86);
    font: 500 0.75rem/1 "Manrope", sans-serif;
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 1rem;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 220ms ease;
  }

  .menu-toggle i::after {
    transform: translateY(0.34rem);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: translateY(0.17rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    transform: rotate(-90deg);
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    display: grid;
    gap: 0;
    width: min(20rem, calc(100vw - 1.5rem));
    padding: 0.65rem;
    border-radius: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.45rem);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms step-end;
  }

  .primary-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0ms step-start;
  }

  .primary-navigation a {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
  }

  .primary-navigation .service-nav-link {
    display: block;
  }

  .primary-navigation a::after {
    display: none;
  }

  .consultation-link {
    min-height: 3rem;
  }

  .header-actions {
    right: auto;
    left: 0;
  }

  .header-test-link {
    min-height: 3rem;
  }

  .home-return {
    right: auto;
    left: 50%;
    justify-content: center;
    width: 3rem;
    min-height: 3rem;
    padding: 0;
    transform: translate(-50%, -0.4rem);
  }

  .home-return span {
    display: none;
  }

  .site-header.has-home-return .home-return {
    transform: translate(-50%, 0);
  }

  .home-return--archive {
    transform: translate(-50%, 0);
  }

  .solutions-room {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .solutions-interface {
    width: min(62rem, 94vw);
  }

  .solution-category {
    min-height: 7.5rem;
    padding: 1.35rem;
  }

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

  .solution-category:last-child {
    grid-column: 1 / -1;
    width: calc((100% - clamp(0.9rem, 1.8vw, 1.7rem)) / 2);
    justify-self: center;
  }

  .product-plates {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .product-plate:nth-child(5) {
    grid-column: 2;
  }

  .guidance-room {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .guidance-interface {
    width: min(62rem, 94vw);
  }

  .guidance-journey {
    gap: 1rem;
  }

  .guidance-step p {
    font-size: 0.72rem;
  }

  .about-room {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .about-interface {
    grid-template-columns: 1fr;
    gap: clamp(2.4rem, 6vw, 3.6rem);
    width: min(62rem, 94vw);
  }

  .about-brandmark {
    width: min(17rem, 58vw);
    justify-self: center;
  }

  .test-page__stage {
    align-items: start;
  }

  .test-page__surface {
    margin-block: clamp(0.25rem, 3vw, 1.5rem);
  }

}

@media (max-width: 44rem) {
  body {
    overflow: auto;
  }

  .hero {
    min-height: 100svh;
    background-position: 34% center;
  }

  .left-menu-lights {
    left: 34%;
    transform: translate(-34%, -50%);
  }

  .transition-room {
    --transition-overlap: 12svh;

    padding-right: 1.4rem;
    padding-left: 1.4rem;
    background-image:
      url("assets/paradicta-transition-lettering-v2-mobile.svg"),
      url("assets/paradicta-transition-background-mobile-v5-vector-base-1260.png");
    background-position: center center, center center;
  }

  .process-room {
    --solutions-overlap: 10svh;
  }

  .process-room__background {
    background-image: url("assets/paradicta-process-room-background-v4-mobile.webp");
    background-position: center top;
  }

  .solutions-room {
    min-height: auto;
    padding: clamp(10rem, 22svh, 14rem) 1rem 6rem;
  }

  .solutions-interface {
    width: min(100%, 34rem);
  }

  .solutions-heading {
    margin-bottom: 1.8rem;
  }

  .solutions-heading p {
    letter-spacing: 0.28em;
  }

  .solution-categories {
    grid-template-columns: 1fr;
  }

  .solution-category:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .product-plates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
  }

  .product-plate:nth-child(5) {
    grid-column: auto;
  }

  .solution-category {
    min-height: 6.6rem;
  }

  .product-plate {
    min-height: 4.4rem;
  }

  .product-detail {
    padding-top: 4rem;
  }

  .guidance-room {
    --guidance-overlap: 8svh;

    min-height: auto;
    padding: clamp(9rem, 20svh, 12rem) 1rem 5rem;
  }

  .guidance-interface {
    width: min(100%, 34rem);
  }

  .guidance-heading > p {
    letter-spacing: 0.24em;
  }

  .guidance-journey {
    grid-template-columns: 1fr;
    gap: 2.35rem;
    margin-top: 3.8rem;
  }

  .guidance-journey::before,
  .guidance-journey::after {
    top: 0.45rem;
    right: auto;
    bottom: 0.45rem;
    left: 0.45rem;
    width: 1px;
    height: auto;
    transform-origin: center top;
  }

  .guidance-step {
    min-height: 5.3rem;
    padding: 0 0 0 3.1rem;
    text-align: left;
  }

  .guidance-node {
    top: 0;
    left: 0.45rem;
  }

  .guidance-step p {
    max-width: 26rem;
    margin: 0;
    font-size: 0.8rem;
  }

  .about-room {
    --about-overlap: 12svh;

    min-height: auto;
    padding: calc(7rem + var(--about-overlap)) 1rem 5rem;
    background-position: center top;
  }

  .about-interface {
    width: min(100%, 34rem);
  }

  .about-brandmark {
    width: min(15rem, 72vw);
  }

  .about-heading > p:first-child {
    letter-spacing: 0.24em;
  }

  .test-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100svh - 1rem);
  }

  .test-dialog__surface {
    max-height: calc(100svh - 1rem);
    padding: 2rem 1rem 1.25rem;
    border-radius: 1.35rem;
  }

  .test-dialog__header {
    padding-right: 2.8rem;
  }

  .test-form__row {
    grid-template-columns: 1fr;
  }

  .test-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .test-form__submit {
    width: 100%;
  }

}

@media (max-width: 40rem) {
  .header-layout {
    min-height: 6.3rem;
  }

  .header-actions {
    top: 3.35rem;
    right: 0;
    left: 0;
    justify-content: center;
  }

  .consultation-link,
  .header-test-link {
    justify-content: center;
    min-height: 2.7rem;
  }

  .home-return {
    left: 0;
    transform: translateY(-0.4rem);
  }

  .site-header.has-home-return .home-return {
    transform: translateY(0);
  }
}

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

.site-footer {
  position: relative;
  z-index: 6;
  border-top: 1px solid rgba(105, 132, 145, 0.2);
  color: #506673;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(231, 241, 245, 0.9)),
    #edf5f8;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  gap: 2rem;
  width: min(100% - 3rem, 88rem);
  min-height: 9rem;
  margin: 0 auto;
  padding: 2rem 0;
}

.site-footer__brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  color: #17364f;
  text-decoration: none;
}

.site-footer__brand span {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.site-footer__brand small {
  margin-top: 0.45rem;
  color: #69808c;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.6rem;
}

.site-footer__links a,
.test-form__footer a {
  color: #36566a;
  text-decoration-color: rgba(54, 86, 106, 0.35);
  text-underline-offset: 0.22em;
}

.site-footer__links a {
  font-size: 0.72rem;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.test-form__footer a:hover,
.test-form__footer a:focus-visible {
  color: #5d821d;
  text-decoration-color: currentColor;
}

.site-footer__links a[aria-current="page"] {
  color: #5d821d;
}

.site-footer__inner > p {
  justify-self: end;
  margin: 0;
  font-size: 0.68rem;
}

.site-footer--compact .site-footer__inner {
  min-height: 7rem;
}

@media (max-width: 68rem) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.35rem;
    width: min(100% - 2rem, 42rem);
    padding-block: 2.4rem;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__inner > p {
    justify-self: center;
  }
}

@media (max-width: 34rem) {
  .site-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 0.9rem;
  }
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
