:root {
  --ink: #172331;
  --ink-soft: #334152;
  --navy: #14273f;
  --navy-deep: #0d1b2d;
  --gold: #2258a6;
  --gold-soft: #8fb7f2;
  --paper: #f4f6f8;
  --surface: #ffffff;
  --line: #d9e0e8;
  --shadow: 0 16px 42px rgba(13, 27, 45, 0.12);
  --silver: #c9cdd3;
}

/* PARADIGMA Premium-Technik-Look.
   Die Farbwelt bleibt Blau, Silber, Weiß und Dunkel wie im bestehenden Brand. */
:root {
  --ink: #dfe9f6;
  --ink-soft: #9facbd;
  --navy: #0f2440;
  --navy-deep: #050b14;
  --gold: #4f93ff;
  --gold-soft: #9fc4ff;
  --paper: #060b12;
  --surface: rgba(13, 24, 39, 0.72);
  --line: rgba(159, 196, 255, 0.18);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --silver: #c8d0dc;
  --glass: rgba(10, 20, 34, 0.66);
  --glass-strong: rgba(11, 24, 42, 0.86);
  --blue-bright: #6aa7ff;
  --blue-deep: #08285d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(13, 27, 45, 0.97);
  border-bottom: 1px solid rgba(143, 183, 242, 0.28);
  backdrop-filter: blur(12px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 27, 45, 0.99);
  box-shadow: 0 10px 30px rgba(13, 27, 45, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
  max-width: 360px;
}

.brand img {
  display: block;
  width: min(360px, 100%);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  padding: 4px 8px;
  transition: transform 180ms ease;
}

.brand:hover img {
  transform: translateY(-1px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 4px;
  color: #ecf1f5;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  padding: clamp(76px, 12vw, 150px) clamp(20px, 6vw, 86px) clamp(42px, 8vw, 90px);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 28%, rgba(143, 183, 242, 0.28), transparent 28%),
    linear-gradient(115deg, transparent 0 58%, rgba(143, 183, 242, 0.1) 59% 60%, transparent 61%);
  mix-blend-mode: screen;
  animation: hero-light-drift 8s ease-in-out infinite alternate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 27, 45, 0.94), rgba(13, 27, 45, 0.76) 48%, rgba(13, 27, 45, 0.18)),
    url("./assets/hero-modern-office.jpg") center / cover no-repeat,
    var(--navy-deep);
  transform: scale(1.02);
  animation: hero-settle 1800ms ease-out both;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  animation: hero-content-in 900ms ease-out 120ms both;
}

.hero-intelligence {
  position: absolute;
  right: clamp(22px, 5vw, 78px);
  bottom: clamp(28px, 6vw, 92px);
  z-index: 2;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 8px 12px;
  width: min(330px, 32vw);
  padding: 18px;
  color: #fff;
  background: rgba(13, 27, 45, 0.62);
  border: 1px solid rgba(143, 183, 242, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(13, 27, 45, 0.28);
  backdrop-filter: blur(10px);
  animation: intelligence-float 4.8s ease-in-out infinite;
}

.hero-intelligence strong {
  grid-column: 2;
  font-size: 15px;
}

.hero-intelligence span {
  grid-column: 2;
  padding: 8px 10px;
  color: #d9e8ff;
  background: rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--gold-soft);
  font-size: 13px;
}

.hero-signal {
  position: absolute;
  left: clamp(22px, 6vw, 86px);
  bottom: clamp(18px, 4vw, 44px);
  z-index: 2;
  display: flex;
  gap: 8px;
  width: min(420px, 42vw);
  height: 42px;
  align-items: end;
  opacity: 0.78;
}

.hero-signal span {
  flex: 1;
  height: 30%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(143, 183, 242, 0.92), rgba(34, 88, 166, 0.62));
  box-shadow: 0 0 18px rgba(143, 183, 242, 0.28);
  animation: signal-rise 2.8s ease-in-out infinite;
}

.hero-signal span:nth-child(2) {
  animation-delay: 260ms;
}

.hero-signal span:nth-child(3) {
  animation-delay: 520ms;
}

.hero-signal span:nth-child(4) {
  animation-delay: 780ms;
}

.pulse-dot {
  grid-row: 1 / span 4;
  align-self: start;
  width: 12px;
  height: 12px;
  margin-top: 4px;
  background: #6ee7b7;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(110, 231, 183, 0.58);
  animation: pulse-dot 1.8s ease-out infinite;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 25px;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: #eef3f6;
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 27, 45, 0.18);
}

.button.primary {
  color: #fff;
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.fineprint {
  margin: 18px 0 0;
  color: #d8dee5;
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 34px);
  background: #fff;
  transition: background 180ms ease;
}

.trust-strip div:hover {
  background: #f8fafc;
}

.pro-dashboard {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(34, 88, 166, 0.08), transparent 40%),
    #fff;
  border-bottom: 1px solid var(--line);
}

.dashboard-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 18px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.metric-row span {
  display: grid;
  gap: 2px;
  min-width: 140px;
  padding: 12px 14px;
  background: #f4f6f8;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

.metric-row strong {
  color: var(--navy);
  font-size: 18px;
}

.monitor-wall {
  position: relative;
  min-height: min(58vw, 520px);
  background:
    linear-gradient(90deg, rgba(13, 27, 45, 0.08), rgba(13, 27, 45, 0.02)),
    url("./assets/pro-monitor-room.jpg") center / cover no-repeat,
    #0d1b2d;
  border: 1px solid rgba(143, 183, 242, 0.28);
  border-radius: 10px;
  box-shadow: 0 28px 72px rgba(13, 27, 45, 0.28);
  overflow: hidden;
}

.monitor-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(13, 27, 45, 0.44)),
    radial-gradient(circle at 72% 34%, rgba(143, 183, 242, 0.22), transparent 32%);
}

.monitor-sweep {
  position: absolute;
  inset: -20% 0 auto;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(143, 183, 242, 0.26), transparent);
  animation: scan-down 5.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

.monitor-frame {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 188px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(13, 27, 45, 0.72);
  border: 1px solid rgba(143, 183, 242, 0.36);
  border-radius: 8px;
  backdrop-filter: blur(9px);
  box-shadow: 0 12px 36px rgba(13, 27, 45, 0.22);
  animation: panel-float 5s ease-in-out infinite;
}

.monitor-frame strong {
  font-size: 14px;
}

.monitor-frame span {
  color: #d9e8ff;
  font-size: 13px;
}

.frame-a {
  left: 22px;
  top: 22px;
}

.frame-b {
  right: 24px;
  bottom: 26px;
  animation-delay: 700ms;
}

.frame-c {
  left: 34%;
  bottom: 24px;
  animation-delay: 1300ms;
}

.case-lab-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.case-lab-media {
  position: relative;
  min-height: 440px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 27, 45, 0.03), rgba(13, 27, 45, 0.16)),
    url("./assets/pro-documentation-office.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.case-lab-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.28) 48%, transparent 51%);
  transform: translateX(-120%);
  animation: lens-sweep 7s ease-in-out infinite;
  mix-blend-mode: screen;
}

.case-lab-copy p {
  color: var(--ink-soft);
  font-size: 18px;
}

.case-lab-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.case-lab-copy li {
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: #fff;
}

.operations-flow {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 86px);
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(143, 183, 242, 0.2), transparent 28%),
    linear-gradient(135deg, #081220, #14273f);
}

.operations-flow .section-heading {
  max-width: 820px;
}

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.flow-rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(143, 183, 242, 0.82), transparent);
  animation: flow-light 4.8s ease-in-out infinite;
}

.flow-rail article {
  position: relative;
  z-index: 1;
  padding: 26px;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(143, 183, 242, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease;
}

.flow-rail article:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.flow-rail span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 18px;
  padding-bottom: 14px;
  color: #4f93ff;
  background: none;
  border-radius: 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  box-shadow: none;
  border-bottom: 2px solid rgba(79, 147, 255, 0.35);
}

.flow-rail strong {
  display: block;
  font-size: 21px;
}

.flow-rail p {
  color: #d9e8ff;
}

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

.trust-strip strong {
  color: var(--navy);
  font-size: 18px;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14px;
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
}

.intro p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 86px) clamp(72px, 8vw, 110px);
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 45, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card.featured {
  border-color: rgba(34, 88, 166, 0.55);
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
  border-color: rgba(34, 88, 166, 0.28);
  box-shadow: 0 18px 44px rgba(13, 27, 45, 0.13);
}

.card-image {
  position: relative;
  display: grid;
  place-items: end start;
  height: 205px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 27, 45, 0.08), rgba(13, 27, 45, 0.22)),
    #d9e0e8;
  background-size: cover;
  background-position: center;
  transition: transform 500ms ease, filter 300ms ease;
}

.card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(13, 27, 45, 0.18));
}

.service-card:hover .card-image {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.card-image::after {
  content: none;
}

.image-private {
  background-image:
    linear-gradient(180deg, rgba(13, 27, 45, 0.03), rgba(13, 27, 45, 0.16)),
    url("./assets/privatdetektei-beratung.jpg");
}

.image-business {
  background-image:
    linear-gradient(180deg, rgba(13, 27, 45, 0.03), rgba(13, 27, 45, 0.16)),
    url("./assets/wirtschaftsdetektei.jpg");
}

.image-retail {
  background-image:
    linear-gradient(180deg, rgba(13, 27, 45, 0.03), rgba(13, 27, 45, 0.14)),
    url("./assets/kaufhausdetektiv-observation.jpg");
  background-position: center;
}

.image-shopping {
  background-image:
    linear-gradient(180deg, rgba(13, 27, 45, 0.03), rgba(13, 27, 45, 0.16)),
    url("./assets/mystery-shopping.jpg");
}

.image-security {
  background-image:
    linear-gradient(180deg, rgba(13, 27, 45, 0.03), rgba(13, 27, 45, 0.16)),
    url("./assets/monitorraum.jpg");
  background-position: center;
}

.card-body {
  padding: 24px;
}

.card-body p {
  margin: 14px 0 18px;
  color: var(--ink-soft);
}

.card-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
}

.card-body li {
  padding-left: 18px;
  position: relative;
}

.card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  min-height: 560px;
  background: var(--navy);
  color: #fff;
}

.process-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 86px);
  background: var(--paper);
}

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

.process-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(13, 27, 45, 0.06);
}

.process-grid span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 16px;
  padding-bottom: 12px;
  color: var(--gold);
  background: none;
  border-radius: 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  border-bottom: 2px solid rgba(79, 147, 255, 0.35);
}

.process-grid h3 {
  font-size: 21px;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.scenario-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 86px);
  background: #fff;
}

.scenario-media {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 27, 45, 0.08), rgba(13, 27, 45, 0.18)),
    url("./assets/kaufhausdetektiv-observation.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(143, 183, 242, 0.34), transparent);
  animation: scan-down 6s ease-in-out infinite;
}

.camera-feed {
  position: absolute;
  width: 132px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(13, 27, 45, 0.44), rgba(34, 88, 166, 0.34)),
    rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
}

.feed-one {
  right: 24px;
  top: 24px;
}

.feed-two {
  right: 76px;
  bottom: 36px;
}

.feed-three {
  left: 24px;
  bottom: 28px;
}

.scenario-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 18px;
}

