:root {
  --bg: #080c0f;
  --bg-deep: #030506;

  --panel: rgba(17, 24, 29, 0.76);
  --panel-strong: rgba(19, 26, 32, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.035);

  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);

  --green: #80e018;
  --green-2: #22f08a;

  --text: #f4f7f8;
  --muted: #aeb8c0;
  --dim: #68737b;

  --shadow:
    0 28px 90px rgba(0, 0, 0, 0.42);

  --max: 1240px;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --ease:
    cubic-bezier(0.2, 0.7, 0.1, 1);
}


/* =========================================================
   Basis
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--bg);
  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.55;
  overflow-x: hidden;
}

::selection {
  background: var(--green);
  color: #061006;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.container {
  width: min(
    var(--max),
    calc(100% - 44px)
  );

  margin-inline: auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-tight {
  padding: 86px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;

  padding: 10px 14px;

  border-radius: 10px;

  background: var(--green);
  color: #061006;

  font-weight: 800;
  text-decoration: none;

  transform: translateY(-160%);
}

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


/* =========================================================
   Hintergrund
   ========================================================= */

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -5;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 22% 8%,
      rgba(128, 224, 24, 0.11),
      transparent 29%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(34, 240, 138, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #0b1115 0%,
      #050809 78%
    );
}

.matrix-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(128, 224, 24, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(128, 224, 24, 0.045) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.72),
      transparent 76%
    );

  animation:
    gridShift 28s linear infinite;
}

.bg-orb {
  position: absolute;

  width: 460px;
  height: 460px;

  border-radius: 999px;

  background: var(--green);

  filter: blur(90px);
  opacity: 0.2;
}

.bg-orb-a {
  top: -150px;
  left: -170px;
}

.bg-orb-b {
  top: 40%;
  right: -210px;

  opacity: 0.11;
}


/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: min(
    100%,
    calc(var(--max) + 44px)
  );

  min-height: 72px;
  margin: 0 auto;
  padding: 12px 22px;

  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";

  position: fixed;
  inset: 0 0 auto 0;
  z-index: -1;

  height: 72px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);

  background:
    rgba(5, 8, 9, 0.78);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.18);

  opacity: 0.92;
}

.site-header.is-scrolled::before {
  opacity: 0.98;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;

  text-decoration: none;
}

.brand-logo {
  width: 190px;
  height: auto;

  filter:
    drop-shadow(
      0 0 18px
      rgba(128, 224, 24, 0.12)
    );
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;

  border-radius: 999px;

  color: var(--muted);

  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;

  transition:
    color 0.22s var(--ease),
    background 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green);
  background: rgba(128, 224, 24, 0.06);
}

.site-nav .nav-cta {
  border:
    1px solid rgba(128, 224, 24, 0.54);

  background:
    rgba(128, 224, 24, 0.07);

  color: var(--text);

  box-shadow:
    inset 0 0 0 1px
      rgba(255, 255, 255, 0.035),
    0 0 24px
      rgba(128, 224, 24, 0.06);
}

.site-nav .nav-cta:hover {
  background: var(--green);
  color: #071008;
}

.nav-toggle {
  display: none;

  width: 44px;
  height: 44px;
  padding: 10px;

  border: 1px solid var(--line);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.045);
}

.nav-toggle span {
  display: block;

  height: 2px;
  margin: 5px 0;

  border-radius: 4px;

  background: var(--text);
}


/* =========================================================
   Typografie und Buttons
   ========================================================= */

.eyebrow {
  margin-bottom: 12px;

  color: var(--green);

  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 22px;

  font-size:
    clamp(3rem, 6.3vw, 6.15rem);

  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 520;
}

h1 span,
h2 span {
  color: var(--green);

  text-shadow:
    0 0 28px
      rgba(128, 224, 24, 0.18);
}

h2 {
  margin-bottom: 14px;

  font-size:
    clamp(2rem, 4vw, 3.2rem);

  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.claim {
  margin-bottom: 22px;

  color:
    rgba(255, 255, 255, 0.86);

  font-size: 1rem;
  font-weight: 700;
}

.claim span {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 48px;
  padding: 13px 24px;

  border:
    1px solid transparent;
  border-radius: 10px;

  font-weight: 800;
  text-decoration: none;

  cursor: pointer;

  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

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

.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--green),
      #66c913
    );

  color: #061006;

  box-shadow:
    0 16px 34px
      rgba(128, 224, 24, 0.2),
    inset 0 1px 0
      rgba(255, 255, 255, 0.36);
}

