/* Hero bullets + visit-appointment page (local preview) */

.hero__points {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0.15rem 0 1.7rem;
  max-width: 34rem;
  padding: 0;
  opacity: 0;
  animation: rise 0.85s var(--ease) 0.42s forwards;
}

.hero__points li {
  --i: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.72rem 0.95rem 0.72rem 0.72rem;
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 45%, rgba(13, 91, 255, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 32px rgba(0, 10, 40, 0.28),
    0 0 0 1px rgba(13, 91, 255, 0.08);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  opacity: 0;
  transform: translateY(12px);
  animation: heroPointIn 0.7s var(--ease) forwards;
  animation-delay: calc(0.48s + var(--i) * 0.1s);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero__points li:hover {
    transform: translateY(-2px);
    border-color: rgba(61, 139, 255, 0.55);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.22) inset,
      0 18px 40px rgba(0, 20, 60, 0.35),
      0 0 28px rgba(13, 91, 255, 0.22);
  }
}

.hero__points-icon {
  flex-shrink: 0;
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #0d5bff 0%, #001e5a 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 8px 20px rgba(13, 91, 255, 0.45),
    0 0 18px rgba(61, 139, 255, 0.35);
}

.hero__points-icon .octicon,
.hero__points-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  color: #fff !important;
  fill: #fff !important;
  filter: none;
}

.hero__points-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.hero__points-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 20, 60, 0.35);
}

.hero__points-copy em {
  font-style: normal;
  font-size: clamp(0.84rem, 1.05vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(220, 232, 255, 0.88);
  line-height: 1.35;
}

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

.hero__actions .btn .octicon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  fill: currentColor;
  transition: transform 0.3s var(--ease);
}

.hero__btn-label--visit,
.hero__btn-label--catalog {
  display: inline;
}

.hero__btn-label--visit .hero__btn-label__a,
.hero__btn-label--visit .hero__btn-label__b,
.hero__btn-label--catalog .hero__btn-label__a,
.hero__btn-label--catalog .hero__btn-label__b {
  display: inline;
}

.btn-hero-primary:hover .octicon {
  transform: scale(1.06);
}

.btn-hero-secondary:hover .octicon {
  transform: translateY(-1px) scale(1.05);
}

/* Compact trust rows: hidden on desktop, shown only in mobile media below */
.trust__item--mobile {
  display: none !important;
}

@media (max-width: 720px) {
  /* Pull hero content up — remove unused top gap (mobile only) */
  .hero {
    justify-content: flex-start;
    min-height: auto;
  }

  .home-fold {
    min-height: auto;
  }

  .hero__content {
    padding-top: 1.35rem !important;
    padding-bottom: 0.65rem;
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  .hero__brand-block {
    margin-bottom: 0.45rem;
  }

  .hero__logo-wrap {
    margin-bottom: 0.45rem;
  }

  .hero__sub {
    margin-bottom: 0.45rem;
  }

  .hero__points {
    gap: 0.45rem;
    margin: 0 0 0.95rem;
    max-width: none;
  }

  /* Trust: show compact 3-row mobile set, hide 4 desktop rows */
  .trust__item--desktop {
    display: none !important;
  }

  .trust__item--mobile {
    display: flex !important;
  }

  .trust.trust--overlay {
    padding-bottom: 0.55rem;
  }

  .trust.trust--overlay .trust__shell {
    padding: 0.4rem 0.45rem;
    gap: 0.35rem;
  }

  .trust--overlay .trust__grid {
    gap: 0.35rem;
  }

  .trust--overlay .trust__item {
    min-height: 0;
    padding: 0.55rem 0.65rem;
  }

  .trust--overlay .trust-proof {
    min-height: 0;
    padding: 0.45rem 0.55rem;
    margin-top: 0.35rem;
  }

  .trust--overlay .trust-proof__marquee {
    height: 42px;
  }

  .trust--overlay .trust-proof__track img {
    height: 36px;
  }

  .hero__points li {
    gap: 0.7rem;
    padding: 0.62rem 0.75rem 0.62rem 0.62rem;
    border-radius: 10px;
  }

  .hero__points-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
  }

  .hero__points-icon .octicon {
    width: 1rem;
    height: 1rem;
  }

  .hero__points-copy strong {
    font-size: 0.95rem;
  }

  .hero__points-copy em {
    font-size: 0.8rem;
  }

  .hero__actions {
    gap: 0.4rem;
  }

  .hero__actions .btn {
    align-items: center;
    justify-content: flex-start;
    min-height: 56px;
    padding: 0.65rem 0.55rem;
    font-size: 0.84rem !important;
    letter-spacing: 0.02em !important;
    gap: 0.4rem;
  }

  .hero__actions .btn span {
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    text-align: left;
    line-height: 1.1;
    font-size: inherit;
    flex: 0 1 auto;
  }

  .hero__btn-label--visit,
  .hero__btn-label--catalog {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.1;
    gap: 0.05rem;
  }

  .hero__btn-label--visit .hero__btn-label__a,
  .hero__btn-label--visit .hero__btn-label__b,
  .hero__btn-label--catalog .hero__btn-label__a,
  .hero__btn-label--catalog .hero__btn-label__b {
    display: block;
  }

  .hero__actions .btn .octicon {
    width: 16px;
    height: 16px;
  }

  .hero__actions .btn-wa {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    justify-content: center;
  }

  .hero__actions .btn-wa img {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 420px) {
  .hero__actions .btn {
    font-size: 0.78rem !important;
    padding: 0.6rem 0.4rem;
    letter-spacing: 0.01em !important;
  }
}

/* —— Besichtigungstermin page —— */
.visit-page .contact-hero__title {
  max-width: 16ch;
}

.visit-hours {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
  padding: 1.1rem 1.15rem;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(13, 91, 255, 0.12), rgba(0, 30, 90, 0.04)),
    #fff;
  border: 1px solid rgba(0, 30, 90, 0.1);
  box-shadow: 0 14px 36px rgba(0, 30, 90, 0.06);
}

.visit-hours__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.visit-hours__row .octicon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  fill: var(--blue);
}

.visit-hours__row strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.visit-hours__row span {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.4;
}

.visit-pref {
  display: grid;
  gap: 0.65rem;
}

.visit-pref__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.visit-pref__chips .contact-chip span {
  min-height: 42px;
}

.visit-note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.45;
}
