:root {
  --green: #4f9d2f;
  --green-dark: #2f7724;
  --green-deep: #173f2d;
  --green-pale: #eef6e9;
  --yellow: #efc733;
  --ink: #203029;
  --ink-soft: #59675f;
  --navy: #22362e;
  --navy-deep: #162920;
  --line: #e0e7e2;
  --mist: #f5f7f5;
  --white: #fff;
  --shadow: 0 18px 52px rgba(26, 46, 36, .1);
  --shadow-soft: 0 10px 30px rgba(26, 46, 36, .07);
  --radius: 22px;
  --radius-small: 15px;
  --shell: 1240px;
  --header-height: 104px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI Variable Text", "Segoe UI Variable", "Aptos", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

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

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", "Segoe UI Variable", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: -.028em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

h2 {
  margin-bottom: .65em;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
}

h3 {
  margin-bottom: .55em;
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
}

p {
  margin-bottom: 1.1em;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-deep);
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: .9rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 8px 18px rgba(79, 157, 47, .26);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 24px rgba(47, 119, 36, .3);
}

.button-outline {
  color: var(--green-dark);
  border-color: var(--green);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--green-dark);
}

.button-light {
  color: var(--green-deep);
  background: var(--white);
  box-shadow: 0 9px 22px rgba(15, 40, 29, .15);
}

.button-light:hover {
  color: var(--white);
  background: var(--navy-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-weight: 650;
  text-decoration: none;
}

.text-link span {
  transition: transform .25s var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 0 rgba(28, 39, 49, .08);
}

.topbar {
  min-height: 32px;
  color: var(--ink);
  border-bottom: 1px solid #edf0ee;
  background: var(--white);
  font-size: .78rem;
}

.topbar-inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--green-dark);
}

.topbar-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar .topbar-pv24 {
  color: var(--green-dark);
  font-weight: 650;
}

.nav-shell {
  display: grid;
  min-height: 72px;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 226px;
  align-items: center;
}

.brand img {
  width: 100%;
}

.site-nav ul {
  display: flex;
  min-height: 72px;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  display: flex;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 620;
  letter-spacing: -.008em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 3px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-dark);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: var(--green-pale);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  overflow: hidden;
  background: #e9eceb;
}

.home-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url('/assets/web/hero-solar.webp');
  background-position: center 62%;
  background-size: cover;
  transform: scale(1.02);
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(247, 250, 247, .9) 0%, rgba(247, 250, 247, .76) 32%, rgba(247, 250, 247, .2) 64%, rgba(247, 250, 247, .03) 100%);
}

.home-hero-layout {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 38px;
  padding-block: 56px 96px;
}

.home-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  animation: hero-copy-in .85s var(--ease) both;
}

.hero-brand {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-weight: 620;
}

.home-hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3rem, 4.5vw, 4.35rem);
  font-weight: 610;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.home-hero h1 strong {
  display: inline-block;
  color: var(--green);
  font-weight: 650;
}

.hero-intro {
  max-width: 49ch;
  margin-bottom: 28px;
  color: #32404a;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.portal-preview {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 390px;
  color: var(--ink);
  text-decoration: none;
  animation: portal-in 1s .12s var(--ease) both;
}

.laptop {
  position: absolute;
  top: 38px;
  right: 52px;
  display: block;
  width: min(590px, 85%);
}

.laptop-screen {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 10px 10px 14px;
  border: 4px solid #0d1215;
  border-radius: 18px 18px 7px 7px;
  background: #11181d;
  box-shadow: 0 22px 48px rgba(14, 25, 32, .34);
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 7px;
}