.split-copy {
  align-self: center;
  padding: clamp(54px, 7vw, 92px) clamp(20px, 6vw, 86px);
}

.split-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: #d9e2eb;
  font-size: 18px;
}

.hero .eyebrow,
.split-copy .eyebrow {
  color: var(--gold-soft);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.check-list span {
  padding: 12px 14px;
  border-left: 3px solid var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
}

.split-image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.image-tech {
  background:
    linear-gradient(90deg, rgba(13, 27, 45, 0.08), rgba(13, 27, 45, 0.02)),
    url("./assets/monitorraum.jpg") center / cover no-repeat,
    #eef1f4;
}

.about-section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 380px);
  gap: 28px;
  margin-top: 30px;
}

.about-grid > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.owner-card {
  padding: 28px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 8px;
}

.owner-card span,
.owner-card strong {
  display: block;
}

.owner-card span {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.owner-card strong {
  margin-top: 8px;
  font-size: 26px;
  font-family: Georgia, serif;
}

.owner-card p {
  margin: 14px 0 0;
  color: #d9e2eb;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(rgba(246, 243, 238, 0.94), rgba(246, 243, 238, 0.94)),
    linear-gradient(135deg, rgba(34, 88, 166, 0.14), transparent 42%),
    var(--paper);
}

.contact-panel,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(13, 27, 45, 0.08);
}

.contact-panel {
  padding: clamp(28px, 4vw, 44px);
}

.contact-panel p:not(.eyebrow) {
  color: var(--ink-soft);
}

address {
  margin-top: 24px;
  font-style: normal;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a,
.contact-links span {
  padding: 12px 14px;
  color: var(--navy);
  background: #f7f5f0;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.contact-links a {
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-links a:hover {
  background: #edf4ff;
  border-color: rgba(34, 88, 166, 0.28);
  transform: translateX(2px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
}

.anti-spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc7ba;
  border-radius: 4px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--ink-soft);
  font-weight: 400;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.consent a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.form-note {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 86px);
  color: #d9e2eb;
  background: var(--navy-deep);
}

.footer-brand {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 12px;
  align-items: center;
}

.footer-brand img {
  grid-row: span 2;
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 3px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  color: #f2f4f7;
}

.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 18px;
  width: min(720px, calc(100vw - 36px));
  padding: 18px;
  color: #fff;
  background: rgba(13, 27, 45, 0.96);
  border: 1px solid rgba(143, 183, 242, 0.32);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(13, 27, 45, 0.28);
}

.consent-banner.is-visible {
  display: grid;
}

.consent-banner p {
  margin: 6px 0 0;
  color: #d9e2eb;
  font-size: 14px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.service-card.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.service-card.reveal:nth-child(3) {
  transition-delay: 160ms;
}

.service-card.reveal:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes hero-settle {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes hero-light-drift {
  from {
    opacity: 0.45;
    transform: translateX(-1%);
  }

  to {
    opacity: 0.85;
    transform: translateX(1.5%);
  }
}

@keyframes intelligence-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.58);
  }

  100% {
    box-shadow: 0 0 0 14px rgba(110, 231, 183, 0);
  }
}

@keyframes signal-rise {
  0%,
  100% {
    height: 28%;
    opacity: 0.48;
  }

  50% {
    height: 100%;
    opacity: 1;
  }
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes lens-sweep {
  0%,
  42% {
    transform: translateX(-120%);
  }

  62%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes feed-scan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes scan-down {
  0%,
  100% {
    top: -20%;
  }

  50% {
    top: 96%;
  }
}

@keyframes flow-light {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.74);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.legal-main {
  box-sizing: border-box;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 20px;
}

.legal-card {
  box-sizing: border-box;
  max-width: 100%;
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
}

.legal-card h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 56px);
}

.legal-card h2 {
  margin-top: 34px;
  color: var(--navy);
  font-size: 26px;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.subpage-main {
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 560px;
  padding: clamp(72px, 11vw, 138px) clamp(20px, 6vw, 86px) clamp(48px, 7vw, 82px);
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 32, 0.88), rgba(13, 27, 45, 0.64), rgba(13, 27, 45, 0.18)),
    radial-gradient(circle at 78% 32%, rgba(143, 183, 242, 0.22), transparent 30%);
}

.subpage-hero > div {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #eef3f6;
  font-size: 21px;
}

.content-band {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(13, 27, 45, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.content-grid article:hover,
.td-grid article:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-3px);
  box-shadow: 0 18px 44px rgba(13, 27, 45, 0.12);
}

/* B1 — Privat & Wirtschaft Übersichtsseite */
.pv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.pv-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 34px rgba(13, 27, 45, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.pv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(13, 27, 45, 0.12);
}

.pv-card-head {
  display: grid;
  gap: 6px;
}

.pv-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy);
}

.pv-card > p {
  color: #334152;
  margin: 0;
}

.pv-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  color: #5a6a79;
}

.pv-card ul li {
  padding-left: 20px;
  position: relative;
}

.pv-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4f93ff;
  font-weight: 700;
}

.content-lead {
  max-width: 640px;
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.content-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.content-grid h2 {
  font-size: 27px;
}

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

.td-main {
  --td-ink: #0B0B0C;
  --td-paper: #0B0B0C;
  --td-primary: #ee9600;
  --td-card: #141416;
  --td-soft-layer: #1A1A1D;
  --td-secondary: #851000;
  --td-social-red: #A31212;
  --td-white: #FFFFFF;
  --td-muted-warm: #C8BDA9;
  --td-muted-light: #D6CBBB;
  --td-accent: #ee9600;
  color: var(--td-white);
  background: var(--td-paper);
}

.td-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(340px, 0.66fr);
  gap: clamp(34px, 7vw, 108px);
  align-items: center;
  padding: clamp(74px, 12vw, 140px) clamp(20px, 6vw, 86px);
  color: #fff;
  background:
    radial-gradient(ellipse at 76% 16%, rgba(255, 178, 58, 0.34), transparent 28%),
    radial-gradient(ellipse at 18% 84%, rgba(133, 16, 0, 0.15), transparent 32%),
    linear-gradient(145deg, #050506 0%, #0B0B0C 38%, #141416 70%, #050506 100%);
  overflow: hidden;
}

.td-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 22%, rgba(255, 178, 58, 0.22), transparent 34%),
    linear-gradient(115deg, transparent 0 44%, rgba(255, 178, 58, 0.12) 52%, transparent 62%);
  animation: td-lux-sheen 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.td-hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 86px);
  right: clamp(20px, 6vw, 86px);
  bottom: 0;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 178, 58, 0.78), rgba(255, 255, 255, 0.38), transparent);
}

.td-copy {
  position: relative;
  z-index: 3;
  width: min(820px, 100%);
}

.td-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 12px;
  color: var(--td-primary);
  background: rgba(238, 150, 0, 0.09);
  border: 1px solid rgba(238, 150, 0, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.td-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ffb23a;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(238, 150, 0, 0.8);
}

.td-copy h1 {
  max-width: 880px;
  font-size: clamp(56px, 8.2vw, 124px);
  line-height: 0.9;
  background: linear-gradient(180deg, #fff 0%, #f7f2e8 48%, #ffb23a 118%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 22px 70px rgba(238, 150, 0, 0.16);
}

.td-copy p:not(.td-kicker) {
  max-width: 740px;
  color: var(--td-muted-light);
  font-size: 22px;
}

.td-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.td-main .button {
  border-radius: 999px;
  box-shadow: none;
  font-weight: 900;
}

.td-main .button.primary {
  color: #0B0B0C;
  background: linear-gradient(135deg, #ffb23a 0%, #ee9600 62%, #c97800 100%);
  border-color: #ffb23a;
  box-shadow:
    0 16px 42px rgba(238, 150, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.td-main .button.primary:hover,
.td-main .button.primary:focus-visible {
  color: #0B0B0C;
  background: #ffb23a;
  border-color: #ffb23a;
}

.td-main .button.secondary {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.td-main .button.secondary:hover,
.td-main .button.secondary:focus-visible {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border-color: #ee9600;
}

.td-media-stack {
  position: relative;
  z-index: 3;
  min-height: 500px;
}

.td-screen-card,
.td-phone-card,
.td-live-card {
  position: absolute;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(20, 20, 22, 0.92) 24%, rgba(26, 26, 29, 0.96)),
    linear-gradient(135deg, rgba(238, 150, 0, 0.12), transparent 42%);
  border: 1px solid rgba(255, 178, 58, 0.18);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--td-white);
  backdrop-filter: blur(14px);
}

.td-screen-card {
  inset: 16px 0 auto 0;
  min-height: 390px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 18px;
  overflow: hidden;
}

.td-screen-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 16%, rgba(255, 178, 58, 0.24), transparent 30%),
    linear-gradient(116deg, transparent 0 44%, rgba(255, 255, 255, 0.12) 52%, transparent 62%);
  animation: td-card-sheen 7s ease-in-out infinite alternate;
}

.td-screen-card span,
.td-phone-card span,
.td-live-card span {
  position: relative;
  z-index: 1;
  color: #ffb23a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.td-screen-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 430px;
  margin-top: 14px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 0.96;
}

.td-screen-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(330px, 78%);
  margin-top: 40px;
}

.td-screen-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--td-primary), rgba(238, 150, 0, 0.16));
  animation: td-line-pulse 3.2s ease-in-out infinite;
}

.td-screen-lines i:nth-child(2) {
  width: 78%;
  animation-delay: 420ms;
}

.td-screen-lines i:nth-child(3) {
  width: 56%;
  animation-delay: 820ms;
}

.td-day-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 32px;
}

.td-day-list b {
  display: grid;
  place-items: center;
  min-height: 52px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 178, 58, 0.18);
  border-radius: 999px;
  font-size: 13px;
}

.td-live-card strong {
  position: relative;
  z-index: 1;
  font-size: 24px;
}

.td-live-card {
  right: 26px;
  bottom: 28px;
  width: min(320px, 74%);
  padding: 22px;
  border-radius: 12px;
  border-left: 5px solid #ffb23a;
  animation: panel-float 5.2s ease-in-out infinite;
}

.td-orbit {
  position: absolute;
  right: clamp(16px, 7vw, 104px);
  top: 18%;
  width: min(420px, 46vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  animation: td-spin 18s linear infinite;
  z-index: 2;
}

.td-orbit span {
  position: absolute;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.td-orbit span:nth-child(1) {
  left: 8%;
  top: 12%;
}

.td-orbit span:nth-child(2) {
  right: 2%;
  top: 44%;
}

.td-orbit span:nth-child(3) {
  left: 34%;
  bottom: 0;
}

.td-section,
.td-note {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
}

.td-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.td-grid article,
.td-note {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(26, 26, 29, 0.94)),
    var(--td-card);
  border: 1px solid rgba(255, 178, 58, 0.16);
  border-radius: 12px;
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.td-grid article {
  padding: 26px;
}

.td-grid span {
  color: #ffb23a;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.td-grid h3 {
  margin-top: 10px;
}

.td-grid p,
.td-note p {
  color: var(--td-muted-warm);
}

.td-grid a {
  color: var(--td-secondary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.td-note {
  margin: 0 clamp(20px, 6vw, 86px) clamp(58px, 8vw, 100px);
}

.td-product-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 6vw, 86px) clamp(58px, 8vw, 100px);
  background: rgba(255, 178, 58, 0.22);
  border: 1px solid rgba(255, 178, 58, 0.16);
  border-radius: 14px;
  overflow: hidden;
}

.td-product-strip div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(20, 20, 22, 0.96));
}

