body {
  background: linear-gradient(to bottom, #0f0d15, #0f0d15 20%, var(--primary_color) 40%, #0f1118 65%, #0f1118 90%, black 98%);
}

img, svg:not(#footer_fourth *) {
  display: block;
  max-width: 100%;
}

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

.hidden {
  display: none !important;
}

main.djlp { width: 100%; }

/* =========================
   2) Containers / Cards
========================= */
.djlp-container {
  width: min(var(--container), calc(100% - (var(--pad-x) * 2)));
  margin: 0 auto;
}

.djlp-container--narrow {
  width: min(var(--container-narrow), calc(100% - (var(--pad-x) * 2)));
  margin: 0 auto;
}

/* =========================
   3) Sections / Headings
========================= */
.djlp-section {
  position: relative;
  padding: var(--section-y) 0;
}

@media (max-width: 767px) {
  .djlp-section { padding: 72px 0; }
}

.djlp-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.djlp-section__bg--purple {
  background:
    radial-gradient(700px 300px at 40% 20%, rgba(139, 92, 246, 0.10), transparent 60%),
    radial-gradient(700px 300px at 80% 60%, rgba(219, 39, 119, 0.08), transparent 60%);
  opacity: 0.9;
}

.djlp-section__bg--contact {
  background: radial-gradient(900px 420px at 50% 30%, rgba(139, 92, 246, 0.12), transparent 62%);
  opacity: 0.9;
}

.djlp-section__head {
  text-align: center;
  margin: 0 auto 54px;
  max-width: 820px;
  padding: 0 var(--pad-x);
}

.djlp-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(139, 92, 246, 0.95);
}

.djlp-section__head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

@media (max-width: 767px) {
  .djlp-section__head h2 { font-size: 28px; }
}

.djlp-lead {
  margin: 12px auto 0;
  color: var(--muted2);
  line-height: 1.65;
  max-width: 680px;
  font-size: 16px;
}

/* =========================
   4) Buttons
========================= */

.djlp-btn--primary:active { transform: translateY(0px); }


/* =========================
   5) Hero
========================= */
.djlp-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  padding: 92px 0 52px;
}

@media (max-width: 767px) {
  .djlp-hero {
    padding: 84px 0 40px;
    min-height: auto;
  }
}

.djlp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.djlp-hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.05);
}

.djlp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 420px at 18% 40%, rgba(139, 92, 246, 0.18), transparent 62%),
    radial-gradient(900px 420px at 68% 30%, rgba(219, 39, 119, 0.12), transparent 62%),
    linear-gradient(to top, rgba(11, 12, 16, 0.78) 0%, rgba(11, 12, 16, 0.55) 20%, rgba(11, 12, 16, 0.18) 42%, rgba(11, 12, 16, 0.00) 62%),
    linear-gradient(to top, rgba(11, 12, 16, 0.92) 0%, rgba(11, 12, 16, 0.75) 18%, rgba(11, 12, 16, 0.35) 38%, rgba(0, 0, 0, 0.2) 60%);
}

