.banner-panel {
  position: relative;
  background: url('../banners/generic-bg.jpg') center center / cover no-repeat;
  padding: 100px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.banner-panel-video {
  background-image: none;
}
.banner-panel-video::before {
  z-index: 1;
  background: linear-gradient(135deg, rgba(36,36,36,.72) 0%, rgba(36,36,36,.55) 100%);
}
.banner-panel-video .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.banner-panel-video .banner-content {
  z-index: 2;
}
.banner-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 100%);
}
.banner-content {
  position: relative;
  z-index: 1;
  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-lead {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
.banner-em {
  color: var(--accent);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.banner-em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  opacity: .45;
}
.banner-tagline {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 8px;
  text-align: left;
}
.banner-tagline-main {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
}
.banner-tagline-sub {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.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-panel {
    padding: 60px 0;
  }
  .banner-highlights {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* ── Sample Work Carousel ── */
.carousel-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 14px;
}
.carousel-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}
.carousel-browser {
  background: #1e1e2e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.carousel-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #2a2a3d;
}
.carousel-dots-row {
  display: flex;
  gap: 6px;
}
.carousel-dot-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
}
.carousel-dot-circle:nth-child(1) { background: #ff5f57; }
.carousel-dot-circle:nth-child(2) { background: #febc2e; }
.carousel-dot-circle:nth-child(3) { background: #28c840; }
.carousel-url {
  flex: 1;
  background: #3a3a50;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel-browser img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
}
.carousel-caption {
  text-align: center;
  margin-top: 20px;
}
.carousel-caption-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.carousel-caption-link {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.carousel-caption-link:hover { text-decoration: underline; }
.carousel-btn {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 14px;
  transition: background .2s, box-shadow .2s;
  z-index: 2;
}
.carousel-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.carousel-btn-prev { left: -20px; }
.carousel-btn-next { right: -20px; }
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.carousel-indicator.active {
  background: var(--accent);
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .carousel-btn-prev { left: -12px; }
  .carousel-btn-next { right: -12px; }
  .carousel-btn { width: 32px; height: 32px; font-size: 12px; }
}
