.banner-panel {
  position: relative;
  background: #1a1a1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.banner-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.30);
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.banner-content h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
}
.banner-content p {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.banner-highlights {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.banner-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 8px 18px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 600;
}
.banner-highlight i {
  color: var(--accent);
  font-size: 14px;
}
@media (max-width: 600px) {
  .banner-highlights {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
.banner-chevron {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  animation: chevron-bounce 2s ease-in-out infinite;
  transition: color 0.2s;
}
.banner-chevron:hover {
  color: #fff;
}
@keyframes chevron-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.7; }
}
.banner-chevron.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