.td-product-strip span {
  color: var(--td-primary);
  font-weight: 900;
}

.td-product-strip strong {
  font-size: 22px;
  line-height: 1.1;
}

.td-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 86px);
  color: #fff;
  background: #0B0B0C;
}

.td-showcase-copy p:not(.td-kicker) {
  color: var(--td-muted-light);
  font-size: 18px;
}

.td-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.td-showcase-grid article {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, transparent 20%, rgba(11, 11, 12, 0.78)),
    radial-gradient(circle at 72% 12%, rgba(255, 178, 58, 0.44), transparent 34%),
    linear-gradient(135deg, rgba(238, 150, 0, 0.88), rgba(20, 20, 22, 0.96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

@keyframes td-lux-sheen {
  from {
    opacity: 0.58;
    transform: translateX(-2%) scale(1);
  }

  to {
    opacity: 1;
    transform: translateX(2%) scale(1.03);
  }
}

@keyframes td-card-sheen {
  from {
    opacity: 0.55;
    transform: translateX(-8%);
  }

  to {
    opacity: 0.96;
    transform: translateX(8%);
  }
}

.td-showcase-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(238, 150, 0, 0.6);
}

.td-showcase-grid article:nth-child(2) {
  transform: translateY(24px);
}

.td-showcase-grid article:nth-child(2):hover {
  transform: translateY(18px);
}

.td-showcase-grid span {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.td-showcase-grid strong {
  font-size: 24px;
  line-height: 1.08;
}

@keyframes td-line-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.82);
    transform-origin: left;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.jobs-main {
  background: var(--paper);
}

.jobs-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 620px;
  padding: clamp(74px, 12vw, 140px) clamp(20px, 6vw, 86px) clamp(48px, 7vw, 86px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 18, 32, 0.91), rgba(13, 27, 45, 0.64), rgba(13, 27, 45, 0.22)),
    url("./assets/kaufhausdetektiv-observation.jpg") center / cover no-repeat,
    var(--navy-deep);
}

.jobs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 28%, rgba(143, 183, 242, 0.25), transparent 30%),
    linear-gradient(115deg, transparent 0 48%, rgba(143, 183, 242, 0.12) 49% 50%, transparent 51%);
  pointer-events: none;
}

.jobs-hero > div {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
}

.jobs-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #eef3f6;
  font-size: 21px;
}

.jobs-section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.jobs-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(13, 27, 45, 0.06);
}

.jobs-grid span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 16px;
  padding-bottom: 12px;
  color: var(--gold);
  background: none;
  border-radius: 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  border-bottom: 2px solid rgba(79, 147, 255, 0.35);
}

.jobs-grid h3 {
  font-size: 22px;
}

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

.job-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.job-summary div {
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 34px);
  background: #fff;
}

.job-summary strong,
.job-summary span {
  display: block;
}

.job-summary strong {
  color: var(--navy);
  font-size: 18px;
}

.job-summary span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14px;
}

.jobs-profile {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
  color: #fff;
  background: var(--navy-deep);
}

.jobs-profile p:not(.eyebrow) {
  color: #d9e2eb;
  font-size: 18px;
}

.jobs-profile ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jobs-profile li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold-soft);
  border-radius: 4px;
}

.application-flow,
.jobs-faq {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
}

.application-flow {
  background: #fff;
}

.application-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.application-steps article {
  position: relative;
  padding: 26px;
  background: #f4f6f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.application-steps article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.application-steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
}

.application-steps h3 {
  font-size: 22px;
}

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

.jobs-faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(13, 27, 45, 0.05);
}

.faq-list summary {
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

@keyframes td-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Pro art direction layer */
.hero {
  min-height: min(860px, calc(100vh - 76px));
  align-items: center;
  padding-top: clamp(96px, 12vw, 150px);
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(8, 18, 32, 0.96), rgba(13, 27, 45, 0.74) 46%, rgba(13, 27, 45, 0.12)),
    url("./assets/pro-monitor-room.jpg") center / cover no-repeat,
    var(--navy-deep);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  mix-blend-mode: screen;
}

.hero-content {
  max-width: 760px;
}

.hero-content h1 {
  font-size: clamp(46px, 6.6vw, 88px);
  letter-spacing: -1px;
}

.hero-content .lead {
  max-width: 690px;
}

.hero-intelligence {
  width: min(380px, 34vw);
  background: rgba(8, 18, 32, 0.72);
  transform-style: preserve-3d;
}

.pro-marquee {
  overflow: hidden;
  color: #d9e8ff;
  background: #081220;
  border-top: 1px solid rgba(143, 183, 242, 0.18);
  border-bottom: 1px solid rgba(143, 183, 242, 0.18);
}

.pro-marquee div {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 14px 0;
  animation: marquee-slide 28s linear infinite;
}

.pro-marquee span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pro-marquee span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 7px;
  height: 7px;
  background: #6ee7b7;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(110, 231, 183, 0.7);
}

.motion-brief {
  display: grid;
  grid-template-columns: minmax(340px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 86px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 34%, rgba(143, 183, 242, 0.18), transparent 28%),
    linear-gradient(135deg, #081220, #14273f);
  overflow: hidden;
}

.motion-stage {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(143, 183, 242, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 42px 42px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.motion-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 42%, rgba(143, 183, 242, 0.2) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: lens-sweep 6.5s ease-in-out infinite;
}

.timeline-track {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 183, 242, 0.12), rgba(143, 183, 242, 0.92), rgba(143, 183, 242, 0.12));
}

.timeline-dot {
  position: absolute;
  top: -6px;
  width: 14px;
  height: 14px;
  background: #6ee7b7;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.48);
  animation: pulse-dot 1.9s ease-out infinite;
}

.dot-a {
  left: 8%;
}

.dot-b {
  left: 48%;
  animation-delay: 520ms;
}

.dot-c {
  right: 8%;
  animation-delay: 1040ms;
}

.brief-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  width: min(250px, 42%);
  padding: 18px;
  background: rgba(8, 18, 32, 0.78);
  border: 1px solid rgba(143, 183, 242, 0.34);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  animation: panel-float 5.4s ease-in-out infinite;
}

.brief-card strong {
  font-size: 18px;
}

.brief-card span {
  color: #d9e8ff;
  font-size: 14px;
}

.brief-a {
  left: 7%;
  top: 14%;
}

.brief-b {
  right: 8%;
  top: 34%;
  animation-delay: 800ms;
}

.brief-c {
  left: 24%;
  bottom: 13%;
  animation-delay: 1400ms;
}

.motion-copy p:not(.eyebrow) {
  color: #d9e2eb;
  font-size: 18px;
}

.trust-strip {
  position: relative;
  z-index: 2;
}

.trust-strip div {
  background:
    linear-gradient(135deg, rgba(34, 88, 166, 0.07), transparent 52%),
    #fff;
}

.pro-dashboard {
  grid-template-columns: minmax(320px, 0.72fr) minmax(460px, 1.28fr);
  background:
    radial-gradient(circle at 88% 24%, rgba(34, 88, 166, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff, #f4f7fb);
}

.monitor-wall {
  min-height: min(62vw, 590px);
  border-radius: 14px;
}

.monitor-frame {
  transition: transform 220ms ease, background 220ms ease;
}

.monitor-wall:hover .monitor-frame {
  background: rgba(8, 18, 32, 0.84);
}

.case-lab-section {
  background:
    linear-gradient(135deg, rgba(34, 88, 166, 0.09), transparent 44%),
    var(--paper);
}

.service-lab {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  padding: 0 clamp(20px, 6vw, 86px) clamp(72px, 8vw, 110px);
}

.service-lab-panel,
.service-lab-visual {
  min-height: 460px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-lab-panel {
  padding: clamp(26px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.service-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-tabs button:hover,
.service-tabs button.is-active {
  color: #fff;
  background: var(--gold);
  transform: translateY(-1px);
}

.tab-content {
  display: none;
  max-width: 620px;
}

.tab-content.is-active {
  display: block;
  animation: tab-in 420ms ease both;
}

.tab-content p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 19px;
}

.service-lab-visual {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.28), rgba(8, 18, 32, 0.74)),
    url("./assets/pro-documentation-office.jpg") center / cover no-repeat;
}

.service-lab-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(143, 183, 242, 0.2) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(143, 183, 242, 0.14) 49% 51%, transparent 52%);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle, black 0 48%, transparent 70%);
  animation: grid-drift 16s linear infinite;
}

.radar-ring {
  position: absolute;
  width: min(340px, 55%);
  aspect-ratio: 1;
  border: 1px solid rgba(143, 183, 242, 0.5);
  border-radius: 50%;
  animation: radar-pulse 3.8s ease-out infinite;
}

.ring-two {
  width: min(480px, 76%);
  animation-delay: 1200ms;
}

.lab-card {
  position: absolute;
  padding: 12px 16px;
  color: #fff;
  background: rgba(8, 18, 32, 0.72);
  border: 1px solid rgba(143, 183, 242, 0.36);
  border-radius: 8px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  animation: panel-float 4.8s ease-in-out infinite;
}

.card-one {
  left: 12%;
  top: 18%;
}

.card-two {
  right: 12%;
  top: 38%;
  animation-delay: 900ms;
}

.card-three {
  left: 24%;
  bottom: 16%;
  animation-delay: 1600ms;
}

