:root {
  --navy: #071423;
  --navy-2: #1a3a52;
  --navy-3: #2d5a7b;
  --blue: #00a8e8;
  --blue-2: #4a7ba7;
  --cyan: #4ecbff;
  --ink: #1a3a52;
  --muted: #2c3e50;
  --line: #d7e2eb;
  --soft: #ecf0f1;
  --white: #ffffff;
  --wrap: 1320px;
  --shadow: 0 22px 60px rgba(2, 18, 42, 0.12);
}

* {
  box-sizing: border-box;
}

/* Das semantische hidden-Attribut darf nicht von Komponentenregeln übersteuert werden. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px max(28px, calc((100vw - var(--wrap)) / 2));
  color: var(--white);
  background: rgba(7, 20, 35, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.14rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 52px;
  color: transparent;
  background: url("assets/images/logo-original.png") center / contain no-repeat;
  filter: drop-shadow(0 11px 13px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 20px rgba(0, 118, 255, 0.18));
  font-size: 0;
}

.brand-mark.large {
  width: 150px;
  height: 150px;
  font-size: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.98rem;
  font-weight: 800;
}

.site-nav a {
  padding: 12px 0 15px;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-cta::after,
.btn::after {
  content: "→";
  font-weight: 900;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, #087dff, #0063f2);
  box-shadow: 0 18px 40px rgba(0, 108, 255, 0.32);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.035);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse at 62% 96%, rgba(0, 168, 232, 0.58), transparent 24%),
    radial-gradient(ellipse at 76% 66%, rgba(45, 90, 123, 0.36), transparent 33%),
    linear-gradient(115deg, #06101d 0%, #102c43 48%, #071423 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(ellipse at 83% 78%, rgba(42, 150, 255, 0.2) 0 1px, transparent 1px 13px);
  opacity: 0.42;
  transform: rotate(-5deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1fr);
  gap: clamp(52px, 7vw, 90px);
  align-items: center;
  max-width: var(--wrap);
  min-height: 635px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 105px) 28px 82px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2.52rem, 4.12vw, 3.86rem);
  line-height: 1.12;
}

.nowrap {
  white-space: nowrap;
}

h1 strong,
.blue {
  color: var(--blue);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 2.65vw, 2.35rem);
  line-height: 1.16;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  padding: 0;
  margin: 58px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row li::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue) 0 3px, transparent 4px);
}

.glass-panel,
.system-panel,
.timeline-panel,
.benefit-panel,
.contact-card,
.about-orbit,
.about-network {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(69, 163, 255, 0.78);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(26, 58, 82, 0.88), rgba(7, 20, 35, 0.68));
  box-shadow: inset 0 0 34px rgba(0, 125, 255, 0.14), 0 24px 76px rgba(0, 20, 48, 0.24);
}

.system-panel::before,
.timeline-panel::before,
.benefit-panel::before,
.about-network::before {
  pointer-events: none;
}

.system-panel::before,
.timeline-panel::before,
.benefit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0 28%, rgba(78, 203, 255, 0.12) 42%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: panelSheen 8s ease-in-out infinite;
}

.system-panel {
  padding: 32px;
}

.hero-media-panel {
  padding: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.hero-media-panel img {
  border-radius: inherit;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.04);
}

.hero-home .hero-inner {
  grid-template-columns: minmax(0, 1fr) clamp(390px, 32vw, 500px);
  gap: clamp(42px, 5vw, 70px);
}

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

.hero-home h1 {
  font-size: clamp(2.4rem, 3.85vw, 3.68rem);
}

.hero-home .trust-row {
  flex-wrap: nowrap;
  gap: 10px;
  font-size: 0.72rem;
}

.hero-home .trust-row li {
  gap: 6px;
  white-space: nowrap;
}

.hero-home .trust-row li::before {
  width: 14px;
  height: 14px;
}

.hero-subline {
  margin: -6px 0 16px;
  color: var(--cyan);
  font-size: 1.12rem;
  font-weight: 700;
}

.hero-local {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.system-panel h2,
.timeline-panel h2,
.benefit-panel h2 {
  font-size: 1.28rem;
  margin-bottom: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.process-item {
  position: relative;
  display: grid;
  gap: 14px;
  text-align: center;
  font-size: 0.86rem;
}

.process-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 36px;
  right: -18px;
  color: var(--blue-2);
  font-size: 1.55rem;
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border: 1px solid rgba(50, 142, 255, 0.52);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(7, 118, 255, 0.38), rgba(255, 255, 255, 0.04));
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 900;
  animation: iconFloat 5.4s ease-in-out infinite;
}

.panel-icon svg,
.icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-item strong {
  display: block;
  font-size: 0.96rem;
}

.process-item:nth-child(2) .panel-icon { animation-delay: 0.45s; }
.process-item:nth-child(3) .panel-icon { animation-delay: 0.9s; }
.process-item:nth-child(4) .panel-icon { animation-delay: 1.35s; }

.process-item span,
.panel-note,
.timeline-panel span,
.benefit-panel span,
.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  padding: 22px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.panel-stats div {
  min-width: 0;
  padding: 0 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-stats div:last-child {
  border-right: 0;
}

.panel-stats strong {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(1.35rem, 1.55vw, 1.72rem);
  line-height: 1;
}

.panel-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.74rem;
  line-height: 1.25;
}

.timeline-panel {
  padding: 34px 44px;
}

.timeline-panel ol {
  display: grid;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline-panel li {
  display: grid;
  grid-template-columns: 76px 44px 1fr;
  gap: 24px;
  align-items: center;
}

.timeline-panel .panel-icon {
  width: 76px;
  height: 76px;
  margin: 0;
}

.timeline-panel em {
  color: var(--blue);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 900;
}

.timeline-panel strong {
  display: block;
  font-size: 1.3rem;
}

.benefit-panel {
  padding: 32px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.before-after ul {
  display: grid;
  gap: 18px;
  padding: 24px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(69, 163, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.before-after li:not(:first-child) {
  position: relative;
  padding-left: 28px;
}

.before-after li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--blue);
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(0, 168, 232, 0.28);
}

.check-animation li:not(:first-child)::before {
  background: rgba(0, 168, 232, 0.04);
}

.check-animation li:not(:first-child)::after {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 0.05em;
  color: var(--cyan);
  font-size: 1.05rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.35) rotate(-18deg);
  animation: checkTick 6.4s ease-in-out infinite;
  text-shadow: 0 0 16px rgba(78, 203, 255, 0.58);
}

.check-animation ul:first-child li:not(:first-child)::before {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.check-animation ul:first-child li:not(:first-child)::after {
  content: "×";
  left: 2px;
  top: -0.06em;
  color: rgba(255, 118, 118, 0.9);
  opacity: 1;
  transform: none;
  animation: none;
  text-shadow: 0 0 14px rgba(255, 80, 80, 0.28);
}

.check-animation ul:last-child li:nth-child(2)::after { animation-delay: 0.35s; }
.check-animation ul:last-child li:nth-child(3)::after { animation-delay: 1.05s; }
.check-animation ul:last-child li:nth-child(4)::after { animation-delay: 1.75s; }
.check-animation ul:last-child li:nth-child(5)::after { animation-delay: 2.45s; }

@keyframes checkTick {
  0%, 7% {
    opacity: 0;
    transform: scale(0.35) rotate(-18deg);
  }
  12%, 78% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  88%, 100% {
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
  }
}

.before-after strong {
  font-size: 1.2rem;
}

.before-after .brand-mark {
  width: 92px;
  height: 92px;
}

.about-orbit {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-color: rgba(69, 163, 255, 0.58);
  background:
    radial-gradient(circle at 50% 58%, rgba(0, 126, 255, 0.38), transparent 33%),
    radial-gradient(circle at 50% 58%, rgba(69, 163, 255, 0.15) 0 35%, transparent 36%),
    linear-gradient(145deg, rgba(13, 37, 62, 0.7), rgba(2, 14, 30, 0.2));
  box-shadow: inset 0 0 54px rgba(0, 125, 255, 0.16), 0 28px 80px rgba(0, 20, 48, 0.22);
}

.about-orbit::before,
.about-orbit::after {
  content: "";
  position: absolute;
  inset: 70px 96px;
  border: 1px solid rgba(69, 163, 255, 0.2);
  border-radius: 50%;
}

.about-orbit::after {
  inset: 108px 132px;
  border-style: dashed;
  opacity: 0.8;
}

.about-orbit .brand-mark.large {
  width: 136px;
  height: 136px;
  z-index: 2;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 36px rgba(0, 118, 255, 0.45));
}

.orbit-chip {
  position: absolute;
  display: grid;
  place-items: center;
  z-index: 3;
  width: 132px;
  min-height: 78px;
  padding: 12px 14px;
  border: 1px solid rgba(69, 163, 255, 0.42);
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(0, 118, 255, 0.08));
  box-shadow: inset 0 0 22px rgba(0, 118, 255, 0.12), 0 12px 34px rgba(0, 14, 34, 0.22);
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.orbit-chip:nth-child(2) { top: 42px; left: 74px; }
.orbit-chip:nth-child(3) { top: 42px; right: 74px; }
.orbit-chip:nth-child(4) { bottom: 46px; left: 68px; }
.orbit-chip:nth-child(5) { bottom: 46px; right: 68px; }

.about-network {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-color: rgba(69, 163, 255, 0.58);
  background:
    radial-gradient(circle at 50% 56%, rgba(0, 126, 255, 0.32), transparent 29%),
    linear-gradient(145deg, rgba(13, 37, 62, 0.72), rgba(2, 14, 30, 0.2));
  box-shadow: inset 0 0 54px rgba(0, 125, 255, 0.16), 0 28px 80px rgba(0, 20, 48, 0.22);
}

.ai-growth-visual {
  background:
    radial-gradient(circle at 50% 58%, rgba(0, 126, 255, 0.34), transparent 28%),
    radial-gradient(circle at 70% 28%, rgba(78, 203, 255, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(13, 37, 62, 0.72), rgba(2, 14, 30, 0.2));
}

.about-image-visual {
  min-height: 0;
  padding: 0;
  aspect-ratio: 1672 / 941;
  border-color: rgba(69, 163, 255, 0.78);
  background: linear-gradient(150deg, rgba(26, 58, 82, 0.88), rgba(7, 20, 35, 0.68));
  box-shadow: inset 0 0 34px rgba(0, 125, 255, 0.14), 0 24px 76px rgba(0, 20, 48, 0.24);
}

.about-image-visual img {
  position: relative;
  inset: auto;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: saturate(1.04) contrast(1.03);
  border-radius: inherit;
}

.about-image-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-network.about-image-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0 30%, rgba(78, 203, 255, 0.1) 44%, transparent 62% 100%);
  animation: none;
  pointer-events: none;
}

.about-network.about-image-visual::after {
  display: none;
}

.about-network::before,
.about-network::after {
  content: "";
  position: absolute;
  inset: 58px 92px;
  border: 1px solid rgba(69, 163, 255, 0.18);
  border-radius: 50%;
  animation: networkPulse 7s ease-in-out infinite;
}

.about-network::after {
  inset: 96px 142px;
  border-style: dashed;
  animation-delay: 1.2s;
}

.growth-orbit {
  position: absolute;
  inset: 62px 86px;
  border: 1px solid rgba(78, 203, 255, 0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
  animation: orbitSpin 14s linear infinite;
}

.network-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 118, 255, 0.34), rgba(0, 118, 255, 0.08) 56%, transparent 70%);
  box-shadow: 0 0 58px rgba(0, 118, 255, 0.34);
  animation: coreFloat 5.8s ease-in-out infinite;
}

.network-core .brand-mark.large {
  width: 118px;
  height: 118px;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 34px rgba(0, 118, 255, 0.48));
}

.growth-bars {
  position: absolute;
  right: 66px;
  bottom: 58px;
  display: flex;
  gap: 12px;
  align-items: end;
  height: 150px;
}

.growth-bars span {
  display: block;
  width: 30px;
  border: 1px solid rgba(78, 203, 255, 0.45);
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(180deg, rgba(78, 203, 255, 0.68), rgba(0, 118, 255, 0.16));
  box-shadow: 0 0 26px rgba(0, 168, 232, 0.18);
  transform-origin: bottom;
  animation: barRise 4.8s ease-in-out infinite;
}

.growth-bars span:nth-child(1) { height: 44px; animation-delay: 0s; }
.growth-bars span:nth-child(2) { height: 72px; animation-delay: 0.35s; }
.growth-bars span:nth-child(3) { height: 104px; animation-delay: 0.7s; }
.growth-bars span:nth-child(4) { height: 136px; animation-delay: 1.05s; }

.growth-line {
  position: absolute;
  left: 88px;
  right: 88px;
  top: 142px;
  height: 116px;
  overflow: visible;
}

.growth-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 2px solid rgba(78, 203, 255, 0.62);
  border-right: 2px solid rgba(78, 203, 255, 0.62);
  border-radius: 0 0 70px 0;
  transform: skewY(-18deg);
  filter: drop-shadow(0 0 14px rgba(78, 203, 255, 0.38));
}

.growth-line span {
  position: absolute;
  right: -2px;
  top: 0;
  width: 42px;
  height: 42px;
  border-top: 3px solid rgba(78, 203, 255, 0.78);
  border-right: 3px solid rgba(78, 203, 255, 0.78);
  transform: rotate(8deg);
  animation: arrowPulse 3.8s ease-in-out infinite;
}

.growth-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(78, 203, 255, 0.88);
  border-radius: 50%;
  background: rgba(0, 118, 255, 0.5);
  box-shadow: 0 0 22px rgba(78, 203, 255, 0.44);
  animation: nodePulse 3.2s ease-in-out infinite;
}

.node-one { left: 108px; top: 122px; }
.node-two { left: 178px; bottom: 102px; animation-delay: 0.7s; }
.node-three { right: 188px; top: 96px; animation-delay: 1.4s; }

.network-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 142px;
  padding: 15px 16px;
  border: 1px solid rgba(69, 163, 255, 0.44);
  border-radius: 12px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(0, 118, 255, 0.08));
  box-shadow: inset 0 0 22px rgba(0, 118, 255, 0.12), 0 14px 34px rgba(0, 14, 34, 0.24);
  text-align: left;
  animation: cardGlow 6.8s ease-in-out infinite;
}

.network-card span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.network-card strong {
  font-size: 1rem;
  line-height: 1.1;
}

.network-card small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-one { top: 42px; left: 64px; }
.card-two { top: 42px; right: 64px; animation-delay: 0.7s; }
.card-three { bottom: 44px; left: 74px; animation-delay: 1.4s; }
.card-four { right: 74px; bottom: 44px; animation-delay: 2.1s; }

.network-line {
  position: absolute;
  z-index: 2;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 203, 255, 0.44), transparent);
  transform-origin: center;
  animation: lineFlow 4.8s ease-in-out infinite;
}

.line-one { transform: rotate(24deg); }
.line-two { transform: rotate(-24deg); animation-delay: 1.1s; }

@keyframes networkPulse {
  0%, 100% { opacity: 0.38; transform: scale(0.96); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

@keyframes coreFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes cardGlow {
  0%, 100% { border-color: rgba(69, 163, 255, 0.36); transform: translateY(0); }
  50% { border-color: rgba(78, 203, 255, 0.78); transform: translateY(-4px); }
}

@keyframes lineFlow {
  0%, 100% { opacity: 0.26; }
  50% { opacity: 0.72; }
}

@keyframes panelSheen {
  0%, 42% { transform: translateX(-120%); opacity: 0; }
  52% { opacity: 1; }
  68%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 rgba(0, 168, 232, 0); }
  50% { transform: translateY(-5px); box-shadow: 0 12px 26px rgba(0, 118, 255, 0.16); }
}

@keyframes orbitSpin {
  to { transform: rotate(348deg); }
}

@keyframes barRise {
  0%, 100% { transform: scaleY(0.72); opacity: 0.68; }
  45%, 70% { transform: scaleY(1); opacity: 1; }
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.48; transform: translate(-8px, 8px) rotate(8deg); }
  50% { opacity: 1; transform: translate(0, 0) rotate(8deg); }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(0.76); opacity: 0.55; }
  50% { transform: scale(1.18); opacity: 1; }
}

.contact-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  padding: 44px;
}

.contact-list {
  display: grid;
  gap: 24px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-list p {
  position: relative;
  margin: 0;
  padding-left: 54px;
}

.contact-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 168, 232, 0.24), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 18px rgba(0, 168, 232, 0.16), 0 0 18px rgba(0, 168, 232, 0.18);
}

.contact-list p:nth-child(1)::after,
.contact-list p:nth-child(2)::after,
.contact-list p:nth-child(3)::after {
  position: absolute;
  left: 10px;
  top: 7px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.contact-list p:nth-child(1)::after { content: "✓"; }
.contact-list p:nth-child(2)::after { content: "◷"; }
.contact-list p:nth-child(3)::after { content: "▣"; }

.contact-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
}

.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(62px, 7vw, 82px) 28px;
}

.section.compact-top {
  padding-top: 54px;
}

.center {
  text-align: center;
}

.cards-3,
.cards-4,
.cards-5,
.mini-benefits,
.identity-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

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

.section-lead {
  max-width: 860px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.module-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 34px 28px;
  border: 1px solid rgba(0, 118, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 48px rgba(2, 18, 42, 0.07);
}

.module-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  line-height: 1.14;
}

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

.module-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.module-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
}

.module-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.48em;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 168, 232, 0.35);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.why-grid > div:first-child {
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #edf6ff);
  border: 1px solid rgba(0, 118, 255, 0.14);
}

.why-grid p {
  color: var(--muted);
}

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

.why-cards article,
.home-process article {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(5, 24, 52, 0.06);
}

.why-cards h3,
.home-process h3 {
  margin: 16px 0 8px;
  font-size: 1.08rem;
}

.why-cards p,
.home-process p {
  margin: 0;
  color: var(--muted);
}

.price-orientation {
  display: grid;
  gap: 24px;
  padding: clamp(30px, 5vw, 48px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 118, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #020b19, #061327 52%, #061e3b);
  box-shadow: 0 22px 58px rgba(2, 18, 42, 0.12);
}

.price-orientation h2,
.price-orientation p {
  margin-top: 0;
}

.price-orientation p:not(.eyebrow) {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.78);
}

.price-teasers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-teasers div {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(69, 163, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.price-teasers strong {
  display: block;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.1;
}

.price-teasers span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.premium-topic {
  padding-top: 20px;
}

.premium-topic-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(0, 118, 255, 0.24);
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(4, 25, 52, 0.98), rgba(7, 45, 83, 0.94));
  box-shadow: 0 20px 50px rgba(5, 24, 52, 0.12);
}

.premium-topic h2 {
  max-width: 780px;
  color: var(--white);
}

.premium-topic p:not(.eyebrow):not(.premium-topic-date) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.premium-topic-date {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.premium-topic-actions {
  justify-content: flex-end;
}

.home-faq {
  padding-bottom: 72px;
}

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

.feature-card,
.step-card,
.contact-form,
.contact-details,
.wide-stat-band,
.mini-benefits,
.identity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(5, 24, 52, 0.06);
}

.feature-card,
.step-card,
.identity-card {
  min-width: 0;
  padding: 34px 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.step-card:hover,
.identity-card:hover,
.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 118, 255, 0.24);
  box-shadow: 0 22px 54px rgba(5, 24, 52, 0.1);
}

.feature-card p,
.step-card p,
.identity-card p,
.contact-form p,
.contact-details p,
.site-footer p {
  color: var(--muted);
}

.icon,
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 10px;
  color: var(--blue);
  background: #eaf4ff;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.step-card span {
  margin-bottom: 12px;
  font-size: 2.25rem;
  color: var(--blue);
  background: transparent;
}

.card-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.card-link::after {
  content: "→";
}

.mini-benefits {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  padding: 24px;
  background: linear-gradient(180deg, #f7fbff, #eef6ff);
}

.mini-benefit {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.mini-benefit:last-child {
  border-right: 0;
}

.mini-benefit .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.mini-benefit h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.mini-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.wide-stat-band {
  margin-top: 36px;
  padding: 30px;
  background: linear-gradient(180deg, #f7fbff, #edf6ff);
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  text-align: left;
}

.comparison-grid > div {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.comparison-grid h3 {
  margin-top: 0;
}

.comparison-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.founder-note {
  max-width: none;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(0, 118, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(236, 240, 241, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 48px rgba(2, 18, 42, 0.07);
}

.founder-note h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.founder-note p:not(.eyebrow) {
  max-width: 1060px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.module-intro,
.price-intro {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.price-intro .btn {
  margin-top: 18px;
}

.service-detail-grid {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(0, 118, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(236, 240, 241, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 48px rgba(2, 18, 42, 0.07);
}

.service-detail h3 {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.module-detail h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
}

.module-benefit {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.service-detail ul,
.seo-link-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--muted);
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.price-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  border: 1px solid rgba(0, 118, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.92));
  box-shadow: 0 18px 48px rgba(2, 18, 42, 0.08);
}

.price-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}

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

.price {
  color: var(--ink) !important;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
}

.price span,
.price small {
  display: block;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price small {
  margin-top: 8px;
  color: var(--muted);
  text-transform: none;
}

.price-note,
.price-final {
  font-size: 0.92rem;
}

.price-final {
  padding-top: 14px;
  border-top: 1px solid rgba(0, 118, 255, 0.14);
  font-weight: 800;
}

.config-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(0, 118, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 24%, rgba(0, 118, 255, 0.18), transparent 30%),
    linear-gradient(130deg, #061327, #06203d);
  color: var(--white);
  box-shadow: 0 22px 58px rgba(2, 18, 42, 0.12);
}

.section.about-price-section {
  padding-top: 0;
  padding-bottom: 0;
}

.about-price-section .config-teaser {
  margin-top: -42px;
}

.config-teaser-actions,
.price-context-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.price-context-cta {
  justify-content: space-between;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 118, 255, 0.18);
  border-radius: 8px;
  background: rgba(238, 247, 255, 0.72);
}

.price-context-cta p {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.price-context-cta .btn.ghost {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 118, 255, 0.2);
}

.price-context-cta .btn.ghost:hover,
.price-context-cta .btn.ghost:focus-visible {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.contact-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(0, 118, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, #f1f8ff, #ffffff);
  box-shadow: 0 14px 34px rgba(2, 18, 42, 0.06);
}

.contact-bridge h2,
.contact-bridge p {
  margin-top: 0;
}

.contact-bridge h2 {
  margin-bottom: 8px;
}

.contact-bridge p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.config-teaser h2,
.config-teaser p {
  margin-top: 0;
}

.config-teaser p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.modal-open {
  overflow: hidden;
}

.configurator-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  padding: clamp(18px, 4vw, 56px);
  color: var(--white);
  overflow-y: auto;
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 118, 255, 0.22), transparent 30%),
    radial-gradient(circle at 24% 82%, rgba(0, 168, 232, 0.18), transparent 34%),
    rgba(1, 8, 18, 0.9);
  backdrop-filter: blur(18px);
}

.configurator-modal.is-open {
  display: block;
}

.configurator-dialog {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(69, 163, 255, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 118, 255, 0.24), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(0, 168, 232, 0.16), transparent 34%),
    linear-gradient(135deg, #020b19, #061327 48%, #061e3b);
  box-shadow: 0 28px 90px rgba(0, 10, 24, 0.55), inset 0 0 46px rgba(0, 118, 255, 0.08);
}

.config-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.config-close:hover,
.config-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 168, 232, 0.72);
  background: rgba(0, 118, 255, 0.22);
}

.configurator-head,
.configurator-layout {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.configurator-head {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.configurator-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
}

.configurator-head p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.config-disclaimer {
  padding: 16px 18px;
  border: 1px solid rgba(69, 163, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.configurator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: 20px;
  align-items: start;
}

.configurator-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.config-module {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.config-card {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px 14px;
  align-content: start;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(69, 163, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 118, 255, 0.04));
  box-shadow: inset 0 0 24px rgba(0, 118, 255, 0.08);
  font-size: 1rem;
  cursor: pointer;
  min-width: 0;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.config-card:hover,
.config-card:has(input:focus-visible) {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 232, 0.72);
  box-shadow: inset 0 0 30px rgba(0, 118, 255, 0.12), 0 18px 44px rgba(0, 20, 48, 0.22);
}

.config-card:has(input:checked) {
  border-color: rgba(0, 168, 232, 0.95);
  background: linear-gradient(145deg, rgba(0, 118, 255, 0.2), rgba(255, 255, 255, 0.07));
}

.config-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.config-check {
  grid-row: 1 / span 3;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.config-card:has(input:checked) .config-check {
  border-color: var(--blue-2);
  background: var(--blue);
}

.config-card:has(input:checked) .config-check::after {
  content: "✓";
  color: var(--white);
  font-weight: 900;
}

.config-card strong,
.config-card span:not(.config-check) {
  grid-column: 2;
  min-width: 0;
  overflow-wrap: anywhere;
}

.config-card strong {
  font-size: 1.12rem;
}

.config-card span:not(.config-check) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.config-result {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(69, 163, 255, 0.44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 118, 255, 0.22), transparent 34%),
    linear-gradient(150deg, rgba(13, 37, 62, 0.95), rgba(2, 14, 30, 0.92));
  box-shadow: inset 0 0 34px rgba(0, 125, 255, 0.12), 0 24px 76px rgba(0, 20, 48, 0.24);
  overflow: hidden;
}

.config-result > * {
  min-width: 0;
  max-width: 100%;
}

.config-result .btn {
  width: 100%;
  padding-right: 18px;
  padding-left: 18px;
  text-align: center;
  white-space: normal;
}

.config-request-form {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(69, 163, 255, 0.24);
}

.config-request-form h4 {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
}

.config-request-form p {
  margin: 0;
  font-size: 0.88rem;
}

.config-request-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.config-request-form input,
.config-request-form textarea {
  width: 100%;
  border: 1px solid rgba(69, 163, 255, 0.28);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: 0.95rem Helvetica, Arial, sans-serif;
}

.config-request-form input:focus,
.config-request-form textarea:focus {
  border-color: rgba(0, 168, 232, 0.8);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.14);
}

.config-request-form textarea {
  min-height: 92px;
  resize: vertical;
}

.config-request-form .config-mail-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.config-details {
  display: none;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(69, 163, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.config-module.is-active .config-details {
  display: grid;
}

.config-chip,
.config-questions label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  line-height: 1.25;
  cursor: pointer;
  white-space: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.config-chip span,
.config-questions label {
  min-width: 0;
}

.config-chip input,
.config-questions input {
  width: auto;
  accent-color: var(--blue);
}

.config-chip:has(input:checked),
.config-questions label:has(input:checked) {
  border-color: rgba(0, 168, 232, 0.72);
  color: var(--white);
  background: rgba(0, 118, 255, 0.18);
}

.config-questions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.config-questions fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(69, 163, 255, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.config-questions legend {
  padding: 0 8px;
  color: var(--white);
  font-weight: 900;
}

.config-result h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.3rem, 1.7vw, 1.72rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.config-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* Öffentliche Konfigurator-Landingpage */
.configurator-hero {
  padding-bottom: 26px;
}

