/* =============================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================= */
:root {
  --bg:           #060b18;
  --bg2:          #0c1526;
  --fg:           #e2e8f5;
  --muted:        rgba(226, 232, 245, 0.55);
  --cyan:         #00c2e0;
  --cyan-dark:    #0099b3;
  --cyan-glow:    rgba(0, 194, 224, 0.15);
  --blue:         #3d5fce;
  --card-bg:      rgba(12, 21, 38, 0.7);
  --card-border:  rgba(0, 194, 224, 0.15);
  --font-body:    'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: #fff; }

/* =============================================
   UTILITY
   ============================================= */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 1.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.text-cyan {
  color: var(--cyan);
}

.cyan-line {
  width: 48px;
  height: 2px;
  background: var(--cyan);
  margin: 1.25rem 0;
}

.cyan-line.center { margin: 1.25rem auto; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #33d4ee;
  color: var(--bg);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 194, 224, 0.45);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--cyan-glow);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Feature list */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-list li::before {
  content: '▸';
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

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

@keyframes pulse-cyan {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,194,224,0.0); }
  50%       { box-shadow: 0 0 0 8px rgba(0,194,224,0.12); }
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to   { background-position: 40px 40px; }
}

.animate-fade-up {
  animation: fadeUp 0.9s ease both;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 24, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 194, 224, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: block;
  padding: 0.5rem 0.75rem;
  background: rgba(6, 11, 24, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-right-radius: 0.5rem;
}

.logo-fixed img {
  height: 100px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.logo-fixed:hover img {
  opacity: 0.85;
  filter: brightness(1.1);
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  margin-right: auto;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-brand-text:hover {
  color: var(--fg);
  text-decoration: none;
}

@media (max-width: 1100px) {
  .nav-brand-text { display: none; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
  filter: brightness(1.1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgb(38, 53, 137);
  line-height: 1.2;
}

.nav-logo-subtitle {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .nav-logo-text {
    display: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--fg);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cyan); }

.nav-links a.nav-cta {
  color: var(--cyan);
  border: 1px solid rgba(0,194,224,0.4);
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
  transition: background 0.2s;
}

.nav-links a.nav-cta:hover {
  background: var(--cyan-glow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  transition: 0.3s;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(0,194,224,0.06) 0%, transparent 60%),
    linear-gradient(rgba(6,11,24,0.65), rgba(6,11,24,0.80)),
    url('/subsrc/bg-1.webp') center / cover no-repeat;
}

/* Animated grid overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,224,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,224,0.10) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 4s linear infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,194,224,0.1);
  border: 1px solid rgba(0,194,224,0.25);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-cyan 2s ease-in-out infinite;
}

.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-h1 .accent {
  color: var(--cyan);
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-phone {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--muted);
}

.hero-phone a {
  color: var(--fg);
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(0,194,224,0.1);
  border-bottom: 1px solid rgba(0,194,224,0.1);
  padding: 2.5rem 1.5rem;
}

.stats-bar .section-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

@media (max-width: 700px) {
  .stats-bar .section-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   PRODUKTE (gemeinsame Basis)
   ============================================= */
.product-section {
  position: relative;
}

.product-section:nth-child(even) {
  background: radial-gradient(ellipse at 50% 50%, rgba(61,95,206,0.07), transparent 70%);
}

.product-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-section.reverse .section-inner {
  direction: rtl;
}

.product-section.reverse .section-inner > * {
  direction: ltr;
}

.product-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.product-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon-box {
  width: 260px;
  height: 260px;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 0 60px rgba(0,194,224,0.08);
}

.product-icon-box::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(0,194,224,0.2), transparent 60%);
  pointer-events: none;
}

/* Number chips */
.number-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.number-chip {
  background: rgba(0,194,224,0.08);
  border: 1px solid rgba(0,194,224,0.2);
  border-radius: 0.4rem;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

@media (max-width: 820px) {
  .product-section .section-inner,
  .product-section.reverse .section-inner {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 3rem;
  }

  .product-visual { order: -1; }

  .product-icon-box {
    width: 180px;
    height: 180px;
    font-size: 3.5rem;
  }
}

/* =============================================
   ÜBER UNS TEASER
   ============================================= */
#ueber-uns {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,194,224,0.06), transparent 65%),
    var(--bg2);
  border-top: 1px solid rgba(0,194,224,0.08);
  border-bottom: 1px solid rgba(0,194,224,0.08);
}

#ueber-uns h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

#ueber-uns p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

/* =============================================
   KONTAKT
   ============================================= */
#kontakt {
  text-align: center;
}

#kontakt h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

#kontakt .kontakt-subtext {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.kontakt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.kontakt-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.kontakt-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--cyan);
}