.process-grid article {
  position: relative;
  overflow: hidden;
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.process-grid article:hover::after {
  transform: scaleX(1);
}

.scenario-media {
  min-height: 520px;
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes tab-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes radar-pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.78);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 54px 54px;
  }
}

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

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

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

  .main-nav a {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(13, 27, 45, 0.84), rgba(13, 27, 45, 0.7) 56%, rgba(13, 27, 45, 0.38)),
      url("./assets/hero-modern-office.jpg") center / cover no-repeat,
      var(--navy-deep);
  }

  .trust-strip,
  .job-summary,
  .intro,
  .motion-brief,
  .td-hero,
  .td-showcase,
  .td-showcase-grid,
  .pro-dashboard,
  .case-lab-section,
  .service-lab,
  .split-section,
  .process-grid,
  .flow-rail,
  .scenario-section,
  .about-grid,
  .contact-section,
  .content-grid,
  .td-grid,
  .td-product-strip,
  .jobs-grid,
  .jobs-profile,
  .application-steps {
    grid-template-columns: 1fr;
  }

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

  .split-image {
    order: -1;
  }

  .process-grid {
    gap: 14px;
  }

  .consent-banner {
    grid-template-columns: 1fr;
  }

  .hero-intelligence {
    display: none;
  }

  .hero-signal {
    width: min(300px, 70vw);
  }

  .motion-stage {
    min-height: 360px;
  }

  .td-orbit {
    opacity: 0.28;
    right: -80px;
  }

  .td-media-stack {
    min-height: 520px;
  }

  .brief-card {
    width: min(260px, 72%);
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
    max-width: calc(100vw - 92px);
  }

  .brand img {
    max-height: 44px;
    padding: 3px 6px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

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

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

/* Neue PARADIGMA Startseite */
body {
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 147, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 88% 10%, rgba(201, 208, 220, 0.13), transparent 26rem),
    linear-gradient(180deg, #050b14 0%, #07101d 44%, #0a1220 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(159, 196, 255, 0.06) 43%, transparent 45% 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 28rem);
  opacity: 0.8;
}

.site-header {
  min-height: 82px;
  margin: 14px clamp(12px, 2.4vw, 34px) 0;
  border: 1px solid rgba(159, 196, 255, 0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(9, 19, 33, 0.84), rgba(8, 15, 27, 0.72));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(6, 13, 24, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.brand {
  min-width: min(330px, 52vw);
}

.brand img {
  max-height: 58px;
  padding: 6px 12px;
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.24);
}

.main-nav {
  gap: 6px;
}

.main-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(239, 246, 255, 0.84);
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(159, 196, 255, 0.1);
  border-color: rgba(159, 196, 255, 0.22);
}

.hero {
  min-height: min(820px, calc(100vh - 10px));
  align-items: center;
  margin-top: -96px;
  padding-top: clamp(152px, 16vw, 210px);
  border-bottom: 1px solid rgba(159, 196, 255, 0.14);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% 6% auto auto;
  width: min(540px, 42vw);
  height: min(540px, 42vw);
  pointer-events: none;
  border: 1px solid rgba(159, 196, 255, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(159, 196, 255, 0.18), transparent 58%),
    conic-gradient(from 120deg, transparent, rgba(79, 147, 255, 0.16), transparent 42%);
  filter: blur(0.2px);
  animation: radar-slow 16s linear infinite;
}

.hero::after {
  background:
    linear-gradient(100deg, transparent 0 55%, rgba(255, 255, 255, 0.14) 57%, transparent 60% 100%),
    radial-gradient(circle at 78% 30%, rgba(106, 167, 255, 0.22), transparent 28%),
    linear-gradient(180deg, transparent 76%, rgba(5, 11, 20, 0.88));
  animation: hero-light-drift 8s ease-in-out infinite alternate;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.96), rgba(5, 11, 20, 0.78) 43%, rgba(5, 11, 20, 0.24)),
    linear-gradient(180deg, rgba(5, 11, 20, 0.06), rgba(5, 11, 20, 0.82)),
    url("./assets/hero-modern-office.jpg") center / cover no-repeat,
    #050b14;
  filter: saturate(1.08) contrast(1.04);
}

.hero-content {
  width: min(780px, 100%);
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 17, 31, 0.64), rgba(8, 17, 31, 0.2));
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

h1 {
  max-width: 880px;
  font-size: clamp(40px, 5.15vw, 68px);
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.48);
}

.lead {
  color: rgba(231, 239, 249, 0.88);
}

.eyebrow {
  color: var(--gold-soft);
}

.button {
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #041022;
  background: linear-gradient(135deg, #ffffff, #b9d3ff 34%, #4f93ff);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 14px 44px rgba(79, 147, 255, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(79, 147, 255, 0.36);
}

.button.secondary {
  color: #eef6ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 196, 255, 0.24);
}

.hero-intelligence,
.monitor-wall,
.service-lab-panel,
.contact-form,
.contact-panel,
.owner-card,
.brief-card,
.process-grid article,
.flow-rail article,
.content-grid article,
.td-grid article {
  background: linear-gradient(145deg, rgba(17, 31, 51, 0.76), rgba(7, 14, 25, 0.76));
  border: 1px solid rgba(159, 196, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-intelligence {
  border-radius: 20px;
}

.hero-intelligence span {
  border-left-color: var(--gold-soft);
  color: #dbeafe;
}

.pulse-dot {
  background: var(--blue-bright);
  box-shadow: 0 0 0 rgba(106, 167, 255, 0.54);
}

.pro-marquee {
  background: rgba(5, 11, 20, 0.82);
  border-block: 1px solid rgba(159, 196, 255, 0.16);
}

.pro-marquee span {
  color: rgba(223, 233, 246, 0.78);
}

.pro-marquee span::before,
.timeline-dot {
  background: var(--blue-bright);
  box-shadow: 0 0 16px rgba(106, 167, 255, 0.7);
}

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

.trust-strip,
.motion-brief,
.pro-dashboard,
.case-lab-section,
.operations-flow,
.section,
.service-lab,
.service-grid,
.split-section,
.process-section,
.scenario-section,
.about-section,
.contact-section {
  color: var(--ink);
}

.trust-strip > div,
.service-card,
.split-section,
.scenario-section,
.about-section,
.case-lab-section,
.motion-brief,
.pro-dashboard {
  background: linear-gradient(145deg, rgba(15, 30, 50, 0.82), rgba(7, 14, 25, 0.86));
  border: 1px solid rgba(159, 196, 255, 0.17);
  box-shadow: var(--shadow);
}

.trust-strip span,
.trust-strip strong,
.section p,
.service-card p,
.service-card li,
.split-copy p,
.process-grid p,
.scenario-copy p,
.about-grid p,
.contact-panel p,
.contact-panel address,
.form-note {
  color: rgba(213, 224, 238, 0.78);
}

.trust-strip strong {
  color: #eff6ff;
}

.metric-row span {
  color: rgba(223, 233, 246, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(159, 196, 255, 0.2);
}

.metric-row strong {
  color: #ffffff;
}

.service-card {
  overflow: hidden;
}

.service-card.featured {
  border-color: rgba(159, 196, 255, 0.34);
  box-shadow: 0 32px 100px rgba(32, 102, 210, 0.18);
}

.card-image,
.split-image,
.case-lab-media {
  filter: saturate(0.96) contrast(1.08);
}

.card-image::after,
.split-image::after,
.case-lab-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 11, 20, 0.42));
  pointer-events: none;
}

.text-link {
  color: #b9d3ff;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ffffff;
}

input,
textarea {
  color: #f6fbff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(159, 196, 255, 0.22);
}

label,
.contact-form label,
.consent span,
.consent a {
  color: rgba(239, 246, 255, 0.86);
}

input:focus,
textarea:focus {
  border-color: rgba(159, 196, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(79, 147, 255, 0.14);
}

.contact-links a,
.contact-links span {
  color: rgba(239, 246, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 196, 255, 0.18);
}

.case-lab-copy li,
.check-list span {
  color: rgba(239, 246, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
}

.contact-section {
  background:
    radial-gradient(circle at 15% 8%, rgba(79, 147, 255, 0.16), transparent 24rem),
    linear-gradient(145deg, #07111e, #0b1728);
}

.site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(79, 147, 255, 0.16), transparent 24rem),
    #050b14;
  border-top: 1px solid rgba(159, 196, 255, 0.18);
}

.consent-banner {
  background: rgba(6, 13, 24, 0.94);
  border: 1px solid rgba(159, 196, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

@keyframes radar-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .site-header {
    margin: 0;
    border-radius: 0;
  }

  .hero {
    margin-top: -82px;
    min-height: auto;
    padding-top: 132px;
  }

  .hero-content {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
    max-width: 250px;
  }

  .brand img {
    max-height: 46px;
  }

  .hero {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(32px, 10.2vw, 40px);
    overflow-wrap: anywhere;
  }
}

/* PARADIGMA neue Startseite v2 */
.next-site {
  min-height: 100vh;
  color: #eef6ff;
  background:
    radial-gradient(circle at 18% -8%, rgba(92, 151, 245, 0.26), transparent 32rem),
    radial-gradient(circle at 86% 8%, rgba(206, 216, 230, 0.12), transparent 28rem),
    #050b14;
}

.next-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1400px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px clamp(14px, 2vw, 22px);
  background: rgba(7, 15, 27, 0.76);
  border: 1px solid rgba(159, 196, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.next-brand {
  display: inline-flex;
  align-items: center;
  width: min(340px, 48vw);
}

.next-brand img {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
}

.next-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.next-nav a {
  padding: 10px 12px;
  color: rgba(239, 246, 255, 0.82);
  border: 1px solid transparent;
  border-radius: 999px;
}

.next-nav a:hover,
.next-nav a:focus-visible {
  color: #ffffff;
  background: rgba(159, 196, 255, 0.1);
  border-color: rgba(159, 196, 255, 0.2);
}

.next-menu {
  display: none;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(159, 196, 255, 0.24);
  border-radius: 10px;
}

.next-menu span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
}

.next-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: min(920px, 100vh);
  margin-top: -96px;
  padding: clamp(150px, 14vw, 210px) clamp(18px, 6vw, 86px) clamp(60px, 8vw, 110px);
  overflow: hidden;
}

.next-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 196, 255, 0.62), transparent);
}

.next-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.98), rgba(5, 11, 20, 0.72) 44%, rgba(5, 11, 20, 0.24)),
    linear-gradient(180deg, rgba(5, 11, 20, 0.02), rgba(5, 11, 20, 0.82)),
    url("./assets/hero-modern-office.jpg") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}

.next-hero-copy,
.next-command {
  position: relative;
  z-index: 2;
}

.next-status,
.next-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  color: #b9d3ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.next-hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
  text-wrap: balance;
}

.next-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(232, 240, 250, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

.next-hero small {
  display: block;
  margin-top: 18px;
  color: rgba(223, 233, 246, 0.72);
}

.next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.next-btn:hover,
.next-btn:focus-visible {
  transform: translateY(-2px);
}

.next-btn-primary {
  color: #061122;
  background: linear-gradient(135deg, #ffffff 0%, #b9d3ff 38%, #579cff 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 50px rgba(79, 147, 255, 0.34);
}

.next-btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(159, 196, 255, 0.24);
}

.next-command {
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(159, 196, 255, 0.24);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(6, 15, 28, 0.68);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.next-command::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(159, 196, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(159, 196, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.next-command::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 90%;
  height: 46%;
  background: linear-gradient(110deg, transparent, rgba(159, 196, 255, 0.22), transparent);
  transform: rotate(16deg);
  animation: lens-sweep 7s ease-in-out infinite;
}

.next-window-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: rgba(239, 246, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 196, 255, 0.16);
  border-radius: 16px;
}

.next-window-bar span {
  width: 10px;
  height: 10px;
  background: #6aa7ff;
  border-radius: 50%;
}

.next-window-bar span:nth-child(2) {
  opacity: 0.68;
}

.next-window-bar span:nth-child(3) {
  opacity: 0.38;
}

.next-window-bar strong {
  margin-left: 10px;
  font-size: 13px;
}

.next-screen-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.next-screen-grid article {
  min-height: 160px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(18, 36, 60, 0.84), rgba(7, 16, 29, 0.86));
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 18px;
}

.next-screen-grid span,
.next-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #07111e;
  background: #9fc4ff;
  border-radius: 50%;
  font-weight: 900;
}

.next-screen-grid strong,
.next-process-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
}

.next-screen-grid p,
.next-process-grid p {
  margin: 10px 0 0;
  color: rgba(223, 233, 246, 0.78);
}

.next-signal {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 0;
  display: flex;
  gap: 10px;
  align-items: end;
  height: 72px;
  opacity: 0.7;
}