.configurator-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
}

.configurator-hero .section-lead {
  max-width: 820px;
  margin: 0 0 26px;
  text-align: left;
}

.configurator-hero .trust-row {
  margin: 0;
  gap: 12px 28px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.configurator-hero .trust-row li::before {
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--blue);
}

.configurator-page-section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 72px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(69, 163, 255, 0.42);
  border-radius: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 118, 255, 0.22), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(0, 168, 232, 0.14), transparent 34%),
    linear-gradient(135deg, #020b19, #061327 48%, #061e3b);
  box-shadow: 0 28px 90px rgba(0, 10, 24, 0.24), inset 0 0 46px rgba(0, 118, 255, 0.08);
}

.configurator-page {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.config-progress {
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
  scroll-margin-top: 118px;
  border-bottom: 1px solid rgba(69, 163, 255, 0.24);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.config-progress ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.config-progress li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.config-progress li > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-style: normal;
}

.config-progress li em {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  font-style: normal;
}

.config-progress-short {
  display: none;
}

.config-progress li.is-current,
.config-progress li.is-complete {
  color: var(--white);
}

.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: var(--blue-2);
}

.config-progress li.is-current > span,
.config-progress li.is-complete > span {
  border-color: var(--blue-2);
  background: var(--blue);
}

.config-step-panel {
  display: none;
  min-width: 0;
}