.laptop-base {
  position: relative;
  display: block;
  width: 114%;
  height: 16px;
  margin-left: -7%;
  border-radius: 3px 3px 18px 18px;
  background: linear-gradient(180deg, #d7dbdc, #91999d);
  box-shadow: 0 12px 20px rgba(14, 25, 32, .3);
}

.phone {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 20px;
  display: block;
  width: 150px;
  padding: 8px;
  border: 4px solid #11181d;
  border-radius: 24px;
  background: #11181d;
  box-shadow: 0 22px 44px rgba(14, 25, 32, .35);
  transform: rotate(1deg);
}

.phone::before {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 50%;
  width: 42px;
  height: 5px;
  border-radius: 0 0 5px 5px;
  content: "";
  background: #11181d;
  transform: translateX(-50%);
}

.phone-screen {
  display: block;
  overflow: hidden;
  aspect-ratio: 390 / 844;
  border-radius: 14px;
  background: var(--white);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.portal-note {
  position: absolute;
  right: 188px;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, .9);
  font-size: .77rem;
  font-weight: 650;
  box-shadow: 0 5px 15px rgba(28, 39, 49, .08);
}

@keyframes hero-copy-in {
  from { opacity: .01; filter: blur(8px); transform: translateY(24px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes portal-in {
  from { opacity: .01; filter: blur(12px); transform: translateX(42px) scale(.97); }
  to { opacity: 1; filter: blur(0); transform: translateX(0) scale(1); }
}

.trust-strip {
  position: relative;
  z-index: 8;
  display: grid;
  min-height: 98px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -49px;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
}

.trust-item:not(:last-child)::after {
  position: absolute;
  top: 23px;
  right: 0;
  bottom: 23px;
  width: 1px;
  content: "";
  background: var(--line);
}

.trust-item .icon {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.trust-item p {
  margin: 0;
  line-height: 1.35;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 3px;
  font-size: .86rem;
  font-weight: 650;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: .75rem;
}

/* Map stage */
.map-stage {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid #e5eae7;
  border-radius: 18px;
  background: #f7faf7;
  box-shadow: var(--shadow-soft);
}

.map-copy {
  position: relative;
  z-index: 2;
  padding: 34px 32px;
  background: rgba(255, 255, 255, .94);
}

.map-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 2.3vw, 2.2rem);
}

.map-copy > p {
  color: var(--ink-soft);
}

.project-map-wrap {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: #f1f6f0;
}

.project-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(79, 157, 47, .09), transparent 38%),
    linear-gradient(135deg, #f8faf7 0%, #edf4eb 100%);
}

.germany-map {
  position: absolute;
  top: 4%;
  left: 7%;
  width: 86%;
  height: 92%;
  overflow: visible;
}

.germany-map path {
  fill: rgba(255, 255, 255, .55);
  stroke: #cfddd2;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.map-pins,
.map-labels {
  position: absolute;
  top: 4%;
  left: 7%;
  width: 86%;
  height: 92%;
}

.map-labels {
  z-index: 1;
  color: #84918a;
  font-size: .7rem;
  font-weight: 550;
  pointer-events: none;
}

.map-labels span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(247, 250, 247, .72);
  transform: translate(-50%, -50%);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: z-index .18s ease;
}

.map-pin::before {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: rgba(47, 119, 36, .68);
  box-shadow: none;
  content: "";
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.map-pin:hover,
.map-pin:focus-visible,
.map-pin.is-active {
  z-index: 5;
}

.map-pin:hover::before,
.map-pin:focus-visible::before,
.map-pin.is-active::before {
  background: var(--green-deep);
  transform: scale(1.55);
}

.map-pin:focus-visible {
  outline: 2px solid rgba(44, 126, 56, .42);
  outline-offset: 0;
}

.map-tooltip {
  position: absolute;
  z-index: 10;
  max-width: 220px;
  padding: 12px 14px;
  border-radius: 11px;
  color: var(--white);
  background: var(--navy-deep);
  font-size: .8rem;
  line-height: 1.35;
  box-shadow: 0 12px 25px rgba(20, 35, 45, .22);
  pointer-events: none;
}

.map-tooltip strong,
.map-tooltip span {
  display: block;
}

.map-tooltip span {
  margin-top: 3px;
  color: #d8e5dc;
}


.map-status {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  width: min(34ch, calc(100% - 40px));
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, .94);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transform: translate(-50%, -50%);
}

.map-status:empty {
  display: none;
}

.map-facts {
  display: grid;
  grid-column: 1 / -1;
  min-height: 78px;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  color: var(--white);
  background: var(--navy);
}

.map-facts p {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 14px;
  margin: 0;
  padding: 15px 21px;
}

.map-facts p:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, .15);
}