.next-signal i {
  flex: 1;
  height: 28%;
  background: linear-gradient(180deg, #b9d3ff, #4f93ff);
  border-radius: 8px 8px 0 0;
  animation: signal-rise 2.8s ease-in-out infinite;
}

.next-signal i:nth-child(2) { animation-delay: 180ms; }
.next-signal i:nth-child(3) { animation-delay: 360ms; }
.next-signal i:nth-child(4) { animation-delay: 540ms; }
.next-signal i:nth-child(5) { animation-delay: 720ms; }

.next-strip {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 14px clamp(18px, 6vw, 86px);
  border-block: 1px solid rgba(159, 196, 255, 0.16);
  background: rgba(3, 9, 18, 0.72);
}

.next-strip span {
  flex: 0 0 auto;
  color: rgba(223, 233, 246, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.next-strip span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: #6aa7ff;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(106, 167, 255, 0.7);
}

.next-section,
.next-services,
.next-feature,
.next-retail,
.next-process,
.next-contact {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 86px);
}

.next-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.next-intro h2,
.next-feature h2,
.next-retail h2,
.next-process h2,
.next-contact h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

.next-intro p,
.next-feature p,
.next-retail p,
.next-contact p,
.next-contact address {
  color: rgba(223, 233, 246, 0.78);
  font-size: 18px;
}

.next-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 0;
}

.next-service {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  color: #eef6ff;
  background: linear-gradient(145deg, rgba(15, 30, 50, 0.82), rgba(7, 14, 25, 0.9));
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.26);
  transition: transform 200ms ease, border-color 200ms ease;
}

.next-service:hover {
  transform: translateY(-6px);
  border-color: rgba(159, 196, 255, 0.38);
}

.next-service img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08);
}

.next-service span,
.next-service h3,
.next-service p {
  margin-inline: 22px;
}

.next-service span {
  margin-top: 22px;
  color: #9fc4ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.next-service h3 {
  margin-top: 8px;
  font-size: 26px;
}

.next-service p {
  margin-top: 10px;
  color: rgba(223, 233, 246, 0.76);
}

.next-service.is-main {
  border-color: rgba(159, 196, 255, 0.34);
}

.next-feature,
.next-retail,
.next-contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid rgba(159, 196, 255, 0.14);
}

.next-feature-media,
.next-retail-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(159, 196, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.34);
}

.next-feature-media img,
.next-retail-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.08);
}

.next-feature-media::after,
.next-retail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 11, 20, 0.54));
}

.next-floating-card {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(7, 16, 29, 0.76);
  border: 1px solid rgba(159, 196, 255, 0.28);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  font-weight: 900;
  animation: panel-float 5s ease-in-out infinite;
}

.card-a { left: 24px; top: 24px; }
.card-b { right: 28px; bottom: 30px; animation-delay: 500ms; }
.card-c { left: 36%; bottom: 82px; animation-delay: 900ms; }

.next-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.next-points span {
  padding: 14px 16px;
  color: rgba(239, 246, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid #9fc4ff;
}

.next-retail {
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
  background: linear-gradient(145deg, rgba(12, 24, 40, 0.62), rgba(5, 11, 20, 0.2));
}

.next-process {
  border-top: 1px solid rgba(159, 196, 255, 0.14);
  background: radial-gradient(circle at 20% 0%, rgba(79, 147, 255, 0.13), transparent 28rem);
}

.next-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.next-process-grid article,
.next-contact-card,
.next-form {
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(145deg, rgba(15, 30, 50, 0.82), rgba(7, 14, 25, 0.9));
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.24);
}

.next-contact {
  background:
    radial-gradient(circle at 18% 20%, rgba(79, 147, 255, 0.16), transparent 28rem),
    linear-gradient(145deg, #07111e, #0b1728);
}

.next-contact-card {
  display: grid;
  gap: 12px;
}

.next-contact-card a,
.next-contact-card span {
  display: block;
  padding: 13px 14px;
  color: rgba(239, 246, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 10px;
}

.next-form {
  display: grid;
  gap: 16px;
}

.next-form input,
.next-form textarea {
  width: 100%;
  margin-top: 6px;
}

.next-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 6vw, 86px);
  color: rgba(239, 246, 255, 0.84);
  background: #040910;
  border-top: 1px solid rgba(159, 196, 255, 0.16);
}

.next-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.next-footer img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
}

.next-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .next-hero,
  .next-feature,
  .next-retail,
  .next-contact,
  .next-intro {
    grid-template-columns: 1fr;
  }

  .next-services,
  .next-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .next-command {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .next-header {
    top: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .next-brand {
    width: min(230px, 70vw);
  }

  .next-brand img {
    max-height: 46px;
  }

  .next-menu {
    display: block;
  }

  .next-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(5, 11, 20, 0.96);
    border: 1px solid rgba(159, 196, 255, 0.22);
    border-radius: 14px;
  }

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

  .next-hero {
    min-height: auto;
    margin-top: -70px;
    padding-top: 118px;
    grid-template-columns: 1fr;
  }

  .next-hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .next-command {
    min-height: 440px;
  }

  .next-screen-grid,
  .next-services,
  .next-process-grid {
    grid-template-columns: 1fr;
  }

  .next-feature-media,
  .next-retail-media {
    min-height: 340px;
  }

  .next-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Ruhige PARADIGMA Startseite */
.calm-site {
  margin: 0;
  color: #edf5ff;
  background:
    radial-gradient(circle at 18% -8%, rgba(79, 147, 255, 0.16), transparent 30rem),
    #050b14;
  font-family: Arial, Helvetica, sans-serif;
}

.calm-site a {
  color: inherit;
}

.calm-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(5, 11, 20, 0.88);
  border-bottom: 1px solid rgba(159, 196, 255, 0.18);
  backdrop-filter: blur(18px);
}

.calm-logo img {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
}

.calm-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.calm-nav a {
  padding: 10px 12px;
  color: rgba(239, 246, 255, 0.82);
  border-radius: 999px;
}

.calm-nav a:hover,
.calm-nav a:focus-visible {
  color: #fff;
  background: rgba(159, 196, 255, 0.1);
}

.calm-phone {
  color: #dbeafe;
  font-weight: 900;
}

.calm-menu {
  display: none;
}

.calm-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100vh - 82px));
  overflow: hidden;
  padding: clamp(90px, 14vw, 180px) clamp(18px, 6vw, 86px) clamp(54px, 8vw, 96px);
  border-bottom: 1px solid rgba(159, 196, 255, 0.14);
}

.calm-video-wrap {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.96), rgba(5, 11, 20, 0.7) 48%, rgba(5, 11, 20, 0.42)),
    url("./assets/pro-documentation-office.jpg") center / cover no-repeat;
}

.calm-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.92) contrast(1.04);
}

.calm-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.96), rgba(5, 11, 20, 0.72) 52%, rgba(5, 11, 20, 0.44)),
    radial-gradient(circle at 78% 24%, rgba(79, 147, 255, 0.14), transparent 24rem);
}

.calm-hero-copy {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.calm-kicker {
  margin: 0 0 12px;
  color: #9fc4ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calm-hero h1,
.calm-intro h2,
.calm-feature h2,
.calm-section-head h2,
.calm-contact h2,
.calm-page-hero h1,
.calm-arrival-cta h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1.02;
  text-wrap: balance;
}

.calm-intro h2,
.calm-feature h2,
.calm-section-head h2,
.calm-contact h2,
.calm-page-hero h1,
.calm-arrival-cta h2 {
  font-size: clamp(30px, 4vw, 56px);
}

.calm-hero h1 {
  font-size: clamp(38px, 5.2vw, 72px);
}

.calm-hero p:not(.calm-kicker),
.calm-intro p:not(.calm-kicker),
.calm-feature p,
.calm-grid-section span,
.calm-process p,
.calm-contact p,
.calm-contact address,
.calm-page-hero p,
.calm-arrival-cta p {
  color: rgba(223, 233, 246, 0.8);
  font-size: 18px;
}

.calm-hero-copy > p:not(.calm-kicker) {
  max-width: 650px;
  margin: 22px 0 0;
}

.calm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.calm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.calm-button:hover,
.calm-button:focus-visible {
  transform: translateY(-2px);
}

.calm-button.primary {
  color: #061122;
  background: linear-gradient(135deg, #ffffff, #b9d3ff 38%, #579cff);
  box-shadow: 0 16px 42px rgba(79, 147, 255, 0.28);
}

.calm-button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(159, 196, 255, 0.26);
}

.calm-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.calm-facts span {
  padding: 9px 12px;
  color: rgba(239, 246, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 999px;
}

.calm-intro,
.calm-feature,
.calm-grid-section,
.calm-process,
.calm-contact,
.calm-arrival-cta,
.calm-page-hero {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 6vw, 86px);
}

.calm-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: 420px;
}

.calm-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  border-top: 1px solid rgba(159, 196, 255, 0.12);
  min-height: 560px;
}

.calm-feature-flip .calm-feature-media {
  order: 2;
}

.calm-feature-media {
  position: relative;
  overflow: hidden;
  min-height: min(54vw, 520px);
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
}

.calm-feature-media img,
.calm-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.calm-feature:hover img,
.calm-mini-card:hover img {
  transform: scale(1.045);
}

.calm-feature-copy {
  max-width: 620px;
}

.calm-text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #b9d3ff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.calm-section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.calm-card-grid,
.calm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.calm-mini-card,
.calm-steps article,
.calm-contact-copy,
.calm-form,
.calm-arrival-cta {
  background: linear-gradient(145deg, rgba(15, 30, 50, 0.82), rgba(7, 14, 25, 0.9));
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.2);
}

.calm-mini-card {
  overflow: hidden;
  min-height: 360px;
  color: #edf5ff;
}

.calm-mini-card img {
  display: block;
  height: 190px;
}

.calm-mini-card strong,
.calm-mini-card span {
  display: block;
  margin-inline: 22px;
}

.calm-mini-card strong {
  margin-top: 22px;
  font-size: 24px;
}

.calm-mini-card span {
  margin-top: 10px;
}

.calm-mini-card.team {
  padding: 28px;
  background:
    radial-gradient(circle at 72% 12%, rgba(238, 150, 0, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(15, 30, 50, 0.82), rgba(7, 14, 25, 0.9));
}

.calm-steps {
  grid-template-columns: repeat(4, 1fr);
}

.calm-steps article {
  padding: 26px;
}

.calm-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #061122;
  background: #9fc4ff;
  border-radius: 50%;
  font-weight: 900;
}

.calm-steps strong {
  display: block;
  margin-top: 20px;
  font-size: 20px;
}

.calm-arrival-cta {
  margin: 0 clamp(18px, 6vw, 86px) clamp(58px, 8vw, 112px);
}

.calm-contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
}

.calm-contact-copy,
.calm-form {
  padding: clamp(24px, 4vw, 42px);
}

.calm-contact-copy {
  display: grid;
  gap: 12px;
}

.calm-contact-copy > a,
.calm-contact-copy > span {
  display: block;
  padding: 13px 14px;
  color: rgba(239, 246, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 10px;
}

/* B2 — Kontaktseite Infokacheln */
.contact-info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.contact-info-box {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 10px;
}

.contact-info-box strong {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6aa7ff;
  margin-bottom: 3px;
}

.contact-info-box a,
.contact-info-box span {
  display: block;
  color: rgba(239, 246, 255, 0.88);
  font-size: 14px;
  text-decoration: none;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.contact-info-box a:hover {
  color: #6aa7ff;
}

.contact-info-box em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: rgba(159, 196, 255, 0.55);
  margin-top: 3px;
}

.calm-form {
  display: grid;
  gap: 16px;
}

.calm-form input,
.calm-form textarea {
  width: 100%;
  margin-top: 6px;
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 196, 255, 0.24);
  border-radius: 8px;
}

