﻿:root {
  --ink: #101216;
  --muted: #5d6575;
  --paper: #f7f7f2;
  --white: #ffffff;
  --line: rgba(16, 18, 22, 0.12);
  --green: #74a66a;
  --blue: #275d89;
  --lilac: #9b87b8;
  --gold: #c5a45d;
  --shadow: 0 20px 60px rgba(16, 18, 22, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI Variable", "Aptos", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 242, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1180px;
  min-height: 74px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
  height: 42px;
}

.brand-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  color: #252a33;
}

.nav-group {
  position: relative;
}

.nav-trigger,
.nav > a {
  padding: 20px 0;
}

.nav-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.nav-sub {
  position: absolute;
  top: 100%;
  left: -16px;
  z-index: 30;
  min-width: 210px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-sub,
.nav-group:focus-within .nav-sub,
.nav-group.is-open .nav-sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-sub a {
  display: block;
  padding: 10px 12px;
}

.nav-sub a:hover,
.nav-trigger:hover,
.nav > a:hover {
  color: var(--blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.hero {
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #050608;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.3) 52%, rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 28px 96px;
  text-align: left;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d8e8d2;
  margin: 0 0 18px;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(4.6rem, 11vw, 8.8rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
  white-space: pre-line;
}

.hero p {
  max-width: 980px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

body.page-home .hero-content {
  text-align: center;
}

body.page-home .hero h1,
body.page-home .hero p {
  margin-left: auto;
  margin-right: auto;
}

.rfl-led-wall {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rfl-led-dot {
  position: absolute;
  width: clamp(24px, 2.8vw, 48px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 1) 0 20%, rgba(224, 244, 255, 0.98) 21% 42%, rgba(139, 214, 255, 0.72) 43% 64%, rgba(139, 214, 255, 0) 76%);
  box-shadow:
    0 0 18px rgba(245, 252, 255, 0.96),
    0 0 48px rgba(153, 218, 255, 0.76),
    0 0 98px rgba(82, 173, 255, 0.44);
  transition: opacity 130ms ease, transform 130ms ease;
}

.rfl-led-dot.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

body.page-about .hero-media img {
  object-fit: contain;
  object-position: center center;
  opacity: 0.92;
  filter: grayscale(1) contrast(1.04);
}

body.page-about .hero-media {
  background:
    radial-gradient(circle at 32% 48%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(90deg, #181b1f 0%, #2a2d31 42%, #15171a 100%);
}

body.page-about .hero-media::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.04));
}

body.page-about .hero-content {
  max-width: 1180px;
}

body.page-about .hero-content::before {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 58px;
  width: min(630px, calc(100% - 40px));
  height: clamp(210px, 30vw, 288px);
  background: rgba(5, 6, 8, 0.42);
  backdrop-filter: blur(2px);
  pointer-events: none;
}

body.page-about .hero-content > * {
  position: relative;
}

body.page-research .hero-media img {
  filter: grayscale(1) saturate(0) contrast(1.08) brightness(0.94);
}

body.page-prevent .hero-media img {
  object-position: center center;
  opacity: 0.9;
}

body.page-prevent .hero-media::after {
  background:
    radial-gradient(circle at 64% 48%, rgba(255, 226, 205, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(5, 8, 12, 0.9), rgba(8, 12, 18, 0.58) 42%, rgba(8, 12, 18, 0.12) 78%);
}

body.page-rehabilitation .hero-media {
  background: linear-gradient(90deg, #05080c 0%, #101820 44%, #2e3038 100%);
}

body.page-rehabilitation .hero-media img {
  object-fit: contain;
  object-position: right center;
  opacity: 0.9;
}

body.page-rehabilitation .hero-media::after {
  background:
    radial-gradient(circle at 76% 38%, rgba(255, 218, 184, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(5, 8, 12, 0.92), rgba(8, 12, 18, 0.68) 43%, rgba(8, 12, 18, 0.22) 76%),
    linear-gradient(180deg, rgba(5, 8, 12, 0.1), rgba(5, 8, 12, 0.32));
}

body.page-performance .hero-media {
  background: #07101b;
}

body.page-performance .hero-media img {
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
}

body.page-performance .hero-media::after {
  background:
    radial-gradient(circle at 70% 44%, rgba(255, 198, 114, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.08) 82%);
}

body.page-contact .hero {
  min-height: min(620px, calc(100vh - 74px));
  align-items: center;
  background: #10161b;
}

body.page-contact .hero-media img {
  object-fit: cover;
  object-position: center center;
  opacity: 0.86;
}

body.page-contact .hero-media::after {
  background:
    radial-gradient(circle at 70% 30%, rgba(168, 207, 224, 0.18), transparent 24%),
    linear-gradient(105deg, rgba(6, 9, 12, 0.9) 0%, rgba(6, 9, 12, 0.72) 34%, rgba(6, 9, 12, 0.34) 62%, rgba(6, 9, 12, 0.1) 100%),
    linear-gradient(180deg, rgba(6, 9, 12, 0.18), rgba(6, 9, 12, 0.36));
}

body.page-contact .hero-content {
  max-width: 1060px;
  padding: 118px 28px 104px;
  text-align: left;
}

body.page-contact .hero h1 {
  max-width: 760px;
  font-size: clamp(4.3rem, 8vw, 7.6rem);
  line-height: 0.98;
}

body.page-contact .hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

body.page-contact .feature-list {
  max-width: 860px;
  grid-template-columns: 1fr;
}

body.page-contact .feature-list li {
  padding: 20px 24px;
  font-size: 1.05rem;
}

body.page-hans .hero {
  background:
    radial-gradient(circle at 76% 38%, rgba(105, 214, 84, 0.16), transparent 30%),
    radial-gradient(circle at 38% 82%, rgba(34, 184, 185, 0.16), transparent 36%),
    linear-gradient(135deg, #061016 0%, #0b2a2f 56%, #071116 100%);
}

body.page-hans .hero-media img {
  position: absolute;
  top: 50%;
  right: clamp(72px, 12vw, 180px);
  width: clamp(220px, 28vw, 430px);
  height: auto;
  max-height: 52vh;
  object-fit: contain;
  object-position: center;
  opacity: 0.72;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 34px rgba(118, 224, 94, 0.22));
}

body.page-hans .hero-media::after {
  background:
    radial-gradient(circle at 72% 42%, rgba(108, 227, 89, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(5, 10, 13, 0.9), rgba(5, 14, 18, 0.72) 42%, rgba(5, 14, 18, 0.2) 78%);
}

body.page-hans .hero h1 {
  max-width: 850px;
  font-size: clamp(4.2rem, 8.2vw, 7.4rem);
}

body.page-hans .hero p {
  max-width: 780px;
}

body.page-imprint .hero,
body.page-privacy .hero {
  min-height: 390px;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

body.page-imprint .hero-media,
body.page-privacy .hero-media {
  display: none;
}

body.page-imprint .hero-content,
body.page-privacy .hero-content {
  padding: 96px 28px 74px;
}

body.page-imprint .hero h1,
body.page-privacy .hero h1 {
  max-width: 820px;
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  font-weight: 300;
  line-height: 1;
}

body.page-imprint .hero p,
body.page-privacy .hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
}

body.page-imprint .section,
body.page-privacy .section {
  padding-top: 72px;
  padding-bottom: 72px;
}

body.page-imprint .section.alt,
body.page-privacy .section.alt {
  background: #f1f2ed;
}

.hero-actions .btn {
  border-color: var(--white);
}

.hero-actions .secondary {
  color: var(--white);
}

.section {
  padding: 96px 28px;
}

.section.alt {
  background: var(--white);
}

.inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section h2 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  font-weight: 300;
  line-height: 1.06;
}

.lead {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
  white-space: pre-line;
}

.video-section .inner {
  max-width: 1280px;
}

.video-copy {
  max-width: 760px;
  margin-bottom: 36px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.92), rgba(224, 229, 230, 0.86) 56%, rgba(198, 207, 210, 0.9) 100%);
  border: 1px solid rgba(170, 178, 181, 0.58);
}

.video-frame::before,
.video-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-frame::before {
  width: clamp(70px, 8vw, 116px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(16, 18, 22, 0.3);
  transform: translate(-50%, -50%);
}

.video-frame::after {
  width: 0;
  height: 0;
  border-top: clamp(15px, 1.8vw, 24px) solid transparent;
  border-bottom: clamp(15px, 1.8vw, 24px) solid transparent;
  border-left: clamp(24px, 2.7vw, 38px) solid #101216;
  transform: translate(-36%, -50%);
}

.video-frame.is-playing::before,
.video-frame.is-playing::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.92), rgba(224, 229, 230, 0.86) 56%, rgba(198, 207, 210, 0.9) 100%);
}

.story-section {
  background: var(--white);
}

.story-copy {
  max-width: 1040px;
}

.story-copy h2 {
  max-width: 980px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.story-text {
  display: grid;
  gap: 18px;
  max-width: 940px;
}

.story-text p {
  margin: 0;
  color: #3f4651;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.78;
}

.story-text p:first-child {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  line-height: 1.62;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split.reverse .copy {
  order: 2;
}

.media-frame {
  overflow: hidden;
  background: #dfe3dc;
  aspect-ratio: 4 / 3;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.scroll-sequence img {
  transition: opacity 120ms ease;
  will-change: opacity;
}

.media-frame.contain {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  padding: clamp(18px, 3vw, 34px);
  background: #eef1ed;
}

.media-frame.contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-wide-graphic .split {
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(40px, 5vw, 74px);
}

.media-frame.wide-graphic {
  aspect-ratio: 16 / 9;
  padding: clamp(12px, 1.8vw, 24px);
  background: #f4f5f1;
  border: 1px solid var(--line);
}

.media-sketch-portrait .inner {
  max-width: 1280px;
}

.media-sketch-portrait .split {
  grid-template-columns: minmax(420px, 1fr) minmax(380px, 0.94fr);
  gap: clamp(52px, 6vw, 92px);
}

.media-frame.sketch-portrait {
  justify-self: end;
  width: min(100%, 620px);
  aspect-ratio: 4 / 5;
  padding: clamp(4px, 0.8vw, 10px);
  background: #fbfbf8;
  border: 0;
}

.media-frame.sketch-portrait img {
  filter: contrast(1.18) brightness(0.96);
}

.media-frame.is-zoomable {
  position: relative;
  cursor: zoom-in;
}

.media-frame.is-zoomable::before {
  content: "Click to enlarge";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 13px;
  background: rgba(16, 18, 22, 0.72);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 720;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.media-frame.is-zoomable::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 18, 22, 0.08);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.media-frame.is-zoomable:hover::before,
.media-frame.is-zoomable:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.media-frame.is-zoomable:hover::after,
.media-frame.is-zoomable:focus-visible::after {
  opacity: 1;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(9, 12, 14, 0.84);
  backdrop-filter: blur(12px);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox img {
  max-width: min(96vw, 1440px);
  max-height: 88vh;
  width: auto;
  height: auto;
  background: #f4f5f1;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.4);
}

.image-lightbox-close {
  position: fixed;
  right: clamp(18px, 3vw, 40px);
  top: clamp(18px, 3vw, 40px);
  z-index: 2;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font: inherit;
  font-weight: 740;
  cursor: pointer;
}

body.has-image-lightbox {
  overflow: hidden;
}

body.page-about .split.reverse .media-frame.contain {
  aspect-ratio: 1 / 1;
  padding: clamp(8px, 1.4vw, 16px);
}

.teaser-grid,
.variant-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.teaser,
.variant,
.related {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 100%;
}

.teaser img,
.variant img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.variant img.fit-contain,
.addon-card img.fit-contain {
  object-fit: contain;
  padding: 10px;
  background: #eef1ed;
}

.teaser-body,
.related {
  padding: 24px;
}

.teaser h3,
.variant h3,
.related h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  font-weight: 560;
}

.teaser p,
.related p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.variant h3 {
  padding: 18px 20px 22px;
}

.addon-strip {
  padding-top: 76px;
  background: var(--white);
}

.addon-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.76fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 28px;
}

.addon-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.addon-head .lead {
  margin: 0;
  font-size: 1.04rem;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.addon-card {
  background: var(--paper);
  border: 1px solid var(--line);
}

.addon-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.addon-card h3 {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 1.08rem;
  font-weight: 620;
}

.variant-showcase {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 54vw) minmax(420px, 1fr);
  align-items: stretch;
  background: var(--white);
  overflow: hidden;
}

.variant-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--white);
}

.variant-stage-image {
  position: absolute;
  top: clamp(58px, 9vh, 104px);
  right: 0;
  bottom: auto;
  left: 0;
  width: 118%;
  height: calc(100% + 120px);
  max-width: none;
  object-fit: cover;
  object-position: right center;
  opacity: 0;
  transform: translateX(-4%) scale(1.035);
  filter: saturate(0.94) contrast(1.03);
  transition: opacity 420ms ease, transform 700ms ease;
}

.variant-stage-image.is-active {
  opacity: 1;
  transform: translateX(-4%) scale(1);
}

.variant-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 84px 72px;
  text-align: center;
}

.variant-panel h2 {
  margin: 0 0 24px;
  font-size: clamp(4rem, 6vw, 5.6rem);
  font-weight: 300;
  line-height: 1;
}

.variant-panel .lead {
  max-width: 760px;
  margin: 0 0 46px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.variant-options {
  width: min(100%, 680px);
  display: grid;
  gap: 24px;
}

.variant-option {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border: 1px solid rgba(16, 18, 22, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(16, 18, 22, 0.35);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.variant-option:hover {
  color: rgba(16, 18, 22, 0.72);
  transform: translateY(-1px);
}

.variant-option.is-active {
  border-color: #5368ff;
  box-shadow: inset 0 0 0 2px #5368ff;
  color: #05070b;
}

.variant-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7f8f8, #cfd2d3 48%, #f4f5f5);
  box-shadow: inset 0 0 12px rgba(16, 18, 22, 0.12);
}

.variant-swatch.dark {
  background: linear-gradient(135deg, #777a78, #1d1f1f 54%, #5f6261);
}

.variant-option strong,
.variant-option small {
  display: block;
}

.variant-option strong {
  font-size: 1.55rem;
  line-height: 1.12;
  font-weight: 650;
}

.variant-option small {
  margin-top: 6px;
  color: #6b6f76;
  font-size: 1rem;
  line-height: 1.35;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 18px 20px;
  background: var(--white);
  border-left: 5px solid var(--green);
  line-height: 1.5;
}

.showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.showcase-head h2 {
  margin-bottom: 0;
}

.showcase-head .lead {
  margin: 0;
  font-size: 1.04rem;
}

.hardware-showcase {
  background: #eef1ed;
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hardware-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(16, 18, 22, 0.1);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hardware-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 18, 22, 0.24);
  box-shadow: 0 18px 46px rgba(16, 18, 22, 0.12);
}

.hardware-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #f9faf8;
}

.hardware-body {
  padding: 22px;
}

.hardware-body span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hardware-body h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  font-weight: 600;
}

.hardware-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.hans-experience {
  background:
    radial-gradient(circle at 88% 12%, rgba(107, 221, 82, 0.12), transparent 28%),
    linear-gradient(135deg, #071014 0%, #0b272d 52%, #081217 100%);
  color: var(--white);
}

.hans-panel {
  display: grid;
  grid-template-columns: minmax(0, 1060px);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  justify-content: center;
}

.hans-copy .lead {
  color: rgba(255, 255, 255, 0.74);
}

.hans-logo {
  width: 92px;
  height: auto;
  margin-bottom: 24px;
  border-radius: 0;
  box-shadow: 0 0 34px rgba(108, 227, 89, 0.24);
}

.hans-steps {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.hans-steps span {
  padding: 13px 16px;
  border-left: 4px solid #78d957;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
}

.hans-inline-preview {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(153, 226, 216, 0.28);
  border-radius: 18px;
  background: #071216;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.hans-inline-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.hans-statement {
  margin: 28px 0 0;
  color: #9be66c;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.hans-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153, 226, 216, 0.22);
  border-radius: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at 76% 22%, rgba(113, 226, 92, 0.15), transparent 30%),
    linear-gradient(150deg, rgba(10, 32, 38, 0.96), rgba(9, 18, 23, 0.96));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.hans-dashboard::before {
  content: "";
  position: absolute;
  inset: auto -8% -22% 16%;
  height: 52%;
  background: radial-gradient(circle, rgba(49, 196, 190, 0.28), transparent 60%);
  pointer-events: none;
}

.hans-dashboard.hans-dashboard-image {
  padding: 0;
  border-color: rgba(153, 226, 216, 0.28);
  background: #071216;
}

.hans-dashboard.hans-dashboard-image::before {
  display: none;
}

.hans-dashboard.hans-dashboard-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hans-dashboard-top,
.hans-dialogue,
.hans-programs {
  position: relative;
  z-index: 1;
}

.hans-dashboard-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hans-dashboard-top strong {
  color: var(--white);
  font-size: 1.35rem;
}

.hans-dashboard-top span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.hans-dashboard-top em {
  padding: 8px 11px;
  border: 1px solid rgba(120, 217, 87, 0.34);
  border-radius: 999px;
  color: #9be66c;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.language-link {
  min-width: 34px;
  padding: 7px 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.language-link + .language-link {
  border-left: 1px solid var(--line);
}

.language-link:hover,
.language-link:focus-visible {
  color: var(--blue);
}

.language-link.is-active {
  background: var(--ink);
  color: var(--white);
}

.has-german-preview-gate {
  overflow: hidden;
}

.german-preview-gate {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 14, 18, 0.76);
  backdrop-filter: blur(10px);
}

.german-preview-card {
  width: min(100%, 520px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(120, 217, 87, 0.32);
  border-radius: 16px;
  background: linear-gradient(145deg, #0c2d32, #10241f);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  color: var(--white);
}

.german-preview-eyebrow {
  margin: 0 0 14px;
  color: #9be66c;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.german-preview-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.08;
}

.german-preview-card > p:not(.german-preview-eyebrow),
.german-preview-form label {
  color: rgba(255, 255, 255, 0.76);
}

.german-preview-card > p:not(.german-preview-eyebrow) {
  margin: 18px 0 28px;
}

.german-preview-form {
  display: grid;
  gap: 9px;
}

.german-preview-form label {
  font-size: 0.9rem;
}

.german-preview-form input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
}

.german-preview-form input:focus {
  outline: 2px solid #9be66c;
  outline-offset: 2px;
}

.german-preview-error {
  min-height: 1.3em;
  margin: 0;
  color: #ffb4a9;
  font-size: 0.88rem;
}

.german-preview-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.german-preview-actions button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.german-preview-cancel {
  background: transparent;
  color: var(--white);
}

.german-preview-submit {
  border-color: #78d957 !important;
  background: #78d957;
  color: #07120f;
}

.german-preview-actions button:hover,
.german-preview-actions button:focus-visible {
  filter: brightness(1.08);
}

.hans-dialogue {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hans-message {
  max-width: 86%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.hans-message.assistant {
  justify-self: end;
  border-color: rgba(120, 217, 87, 0.24);
  background: rgba(90, 154, 70, 0.14);
}

.hans-message small {
  display: block;
  margin-bottom: 7px;
  color: #9be66c;
  font-weight: 700;
}

.hans-message p,
.hans-programs p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.hans-programs {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hans-programs > p {
  color: #9be66c;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hans-programs div {
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.hans-programs strong {
  color: var(--white);
}

.hans-programs span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.hans-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hans-benefit {
  padding: 22px;
  border: 1px solid rgba(153, 226, 216, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.hans-benefit h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.05rem;
}

.hans-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.contact-band {
  background: var(--ink);
  color: var(--white);
}

.contact-band .lead {
  color: rgba(255, 255, 255, 0.76);
}

.contact-transition {
  margin-top: 22px;
}

.contact-band-cta {
  margin-top: 20px;
}

.roi-section {
  background: var(--paper);
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(72px, 8vw, 110px);
}

.roi-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(112, 177, 162, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(100, 205, 63, 0.18), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(81, 164, 174, 0.18), transparent 34%),
    linear-gradient(135deg, #09232a 0%, #122f37 52%, #0a1a20 100%);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(8, 18, 22, 0.22);
}

.roi-copy .eyebrow {
  color: #93e078;
}

.roi-copy h2 {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
}

.roi-copy .lead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.roi-topics {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.roi-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  background: #63cf3b;
  color: #061014;
  font-weight: 780;
  box-shadow: 0 14px 34px rgba(99, 207, 59, 0.24);
}

.roi-button::after {
  content: "->";
  margin-left: 10px;
}

.roi-note {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.55;
}

.roi-preview {
  display: block;
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  overflow: visible;
  border-radius: 18px;
  background: transparent;
}

.roi-preview::before {
  content: "";
  position: absolute;
  inset: 12% -2% 8% 10%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 60% 34%, rgba(99, 207, 59, 0.22), transparent 34%),
    radial-gradient(circle at 38% 58%, rgba(79, 197, 205, 0.24), transparent 44%),
    linear-gradient(135deg, rgba(10, 38, 45, 0.72), rgba(16, 63, 58, 0.22));
  filter: blur(10px);
  opacity: 0.9;
}

.roi-preview img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.32));
}

.final-cta {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(173, 222, 224, 0.74), transparent 38%),
    radial-gradient(circle at 62% 58%, rgba(58, 121, 116, 0.28), transparent 42%),
    linear-gradient(115deg, #3d4b58 0%, #6f8490 48%, #b7d6d9 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(64px, 8vw, 104px) 28px clamp(42px, 5vw, 70px);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 18, 22, 0.18), rgba(16, 18, 22, 0.02) 46%, rgba(16, 18, 22, 0.1)),
    repeating-radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 4px);
  opacity: 0.34;
  pointer-events: none;
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4.2rem, 8vw, 7.1rem);
  font-weight: 260;
  line-height: 0.92;
  white-space: pre-line;
}

.final-cta p {
  max-width: 1180px;
  margin: clamp(30px, 4vw, 48px) 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  font-weight: 430;
  line-height: 1.42;
}

.final-cta .video-intro {
  max-width: 860px;
  margin-top: clamp(20px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.32rem);
}

.final-cta .btn {
  margin-top: 28px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(16, 18, 22, 0.18);
  backdrop-filter: blur(14px);
}

.final-cta .btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.final-cta .final-video-link {
  margin-top: 18px;
}

.final-cta-product {
  position: relative;
  z-index: 1;
  width: min(86vw, 1500px);
  margin-top: clamp(56px, 7vw, 88px);
  filter: drop-shadow(0 -8px 28px rgba(16, 18, 22, 0.12));
}

.final-cta-product img {
  width: 100%;
  max-width: none;
  object-fit: contain;
}

.final-cta-video {
  width: min(86vw, 1280px);
  max-width: 1280px;
  background: #6e7d86;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 30px 90px rgba(16, 18, 22, 0.28);
}

.final-cta-video::before,
.final-cta-video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.final-cta-video::before {
  width: clamp(76px, 8vw, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 50px rgba(16, 18, 22, 0.28);
  transform: translate(-50%, -50%);
}

.final-cta-video::after {
  width: 0;
  height: 0;
  border-top: clamp(16px, 1.8vw, 25px) solid transparent;
  border-bottom: clamp(16px, 1.8vw, 25px) solid transparent;
  border-left: clamp(25px, 2.7vw, 40px) solid #101216;
  transform: translate(-38%, -50%);
}

.final-cta-video.is-playing::before,
.final-cta-video.is-playing::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}

.final-cta-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #6e7d86;
}

.testimonials-section {
  background: #f2f4ef;
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

.testimonials-inner {
  display: grid;
  gap: clamp(34px, 5vw, 54px);
}

.testimonials-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.testimonials-heading {
  display: grid;
  gap: 12px;
}

.testimonials-heading .eyebrow {
  margin: 0;
  color: var(--green);
}

.testimonials-head h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2.7rem, 4.7vw, 4.5rem);
  font-weight: 300;
  line-height: 1.02;
}

.testimonials-head .lead {
  margin: 0 0 5px;
  max-width: 560px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 18px;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.testimonial-track {
  min-height: 390px;
  border: 1px solid rgba(15, 23, 28, 0.12);
  border-top: 2px solid rgba(116, 166, 106, 0.78);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 18, 22, 0.065);
  outline: none;
}

.testimonial-track:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.testimonial-slide {
  min-height: 386px;
  padding: clamp(34px, 4.5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.testimonial-slide[hidden] {
  display: none !important;
}

.testimonial-quote {
  display: -webkit-box;
  white-space: pre-line;
  max-width: 790px;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.5vw, 1.5rem);
  font-weight: 340;
  line-height: 1.42;
}

.testimonial-quote::before {
  content: "“";
  display: block;
  height: 32px;
  color: rgba(116, 166, 106, 0.72);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 0.85;
}

.testimonial-aside {
  display: grid;
  align-content: center;
  gap: 28px;
  min-height: 170px;
  padding-left: clamp(24px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.testimonial-meta {
  display: grid;
  gap: 7px;
}

.testimonial-meta strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.testimonial-meta span,
.testimonial-meta small {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.testimonial-more {
  justify-self: start;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 5px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 720;
  cursor: pointer;
}

.testimonial-nav {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(16, 18, 22, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(16, 18, 22, 0.72);
  font-size: 2.15rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(16, 18, 22, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.testimonial-nav span {
  transform: translateY(-2px);
}

.testimonial-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 18, 22, 0.36);
  background: var(--white);
  color: var(--ink);
}

.testimonial-nav:focus-visible,
.testimonial-more:focus-visible,
.testimonial-dots button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.testimonial-counter {
  min-width: 62px;
  color: var(--muted);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 18, 22, 0.22);
  cursor: pointer;
  transition: width 160ms ease, background-color 160ms ease;
}

.testimonial-dots button.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--ink);
}

.testimonial-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 10, 12, 0.62);
}

.testimonial-dialog-panel {
  width: min(100%, 860px);
  max-height: min(760px, 86vh);
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
  border-top: 4px solid var(--green);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.testimonial-dialog-panel p {
  margin: 0 0 28px;
  white-space: pre-line;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.52;
}

.testimonial-dialog-panel strong,
.testimonial-dialog-panel small {
  display: block;
}

.testimonial-dialog-panel small {
  margin-top: 6px;
  color: var(--muted);
}

.testimonial-dialog-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  margin: 0 0 22px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(16, 18, 22, 0.08);
  padding: 9px 14px;
  font: inherit;
  cursor: pointer;
}

body.has-testimonial-dialog {
  overflow: hidden;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 620;
}

details p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-image {
  display: block;
  width: min(100%, 960px);
  height: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #f5f5f2;
}

.site-footer {
  padding: 64px 28px 38px;
  background: #050608;
  color: var(--white);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid a {
  display: block;
  margin: 9px 0;
}

.footer-bottom {
  max-width: 1180px;
  margin: 44px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .testimonials-head {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .testimonial-shell {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 12px;
  }

  .testimonial-nav {
    width: 52px;
    height: 52px;
  }

  .testimonial-track,
  .testimonial-slide {
    min-height: 430px;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .testimonial-aside {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    min-height: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .header-inner {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    width: 154px;
    height: 36px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 2px;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav-trigger,
  .nav > a {
    padding: 8px 0;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    position: absolute;
    top: 12px;
    right: 28px;
  }

  .hero {
    min-height: 640px;
  }

  .split,
  .split.reverse,
  .teaser-grid,
  .variant-grid,
  .addon-grid,
  .related-grid,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .roi-card {
    grid-template-columns: 1fr;
    padding: clamp(28px, 6vw, 46px);
  }

  .roi-preview {
    justify-self: start;
    width: min(100%, 560px);
  }

  .hans-panel {
    grid-template-columns: 1fr;
  }

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

  body.page-hans .hero-media img {
    right: 28px;
    width: clamp(190px, 36vw, 320px);
    opacity: 0.28;
  }

  .split.reverse .copy {
    order: 0;
  }

  .showcase-head,
  .hardware-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-head {
    align-items: start;
    gap: 28px;
  }

  .addon-head {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .variant-showcase {
    grid-template-columns: 1fr;
  }

  .variant-stage {
    min-height: 56vh;
  }

  .variant-stage-image {
    top: 28px;
    width: 112%;
    height: calc(100% + 52px);
    object-position: right top;
  }

  .variant-panel {
    padding: 72px 28px;
  }

  .variant-panel h2 {
    font-size: clamp(3.2rem, 12vw, 5rem);
  }

  .final-cta {
    min-height: 760px;
    padding-top: 72px;
  }

  .final-cta h2 {
    font-size: clamp(3.8rem, 14vw, 6rem);
  }

  .final-cta p {
    max-width: 720px;
  }

  .final-cta-product {
    width: min(132vw, 980px);
    margin-top: 46px;
  }
}

@media (max-width: 560px) {
  .testimonials-section {
    padding: 64px 20px;
  }

  .testimonials-head h2 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .testimonial-shell {
    grid-template-columns: minmax(0, 1fr) 50px 14px 50px minmax(0, 1fr);
    gap: 0;
  }

  .testimonial-track {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    min-height: 470px;
    margin-bottom: 14px;
  }

  .testimonial-nav {
    position: static;
    width: 50px;
    height: 50px;
    font-size: 1.95rem;
  }

  .testimonial-nav.prev {
    grid-column: 2;
    grid-row: 2;
  }

  .testimonial-nav.next {
    grid-column: 4;
    grid-row: 2;
  }

  .testimonial-slide {
    min-height: 466px;
    padding: 28px 24px;
  }

  .testimonial-quote {
    -webkit-line-clamp: 8;
    font-size: clamp(1.05rem, 4.6vw, 1.3rem);
  }

  .testimonial-aside {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .testimonial-controls {
    gap: 16px;
  }

  .section {
    padding: 68px 20px;
  }

  .hero-content {
    padding: 90px 20px 72px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  .nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  .header-inner {
    padding: 10px 20px 12px;
  }

  .header-actions {
    top: 10px;
    right: 20px;
  }

  .brand {
    width: 148px;
    height: 34px;
  }

  .showcase-head,
  .hardware-grid {
    grid-template-columns: 1fr;
  }

  .hardware-card {
    grid-template-rows: 210px 1fr;
  }

  .variant-stage {
    min-height: 420px;
  }

  .variant-panel {
    padding: 58px 20px 68px;
  }

  .variant-panel .lead {
    margin-bottom: 32px;
    font-size: 1rem;
  }

  .variant-options {
    gap: 14px;
  }

  .variant-option {
    min-height: 78px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 16px;
  }

  .variant-swatch {
    width: 34px;
    height: 34px;
  }

  .variant-option strong {
    font-size: 1.22rem;
  }

  .variant-option small {
    font-size: 0.88rem;
  }

  .final-cta {
    min-height: 680px;
    padding: 62px 20px 0;
  }

  .final-cta h2 {
    font-size: clamp(3.4rem, 17vw, 4.8rem);
  }

  .final-cta p {
    font-size: 1rem;
  }

  .roi-section {
    padding: 58px 20px;
  }

  .roi-card {
    border-radius: 14px;
  }

  .roi-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .roi-preview {
    width: 100%;
    transform: none;
  }

  .hans-dashboard {
    padding: 16px;
  }

  .hans-dashboard-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hans-message {
    max-width: 100%;
  }

  .hans-benefits {
    grid-template-columns: 1fr;
  }

  body.page-hans .hero-media img {
    right: 18px;
    width: min(52vw, 220px);
    opacity: 0.18;
  }

  .final-cta-product {
    width: 160vw;
    margin-top: 34px;
  }
}

.site-version {
  margin-left: 10px;
  white-space: nowrap;
}