.djlp-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - (var(--pad-x) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.djlp-hero__content {
  text-align: left;
  padding-bottom: 8px;
  max-width: 760px;
}

/* =========================
   DJLP HERO Ultrawide Fix (>=1800px)
   - Media (Video + Overlay) wird auf 1800px begrenzt und zentriert
   - Seiten werden mit Body Farbe gefuellt
   - Vignette Rand in exakt Body Farbe, Overlay Gradients bleiben erhalten
========================= */

@media (min-width: 1800px){

  /* Seitenfarbe: muss zur Body Kante passen */
  .djlp-hero__media{
    background: #0f0d15;
  }

  /* Media Container zentriert und begrenzt */
  .djlp-hero__media{
    left: 50%;
    right: auto;
    width: 1800px;
    transform: translateX(-50%);
  }

  /* Video bleibt cover innerhalb der 1800px Box */
  .djlp-hero__video{
    object-fit: cover;
    object-position: center;
  }

  /* Vignette Layer obendrauf, ohne Dein overlay background zu ueberschreiben */
  .djlp-hero__overlay{
    position: absolute;
    inset: 0;
  }

  .djlp-hero__overlay::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* ueber overlay, unter text */
    z-index: 2;

    /* exakt gleiche Farbe wie Body Rand */
    background: #0f0d15;

    /* Mitte transparent, Rand sichtbar */
    -webkit-mask-image: radial-gradient(circle,
      transparent 58%,
      black 78%,
      black 100%
    );
    mask-image: radial-gradient(circle,
      transparent 58%,
      black 78%,
      black 100%
    );

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

.djlp-brand { margin-bottom: 70px; margin-top: -50px;}

.djlp-brand__logo {
  display: block;
  height: 40px;
  width: auto;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  .djlp-brand__logo { height: 36px; }
}

.djlp-brand__tag {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(245, 246, 248, 0.58);
}

.djlp-hero__title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: 56px;
  max-width: 22ch;
}

@media (max-width: 1023px) {
  .djlp-hero__title { font-size: 48px; max-width: 26ch; }
}

@media (max-width: 767px) {
  .djlp-hero__title { font-size: 38px; max-width: 28ch; }
}

.djlp-hero__subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
  max-width: 64ch;
}

@media (max-width: 767px) {
  .djlp-hero__subtitle { font-size: 16px; }
}

.djlp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* =========================
   Hero Meta Inline Trust List
========================= */
.djlp-hero__metaList{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
  margin-top: 22px;
}

.djlp-metaPoint{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(245, 246, 248, 0.82);
  white-space: nowrap;
}

.djlp-metaPoint svg{
  width: 16px;
  height: 16px;
  color: rgba(139, 92, 246, 0.95);
  flex-shrink: 0;
}

@media (max-width: 640px){
  .djlp-hero__metaList{
    flex-direction: column;
    gap: 12px 18px;
    align-items: start;
    margin-top: -10px;
  }

  .djlp-metaPoint{
    font-size: 12px;
  }
}

/* Checkmark icon for hero meta points */
.checkmark{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

.checkmark__circle{
  fill: none;
  stroke: rgba(139, 92, 246, 0.35);
  stroke-width: 6;
}

.checkmark__check{
  fill: none;
  stroke: rgba(139, 92, 246, 0.95);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}



.djlp-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(245, 246, 248, 0.70);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.djlp-hero__scroll:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%) translateY(-1px);
}

.djlp-hero__scroll svg { width: 20px; height: 20px; }

@media (max-width: 767px) {
  .djlp-hero__scroll { display: none; }
}

/* =========================
   Hero Social Proof Bar
========================= */
.djlp-proofBar{
  position: relative;
  z-index: 5;
  margin-top: -52px;
  padding: 0 var(--pad-x);
}

.djlp-proofBar__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 900px){
  .djlp-proofBar__inner{
    grid-template-columns: 1fr;
  }
}

.djlp-proofStars{
  font-size: 13px;
  letter-spacing: 1px;
  color: #facc15;
  margin-bottom: 6px;
}

.djlp-proofQuote{
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
}

.djlp-proofPerson{
  font-size: 12px;
  font-weight: 600;
  color: rgba(245,246,248,0.55);
}

@media (max-width: 900px){
  .djlp-proofCard {
    margin-top: 50px;
  }
  .djlp-proofCard:not(:first-child) {
    display: none;
  }
}