.calm-page-hero {
  padding-top: clamp(100px, 14vw, 160px);
  background:
    radial-gradient(circle at 24% 0%, rgba(79, 147, 255, 0.16), transparent 30rem),
    #07111e;
}

.calm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 86px);
  background: #030812;
  border-top: 1px solid rgba(159, 196, 255, 0.16);
}

.calm-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.calm-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(239, 246, 255, 0.8);
  font-weight: 800;
}

.calm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .calm-reveal,
  .calm-feature-media img,
  .calm-mini-card img {
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .calm-header {
    grid-template-columns: minmax(220px, 300px) 1fr;
  }

  .calm-phone {
    display: none;
  }

  .calm-intro,
  .calm-feature,
  .calm-contact {
    grid-template-columns: 1fr;
  }

  .calm-feature-flip .calm-feature-media {
    order: 0;
  }

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

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

  .calm-logo img {
    max-height: 46px;
  }

  .calm-menu {
    display: block;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(159, 196, 255, 0.28);
    border-radius: 8px;
  }

  .calm-menu span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
  }

  .calm-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(5, 11, 20, 0.98);
    border: 1px solid rgba(159, 196, 255, 0.22);
    border-radius: 12px;
  }

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

  .calm-hero {
    min-height: auto;
    padding-top: 92px;
  }

  .calm-actions {
    flex-direction: column;
  }

  .calm-card-grid,
  .calm-steps {
    grid-template-columns: 1fr;
  }

  .calm-feature-media {
    min-height: 300px;
  }

  .calm-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Screenshot-Richtung: kompakte Premium-Startseite */
.shot-site {
  min-height: 100vh;
  margin: 0;
  color: #eef6ff;
  background: #030812;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.shot-site a {
  color: inherit;
}

.shot-header {
  position: fixed;
  top: 18px;
  left: 4vw;
  right: 4vw;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(230px, 310px) 1fr;
  gap: 16px;
  align-items: center;
  padding: 10px 18px;
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.94), rgba(4, 10, 19, 0.9));
  border: 1px solid rgba(159, 196, 255, 0.32);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.shot-logo img {
  display: block;
  height: 56px;
  width: auto;
}

.shot-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.shot-nav a {
  padding: 13px 10px;
  color: rgba(239, 246, 255, 0.86);
  border: 1px solid transparent;
}

.shot-nav a:hover,
.shot-nav a:focus-visible {
  color: #6aa7ff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(159, 196, 255, 0.36);
  box-shadow: inset 0 0 24px rgba(106, 167, 255, 0.08);
}

.shot-phone {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(159, 196, 255, 0.22);
}

.shot-phone strong {
  font-size: 15px;
}

.shot-phone span {
  color: rgba(223, 233, 246, 0.72);
  font-size: 12px;
}

.shot-menu {
  display: none;
}

.shot-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 5.6vw 34px;
  overflow: hidden;
}

.shot-hero-compact {
  min-height: 76vh;
}

.shot-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 14, 0.98) 0%, rgba(2, 7, 14, 0.74) 42%, rgba(2, 7, 14, 0.2) 70%),
    linear-gradient(180deg, rgba(2, 7, 14, 0.02), rgba(2, 7, 14, 0.92)),
    url("./assets/pro-monitor-room.jpg") center / cover no-repeat;
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.04);
  animation: shot-parallax-drift 12s ease-in-out infinite alternate;
}

.shot-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(0.95) contrast(1.04);
}

.shot-hero-bg > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: saturate(0.96) contrast(1.05);
}

.shot-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 14, 0.96) 0%, rgba(2, 7, 14, 0.76) 44%, rgba(2, 7, 14, 0.34) 72%),
    linear-gradient(180deg, rgba(2, 7, 14, 0.14), rgba(2, 7, 14, 0.92));
}

.ai-media-label {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  height: 28px;
  max-width: 28px;
  padding: 3px;
  overflow: hidden;
  color: transparent;
  white-space: nowrap;
  background: rgba(3, 8, 18, 0.68);
  border: 1px solid rgba(223, 233, 246, 0.28);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  opacity: 0.9;
  pointer-events: auto;
  cursor: help;
  transition: max-width 0.35s ease, opacity 0.2s ease, gap 0.35s ease, padding 0.35s ease;
}

.ai-media-label:hover,
.ai-media-label:focus-visible {
  max-width: 160px;
  gap: 7px;
  padding: 3px 12px 3px 3px;
  color: rgba(223, 233, 246, 0.95);
  opacity: 1;
  background: rgba(3, 8, 18, 0.85);
}

.ai-media-label img {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  border-radius: 50%;
  filter: none;
}

.ai-media-label-card {
  top: 8px;
  right: 8px;
  bottom: auto;
  background: rgba(3, 8, 18, 0.46);
}

.ai-media-label-card img {
  width: 20px;
  height: 20px;
}

.ai-label-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(3, 8, 18, 0.42);
  border: 1px solid rgba(223, 233, 246, 0.16);
  border-radius: 10px;
  font-size: 0.92em;
}

.ai-label-legend img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.shot-hero > .ai-media-label {
  top: clamp(112px, 9vw, 136px);
  right: 5.6vw;
  bottom: auto;
}

.shot-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(106, 167, 255, 0.22) 1px, transparent 1px),
    linear-gradient(0deg, rgba(106, 167, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 26% 28%, rgba(34, 88, 166, 0.22), transparent 22rem);
  background-size: 54px 54px, 54px 54px, auto;
  opacity: 0.24;
}

.shot-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 36%, rgba(255, 255, 255, 0.12) 42%, transparent 49%),
    radial-gradient(circle at 58% 43%, rgba(106, 167, 255, 0.16), transparent 18rem);
  mix-blend-mode: screen;
  animation: shot-glass-sweep 7.5s ease-in-out infinite;
}

.shot-content {
  position: relative;
  z-index: 3;
  width: min(980px, 68vw);
}

.shot-kicker {
  margin: 0 0 16px;
  color: #4f93ff;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.shot-content h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(58px, 6.4vw, 104px);
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.58);
}

.shot-content h1 span {
  display: block;
  color: #397dff;
}

.shot-content h1 b {
  display: block;
  color: #ffffff;
  font: inherit;
}

.shot-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(245, 248, 252, 0.92);
  font-size: clamp(20px, 1.38vw, 24px);
  line-height: 1.5;
}

.shot-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 880px;
  margin-top: 34px;
}

.shot-proof article {
  padding-left: 46px;
  position: relative;
}

.shot-proof article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #4f93ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(79, 147, 255, 0.55);
}

.shot-proof b,
.shot-proof span {
  display: block;
}

.shot-proof b {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.shot-proof span {
  margin-top: 6px;
  color: rgba(223, 233, 246, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.shot-actions {
  display: flex;
  gap: 20px;
  margin-top: 34px;
}

.shot-laptop-motion {
  position: absolute;
  left: 2vw;
  bottom: -30px;
  width: min(520px, 54vw);
  height: 100px;
  pointer-events: none;
  opacity: 0.62;
  filter: blur(0.2px);
}

.shot-laptop-motion span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(159, 196, 255, 0.82), transparent);
  transform: perspective(300px) rotateX(62deg);
  animation: shot-reflection 4.2s ease-in-out infinite;
}

.shot-laptop-motion span:nth-child(2) {
  top: 30px;
  width: 78%;
  animation-delay: 500ms;
}

.shot-laptop-motion span:nth-child(3) {
  top: 62px;
  width: 58%;
  animation-delay: 900ms;
}

.shot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.shot-btn:hover,
.shot-btn:focus-visible {
  transform: translateY(-2px);
}

.shot-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0d47c7, #397dff);
  box-shadow: 0 18px 46px rgba(34, 88, 166, 0.38);
}

.shot-btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.48);
}

.shot-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(920px, 63vw);
  margin-top: 44px;
}

.shot-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(10, 24, 42, 0.88), rgba(4, 11, 21, 0.94));
  border: 1px solid rgba(159, 196, 255, 0.3);
  border-radius: 6px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease;
}

.shot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(106, 167, 255, 0.68);
}

.shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 150px;
  max-height: 250px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.shot-card-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 150px;
  max-height: 250px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.shot-feature-card img,
.shot-feature-card .shot-card-video {
  min-height: clamp(200px, 18vw, 280px);
  max-height: 320px;
}

.shot-duo-grid {
  align-items: stretch;
}

.shot-feature-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.shot-feature-card span {
  flex: 1;
}

.shot-feature-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(260px, 27vw, 390px);
}

.shot-card strong,
.shot-card span,
.shot-card em {
  display: block;
  margin-inline: 20px;
}

.shot-card strong {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
}

.shot-card span {
  flex: 1;
  margin-top: 10px;
  color: rgba(223, 233, 246, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.shot-card em {
  margin-top: 18px;
  margin-bottom: 20px;
  color: #6aa7ff;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.shot-form-panel {
  position: absolute;
  z-index: 4;
  right: 5.4vw;
  top: min(52vh, 430px);
  width: min(340px, 25vw);
  padding: 24px;
  background: linear-gradient(180deg, rgba(9, 19, 33, 0.92), rgba(5, 12, 22, 0.94));
  border: 1px solid rgba(159, 196, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.shot-form-panel h2 {
  margin: 0 0 18px;
  font-size: 18px;
  text-transform: uppercase;
}

.shot-form-panel form {
  display: grid;
  gap: 9px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.shot-form-panel input,
.shot-form-panel select,
.shot-form-panel textarea {
  width: 100%;
  min-height: 38px;
  padding: 10px 12px;
  color: #eef6ff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(159, 196, 255, 0.28);
  border-radius: 2px;
}

.shot-form-panel textarea {
  min-height: 74px;
}

.shot-consent {
  display: flex;
  gap: 8px;
  color: rgba(223, 233, 246, 0.8);
  font-size: 12px;
}

.shot-consent input {
  width: 14px;
  min-height: 14px;
  margin-top: 2px;
}

.shot-form-panel .shot-btn {
  width: 100%;
  margin-top: 4px;
}

.shot-form-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  color: rgba(223, 233, 246, 0.72);
  font-size: 10px;
}

.shot-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 26px 5.6vw 34px;
  background: rgba(3, 8, 18, 0.9);
  border-top: 1px solid rgba(159, 196, 255, 0.16);
}

.shot-info-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(58px, 7vw, 90px) 5.6vw;
  background:
    radial-gradient(circle at 24% 0%, rgba(79, 147, 255, 0.14), transparent 26rem),
    #050b14;
  border-top: 1px solid rgba(159, 196, 255, 0.14);
}

.shot-info-section h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
}

.shot-info-section p:not(.shot-kicker) {
  color: rgba(223, 233, 246, 0.78);
  font-size: 19px;
}

.shot-info-section .shot-source {
  margin-top: 18px;
  color: rgba(223, 233, 246, 0.52);
  font-size: 12px;
  line-height: 1.5;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}

.kontakt-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(145deg, rgba(15, 30, 50, 0.84), rgba(7, 14, 25, 0.92));
  border: 1px solid rgba(159, 196, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.kontakt-card strong {
  color: #6aa7ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kontakt-card a,
.kontakt-card span,
.kontakt-address {
  color: rgba(223, 233, 246, 0.78);
  text-decoration: none;
}

.kontakt-card a:hover,
.kontakt-card a:focus-visible {
  color: #ffffff;
}

.kontakt-address {
  margin-top: 22px;
  font-style: normal;
  line-height: 1.7;
}

.shot-bottom div {
  padding-left: 0;
  padding-top: 16px;
  position: relative;
  border-top: 2px solid rgba(79, 147, 255, 0.45);
}

.shot-bottom strong,
.shot-bottom span {
  display: block;
}

.shot-bottom strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.shot-bottom span {
  color: rgba(223, 233, 246, 0.72);
  font-size: 12px;
  margin-top: 4px;
}

.shot-footer {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr 1.15fr;
  gap: 40px;
  padding: 28px 5.6vw;
  color: rgba(223, 233, 246, 0.7);
  background: #030812;
  border-top: 1px solid rgba(159, 196, 255, 0.16);
  font-size: 12px;
}

@keyframes shot-parallax-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.4%, -0.8%, 0);
  }
}