.btn-primary:hover {
  background:
    linear-gradient(
      135deg,
      #9af52a,
      var(--green)
    );

  box-shadow:
    0 20px 44px
      rgba(128, 224, 24, 0.26);
}

.btn-secondary {
  border-color:
    rgba(255, 255, 255, 0.1);

  background:
    rgba(255, 255, 255, 0.025);

  color: var(--text);
}

.btn-secondary:hover {
  border-color:
    rgba(128, 224, 24, 0.32);

  background:
    rgba(128, 224, 24, 0.05);
}

.btn-icon {
  font-size: 0.92em;
}


/* =========================================================
   Hero
   ========================================================= */

.business-hero {
  min-height:
    calc(100vh - 72px);

  display: grid;
  align-items: center;

  padding-top: 76px;
  padding-bottom: 80px;

  overflow: hidden;
  isolation: isolate;
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: -2;

  background-image:
    linear-gradient(
      90deg,
      rgba(8, 12, 15, 0.97) 0%,
      rgba(8, 12, 15, 0.78) 38%,
      rgba(8, 12, 15, 0.38) 69%,
      rgba(8, 12, 15, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 12, 15, 0.2) 0%,
      rgba(8, 12, 15, 0.03) 42%,
      rgba(8, 12, 15, 0.13) 100%
    ),
    url("../assets/hero-network_v1.png");

  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;

  opacity: 0.92;

  filter:
    saturate(0.96)
    contrast(1.03);

  pointer-events: none;

  animation:
    heroFloat 14s
    ease-in-out infinite;
}

.hero-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);

  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;

  color: var(--muted);

  font-size: 1.08rem;
}

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


/* =========================================================
   Prozess-Bubble
   ========================================================= */

.process-bubble {
  position: relative;

  width: 100%;
  min-width: 0;
  padding: 26px;

  border: 1px solid rgba(128, 224, 24, 0.2);
  border-radius: var(--radius-xl);

  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(128, 224, 24, 0.12),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.024)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    var(--shadow);

  backdrop-filter: blur(20px);
  overflow: hidden;
}

.process-bubble::before {
  content: "";

  position: absolute;
  top: 0;
  right: 34px;

  width: 110px;
  height: 3px;

  border-radius: 0 0 10px 10px;

  background:
    linear-gradient(
      90deg,
      var(--green),
      var(--green-2)
    );

  box-shadow:
    0 0 22px rgba(128, 224, 24, 0.34);
}

.process-header {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;

  color: var(--muted);

  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-status {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--green);

  box-shadow: 0 0 16px var(--green);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;

  width: 100%;
  min-width: 0;
}

.process-node {
  display: flex;
  min-width: 0;
  min-height: 126px;
  padding: 15px 12px;
  flex-direction: column;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.02)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  overflow: hidden;
}

.process-node > span {
  display: block;

  margin-bottom: 10px;

  color: var(--green);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-node strong {
  display: block;

  margin-bottom: 5px;

  color: var(--text);

  font-size: 0.82rem;
  line-height: 1.2;

  overflow-wrap: anywhere;
  hyphens: auto;
}

.process-node small {
  display: block;

  color: var(--muted);

  font-size: 0.7rem;
  line-height: 1.35;

  overflow-wrap: anywhere;
}

.process-arrow {
  display: none;
}


/* =========================================================
   Gemeinsame Glas-Bubbles
   ========================================================= */

.value-card,
.statement-card,
.mini-card,
.service-card,
.step,
.pricing-bubble,
.business-contact-bubble {
  position: relative;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.072),
      rgba(255, 255, 255, 0.026)
    );

  box-shadow:
    inset 0 1px 0
      rgba(255, 255, 255, 0.06),
    0 18px 50px
      rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(18px);
  overflow: hidden;
}

.pointer-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at
      var(--mx, 50%)
      var(--my, 30%),
      rgba(128, 224, 24, 0.14),
      transparent 30%
    );

  opacity: 0;

  transition:
    opacity 0.25s var(--ease);

  pointer-events: none;
}

.pointer-card:hover::before {
  opacity: 1;
}


/* =========================================================
   Nutzen
   ========================================================= */

.value-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr))
    1.12fr;

  gap: 16px;

  margin-top: 42px;
}

.value-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;

  min-height: 138px;
  padding: 24px;
}

