/* Techniker-Seite – nutzt globale Styles aus app.css */

:root {
  --content-max: 960px;
}

@media (min-width: 992px)  { :root { --content-max: 1040px; } } /* lg */
@media (min-width: 1200px) { :root { --content-max: 1140px; } } /* xl */
@media (min-width: 1400px) { :root { --content-max: 1320px; } } /* xxl */

.page-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.5rem .75rem 2.5rem;
}

@media (min-width: 768px) {
  .page-wrap {
    padding: 2.5rem 1rem 3rem;
  }
}

.hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: 0;
  bottom: 0;
}

.field-help {
  font-size: .8rem;
  color: #6b7280;
}

.text-dark-50 {
  color: #6b7280 !important;
}

/* Outer card */
.card-tech {
  border: 1px solid rgba(0,0,0,.04);
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  background: #fff;
  backdrop-filter: blur(4px);
  overflow: visible;
}

/* Left: chip & pills */
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: #f0f4ff;
  color: #4338ca;
  font-weight: 600;
  font-size: .875rem;
  border: 1px solid rgba(67,56,202,.15);
}

.feature-pills{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #eef2ff;
  color: #4338ca;
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid rgba(2,6,23,.06);
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pill-item i {
  color: #4f46e5;
  font-size: 1.1rem;
}

.pill-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

/* Illustration */
.tech-illustration {
  display: none;
  text-align: center; /* Bild zentrieren */
}

@media (min-width: 992px) {
  .tech-illustration {
    display: block;
  }

  .tech-illustration img {
    width: 75%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  }
}

/* Sticky right column */
@media (min-width: 992px) {
  .form-col {
    position: -webkit-sticky;
    position: sticky;
    top: 1.25rem;
    z-index: 1;
  }
}

/* FORM CARD */
.form-card {
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
  padding: 1rem;
}

@media (min-width: 768px) {
  .form-card {
    padding: 1.25rem;
  }
}

.form-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px dashed rgba(15,23,42,.08);
}

.form-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

/* Micro-trust hint */
.badge-hint {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid rgba(2,6,23,.08);
  white-space: nowrap;
}

.badge-hint i {
  font-size: .95em;
}

/* Disable old bits */
.badge-radius {
  display: none;
}

.feature-list,
.feature-list li,
.feature-list i {
  display: none;
}

/* Letter Spacing für kleine Überschriften */
.ls-1 {
    letter-spacing: 1px;
}

/* Eyebrow Chip Styling */
.eyebrow-chip {
    /* Stellt sicher, dass es über der Karte liegt */
    margin-left: 1.5rem; /* Leichter Einzug von links */
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* Anpassung für Mobile */
@media (max-width: 991.98px) {
    .eyebrow-chip {
        margin-left: 0; /* Zentriert auf Mobile */
        margin-bottom: -1rem !important; /* Überlappt die Karte etwas weniger */
    }
}

/* Hover-Effekt für die Karte (optional, sieht aber edel aus) */
.tech-intro .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-intro .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08) !important;
}