@keyframes shot-glass-sweep {
  0%, 18% {
    opacity: 0;
    transform: translateX(-32%);
  }
  48% {
    opacity: 0.72;
  }
  82%, 100% {
    opacity: 0;
    transform: translateX(34%);
  }
}

@keyframes shot-reflection {
  0%, 100% {
    opacity: 0.22;
    transform: perspective(300px) rotateX(62deg) translateX(-20px);
  }
  50% {
    opacity: 0.88;
    transform: perspective(300px) rotateX(62deg) translateX(34px);
  }
}

.shot-footer img {
  height: 90px;
  width: auto;
  border-radius: 12px;
  filter: drop-shadow(0 0 12px rgba(79, 147, 255, 0.3));
}

.shot-footer strong,
.shot-footer a {
  display: block;
}

.shot-footer strong {
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.transparency-note {
  display: block;
  max-width: 320px;
  color: rgba(223, 233, 246, 0.72);
  line-height: 1.45;
}

.transparency-note a {
  display: inline;
  color: #9fc4ff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 1180px) {
  .shot-header {
    grid-template-columns: minmax(220px, 320px) 1fr;
  }

  .shot-phone {
    display: none;
  }

  .shot-content,
  .shot-services {
    width: min(100%, 760px);
  }

  .shot-form-panel {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 520px);
    margin-top: 28px;
  }

  .shot-services,
  .shot-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .shot-header {
    top: 0;
    left: 0;
    right: 0;
    grid-template-columns: 1fr auto;
    border-radius: 0;
  }

  .shot-logo img {
    max-height: 54px;
  }

  .shot-menu {
    display: block;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(159, 196, 255, 0.28);
    border-radius: 6px;
  }

  .shot-menu span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
  }

  .shot-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    padding: 12px;
    background: rgba(3, 8, 18, 0.98);
    border: 1px solid rgba(159, 196, 255, 0.24);
    border-radius: 8px;
  }

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

  .shot-hero {
    padding: 110px 18px 28px;
  }

  .shot-content {
    width: 100%;
  }

  .shot-content h1 {
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .shot-content h1 b {
    font-size: clamp(26px, 7.7vw, 34px);
  }

  .shot-proof,
  .shot-services,
  .shot-bottom,
  .shot-info-section,
  .kontakt-grid,
  .shot-footer {
    grid-template-columns: 1fr;
  }

  .shot-actions {
    flex-direction: column;
  }

  .shot-form-panel {
    width: 100%;
  }
}

.site-header .brand {
  min-width: min(280px, 42vw);
}

.site-header .main-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  font-size: 12px;
}

.site-header .main-nav a {
  padding: 8px 9px;
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header .brand {
    min-width: 0;
  }

.site-header .main-nav {
    justify-content: flex-start;
  }
}

/* Startseite 2026: ruhiger, strukturierter Aufbau ohne Sicherheitsdienst-Fokus */
.calm-intro-copy {
  display: grid;
  gap: 24px;
}

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

.calm-proof-grid span {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: rgba(223, 233, 246, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(159, 196, 255, 0.16);
  border-radius: 16px;
}

.calm-proof-grid strong {
  color: #f7fbff;
  font-size: 15px;
  text-transform: uppercase;
}

.calm-duo-section,
.calm-card-band {
  padding: clamp(52px, 7vw, 96px) clamp(18px, 6vw, 86px);
  border-top: 1px solid rgba(159, 196, 255, 0.12);
}

.calm-section-head p:not(.calm-kicker) {
  max-width: 900px;
  color: rgba(223, 233, 246, 0.8);
  font-size: 18px;
}

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

.calm-duo-card {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(15, 30, 50, 0.84), rgba(7, 14, 25, 0.92));
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.24);
}

.calm-duo-card img {
  display: block;
  width: 100%;
  height: clamp(240px, 27vw, 390px);
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
  transition: transform 700ms ease;
}

.calm-duo-card:hover img {
  transform: scale(1.035);
}

.calm-duo-card div {
  padding: clamp(22px, 3vw, 34px);
}

.calm-duo-card span {
  color: #9fc4ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calm-duo-card h3 {
  margin: 12px 0 14px;
  color: #f7fbff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.calm-duo-card p,
.calm-duo-card li {
  color: rgba(223, 233, 246, 0.78);
  font-size: 16px;
}

.calm-duo-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.calm-duo-card li {
  position: relative;
  padding-left: 18px;
}

.calm-duo-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: #579cff;
  border-radius: 50%;
}

.calm-point-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.calm-point-list span {
  padding: 10px 13px;
  color: rgba(239, 246, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 999px;
  font-weight: 800;
}

.calm-card-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
}

.calm-side-card {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  color: #edf5ff;
  background: linear-gradient(145deg, rgba(15, 30, 50, 0.84), rgba(7, 14, 25, 0.92));
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease;
}

.calm-side-card:hover,
.calm-side-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(159, 196, 255, 0.36);
}

.calm-side-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.05);
}

.calm-side-card > div {
  padding: clamp(24px, 4vw, 42px);
}

.calm-side-card h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05;
}

.calm-side-card p:not(.calm-kicker) {
  color: rgba(223, 233, 246, 0.78);
  font-size: 17px;
}

.calm-side-card span {
  display: inline-flex;
  margin-top: 16px;
  color: #b9d3ff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.calm-td-card {
  background:
    radial-gradient(circle at 78% 12%, rgba(238, 150, 0, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(20, 20, 22, 0.94), rgba(8, 8, 10, 0.98));
  border-color: rgba(238, 150, 0, 0.22);
}

.calm-td-card .calm-kicker,
.calm-td-card span {
  color: #ee9600;
}

@media (max-width: 1080px) {
  .calm-duo-grid,
  .calm-card-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .calm-proof-grid {
    grid-template-columns: 1fr;
  }

  .calm-duo-card img,
  .calm-side-card img {
    height: 220px;
  }
}

/* ── Statistik-Sektion ── */
.shot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(159, 196, 255, 0.12);
  border-top: 1px solid rgba(159, 196, 255, 0.14);
  border-bottom: 1px solid rgba(159, 196, 255, 0.14);
}

.shot-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 52px 24px;
  background: #030812;
  text-align: center;
}

.shot-stat-number {
  display: block;
  color: #4f93ff;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.shot-stat-label {
  display: block;
  color: rgba(223, 233, 246, 0.72);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Kundenstimmen ── */
.shot-testimonials {
  padding: 90px clamp(20px, 6vw, 86px);
}

.shot-section-head {
  margin-bottom: 48px;
}

.shot-section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  color: #ffffff;
}

.shot-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.shot-testimonial-grid .shot-card {
  min-height: clamp(360px, 34vw, 460px);
}

.shot-quote {
  margin: 0;
  padding: 32px;
  background: rgba(10, 24, 42, 0.72);
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 8px;
  border-left: 3px solid #4f93ff;
}

.shot-quote p {
  margin: 0 0 20px;
  color: rgba(223, 233, 246, 0.9);
  font-size: 15px;
  line-height: 1.65;
}

.shot-quote footer {
  color: rgba(159, 196, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Scroll-Reveal für shot-* Elemente ── */
.shot-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* ── Responsive Anpassungen ── */
@media (max-width: 900px) {
  .shot-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .shot-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .shot-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .shot-stat {
    padding: 36px 16px;
  }
}

/* Finale Unterseiten-Angleichung an die Startseite */
.site-header,
.calm-header {
  position: sticky;
  top: 14px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(230px, 310px) 1fr;
  gap: 16px;
  align-items: center;
  width: min(1324px, calc(100% - 64px));
  min-height: 88px;
  margin: 14px auto 0;
  padding: 10px 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.94), rgba(4, 10, 19, 0.9));
  border: 1px solid rgba(159, 196, 255, 0.32);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.brand,
.calm-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 310px;
}

.brand img,
.calm-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 56px;
  max-height: 56px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.main-nav,
.calm-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav a,
.calm-nav a {
  padding: 13px 10px;
  color: rgba(239, 246, 255, 0.86);
  border: 1px solid transparent;
  border-radius: 4px;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.calm-nav a:hover,
.calm-nav a:focus-visible {
  color: #6aa7ff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(159, 196, 255, 0.36);
  box-shadow: inset 0 0 24px rgba(106, 167, 255, 0.08);
}

.calm-phone {
  display: none;
}

.subpage-main,
.jobs-main,
.td-main,
.legal-main,
.calm-site main {
  color: #eff6ff;
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 147, 255, 0.18), transparent 34rem),
    linear-gradient(180deg, #050b14 0%, #07101d 44%, #0a1220 100%);
}

.subpage-hero,
.jobs-hero,
.calm-page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(620px, calc(100vh - 110px));
  margin-top: -104px;
  padding: clamp(158px, 16vw, 210px) clamp(20px, 6vw, 86px) clamp(56px, 8vw, 96px);
  overflow: hidden;
  color: #fff;
  border-bottom: 1px solid rgba(159, 196, 255, 0.14);
}

.subpage-hero::before,
.jobs-hero::before,
.calm-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 14, 0.96) 0%, rgba(2, 7, 14, 0.76) 48%, rgba(2, 7, 14, 0.36) 76%),
    linear-gradient(180deg, rgba(2, 7, 14, 0.05), rgba(2, 7, 14, 0.9));
  z-index: 1;
}

.subpage-hero::after,
.jobs-hero::after,
.calm-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(106, 167, 255, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(106, 167, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 62% 32%, rgba(106, 167, 255, 0.18), transparent 22rem);
  background-size: 54px 54px, 54px 54px, auto;
  opacity: 0.25;
}

.subpage-hero > div,
.jobs-hero > div,
.calm-page-hero > * {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
}

.subpage-hero h1,
.jobs-hero h1,
.calm-page-hero h1,
.td-hero h1,
.legal-card h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.58);
}

.subpage-hero p:not(.eyebrow),
.jobs-hero p:not(.eyebrow),
.calm-page-hero p,
.td-copy p,
.legal-card p,
.legal-card li {
  color: rgba(223, 233, 246, 0.82);
}

