/* ─────────────────────────────────────────────────────────────
   Jurenda Services — styles.css · V7
   DNA: Visitenkarte (schwarz · cyan #1FB5E8 · Inter + Space Grotesk)
   Atmosphärisch, ruhig, atmend. Keine harten Animationen.
   ───────────────────────────────────────────────────────────── */

:root {
  --black:        #000000;
  --black-soft:   #0A0A0A;
  --bg-elev:      #111111;
  --bg-elev-2:    #161616;

  --text:         #FFFFFF;
  --text-soft:    #D8D8D8;
  --text-mute:    #888888;
  --text-dim:     #555555;

  --accent:       #1FB5E8;
  --accent-bright:#4ECEF5;
  --accent-glow:  rgba(31, 181, 232, 0.3);
  --accent-soft:  rgba(31, 181, 232, 0.10);

  --line:         rgba(255, 255, 255, 0.08);
  --line-bright:  rgba(255, 255, 255, 0.18);

  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --display: 'Space Grotesk', 'Inter', sans-serif;

  --gutter:    clamp(1.25rem, 3vw, 2rem);
  --container: 1200px;

  --nav-h:     72px;
  --rad:       8px;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Subtle diagonal pattern across the whole site —
   ties everything to the business card */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(
    135deg,
    transparent 49.5%,
    rgba(31, 181, 232, 0.025) 49.5%,
    rgba(31, 181, 232, 0.025) 50.5%,
    transparent 50.5%
  );
  background-size: 32px 32px;
  opacity: 0.5;
}

img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--black); }

/* ─── A11Y ─── */
.skip-link {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -120%);
  background: var(--accent);
  color: var(--black);
  padding: .6rem 1rem;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  border-radius: 0 0 6px 6px;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background .3s var(--ease), height .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  height: 60px;
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark__circle {
  width: 38px;
  height: 38px;
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  background: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(31, 181, 232, 0.25);
}
.brand-mark__dj11 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.brand-mark__line {
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
  opacity: .85;
}
.brand-mark__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--text);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-size: 14px;
  font-weight: 400;
}
.nav__links a {
  color: var(--text-soft);
  transition: color .2s var(--ease);
}
.nav__links a:hover,
.nav__links a[data-current] { color: var(--accent); }
/* Nav-CTA bewusst leiser als Hero-CTA — nur Border, kein Solid-Fill */
.nav__links .nav__cta {
  color: var(--text-soft) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 14px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  transition: all .2s var(--ease);
}
.nav__links .nav__cta:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
  border-bottom-color: var(--accent) !important;
}

/* Mobile-Nav Toggle (Burger) — nur unter 760px sichtbar */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  flex-shrink: 0;
}
.nav__toggle:hover {
  border-color: var(--accent);
  background: rgba(31, 181, 232, 0.06);
}
.nav__toggle-bars {
  display: inline-block;
  width: 18px;
  height: 12px;
  position: relative;
}
.nav__toggle-bars::before,
.nav__toggle-bars::after,
.nav__toggle-bars span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease);
}
.nav__toggle-bars::before { top: 0; }
.nav__toggle-bars span    { top: 50%; transform: translateY(-50%); }
.nav__toggle-bars::after  { top: 100%; transform: translateY(-100%); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Mobile-Sheet — Overlay-Menü unter 760px */
.nav__sheet {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: saturate(140%) blur(24px);
  -webkit-backdrop-filter: saturate(140%) blur(24px);
  border-bottom: 1px solid var(--line);
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 2.5rem;
  z-index: 90;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.nav__sheet.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__sheet-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__sheet-list li {
  border-top: 1px solid var(--line);
}
.nav__sheet-list li:last-child {
  border-bottom: 1px solid var(--line);
  margin-top: 1rem;
}
.nav__sheet-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.nav__sheet-list a::after {
  content: '→';
  color: var(--accent);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav__sheet-list a:hover,
.nav__sheet-list a:focus-visible { color: var(--accent); }
.nav__sheet-list a:hover::after,
.nav__sheet-list a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}
.nav__sheet-list li:last-child a {
  color: var(--accent);
}
.nav__sheet-list li:last-child a::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__sheet { display: block; }
  .brand-mark__line { display: none; }
}
@media (max-width: 480px) {
  .brand-mark__name { display: none; }
}

body.is-nav-open { overflow: hidden; }

/* ─── HERO ─── */
.hero {
  min-height: clamp(560px, 84svh, 880px);
  display: flex;
  align-items: center;
  position: relative;
  padding: clamp(5rem, 11vh, 7rem) 0 clamp(3.5rem, 7vh, 5rem);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 32%, rgba(31, 181, 232, 0.16) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31, 181, 232, 0.10) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 5;
  max-width: 920px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s .1s var(--ease) forwards;
}
.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero__headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6.6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.032em;
  color: var(--text);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s .25s var(--ease) forwards;
}
.hero__headline span { color: var(--accent); }

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 58ch;
  margin-bottom: 2.5rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s .4s var(--ease) forwards;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s .55s var(--ease) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
}
.btn--primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-bright);
}
.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── SECTIONS ─── */
.section {
  padding: 8rem 0;
  position: relative;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .section { padding: 5rem 0; } }