.config-step-panel.is-current {
  display: grid;
  gap: 18px;
}

.config-step-panel h2,
.config-step-panel h3,
.config-step-panel p {
  margin: 0;
}

.config-step-panel > p,
.config-result-hint,
.config-trust {
  color: rgba(255, 255, 255, 0.76);
}

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

.config-detail-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(69, 163, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.config-detail-group .config-details {
  display: grid;
}

.config-detail-error {
  margin: 0;
  color: #ffd1d1;
  font-size: 0.9rem;
  font-weight: 800;
}

.config-minimum-note {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(0, 168, 232, 0.5);
  border-radius: 8px;
  color: var(--white) !important;
  background: rgba(0, 118, 255, 0.14);
  font-size: 0.93rem;
  font-weight: 750;
}

.config-question-single {
  max-width: 560px;
}

.config-summary {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(69, 163, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.config-summary h3,
.config-summary p {
  margin: 0;
}

.config-summary ul {
  display: grid;
  gap: 4px;
  margin: 7px 0 0;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.76);
}

.config-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.config-step-actions .btn {
  min-width: 132px;
  justify-content: center;
}

.config-success {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(77, 227, 164, 0.52);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 104, 70, 0.18);
}

.config-success h3,
.config-success p {
  margin: 0;
}

.config-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.config-success-actions .btn {
  min-width: 0;
}

@media (min-width: 700px) and (max-width: 900px) {
  .config-progress ol {
    gap: 5px;
  }

  .config-progress li {
    gap: 5px;
    font-size: 0.74rem;
  }

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

  .config-progress-short {
    display: inline;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.faq-grid details {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(0, 118, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq-grid p {
  margin: 12px 0 0;
}

@media (max-width: 760px) {
  .premium-topic-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px;
  }

  .premium-topic-actions {
    justify-content: stretch;
  }

  .premium-topic-actions .btn {
    width: 100%;
  }

  .configurator-page-section {
    width: calc(100% - 32px);
    margin-bottom: 48px;
    padding: 20px 16px;
    border-radius: 10px;
  }

  .config-progress ol,
  .config-detail-groups,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .config-progress li {
    font-size: 0.82rem;
  }

  .config-progress li span {
    width: 24px;
    height: 24px;
  }

  .configurator-page .configurator-modules,
  .configurator-page .config-details,
  .configurator-page .config-questions {
    grid-template-columns: minmax(0, 1fr);
  }

  .configurator-page .config-card {
    min-height: 0;
    padding: 18px;
  }

  .config-step-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .config-step-actions .btn,
  .configurator-page .config-result .btn {
    width: 100%;
    max-width: 100%;
  }

  .config-success-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .config-success-actions .btn {
    width: 100%;
  }

  .config-teaser-actions,
  .price-context-cta,
  .contact-bridge {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .about-price-section .config-teaser {
    margin-top: -28px;
  }

  .price-context-cta .btn,
  .config-teaser-actions .btn,
  .contact-bridge .btn {
    width: 100%;
  }
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.seo-link-grid a {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 118, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(2, 18, 42, 0.06);
}

.seo-link-grid a::after {
  content: "→";
  color: var(--blue);
}

.service-page-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.service-aside {
  position: sticky;
  top: 120px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #071423, #12334d);
  box-shadow: var(--shadow);
}

.service-aside p {
  color: rgba(255, 255, 255, 0.78);
}

.service-aside a {
  width: 100%;
  margin-top: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-grid div {
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.stat-grid div:last-child {
  border-right: 0;
}

.stat-grid strong {
  display: block;
  color: var(--blue);
  font-size: 2.5rem;
  line-height: 1;
}

.identity-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.contact-form,
.contact-details {
  min-width: 0;
  padding: 36px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form h2,
.contact-form p,
.contact-form label:nth-of-type(3),
.contact-form label:nth-of-type(4),
.contact-form button {
  grid-column: 1 / -1;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.consent-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.45;
}

.consent-check a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-check input {
  width: auto;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  font-weight: 700;
}

.form-status.is-success,
.config-mail-note.is-success {
  color: #067544;
}

.form-status.is-error,
.config-mail-note.is-error {
  color: #b42318;
}

.nojs-form-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
}

.config-result .config-mail-note.is-success {
  color: #7ef2be;
}

.config-result .config-mail-note.is-error {
  color: #ffabb1;
}

label {
  display: grid;
  gap: 8px;
  color: transparent;
  font-size: 0;
}

.config-card {
  display: grid;
  color: var(--white);
  font-size: 1rem;
}

.config-chip,
.config-questions label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 18px;
  color: var(--ink);
  font: 1rem Helvetica, Arial, sans-serif;
}

.config-card input,
.config-chip input,
.config-questions input {
  width: auto;
  border: 0;
  padding: 0;
  accent-color: var(--blue);
}

textarea {
  resize: vertical;
}

.request-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.request-steps div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
}

.cta-band {
  max-width: var(--wrap);
  margin: 0 auto 34px;
  padding: 0 28px;
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 350px) 150px;
  gap: 14px 34px;
  align-items: center;
  min-height: 150px;
  padding: 32px clamp(28px, 4vw, 48px);
  color: var(--white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 72%, rgba(0, 117, 255, 0.32), transparent 28%),
    linear-gradient(120deg, #061327, #061e3b);
}

.cta-inner h2 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(1.45rem, 2vw, 1.82rem);
  line-height: 1.12;
}

.cta-inner p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-inner > div {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
}

.cta-inner .btn {
  grid-column: 2;
  justify-self: stretch;
  width: 100%;
  justify-content: center;
}

.cta-inner .btn:first-of-type {
  align-self: end;
}

.cta-inner .btn:not(:first-of-type) {
  align-self: start;
}

.cta-inner .btn:only-of-type {
  grid-row: 1 / span 2;
  align-self: center;
}

.cta-inner .brand-mark {
  position: relative;
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  pointer-events: none;
  opacity: 0.38;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 0.9fr));
  gap: 48px;
  padding: 40px max(28px, calc((100vw - var(--wrap)) / 2)) 30px;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 121, 255, 0.2), transparent 25%),
    linear-gradient(120deg, #020b19, #06203d);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.84);
}

.footer-contact-link,
.footer-social-links a,
.footer-contact-line {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.footer-contact-line {
  display: inline-flex;
}

.footer-icon {
  display: inline-grid;
  flex: 0 0 1.25rem;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0;
  line-height: 0;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-icon-website {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E");
}

.footer-icon-instagram {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
}

.footer-icon-facebook {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 21v-8h2.7l.4-3H14V8.1c0-.9.3-1.6 1.7-1.6h1.8V3.8c-.3 0-1.4-.1-2.6-.1-2.6 0-4.4 1.6-4.4 4.5V10H8v3h2.5v8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 21v-8h2.7l.4-3H14V8.1c0-.9.3-1.6 1.7-1.6h1.8V3.8c-.3 0-1.4-.1-2.6-.1-2.6 0-4.4 1.6-4.4 4.5V10H8v3h2.5v8'/%3E%3C/svg%3E");
}

.footer-icon-location {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.footer-icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h4l1.5 4-2.3 1.7a14 14 0 0 0 6.1 6.1L16 15.5 20 17v4c-8.3.4-16.6-7.7-15-17Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h4l1.5 4-2.3 1.7a14 14 0 0 0 6.1 6.1L16 15.5 20 17v4c-8.3.4-16.6-7.7-15-17Z'/%3E%3C/svg%3E");
}

.footer-icon-email {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.footer-social-links a {
  display: inline-flex !important;
}

.footer-social-links a:hover .footer-icon,
.footer-social-links a:focus-visible .footer-icon,
.footer-contact-link:hover .footer-icon,
.footer-contact-link:focus-visible .footer-icon {
  color: var(--cyan);
}

.site-footer address {
  font-style: normal;
  line-height: 1.65;
}

.footer-faq {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.footer-knowledge {
  min-width: 0;
}

.footer-group {
  color: rgba(255, 255, 255, 0.9);
}

.footer-group summary {
  cursor: pointer;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 800;
}

.footer-group a {
  margin-top: 7px;
  padding-left: 14px;
  font-size: 0.92rem;
}

.footer-faq summary {
  cursor: pointer;
  color: inherit;
  font-weight: 700;
}

.footer-faq a {
  margin-top: 6px;
  padding-left: 14px;
  font-size: 0.92rem;
}

.footer-link {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--cyan);
}

.site-footer p,
.site-footer h2,
.site-footer .brand,
.site-footer small {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.legal-page {
  max-width: var(--wrap);
  min-height: 70vh;
  margin: 0 auto;
  padding: 90px 28px;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: min(520px, calc(100vw - 36px));
  border: 1px solid rgba(65, 167, 255, 0.48);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  background: rgba(3, 16, 34, 0.98);
  color: var(--white);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-inner {
  padding: 24px;
}

.cookie-consent h2,
.cookie-consent p {
  margin: 0;
}

.cookie-consent h2 {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

.cookie-consent p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.cookie-consent a {
  color: var(--cyan);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 10px 14px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    padding: 0 14px;
    color: var(--white);
    background: transparent;
    font: inherit;
    font-weight: 800;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .contact-grid,
  .service-detail,
  .service-page-content,
  .config-teaser,
  .configurator-layout,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .cards-5,
  .cards-4,
  .module-showcase,
  .home-process,
  .price-teasers,
  .price-grid,
  .configurator-modules,
  .config-details,
  .seo-link-grid,
  .mini-benefits,
  .identity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}

@media (max-width: 720px) {
  .configurator-modal {
    padding: 12px;
  }

  .configurator-dialog {
    padding: 52px 18px 24px;
    border-radius: 10px;
  }

  .config-close {
    top: 12px;
    right: 12px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand span:last-child {
    max-width: 210px;
    overflow-wrap: anywhere;
  }

  .hero-inner,
  .section,
  .cta-band {
    padding-inline: 18px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero-home .hero-actions {
    flex-wrap: wrap;
  }

  .hero-home .trust-row {
    flex-wrap: wrap;
    font-size: 0.84rem;
  }

  .hero-home .trust-row li::before {
    width: 18px;
    height: 18px;
  }

  .cards-3,
  .cards-4,
  .cards-5,
  .module-showcase,
  .why-cards,
  .home-process,
  .price-teasers,
  .mini-benefits,
  .stat-grid,
  .identity-grid,
  .contact-form,
  .request-steps,
  .price-grid,
  .configurator-modules,
  .config-details,
  .config-questions,
  .seo-link-grid,
  .site-footer,
  .process-grid,
  .panel-stats,
  .before-after,
  .comparison-grid,
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .cta-inner > div,
  .cta-inner .btn,
  .cta-inner .brand-mark {
    grid-column: 1;
    grid-row: auto;
  }

  .cta-inner .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-inner .brand-mark {
    justify-self: start;
    opacity: 0.2;
  }

  .contact-form,
  .contact-details {
    padding: 24px;
  }

  .process-item:not(:last-child)::after,
  .mini-benefit,
  .stat-grid div {
    border-right: 0;
  }

  .process-item:not(:last-child)::after {
    content: "";
  }

  .timeline-panel li,
  .contact-card,
  .config-teaser {
    grid-template-columns: 1fr;
  }

  .config-result {
    position: static;
  }

  .contact-list {
    padding-left: 0;
    border-left: 0;
  }

  .orbit-chip {
    position: static;
    width: 100%;
  }

  .about-orbit,
  .about-network {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 28px;
  }

  .about-network {
    grid-template-columns: 1fr;
    place-items: stretch;
  }

  .about-image-visual {
    padding: 0;
    aspect-ratio: 1672 / 941;
  }

  .about-network::before,
  .about-network::after,
  .network-line {
    display: none;
  }

  .network-core,
  .network-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
  }

  .network-core {
    width: 148px;
    height: 148px;
    justify-self: center;
  }

  .network-core .brand-mark.large {
    width: 102px;
    height: 102px;
  }

  .growth-orbit,
  .growth-line,
  .growth-node {
    display: none;
  }

  .growth-bars {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    width: 100%;
    height: 110px;
  }

  .growth-bars span {
    width: 24px;
  }

  .growth-bars span:nth-child(1) { height: 34px; }
  .growth-bars span:nth-child(2) { height: 54px; }
  .growth-bars span:nth-child(3) { height: 76px; }
  .growth-bars span:nth-child(4) { height: 96px; }
}

/* Mobile-first adjustments: keep every page inside the viewport without changing desktop. */
@media (max-width: 1100px) {
  .hero-home .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    min-height: 0;
  }

  .hero-home .hero-copy,
  .hero-home h1,
  .hero-home .hero-copy > p:not(.eyebrow) {
    max-width: 100%;
  }

  .hero-home .hero-media-panel {
    width: min(100%, 500px);
    justify-self: center;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 270px);
    gap: 18px 24px;
    min-height: 0;
  }

  .cta-inner > *,
  .cta-inner > div,
  .cta-inner .btn,
  .cta-inner .brand-mark {
    min-width: 0;
    max-width: 100%;
  }

  .cta-inner > div {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .cta-inner .btn {
    grid-column: 2;
    grid-row: 1 / span 2;
    white-space: normal;
    text-align: center;
  }

  .cta-inner .brand-mark {
    display: none;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  h1,
  h2,
  h3,
  p,
  li,
  .btn,
  .card-link {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-inner {
    width: calc(100% - 32px);
    min-height: 0;
    padding: 56px 0;
    gap: 28px;
  }

  .section,
  .cta-band {
    width: calc(100% - 32px);
    padding-right: 0;
    padding-left: 0;
  }

  .hero-inner > *,
  .hero-copy > *,
  .timeline-panel > *,
  .process-grid > *,
  .cards-3 > *,
  .cards-4 > *,
  .cards-5 > *,
  .module-showcase > *,
  .home-process > *,
  .price-teasers > *,
  .mini-benefits > *,
  .identity-grid > *,
  .contact-grid > *,
  .contact-form > *,
  .request-steps > *,
  .service-page-content > *,
  .service-detail > *,
  .configurator-layout > *,
  .configurator-modules > *,
  .config-details > *,
  .config-questions > *,
  .cta-inner > *,
  .site-footer > * {
    min-width: 0;
  }

  .hero-copy,
  .hero-copy > p:not(.eyebrow),
  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.7rem);
    line-height: 1.12;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
  }

  .hero-actions .btn,
  .service-aside .btn,
  .price-intro .btn,
  .config-teaser .btn,
  .cookie-actions .btn {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.2;
  }

  .trust-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 32px;
    font-size: 0.88rem;
  }

  .trust-row li {
    min-width: 0;
    white-space: normal;
  }

  .hero-home .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hero-home .hero-copy {
    display: contents;
  }

  .hero-home .hero-copy > .eyebrow,
  .hero-home .hero-copy > h1,
  .hero-home .hero-copy > p:not(.eyebrow) {
    order: 0;
  }

  .hero-home .hero-media-panel {
    order: 1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 4;
    justify-self: stretch;
  }

  .hero-home .hero-copy > .hero-actions {
    order: 2;
  }

  .hero-home .hero-copy > .trust-row {
    order: 3;
  }

  .hero-home .nowrap {
    white-space: normal;
  }

  .hero-home .hero-actions,
  .hero-home .trust-row {
    flex-wrap: nowrap;
  }

  .hero-home .trust-row li::before {
    width: 18px;
    height: 18px;
  }

  .timeline-panel {
    padding: 26px 18px;
  }

  .timeline-panel ol {
    gap: 26px;
  }

  .timeline-panel li {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .timeline-panel .panel-icon {
    margin: 0 auto;
  }

  .timeline-panel em {
    font-size: 2rem;
    line-height: 1;
  }

  .timeline-panel li > div {
    max-width: 38ch;
  }

  .timeline-panel strong {
    font-size: 1.16rem;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 28px 18px;
  }

  .cta-inner > div,
  .cta-inner .btn,
  .cta-inner .brand-mark {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
  }

  .cta-inner .btn {
    justify-self: stretch;
    min-height: 54px;
    white-space: normal;
    line-height: 1.2;
  }

  .cta-inner .brand-mark {
    display: none;
  }

  .system-panel,
  .benefit-panel {
    padding: 24px 18px;
  }

  .service-detail,
  .request-steps,
  .contact-form,
  .config-questions {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-detail,
  .contact-form,
  .contact-details,
  .wide-stat-band,
  .module-card,
  .feature-card,
  .step-card,
  .identity-card,
  .price-card {
    padding: 24px 18px;
  }

  .request-steps {
    padding: 20px 18px;
  }

  .request-steps div {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 12px;
    padding: 16px;
  }

  .brand {
    gap: 8px;
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9.2vw, 2.38rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .btn,
  .header-cta {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 0.94rem;
  }

  .cta-inner {
    padding: 26px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .check-animation li:not(:first-child)::after,
  .system-panel::before,
  .timeline-panel::before,
  .benefit-panel::before,
  .panel-icon,
  .about-network::before,
  .about-network::after,
  .growth-orbit,
  .growth-bars span,
  .growth-line span,
  .growth-node,
  .network-core,
  .network-card,
  .network-line {
    animation: none;
  }

  .check-animation li:not(:first-child)::after {
    opacity: 1;
    transform: none;
  }
}