.map-facts .icon {
  width: 26px;
  height: 26px;
  grid-row: 1 / 3;
  color: var(--green);
}

.map-facts strong,
.map-facts span {
  display: block;
}

.map-facts strong {
  font-weight: 650;
}

.map-facts span {
  color: #cfd9d4;
  font-size: .77rem;
}

/* Home content */
.paths-section,
.reference-preview {
  padding-block: 96px;
}

.section-heading {
  display: flex;
  max-width: 980px;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading h2 {
  max-width: 18ch;
}

.section-heading p {
  max-width: 46ch;
  color: var(--ink-soft);
}

.path-grid {
  display: grid;
  grid-template-columns: 1.18fr .91fr .91fr;
  gap: 22px;
}

.path {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(26, 46, 36, .055);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.path:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(28, 39, 49, .12);
}

.path-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.path:hover .path-image img {
  transform: scale(1.04);
}

.path-image-rotator > img,
.path-image-rotation-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}

.path-image-rotator > img.is-active,
.path-image-rotation-layer.is-active {
  opacity: 1;
}

.path-image-rotation-layer img {
  display: block;
}

.path-body {
  padding: 24px 24px 27px;
}

.path-body p {
  min-height: 76px;
  color: var(--ink-soft);
}

.path-body a {
  color: var(--green-dark);
  font-weight: 650;
  text-decoration: none;
}

.quality-section {
  padding-block: 96px;
  color: var(--white);
  background: var(--navy-deep);
}

.quality-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
}

.quality-layout h2 {
  color: var(--white);
}

.quality-layout > div > p {
  max-width: 48ch;
  color: #d5dfda;
  font-size: 1.1rem;
}

.quality-layout .text-link {
  color: #96d179;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.quality-list .icon {
  color: var(--green);
}

.quality-list strong,
.quality-list span {
  display: block;
}

.quality-list span {
  color: #cbd6d1;
}

.quality-list strong {
  margin-bottom: 5px;
  color: var(--white);
}

.video-section {
  padding-block: 96px;
  background: var(--green-pale);
}

.video-section[data-video-enabled="false"] {
  display: none;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}

.video-copy h2 {
  max-width: 13ch;
}

.video-copy > p:not(.video-consent, .video-status) {
  max-width: 45ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.video-consent {
  max-width: 48ch;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(47, 119, 36, .2);
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.55;
}

.video-consent a {
  color: var(--green-dark);
  font-weight: 620;
}

.video-status {
  margin: 14px 0 0;
  color: var(--green-deep);
  font-size: .86rem;
  font-weight: 620;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--navy-deep);
  box-shadow: 0 22px 54px rgba(23, 63, 45, .18);
  isolation: isolate;
}

.video-frame > img,
.video-frame > iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame > img {
  object-fit: cover;
}

.video-frame > iframe {
  display: block;
}

.video-frame-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(15, 34, 25, .66) 100%);
  pointer-events: none;
}

.video-play {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: clamp(18px, 3vw, 28px);
  left: clamp(18px, 3vw, 28px);
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 7px 18px 7px 8px;
  border: 0;
  border-radius: 12px;
  color: var(--green-deep);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(12, 30, 21, .24);
  font-size: .92rem;
  font-weight: 680;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}

.video-play:hover {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 14px 34px rgba(12, 30, 21, .32);
  transform: translateY(-2px);
}

.video-play-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: var(--green);
}

.video-play:hover .video-play-icon {
  color: var(--green-deep);
  background: var(--yellow);
}

.video-play-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.compact-heading {
  max-width: none;
}

.compact-heading h2 {
  max-width: 18ch;
}

.reference-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, .7fr);
  grid-template-rows: repeat(2, minmax(0, 250px));
  gap: 22px;
}