/* Differenzierter Rhythmus pro Sektion — Hero gross, Angebot kompakt,
   Referenzen luftig, Haltung dicht, Kontakt heroisch */
.section--angebot     { padding: 6.5rem 0 5rem; }
.section--referenzen  { padding: 9rem 0 8rem; }
.section--haltung     { padding: 7rem 0; }
@media (max-width: 720px) {
  .section--angebot    { padding: 4.5rem 0 3.5rem; }
  .section--referenzen { padding: 5.5rem 0 5rem; }
  .section--haltung    { padding: 4.5rem 0; }
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.section__eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--accent);
}

/* Section-Title bewusst kleiner als Hero (weniger "alles wichtig") */
.section__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
  max-width: 24ch;
}
.section__title span { color: var(--accent); }

.section__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 58ch;
  margin-bottom: 3.5rem;
}

/* ─── ANGEBOT ─── */
.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
}
@media (max-width: 900px) { .angebot-grid { grid-template-columns: minmax(0, 1fr); } }

/* Karten edler: kein Lift mehr, kein wachsender Top-Strich.
   Nur dezenter Surface-Shift + gezielter Cyan-Akzent auf der Nummerierung. */
.angebot-card {
  background: var(--black-soft);
  border: 0;
  border-radius: 0;
  padding: 2.5rem 2.25rem 2.4rem;
  transition: background .35s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.angebot-card:hover {
  background: var(--bg-elev);
}
.angebot-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .4s var(--ease), left .4s var(--ease);
  opacity: .8;
}
.angebot-card:hover::after {
  width: 100%;
  left: 0;
}

.angebot-card__num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .75rem;
  transition: color .35s var(--ease);
}
.angebot-card__num::before {
  content: '';
  width: 14px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.angebot-card:hover .angebot-card__num { color: var(--accent); }

.angebot-card__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  margin: 0 0 .25rem;
  line-height: 1.25;
  color: var(--text);
}
.angebot-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

/* ─── ÜBRIGENS-Block — leiser Türöffner unter den drei Angebot-Karten ─── */
.angebot-nebenher {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.angebot-nebenher__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 0.9rem 0;
}

.angebot-nebenher__eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.angebot-nebenher__text {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

@media (max-width: 640px) {
  .angebot-nebenher__eyebrow::before { width: 16px; }
}

/* ─── REFERENZEN ─── */
.ref-list {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.ref-item {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  padding: 2rem 1.25rem;
  margin: 0 -1.25rem;
  border-top: 1px solid var(--line);
  align-items: center;
  transition: background .35s var(--ease);
  position: relative;
}
.ref-list li:last-child .ref-item { border-bottom: 1px solid var(--line); }
/* Ruhiger Hover: nur Surface-Shift, kein Padding-Sprung */
.ref-item:hover {
  background: var(--black-soft);
}
.ref-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width .35s var(--ease);
}
.ref-item:hover::before { width: 2px; }

/* Produktname klar < section__title — keine zweite Hauptstimme */
.ref-item__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0;
  transition: color .35s var(--ease), letter-spacing .35s var(--ease);
}
.ref-item__name span { color: var(--accent); }
.ref-item:hover .ref-item__name { color: var(--accent); letter-spacing: -0.022em; }

/* Externer-Link-Hinweis im Produktnamen */
.ref-item__ext {
  display: inline-block;
  margin-left: .35em;
  color: var(--accent);
  font-size: .55em;
  font-weight: 500;
  vertical-align: .55em;
  letter-spacing: 0;
  transition: transform var(--t-fast) var(--ease);
}
.ref-item:hover .ref-item__ext {
  transform: translate(3px, -3px);
}