/* =========================
   7) Setup Selector
========================= */
.djlp-setupGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 1024px) {
  .djlp-setupGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.djlp-setupCard {
  padding: 22px 22px 20px;
  position: relative;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.djlp-setupCard:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.djlp-setupCard h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.djlp-setupCard p {
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 14px;
}

.djlp-setupCard ul {
  margin: 0 0 16px;
  padding-left: 18px;
  line-height: 1.75;
  font-size: 13px;
}

.djlp-setupCard ul li { margin: 6px 0; }

.djlp-setupBadge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgb(25, 18, 35);
  border: 1px solid rgba(139, 92, 246, 0.28);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  color: rgba(245, 246, 248, 0.92);
  white-space: nowrap;
  pointer-events: none;
}

.djlp-setupCard--highlight {
  border-color: rgba(139, 92, 246, 0.32);
  background: rgba(139, 92, 246, 0.07);
}

.djlp-setupCard .djlp-btn { width: 100%; justify-content: center; margin-top: auto; }

/* =========================
   8) Benefits
========================= */
.djlp-benefits {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .djlp-benefits { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .djlp-benefits { grid-template-columns: repeat(5, 1fr); }
}

.djlp-benefit {
  padding: 22px 18px;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.djlp-benefit:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.djlp-benefit__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(219, 39, 119, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.djlp-benefit__icon svg {
  width: 28px;
  height: 28px;
  color: rgba(245, 246, 248, 0.92);
}

.djlp-benefit h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.djlp-benefit p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted3);
}

/* =========================
   9) Testimonial
========================= */
.djlp-testimonial {
  position: relative;
  padding: 40px 26px;
  overflow: hidden;
  border-radius: var(--r-2xl);
  text-align: center;
}

@media (min-width: 768px) {
  .djlp-testimonial { padding: 46px 44px; }
}

.djlp-testimonial__bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 1;
}

.djlp-testimonial__bg--left {
  top: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.14);
}

.djlp-testimonial__bg--right {
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: rgba(219, 39, 119, 0.10);
}

.djlp-testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.djlp-testimonial__stars svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

.djlp-testimonial__quote {
  position: relative;
  z-index: 1;
  margin: 0 auto 18px;
  font-style: italic;
  font-weight: 500;
  color: rgba(245, 246, 248, 0.92);
  font-size: 18px;
  line-height: 1.6;
  max-width: 70ch;
}

@media (min-width: 768px) {
  .djlp-testimonial__quote { font-size: 20px; }
}

.djlp-testimonial__person {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.djlp-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(219, 39, 119, 1));
  color: #fff;
}

.djlp-testimonial__meta { text-align: left; }

.djlp-testimonial__name {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.djlp-testimonial__event {
  margin: 3px 0 0;
  font-size: 13px;
  color: rgba(245, 246, 248, 0.55);
}

/* =========================
   Events – Image Banner Cards
========================= */
.djlp-eventBanners{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .djlp-eventBanners{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px){
  .djlp-eventBanners{
    grid-template-columns: repeat(3, 1fr);
  }
}

.djlp-eventBanner{
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow-soft);
  min-height: 210px;
  display: block;
  isolation: isolate; /* safer overlay stacking */
}

@media (min-width: 768px){
  .djlp-eventBanner{
    min-height: 240px;
  }
}

.djlp-eventBanner__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.06);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.djlp-eventBanner__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 18px 16px;
  gap: 6px;

  /* readability overlay */
  background:
    radial-gradient(800px 220px at 30% 10%, rgba(139,92,246,0.18), transparent 60%),
    linear-gradient(to top, rgba(11,12,16,0.98) 0%, rgba(11,12,16,0.70) 45%, rgba(11,12,16,0.10) 70%, rgba(11,12,16,0.00) 100%);
}

.djlp-eventBanner h3{
  margin: 0;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(245,246,248,0.95);
}

.djlp-eventBanner p{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245,246,248,0.70);
  max-width: 55ch;
}

/* Hover polish */
.djlp-eventBanner:hover .djlp-eventBanner__img{
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.10);
}

.djlp-eventBanner:hover{
  border-color: rgba(255,255,255,0.16);
}

/* Focus state */
.djlp-eventBanner:focus-visible{
  outline: 2px solid rgba(139,92,246,0.75);
  outline-offset: 3px;
  border-radius: var(--r-2xl);
}

/* =========================
   11) Steps
========================= */
.djlp-steps {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .djlp-steps { grid-template-columns: repeat(3, 1fr); }
}

.djlp-step { text-align: center; }

.djlp-step__num {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(219, 39, 119, 1));
  color: #fff;
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.20);
}

.djlp-step h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 900;
}

.djlp-step p {
  margin: 0;
  color: rgba(245, 246, 248, 0.55);
  line-height: 1.65;
  font-size: 13px;
}