.value-number,
.mini-number,
.service-number {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  border:
    1px solid rgba(128, 224, 24, 0.32);

  border-radius: 12px;

  background:
    rgba(128, 224, 24, 0.06);

  color: var(--green);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.value-card h2 {
  margin-bottom: 6px;

  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.value-card p {
  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;
}

.statement-card {
  display: flex;
  align-items: center;
  gap: 16px;

  min-height: 138px;
  padding: 24px 28px;

  border-color:
    rgba(128, 224, 24, 0.36);

  background:
    radial-gradient(
      circle at 92% 50%,
      rgba(128, 224, 24, 0.13),
      transparent 26%
    ),
    linear-gradient(
      145deg,
      rgba(128, 224, 24, 0.08),
      rgba(255, 255, 255, 0.035)
    );
}

.statement-card p {
  margin: 0;

  font-size: 1.24rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.quote-mark {
  color: var(--green);

  font-size: 4.1rem;
  line-height: 1;
  font-weight: 900;
}


/* =========================================================
   Überschriften
   ========================================================= */

.section-heading {
  margin-bottom: 38px;
}

.section-heading.center {
  max-width: 780px;
  margin-inline: auto;

  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;

  color: var(--muted);
}


/* =========================================================
   Zeitfresser
   ========================================================= */

.pain-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 16px;
}

.mini-card {
  min-height: 190px;
  padding: 24px;
}

.mini-card .mini-number {
  margin-bottom: 20px;
}

.mini-card p {
  margin: 0;

  color: var(--muted);

  font-size: 0.92rem;
}


/* =========================================================
   Leistungen
   ========================================================= */

.service-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 280px;
  padding: 28px;
  flex-direction: column;

  transition:
    transform 0.24s var(--ease),
    border-color 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(128, 224, 24, 0.38);

  box-shadow:
    0 24px 70px
      rgba(0, 0, 0, 0.28),
    0 0 36px
      rgba(128, 224, 24, 0.06);
}

.service-card .service-number {
  margin-bottom: 24px;
}

.service-card p {
  margin-bottom: 20px;

  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  gap: 8px;

  margin-top: auto;

  color: var(--green);

  font-weight: 850;
  text-decoration: none;
}

.service-card a span {
  transition:
    transform 0.2s var(--ease);
}

.service-card a:hover span {
  transform: translateX(4px);
}


/* =========================================================
   Preise
   ========================================================= */

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

.pricing-bubble {
  padding: 28px;
}

.pricing-table-wrap {
  overflow-x: auto;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 16px;

  background:
    rgba(4, 8, 10, 0.48);
}

.pricing-table-wrap:focus {
  outline:
    2px solid var(--green);

  outline-offset: 4px;
}

.pricing-table {
  width: 100%;
  min-width: 780px;

  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);

  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background:
    rgba(128, 224, 24, 0.06);

  color: var(--green);

  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-table td {
  color: var(--muted);
}

.pricing-table td:first-child {
  color: var(--text);
  font-weight: 760;
}

.pricing-table td:last-child {
  color: var(--green);
  font-weight: 850;
  white-space: nowrap;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody tr {
  transition:
    background 0.18s var(--ease);
}

.pricing-table tbody tr:hover {
  background:
    rgba(128, 224, 24, 0.035);
}

.pricing-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;

  margin-top: 18px;
  padding: 18px 20px;

  border:
    1px solid rgba(128, 224, 24, 0.18);

  border-radius: 14px;

  background:
    rgba(128, 224, 24, 0.045);
}

.pricing-note strong {
  color: var(--green);
}

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


/* =========================================================
   Ablauf
   ========================================================= */

.section-steps {
  padding-top: 86px;
}

.steps {
  position: relative;

  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}

.steps::before {
  content: "";

  position: absolute;
  top: 40px;
  right: 9%;
  left: 9%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(128, 224, 24, 0.58),
      transparent
    );
}

.step {
  min-height: 248px;
  padding: 30px 24px;

  background:
    rgba(12, 18, 22, 0.68);
}

.step-number {
  position: relative;
  z-index: 1;

  display: grid;
  place-items: center;

  width: 80px;
  height: 80px;
  margin-bottom: 22px;

  border:
    1px solid rgba(128, 224, 24, 0.44);

  border-radius: 24px;

  background: #071004;
  color: var(--green);

  font-weight: 900;

  box-shadow:
    0 0 30px
      rgba(128, 224, 24, 0.12),
    inset 0 0 28px
      rgba(128, 224, 24, 0.08);
}

.step p {
  margin: 0;

  color: var(--muted);

  font-size: 0.92rem;
}


/* =========================================================
   Abschluss-Kontakt
   ========================================================= */

.business-contact-section {
  padding-top: 78px;
  padding-bottom: 96px;
}