.reference-mosaic figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-small);
}

.reference-mosaic .reference-large {
  grid-row: 1 / -1;
}

.reference-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-mosaic figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  border-radius: 11px;
  color: var(--white);
  background: rgba(20, 35, 45, .88);
  font-size: .8rem;
  font-weight: 650;
}

.partner-band {
  padding-block: 42px;
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.partner-band-inner {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.partner-copy h2 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
}

.partner-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.partner-logo {
  width: clamp(210px, 22vw, 255px);
}

.contact-band {
  padding-block: 60px;
  color: var(--white);
  background: var(--green);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-band h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.85rem);
}

.contact-band p {
  max-width: 58ch;
  margin-bottom: 0;
  color: #eff9eb;
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 430px;
  isolation: isolate;
  overflow: hidden;
  background-image: var(--page-hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 35, 45, .92) 0%, rgba(20, 35, 45, .72) 43%, rgba(20, 35, 45, .16) 78%);
}

.page-hero-inner {
  display: flex;
  min-height: 430px;
  max-width: var(--shell);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 62px;
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 610;
  line-height: 1.05;
}

.page-hero p {
  max-width: 58ch;
  margin-bottom: 28px;
  color: #edf3ef;
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
}

.content-section {
  padding-block: 96px;
}

.split-copy {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

.split-copy h2 {
  max-width: 14ch;
}

.split-copy .standout {
  max-width: 36ch;
  color: var(--green-dark);
  font-size: 1.08rem;
  font-weight: 600;
}

.prose {
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  padding-bottom: 96px;
}

.principles article {
  padding-top: 24px;
  border-top: 1px solid #b9d7aa;
}

.principles article > span {
  display: block;
  margin-bottom: 15px;
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .01em;
}

.principles p {
  color: var(--ink-soft);
}

.image-led {
  position: relative;
  display: grid;
  min-height: 510px;
  grid-template-columns: 1.25fr .75fr;
  margin-bottom: 96px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-deep);
}

.image-led > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-led > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px;
  color: var(--white);
}

.image-led h2 {
  color: var(--white);
}

.image-led p {
  color: #d7e1dc;
}

.process {
  padding-bottom: 94px;
}

.process h2 {
  margin-bottom: 42px;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process li {
  position: relative;
  padding: 28px 28px 8px 0;
  border-top: 2px solid var(--line);
  counter-increment: process;
}

.process li::before {
  position: absolute;
  top: -9px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.process strong,
.process span {
  display: block;
}

.process strong {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 650;
}

.process span {
  color: var(--ink-soft);
  font-size: .92rem;
}

.document-panel {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 96px;
  padding: 38px;
  border-radius: var(--radius-small);
  background: var(--green-pale);
}

.document-panel > div:first-child {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--white);
}

.document-panel .icon {
  width: 38px;
  height: 38px;
}

.document-panel h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.document-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 26px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

/* References */
.reference-index {
  padding-block: 92px 100px;
}

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

.reference-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius-small);
  color: var(--white);
  background: var(--navy);
}

.reference-card.feature {
  grid-column: span 2;
  min-height: 500px;
}

.reference-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 58px 24px 24px;
  background: linear-gradient(transparent, rgba(20, 35, 45, .92));
}