/* =========================
   12) FAQ
========================= */
.djlp-faq {
  display: grid;
  gap: 12px;
}

.djlp-faqItem {
  padding: 18px;
  border-radius: var(--r-xl);
}

.djlp-faqItem[open] summary::after{
  transform: rotate(45deg);
}

.djlp-faqItem summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.djlp-faqItem summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  font-weight: 900;
  font-size: 18px;
  transition: transform 0.25s ease;
}

details[open] summary::after {
  transform: rotate(45deg) translateY(-50%);
}

.djlp-faqItem summary::-webkit-details-marker { display: none; }

.djlp-faqItem p {
  margin: 10px 0 0;
  color: rgba(245, 246, 248, 0.62);
  line-height: 1.65;
}

/* =========================
   13) Contact Form + checkbox row
========================= */
.djlp-contact { position: relative; }

.djlp-form {
  padding: 30px;
  border-radius: var(--r-2xl);
}

@media (min-width: 768px) {
  .djlp-form { padding: 38px; }
}

.djlp-form__fields {
  display: grid;
  gap: 16px;
}

.djlp-field {
  position: relative;
}
.djlp-check {
  position: relative;
}

.djlp-field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: rgba(245, 246, 248, 0.78);
  margin: 0 0 8px;
}

.djlp-field input,
.djlp-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 246, 248, 0.96);
  font: inherit;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.djlp-field textarea {
  resize: none;
  min-height: 120px;
}

.djlp-field input:focus,
.djlp-field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.djlp-form__grid2 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .djlp-form__grid2 { grid-template-columns: repeat(2, 1fr); }
}

.djlp-checkRow { margin-top: 2px; }

.djlp-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
  color: rgba(245, 246, 248, 0.78);
  font-size: 13px;
}

.djlp-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
}

.djlp-form__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.djlp-form__note {
  margin: 6px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(245, 246, 248, 0.45);
  line-height: 1.2;
}


.djlp-link {
  margin-top: 14px;
  background: none;
  border: 0;
  cursor: pointer;
  color: rgba(139, 92, 246, 0.95);
  text-decoration: underline;
  text-underline-offset: 4px;
  font: inherit;
  font-weight: 900;
}

/* =========================
   16) Sticky CTA (mobile)
========================= */
.djlp-stickyCta{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 50;

  padding: 14px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 900;

  color: #fff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(219, 39, 119, 1) 100%);
  box-shadow: 0 18px 46px rgba(139, 92, 246, 0.22);

  display: none; /* Desktop aus */
}

@media (max-width: 768px){
  .djlp-stickyCta{
    display: block;        /* existiert */
    opacity: 0;            /* aber unsichtbar */
    pointer-events: none;  /* nicht klickbar */
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .djlp-stickyCta.is-visible{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

 
/* =========================
   17) Minor polish
========================= */
.djlp-hero__content p,
.djlp-section__head p,
.djlp-package p,
.djlp-service p,
.djlp-step p {
  word-break: normal;
  overflow-wrap: anywhere;
}

.djlp-hero__content,
.djlp-section__head {
  text-wrap: pretty;
}


/* Headings Farben wie Hauptseite */
.djlp-hero__title,
.djlp-setupCard h3,
.djlp-benefit h3{
  color: var(--secondary_color);
  font-weight: bold;
}

.footer_body {
  background-image: url(/images/header_footer/R2.png);
}

@media (max-width: 767px){
  .footer_body {
    margin-top: 0;
  }
  
  #footer_fourth {
    display: none;
  }
}



/* Bubble Tooltip direkt unter dem Feld */
.field-error {
  position: absolute;
  background: rgba(255, 80, 80, 0.95);
  color: #fff;
  top: 100%;
  font-size: 14px;
  padding: 4px 10px;
  margin-top: 4px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  z-index: 10;
  white-space: nowrap;
  animation: fadeInUp .2s ease-out forwards;
}

/* kleiner Pfeil */
.field-error::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 12px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255, 80, 80, 0.95);
}

/* sanftes Erscheinen */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}