.subpage-hero p:not(.eyebrow),
.jobs-hero p:not(.eyebrow),
.calm-page-hero p {
  max-width: 660px;
  font-size: 19px;
}

.image-private {
  background:
    url("./assets/start-privatdetektei-normal-office.png") center / cover no-repeat,
    #050b14;
}

.image-business {
  background:
    url("./assets/start-wirtschaftsdetektei-baustelle-observation.png") center / cover no-repeat,
    #050b14;
}

.image-retail {
  background:
    url("./assets/kaufhausdetektiv-diebstahl-supermarkt.png") center / cover no-repeat,
    #050b14;
}

.image-shopping {
  background:
    url("./assets/start-mystery-shopping-fragebogen-kasse.png") center / cover no-repeat,
    #050b14;
}

.jobs-hero {
  background:
    url("./assets/start-bewerbung-observation-briefing.png") center / cover no-repeat,
    #050b14;
}

.calm-page-hero {
  background:
    url("./assets/pro-documentation-office.jpg") center / cover no-repeat,
    #050b14;
}

.content-band,
.jobs-section,
.jobs-profile,
.application-flow,
.jobs-faq,
.contact-section,
.calm-contact {
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 22% 0%, rgba(79, 147, 255, 0.11), transparent 26rem),
    #050b14;
  border-top: 1px solid rgba(159, 196, 255, 0.14);
}

/* B3 — Team Durchblick: eigene Farbe statt PARADIGMA-Blau */
.td-section,
.td-waitlist-band,
.td-note {
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 22% 0%, rgba(238, 150, 0, 0.07), transparent 26rem),
    #0B0B0C;
  border-top: 1px solid rgba(238, 150, 0, 0.14);
}

.td-product-strip,
.td-showcase {
  border-top: 1px solid rgba(238, 150, 0, 0.14);
}

.td-site .site-header {
  background: rgba(11, 11, 12, 0.97);
  border-bottom: 1px solid rgba(238, 150, 0, 0.2);
}

.td-site .site-header.is-scrolled {
  background: rgba(11, 11, 12, 0.99);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.td-site .brand img {
  background: rgba(255, 255, 255, 0.09);
}

.td-site .main-nav a {
  color: rgba(214, 203, 187, 0.9);
}

.td-site .main-nav a:hover,
.td-site .main-nav a:focus-visible {
  color: #ee9600;
  background: rgba(238, 150, 0, 0.09);
}

.td-site .site-footer {
  background:
    radial-gradient(circle at 22% 0%, rgba(238, 150, 0, 0.07), transparent 26rem),
    #0B0B0C;
  border-top: 1px solid rgba(238, 150, 0, 0.14);
}

.content-grid,
.jobs-grid,
.application-steps,
.td-grid,
.td-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-grid article,
.job-summary div,
.jobs-grid article,
.jobs-profile,
.application-steps article,
.faq-list details,
.contact-panel,
.contact-form,
.calm-contact-copy,
.calm-form,
.td-grid article,
.td-product-strip div,
.td-showcase-grid article,
.td-note,
.legal-card {
  background: linear-gradient(145deg, rgba(15, 30, 50, 0.84), rgba(7, 14, 25, 0.92));
  border: 1px solid rgba(159, 196, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.content-grid article,
.jobs-grid article,
.application-steps article,
.td-grid article,
.td-showcase-grid article {
  padding: 26px;
}

.content-grid h2,
.jobs-section h2,
.jobs-profile h2,
.application-flow h2,
.jobs-faq h2,
.contact-panel h2,
.calm-contact h2,
.td-section h2,
.td-showcase h2,
.td-note h2,
.legal-card h2 {
  color: #ffffff;
}

.legal-card a {
  color: #9fc4ff;
}

.content-grid p,
.jobs-grid p,
.jobs-profile p,
.jobs-profile li,
.application-steps p,
.faq-list p,
.contact-panel p,
.calm-contact p,
.calm-contact address,
.td-grid p,
.td-showcase p,
.td-note p {
  color: rgba(223, 233, 246, 0.78);
}

.job-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 86px);
  background: rgba(159, 196, 255, 0.12);
}

.job-summary div {
  display: grid;
  gap: 6px;
  padding: 24px;
  border-radius: 0;
}

.job-summary strong,
.jobs-grid span,
.application-steps span,
.td-grid span,
.td-product-strip span {
  color: #6aa7ff;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.calm-form input,
.calm-form textarea {
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 196, 255, 0.24);
  border-radius: 6px;
}

.legal-main {
  padding-top: clamp(72px, 8vw, 110px);
}

.site-footer,
.calm-footer {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 5.6vw;
  color: rgba(223, 233, 246, 0.7);
  background:
    radial-gradient(circle at 20% 0%, rgba(79, 147, 255, 0.16), transparent 24rem),
    #030812;
  border-top: 1px solid rgba(159, 196, 255, 0.16);
}

.footer-brand img,
.calm-footer img {
  width: auto;
  height: 62px;
  border-radius: 0;
  filter: drop-shadow(0 0 12px rgba(79, 147, 255, 0.3));
}

.site-footer nav,
.calm-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer a,
.calm-footer a {
  color: rgba(223, 233, 246, 0.76);
}

.site-footer a:hover,
.calm-footer a:hover {
  color: #6aa7ff;
}

/* PARADIGMA-Buttons: gleiche Farbe wie auf der Startseite. */
.button.primary,
.calm-button.primary,
.contact-form .button.primary,
.calm-form .calm-button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0d47c7, #397dff);
  border-color: rgba(159, 196, 255, 0.42);
  box-shadow: 0 18px 46px rgba(34, 88, 166, 0.38);
}

.button.primary:hover,
.button.primary:focus-visible,
.calm-button.primary:hover,
.calm-button.primary:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #1555df, #4a8cff);
  box-shadow: 0 22px 56px rgba(34, 88, 166, 0.48);
}

.button.secondary,
.calm-button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.48);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.calm-button.secondary:hover,
.calm-button.secondary:focus-visible {
  color: #ffffff;
  border-color: rgba(106, 167, 255, 0.78);
  box-shadow: 0 16px 42px rgba(34, 88, 166, 0.22);
}

/* Team Durchblick behält bewusst seinen eigenen Orange/Dark-Brand. */
.td-main .button.primary {
  color: #0b0b0c;
  background: linear-gradient(135deg, #ffb23a 0%, #ee9600 62%, #c97800 100%);
  border-color: rgba(255, 178, 58, 0.3);
  box-shadow: 0 18px 48px rgba(238, 150, 0, 0.25);
}

.td-main .button.primary:hover,
.td-main .button.primary:focus-visible {
  color: #0b0b0c;
  background: linear-gradient(135deg, #ffc35e 0%, #ee9600 62%, #d98700 100%);
  box-shadow: 0 22px 58px rgba(238, 150, 0, 0.34);
}

.td-main .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.26);
}

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

  .main-nav,
  .calm-nav {
    justify-content: flex-start;
  }

  .content-grid,
  .jobs-grid,
  .application-steps,
  .td-grid,
  .td-showcase-grid,
  .job-summary,
  .calm-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header,
  .calm-header {
    top: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .brand img,
  .calm-logo img {
    height: 54px;
  }

  .main-nav,
  .calm-nav {
    font-size: 11px;
  }

  .subpage-hero,
  .jobs-hero,
  .calm-page-hero {
    margin-top: -124px;
    padding-top: 190px;
  }

  .content-grid,
  .jobs-grid,
  .application-steps,
  .td-grid,
  .td-showcase-grid,
  .job-summary,
  .calm-contact,
  .site-footer,
  .calm-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav,
  .calm-footer nav {
    justify-content: flex-start;
  }
}

/* B4 — Sticky Mobile CTA */
.mobile-cta {
  display: none;
}

@media (max-width: 820px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 22px;
    right: 18px;
    z-index: 200;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f93ff, #2a6fd4);
    color: #fff;
    align-items: center;
    justify-content: center;
    box-shadow:
      0 6px 24px rgba(79, 147, 255, 0.48),
      0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 180ms ease, box-shadow 180ms ease;
    text-decoration: none;
  }

  .mobile-cta svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }

  .mobile-cta:hover,
  .mobile-cta:focus-visible {
    transform: scale(1.1);
    box-shadow:
      0 10px 36px rgba(79, 147, 255, 0.6),
      0 4px 12px rgba(0, 0, 0, 0.36);
  }

  .td-site .mobile-cta,
  .calm-site .mobile-cta {
    display: none;
  }
}

/* B5 — Header-Sichtbarkeit verbessern */
.site-header {
  border-bottom-width: 2px;
  border-bottom-color: rgba(143, 183, 242, 0.36);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(143, 183, 242, 0.48);
  box-shadow:
    0 10px 30px rgba(13, 27, 45, 0.22),
    0 1px 0 rgba(143, 183, 242, 0.2);
}

.shot-header {
  border-width: 1px;
  border-color: rgba(159, 196, 255, 0.42);
}

.pv-split {
  gap: 20px;
}

@media (max-width: 720px) {
  .pv-split {
    grid-template-columns: 1fr;
  }

  .contact-info-boxes {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   B3 — Team Durchblick: kein PARADIGMA-Blau in Karten & Labels
   ═══════════════════════════════════════════════════════════════ */

/* Karten-Hintergrund: dunkel ohne Blau-Tint */
.td-grid article,
.td-product-strip div,
.td-showcase-grid article {
  background: linear-gradient(145deg, rgba(20, 20, 22, 0.92), rgba(11, 11, 12, 0.98));
  border: 1px solid rgba(238, 150, 0, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

/* Label-Badges: Orange statt PARADIGMA-Blau */
.td-grid span,
.td-product-strip span,
.td-showcase-grid span {
  color: #ee9600;
}

/* Links in TD-Karten: Orange */
.td-grid a {
  color: #ee9600;
  text-decoration: none;
  font-weight: 700;
}

.td-grid a:hover,
.td-grid a:focus-visible {
  color: #ffb23a;
}

/* Pill-Buttons für TD */
.td-main .button {
  border-radius: 999px;
}

/* Section-Heading in td-section */
.td-section .section-heading h2 {
  color: #ffffff;
}

/* B4 — TD Mobile CTA (Warteliste, Orange) */
.td-mobile-cta {
  display: none;
}

@media (max-width: 820px) {
  .td-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 22px;
    right: 18px;
    z-index: 200;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb23a 0%, #ee9600 62%, #c97800 100%);
    color: #0b0b0c;
    align-items: center;
    justify-content: center;
    box-shadow:
      0 6px 24px rgba(238, 150, 0, 0.48),
      0 2px 8px rgba(0, 0, 0, 0.36);
    transition: transform 180ms ease, box-shadow 180ms ease;
    text-decoration: none;
  }

  .td-mobile-cta svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }

  .td-mobile-cta:hover,
  .td-mobile-cta:focus-visible {
    transform: scale(1.1);
    box-shadow:
      0 10px 36px rgba(238, 150, 0, 0.62),
      0 4px 12px rgba(0, 0, 0, 0.4);
  }
}

/* Reset gegen Karten-Bildregeln (.shot-card img etc.): Badge-Icon fix dimensionieren */
.ai-media-label img,
.ai-media-label-card img {
  width: 22px;
  height: 22px;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  filter: none;
}

.ai-media-label-card img {
  width: 20px;
  height: 20px;
}