.reference-card span {
  display: block;
  margin-bottom: 6px;
  color: #b5e59e;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.reference-card h3,
.reference-card p {
  color: var(--white);
}

.reference-card p {
  margin: 0;
  color: #d7e1dc;
}

.text-reference {
  background: var(--green-deep);
}

.text-reference > div {
  position: static;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  background: transparent;
}

.text-reference a {
  margin-top: 24px;
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
}

/* Downloads */
.downloads {
  padding-block: 92px 100px;
}

.download-primary {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 58px;
  padding: 42px 50px;
  border-radius: var(--radius);
  background: var(--mist);
}

.download-cover {
  max-height: 370px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(28, 39, 49, .16);
}

.download-cover img {
  width: 100%;
}

.download-primary p {
  max-width: 55ch;
  color: var(--ink-soft);
}

.download-note {
  max-width: 860px;
  margin: 70px 0 0 auto;
  padding-top: 34px;
  border-top: 2px solid var(--green);
}

.download-note h2 {
  font-size: 2rem;
}

.download-note p {
  color: var(--ink-soft);
}

/* FAQ */
.faq {
  max-width: 900px;
  padding-block: 88px 100px;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: grid;
  min-height: 84px;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 620;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary > span[aria-hidden="true"],
.faq summary > span[aria-hidden="true"]::after {
  width: 20px;
  height: 2px;
  content: "";
  background: var(--green);
  transition: transform .25s ease;
}

.faq summary > span[aria-hidden="true"]::after {
  display: block;
  transform: rotate(90deg);
}

.faq details[open] summary > span[aria-hidden="true"]::after {
  transform: rotate(0);
}

.faq summary > [data-cms-text] {
  min-width: 0;
}

.faq details > div {
  max-width: 70ch;
  padding: 0 40px 24px 0;
  color: var(--ink-soft);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 68px;
  padding-block: 92px 108px;
}

.contact-details {
  padding-right: 30px;
}

.contact-details address {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-style: normal;
}

.contact-details a {
  color: var(--green-dark);
  font-size: 1.08rem;
  font-weight: 650;
  text-decoration: none;
}

.contact-hours {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 38px;
  border-radius: var(--radius-small);
  background: var(--mist);
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: .83rem;
  font-weight: 620;
}

.form-field label span {
  color: var(--ink-soft);
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd4cf;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}

.form-field input,
.form-field select {
  height: 50px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 150px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(79, 157, 47, .16);
  outline: 0;
}

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

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: .82rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.consent a {
  color: var(--green-dark);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.form-actions p {
  max-width: 46ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: .78rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* Legal / 404 */
.plain-main {
  min-height: 60vh;
  padding-block: 80px 120px;
  background: var(--mist);
}

.legal {
  max-width: 860px;
  padding: 52px;
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal h1 {
  margin-bottom: 36px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal h2 {
  margin-top: 42px;
  font-size: 1.45rem;
}

.legal p {
  max-width: 72ch;
  color: var(--ink-soft);
}

.legal-note {
  padding: 18px 20px;
  border: 1px solid #b8d9aa;
  border-radius: 11px;
  color: var(--green-deep) !important;
  background: var(--green-pale);
}

.error-page {
  padding-block: 80px;
  text-align: center;
}

.status-code {
  margin: 0;
  color: var(--green);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
}

.error-page h1 {
  margin: 42px 0 20px;
}

.error-page p {
  max-width: 55ch;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  color: #dce6e1;
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr .8fr .8fr;
  gap: 64px;
  padding-block: 76px 64px;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 26px;
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
}

.footer-brand p {
  max-width: 39ch;
  color: #bdcbc4;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: .92rem;
  font-weight: 620;
  letter-spacing: 0;
}

.site-footer address {
  color: #bdcbc4;
  font-style: normal;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: #dce6e1;
  text-decoration: none;
}

.site-footer a:hover {
  color: #a8dd90;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom .shell {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #9dada5;
  font-size: .76rem;
}

/* Responsive */
@media (max-width: 1180px) {
  :root { --header-height: 76px; }
  .topbar { display: none; }
  .nav-shell { min-height: 72px; grid-template-columns: 220px 1fr; }
  .brand { width: 205px; }
  .site-nav ul { min-height: 72px; }
  .site-nav a { padding-inline: 9px; font-size: .76rem; }
  .home-hero-layout { grid-template-columns: .95fr 1.05fr; }
  .laptop { right: 40px; }
  .phone { right: -2px; width: 128px; }
  .portal-note { right: 145px; }
  .trust-item { padding-inline: 18px; }
  .map-stage { grid-template-columns: 300px minmax(0, 1fr); }
  .map-copy { padding-inline: 30px; }
  .footer-main { gap: 34px; }
}

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .menu-toggle { display: block; justify-self: end; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .site-nav {
    position: fixed;
    z-index: 101;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px 18px 40px;
    overflow: auto;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s var(--ease);
  }
  .menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav ul { display: block; min-height: 0; }
  .site-nav li { display: block; border-bottom: 1px solid var(--line); }
  .site-nav a { min-height: 58px; padding: 0 8px; font-size: .9rem; }
  .site-nav a::after { right: auto; left: 8px; width: 44px; }
  .menu-open .menu-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle > span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .home-hero { min-height: auto; }
  .home-hero-layout { min-height: 690px; grid-template-columns: 1fr; align-content: start; padding-block: 52px 92px; }
  .home-hero-copy { max-width: 650px; }
  .home-hero::after { background: linear-gradient(180deg, rgba(247, 250, 247, .93) 0%, rgba(247, 250, 247, .74) 50%, rgba(247, 250, 247, .12) 100%); }
  .portal-preview { min-height: 300px; }
  .laptop { top: 0; right: 13%; width: 68%; }
  .phone { right: 8%; bottom: -5px; width: 120px; }
  .portal-note { right: 25%; bottom: 0; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)::after { display: none; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .map-stage { grid-template-columns: 1fr; }
  .map-copy { padding: 42px; }
  .project-map-wrap { min-height: 360px; }
  .map-facts { grid-template-columns: repeat(2, 1fr); }
  .map-facts p:nth-child(2)::after { display: none; }
  .map-facts p:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .15); }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .path:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; }
  .path:first-child .path-image { aspect-ratio: auto; }
  .quality-layout { grid-template-columns: 1fr; gap: 55px; }
  .video-layout { grid-template-columns: 1fr; gap: 38px; }
  .video-copy h2 { max-width: 17ch; }
  .video-copy > p:not(.video-consent, .video-status) { max-width: 58ch; }
  .video-consent { max-width: 62ch; }
  .split-copy { grid-template-columns: 1fr; gap: 30px; }
  .split-copy h2 { max-width: 18ch; }
  .image-led { grid-template-columns: 1fr; }
  .image-led > img { max-height: 430px; }
  .process ol { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .reference-grid { grid-template-columns: repeat(2, 1fr); }
  .reference-card.feature { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .contact-details { max-width: 600px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .legal h1 { font-size: clamp(2rem, 9.8vw, 2.75rem); }
  .nav-shell { min-height: 70px; }
  .brand { width: 190px; }
  .site-nav { top: 70px; }
  .home-hero-layout { min-height: 0; gap: 20px; padding-block: 34px 72px; }
  .hero-brand { margin-bottom: 12px; }
  .home-hero h1 { margin-bottom: 18px; font-size: clamp(2.35rem, 10.8vw, 2.75rem); line-height: 1.02; }
  .hero-intro { margin-bottom: 20px; font-size: 1rem; line-height: 1.52; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .portal-preview { min-height: 240px; margin-top: 0; }
  .laptop { top: 0; right: 9%; width: 82%; }
  .phone { right: 0; bottom: 0; width: 84px; }
  .portal-note { display: none; }
  .trust-strip { margin-top: -36px; }
  .trust-item { grid-template-columns: 32px 1fr; padding: 16px 14px; }
  .trust-item .icon { width: 28px; height: 28px; }
  .trust-item strong { font-size: .82rem; }
  .trust-item span { font-size: .68rem; }
  .map-stage { margin-top: 30px; }
  .map-copy { padding: 32px 24px 36px; }
  .project-map-wrap { min-height: 340px; }
  .germany-map, .map-pins, .map-labels { top: 4%; left: 4%; width: 92%; height: 92%; }
  .map-labels { display: none; }
  .map-pin::before { width: 5px; height: 5px; }
  .map-facts p { grid-template-columns: 34px 1fr; padding: 18px 16px; }
  .map-facts .icon { width: 28px; height: 28px; }
  .map-facts strong { font-size: .82rem; }
  .map-facts span { font-size: .68rem; }
  .paths-section, .reference-preview { padding-block: 66px; }
  .section-heading { display: block; margin-bottom: 32px; }
  .section-heading p, .section-heading .text-link { margin-top: 20px; }
  .path-grid { grid-template-columns: 1fr; }
  .path:first-child { display: block; grid-column: auto; }
  .path-image { aspect-ratio: 16 / 10; }
  .path-body p { min-height: 0; }
  .quality-section { padding-block: 66px; }
  .quality-list { grid-template-columns: 1fr; }
  .video-section { padding-block: 66px; }
  .video-layout { gap: 30px; }
  .video-copy > p:not(.video-consent, .video-status) { font-size: 1rem; }
  .video-consent { margin-top: 22px; padding-top: 16px; }
  .video-frame { border-radius: var(--radius-small); }
  .video-play { min-height: 50px; padding: 6px 15px 6px 7px; }
  .video-play-icon { width: 38px; height: 38px; }
  .reference-mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .reference-mosaic .reference-large { grid-row: auto; }
  .reference-mosaic figure { min-height: 300px; }
  .partner-band { padding-block: 34px; }
  .partner-band-inner { grid-template-columns: 1fr; gap: 24px; }
  .partner-logo { width: min(220px, 100%); }
  .contact-band-inner { align-items: flex-start; flex-direction: column; }
  .page-hero, .page-hero-inner { min-height: 390px; }
  .page-hero-shade { background: rgba(20, 35, 45, .74); }
  .page-hero h1 { font-size: clamp(2.35rem, 10.8vw, 3.15rem); }
  .content-section { padding-block: 66px; }
  .principles { grid-template-columns: 1fr; gap: 30px; padding-bottom: 66px; }
  .image-led { margin-bottom: 66px; }
  .image-led > div { padding: 34px 26px; }
  .process { padding-bottom: 66px; }
  .process ol { grid-template-columns: 1fr; }
  .document-panel { grid-template-columns: 1fr; margin-bottom: 66px; padding: 30px 24px; }
  .document-panel ul { grid-template-columns: 1fr; }
  .reference-index { padding-block: 66px; }
  .reference-grid { grid-template-columns: 1fr; }
  .reference-card.feature { grid-column: auto; }
  .reference-card,
  .reference-card.feature { min-height: 340px; }
  .download-primary { grid-template-columns: 1fr; gap: 38px; padding: 30px 24px; }
  .download-cover { width: min(260px, 80%); }
  .faq { padding-block: 64px 76px; }
  .faq summary { min-height: 74px; font-size: 1rem; }
  .contact-layout { padding-block: 68px 80px; }
  .contact-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .form-field, .full { grid-column: 1; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .plain-main { padding-block: 50px 80px; }
  .legal { padding: 32px 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 26px; padding-block: 58px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom .shell { min-height: 78px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
}

@media (max-width: 430px) {
  .home-hero h1 { font-size: clamp(2.25rem, 10.5vw, 2.55rem); }
  .portal-preview { min-height: 225px; }
  .laptop { right: 10%; width: 84%; }
  .phone { right: 0; width: 78px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: -32px; }
  .trust-item { min-height: 84px; grid-template-columns: 28px 1fr; padding: 14px 12px; }
  .trust-item .icon { width: 26px; height: 26px; }
  .trust-item span { display: none; }
  .trust-item:not(:last-child)::after { display: block; }
  .trust-item:nth-child(2)::after, .trust-item:nth-child(4)::after { display: none; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .map-facts { grid-template-columns: repeat(2, 1fr); }
  .map-facts p { min-height: 84px; }
  .map-facts span { display: none; }
  .map-facts p:not(:last-child)::after { display: block; }
  .map-facts p:nth-child(2)::after, .map-facts p:nth-child(4)::after { display: none; }
  .map-facts p:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .15); }
  .project-map-wrap { min-height: 320px; }
  .germany-map, .map-pins, .map-labels { left: 4%; width: 92%; height: 92%; }
  .reference-mosaic figure { min-height: 260px; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .path-image-rotator > img:not(.is-active),
  .path-image-rotation-layer:not(.is-active) { opacity: 0; }
}