.kontakt-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.kontakt-card p, .kontakt-card a {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .kontakt-cards {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: rgba(6, 11, 24, 0.98);
  border-top: 1px solid rgba(0, 194, 224, 0.1);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(0, 194, 224, 0.3);
  margin: 1.25rem auto;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(226, 232, 245, 0.3);
}

/* =============================================
   WIR – TIMELINE
   ============================================= */
.timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 7rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), rgba(0,194,224,0.1));
}

.tl-item {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.tl-year {
  position: absolute;
  left: -6.5rem;
  width: 4.5rem;
  text-align: right;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  padding-top: 1.5rem;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -1.8rem;
  top: 1.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,194,224,0.5);
  flex-shrink: 0;
}

.tl-content {
  flex: 1;
  padding: 1.5rem 1.75rem;
}

.tl-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.tl-content p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.tl-content p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .timeline {
    padding-left: 1rem;
  }

  .timeline::before { left: 0; }

  .tl-year {
    position: static;
    width: auto;
    text-align: left;
    margin-bottom: 0.5rem;
    padding-top: 0;
  }

  .tl-item {
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
  }

  .tl-item::before { left: -0.6rem; }
}

/* =============================================
   WIR – STÄRKEN GRID
   ============================================= */
.staerken-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.staerke-card {
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.staerke-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,194,224,0.35);
}

.staerke-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.staerke-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.staerke-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

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

@media (max-width: 500px) {
  .staerken-grid { grid-template-columns: 1fr; }
}

/* =============================================
   TEAM
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
  border-color: rgba(0,194,224,0.35);
  transform: translateY(-3px);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(0,194,224,0.05);
  border: 1px solid rgba(0,194,224,0.1);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-initials {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(0,194,224,0.3);
  letter-spacing: 0.1em;
}

.team-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.team-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

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

@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PREISLISTEN
   ============================================= */
.preise-gruppe {
  margin-bottom: 3.5rem;
}

.preise-gruppe-titel {
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,194,224,0.15);
}

.preise-gruppe-icon {
  font-size: 1.1rem;
}

.preise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.preise-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s ease, transform 0.2s ease;
  gap: 1rem;
}

.preise-card:hover {
  border-color: rgba(0,194,224,0.4);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--fg);
}

.preise-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.preise-card-name {
  font-size: 0.95rem;
  font-weight: 500;
}

.preise-card-dl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.preise-pdf-badge {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  border: 1px solid rgba(0,194,224,0.4);
  border-radius: 0.25rem;
  padding: 0.1rem 0.35rem;
}

.preise-dl-icon {
  font-size: 1rem;
  color: var(--cyan);
  font-weight: bold;
}

/* =============================================
   REFERENZEN
   ============================================= */
.ref-intro {
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.ref-intro p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.ref-intro ul {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.5rem 0 0 1.5rem;
}

.ref-intro li {
  margin-bottom: 0.25rem;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ref-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ref-card:hover {
  border-color: rgba(0,194,224,0.35);
  transform: translateY(-3px);
}

.ref-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ref-card-header h3 {
  font-size: 1.1rem;
  line-height: 1.3;
}

.ref-link {
  font-size: 0.75rem;
  color: var(--cyan);
  white-space: nowrap;
  flex-shrink: 0;
}

.ref-link:hover {
  text-decoration: underline;
}

.ref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ref-tag {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0,194,224,0.3);
  border-radius: 0.25rem;
  padding: 0.2rem 0.5rem;
}

.ref-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.ref-placeholder {
  padding: 2rem;
  text-align: center;
  opacity: 0.4;
}

.ref-placeholder-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =============================================
   NEUE 0900 – FAQ
   ============================================= */
.neue0900-frage {
  padding: 2rem 2.5rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.3s ease;
}

.neue0900-frage:hover {
  border-color: rgba(0, 194, 224, 0.3);
}

.neue0900-frage h2 {
  font-size: 1.2rem;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.neue0900-antwort p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.neue0900-antwort ul,
.neue0900-antwort ol {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.5rem 0 0.75rem 1.5rem;
}

.neue0900-antwort strong {
  color: var(--fg);
}