.ref-item__desc {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

.ref-item__status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.ref-item__status .pip {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ref-item__status--live .pip {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.ref-item__status--beta .pip { background: #E5B82B; }
.ref-item__status--dev .pip {
  background: var(--text-dim);
  border: 1px solid var(--text-mute);
}

@media (max-width: 720px) {
  .ref-item {
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: 1.5rem 0;
  }
  .ref-item__status { justify-content: flex-start; }
}

/* ─── HALTUNG ─── */
.section--haltung { position: relative; }
.section--haltung::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(31, 181, 232, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.haltung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 5;
}
@media (max-width: 900px) {
  .haltung-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.haltung-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
  max-width: 50ch;
}
.haltung-text p:last-child { margin-bottom: 0; }
.haltung-text strong {
  color: var(--text);
  font-weight: 500;
}

.haltung-points {
  display: flex;
  flex-direction: column;
}

.haltung-point {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.haltung-points li:last-child { border-bottom: 1px solid var(--line); }

.haltung-point h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin-bottom: .5rem;
  color: var(--text);
}
.haltung-point h3 span { color: var(--accent); }

.haltung-point p {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--text-soft);
}

/* ─── KONTAKT ─── */
.section--kontakt {
  text-align: center;
  padding: 9rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.section--kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(31, 181, 232, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(31, 181, 232, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.kontakt-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.4;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.kontakt__inner {
  position: relative;
  z-index: 10;
}

.kontakt__mark {
  width: 64px;
  height: 64px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  background: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 32px rgba(31, 181, 232, 0.4);
}
.kontakt__mark .brand-mark__dj11 { font-size: 18px; }

/* Kontakt-Title: kleiner als Hero-H1, klare zweite Stimme */
.kontakt__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.kontakt__title span { color: var(--accent); }

.kontakt__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

/* Kontakt-Mail: prominent, aber kein zweiter Hero-Titel —
   feiner als die Section-Titles, Mono-Anmutung über Letter-Spacing */
.kontakt__mail {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--accent);
  letter-spacing: -0.005em;
  border-bottom: 1px solid rgba(31, 181, 232, 0.32);
  padding-bottom: 3px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
  word-break: break-word;
}
.kontakt__mail:hover {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
}

/* ─── FOOTER ─── */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-mute);
  position: relative;
  z-index: 2;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__inner a {
  color: var(--text-mute);
  transition: color .2s var(--ease);
}
.footer__inner a:hover { color: var(--accent); }

/* Aktuell aufgerufene Seite (a11y + visuelle Markierung) */
.footer__links a[aria-current="page"] {
  color: var(--accent);
  font-weight: 500;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}

/* ─── BACK-LINK (Detail-Seiten) ─── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  margin-top: calc(var(--nav-h) + 24px);
  margin-bottom: 8px;
  transition: color .2s var(--ease);
  position: relative;
  z-index: 5;
}
.back-link:hover { color: var(--accent); }
.back-link:hover span[aria-hidden] { transform: translateX(-3px); }
.back-link span[aria-hidden] {
  display: inline-block;
  transition: transform .2s var(--ease);
}

/* ─── PRODUCT HERO (Detail-Seiten) ─── */
.product-hero {
  padding: 3rem 0 5rem;
  position: relative;
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(31, 181, 232, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(31, 181, 232, 0.08) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}
.product-hero__inner {
  position: relative;
  z-index: 5;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-hero__logo {
  max-height: 64px;
  width: auto;
  height: auto;
  align-self: flex-start;
}

.product-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  align-self: flex-start;
}
.product-hero__status .pip {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.product-hero__status--live .pip {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.product-hero__status--dev .pip {
  background: var(--text-dim);
  border: 1px solid var(--text-mute);
}

.product-hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}
.product-hero__title span { color: var(--accent); }

.product-hero__lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 56ch;
}

.product-hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

/* ─── PRODUCT DETAIL GRID ─── */
.product-detail__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .product-detail__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.product-detail__text .section__eyebrow { margin-bottom: 1rem; }
.product-detail__text .section__title { margin-bottom: 2rem; }
.product-detail__text p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.3rem;
  max-width: 56ch;
}
.product-detail__text p:last-child { margin-bottom: 0; }
.product-detail__text strong { color: var(--text); font-weight: 500; }

.product-detail__facts {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.product-detail__facts-title {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.product-detail__facts dl {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.product-detail__facts dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.product-detail__facts dd {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.product-detail__facts dd:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.product-detail__facts dd a {
  color: var(--accent);
  border-bottom: 1px solid rgba(31, 181, 232, 0.4);
  transition: border-color .2s var(--ease);
}
.product-detail__facts dd a:hover { border-color: var(--accent); }

@media (max-width: 900px) {
  .product-detail__facts { position: static; }
}

/* ─── PRODUCT STATUS BLOCK ─── */
.product-status { border-top: 1px solid var(--line); }
.product-status__inner {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.product-status__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.product-status__title span { color: var(--accent); }
.product-status__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 2rem;
}
.product-status__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── KOMPAKTE KONTAKT-VARIANTE ─── */
.section--kontakt-compact {
  padding: 5rem 0 4rem;
}
.section--kontakt-compact .kontakt__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}
.section--kontakt-compact .kontakt__lede {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.section--kontakt-compact .kontakt__mark {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
}
.section--kontakt-compact .kontakt__mark .brand-mark__dj11 { font-size: 14px; }
.section--kontakt-compact .kontakt__mail {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

/* ─── KONTAKT-MODAL ─── */
.contact-modal {
  /* Reset native dialog styles */
  border: 1px solid var(--line-bright);
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--black) 100%);
  color: var(--text);
  padding: 0;
  max-width: 560px;
  width: calc(100% - 2rem);
  max-height: calc(100vh - 2rem);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(31, 181, 232, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(31, 181, 232, 0.12);
  overflow: hidden;
  /* Position über CSS, nicht JS */
  margin: auto;
}
.contact-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Entrance-Animation (nur wenn open) */
.contact-modal[open] {
  animation: cm-pop 320ms var(--ease) both;
}
.contact-modal[open]::backdrop {
  animation: cm-fade 240ms var(--ease) both;
}
@keyframes cm-pop {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cm-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.contact-modal__form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  position: relative;
}

.contact-modal__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
  z-index: 2;
}
.contact-modal__close:hover {
  background: rgba(31, 181, 232, 0.18);
  color: var(--accent);
}

.contact-modal__head {
  margin-bottom: .5rem;
  padding-right: 2.5rem; /* Platz für Close-Button */
}
.contact-modal__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 .65rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-modal__eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.contact-modal__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  margin: 0 0 .55rem;
  line-height: 1.15;
  color: var(--text);
}
.contact-modal__lede {
  font-size: .95rem;
  color: var(--text-soft);
  margin: 0;
  max-width: 50ch;
}

/* Felder */
.contact-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) {
  .contact-modal__row { grid-template-columns: 1fr; }
}

.contact-modal__field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.contact-modal__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.contact-modal__opt {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
  font-weight: 400;
}

.contact-modal__field input,
.contact-modal__field textarea {
  font: inherit;
  font-family: var(--sans);
  font-size: .95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-bright);
  border-radius: 6px;
  padding: .7rem .85rem;
  color: var(--text);
  width: 100%;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.contact-modal__field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.contact-modal__field input::placeholder,
.contact-modal__field textarea::placeholder {
  color: var(--text-dim);
}
.contact-modal__field input:focus,
.contact-modal__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(31, 181, 232, 0.05);
}
.contact-modal__field input:invalid:not(:placeholder-shown),
.contact-modal__field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(229, 90, 43, 0.55);
}

.contact-modal__actions {
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
  margin-top: .5rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .contact-modal__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .contact-modal__actions .btn { justify-content: center; }
}

.contact-modal__note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-mute);
  margin: 0;
  padding-top: .25rem;
  border-top: 1px dashed var(--line);
  padding-top: 1rem;
  margin-top: .25rem;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}
.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .15s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .25s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .35s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .45s; }

/* ─── PRINT ─── */
@media print {
  body { background: #fff; color: #000; }
  body::before { display: none; }
  .nav, .btn, .kontakt-mesh { display: none !important; }
  .hero, .section { padding: 1rem 0; }
  .angebot-card, .ref-item { background: #fff; border-color: #ccc; }
  .ref-item__name, .section__title, .kontakt__title { color: #000; }
  .ref-item__name span, .section__title span, .kontakt__title span,
  .hero__headline span { color: #1FB5E8; }
  a { color: #000; text-decoration: underline; }
}

/* ═══════════════════════════════════════════════════
   ACCESSIBILITY — Reduced Motion
   Respektiert die Browser-Einstellung für Nutzer mit
   Vestibular-Beschwerden (Schwindel bei Bewegung).
   ═══════════════════════════════════════════════════ */

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

  /* Reveal-Klassen sofort sichtbar machen,
     ohne sie wegzuanimieren */
  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