.business-contact-bubble {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 40px;
  align-items: center;

  padding: 46px 48px;

  border-color:
    rgba(128, 224, 24, 0.22);

  background:
    radial-gradient(
      circle at 90% 50%,
      rgba(128, 224, 24, 0.13),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.072),
      rgba(255, 255, 255, 0.026)
    );
}

.business-contact-bubble > div:first-child {
  max-width: 720px;
}

.business-contact-bubble p:last-child {
  margin-bottom: 0;

  color: var(--muted);
}

.business-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;

  min-width: 270px;
}


/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  padding: 38px 0;

  border-top:
    1px solid rgba(255, 255, 255, 0.08);

  background:
    rgba(0, 0, 0, 0.2);

  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns:
    1fr auto auto;

  gap: 28px;
  align-items: center;
}

.footer-logo {
  width: 180px;
  margin-bottom: 4px;

  opacity: 0.94;
}

.footer-grid p {
  margin: 0;

  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}


/* =========================================================
   Animationen
   ========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(24px);

  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.05s;
}

.reveal:nth-child(3) {
  transition-delay: 0.1s;
}

.reveal:nth-child(4) {
  transition-delay: 0.15s;
}

.reveal:nth-child(5) {
  transition-delay: 0.2s;
}

.reveal:nth-child(6) {
  transition-delay: 0.25s;
}

@keyframes gridShift {
  from {
    transform:
      translate3d(0, 0, 0);
  }

  to {
    transform:
      translate3d(
        54px,
        54px,
        0
      );
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform:
      scale(1.01)
      translateY(0);
  }

  50% {
    transform:
      scale(1.025)
      translateY(-6px);
  }
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

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

  .process-arrow {
    display: none;
  }

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

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

  .steps::before {
    display: none;
  }

  .business-contact-bubble {
    grid-template-columns: 1fr;
  }

  .business-contact-actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .pain-grid,
  .service-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  /* Grundlayout */
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 76px 0;
  }

  /* Header und Navigation */
  .site-header {
    width: 100%;
    padding: 10px 14px;
  }

  .brand-logo {
    width: 158px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;

    display: grid;
    gap: 6px;

    padding: 14px;

    border: 1px solid var(--line);
    border-radius: 18px;

    background: rgba(5, 8, 9, 0.96);

    opacity: 0;
    pointer-events: none;

    transform: translateY(-14px);

    transition:
      opacity 0.2s var(--ease),
      transform 0.2s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 12px;
  }

  /* Hero */
  .business-hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 68px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  /* Prozess und Inhalte */
  .process-bubble {
    padding: 24px 20px;
  }

  .process-node {
    min-height: 112px;
  }

  .process-flow,
  .value-grid,
  .pain-grid,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .statement-card p {
    font-size: 1.12rem;
  }

  /* Preise */
  .pricing-bubble {
    padding: 18px;
  }

  .pricing-note {
    grid-template-columns: 1fr;
  }

  .pricing-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .pricing-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    margin-bottom: 16px;
    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;

    background:
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.055),
        rgba(255, 255, 255, 0.02)
      );
  }

  .pricing-table tr:last-child {
    margin-bottom: 0;
  }

  .pricing-table td {
    display: grid;
    grid-template-columns:
      minmax(105px, 0.8fr)
      minmax(0, 1.2fr);

    gap: 12px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    white-space: normal;
    overflow-wrap: anywhere;
  }

  .pricing-table td::before {
    content: attr(data-label);

    color: var(--green);

    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .pricing-table td:first-child {
    padding-top: 0;
  }

  .pricing-table td:last-child {
    padding-bottom: 0;

    border-bottom: 0;

    color: var(--green);
    font-weight: 850;
  }

  /* Kontaktbereich */
  .business-contact-bubble {
    padding: 32px 26px;
  }

  .business-contact-actions {
    flex-direction: column;
  }

  .business-contact-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Inhaltskarten */
  .process-bubble {
    padding: 22px 18px;
  }

  .value-card,
  .statement-card,
  .mini-card,
  .service-card,
  .step {
    padding: 22px 20px;
  }

  /* Preise */
  .pricing-bubble {
    padding: 14px;
  }

  .pricing-table tr {
    padding: 16px 14px;
  }

  .pricing-table td {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pricing-table td::before {
    margin-bottom: 2px;
  }

  /* Kontaktbereich */
  .business-contact-bubble {
    padding: 28px 20px;
  }
}

/* =========================================================
   Reduzierte Bewegung
   ========================================================= */

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}