.home-banner {
  position: relative;
  overflow: hidden;
  background: #10131a;
}

.home-banner-slider {
  position: relative;
  min-height: clamp(520px, 68vh, 700px);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 850ms ease;
}

.banner-slide.active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.banner-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 5800ms ease;
}

.banner-slide.active img {
  transform: scale(1);
}

.banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 18, 0.86), rgba(5, 8, 18, 0.54) 42%, rgba(5, 8, 18, 0.18)),
    linear-gradient(0deg, rgba(5, 8, 18, 0.7), rgba(5, 8, 18, 0.05) 50%, rgba(5, 8, 18, 0.22));
}

.banner-content {
  position: relative;
  z-index: 2;
  min-height: clamp(520px, 68vh, 700px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4rem;
  padding-bottom: 6.5rem;
}

.banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.72rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.banner-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--sun);
  border-radius: 50%;
}

.banner-content h1,
.banner-content h2 {
  max-width: 780px;
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1.04;
}

.banner-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.8rem;
}

.banner-controls {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 0.8rem;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.banner-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background var(--fast), transform var(--fast);
}

.banner-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.banner-dots {
  display: flex;
  gap: 0.45rem;
}

.banner-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 999px;
  transition: width var(--fast), background var(--fast);
}

.banner-dots button.active {
  width: 54px;
  background: linear-gradient(90deg, var(--sun), var(--coral), var(--blue));
}

.ticker-band {
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 1.4rem;
  color: #fff;
  font-weight: 950;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 1.1rem;
  border-radius: 50%;
  background: var(--sun);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.product-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 1rem;
}

.mosaic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.25rem;
  color: #fff;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
  transition: transform var(--fast), box-shadow var(--fast);
}

.mosaic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 18, 0.04), rgba(5, 8, 18, 0.78));
}

.mosaic-card span,
.mosaic-card small {
  position: relative;
  z-index: 1;
}

.mosaic-card span {
  font-size: 1.45rem;
  font-weight: 950;
}

.mosaic-card small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.mosaic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.mosaic-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-card.wide {
  grid-column: span 2;
}

.quality-list {
  display: grid;
  gap: 0.85rem;
}

.quality-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 850;
}

.quality-list i {
  color: var(--teal);
  font-size: 1.25rem;
}

.motion-video {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
  background: #10131a;
  box-shadow: var(--shadow);
}

.motion-video-wide {
  min-height: 410px;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: reelFade 15s infinite;
}

.reel-layer:nth-child(2) {
  animation-delay: 5s;
}

.reel-layer:nth-child(3) {
  animation-delay: 10s;
}

.motion-video.is-paused .reel-layer {
  animation-play-state: paused;
}

.motion-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 18, 0.08), rgba(5, 8, 18, 0.78));
}

.reel-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 2;
}

.reel-caption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--sun);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.reel-caption strong {
  display: block;
  max-width: 420px;
  font-size: clamp(1.65rem, 4vw, 2.8rem);
  line-height: 1;
}

.reel-toggle {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.88);
  border: 0;
  border-radius: var(--radius);
}

@keyframes reelFade {
  0%, 5% { opacity: 0; transform: scale(1); }
  10%, 33% { opacity: 1; transform: scale(1.06); }
  38%, 100% { opacity: 0; transform: scale(1.12); }
}

.customization-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.customization-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1rem;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 950;
  transition: background var(--fast), color var(--fast), box-shadow var(--fast);
}

.customization-tabs button.active,
.customization-tabs button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 16px 34px rgba(23, 105, 255, 0.18);
}

.specialty-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.specialty-visual {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}

.specialty-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialty-copy {
  align-self: center;
  padding: 2rem;
}

.specialty-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.specialty-points span,
.contact-chip {
  display: inline-flex;
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dark);
  background: var(--cloud);
  font-weight: 850;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.compare-card {
  min-height: 250px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.compare-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  border-radius: var(--radius);
  font-size: 1.35rem;
}

.compare-card h3 {
  font-weight: 950;
}

.catalog-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.catalog-cover {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 169, 165, 0.9), rgba(23, 105, 255, 0.82)),
    url("../images/catalog-flatlay.png");
  background-size: cover;
  background-position: center;
}

.catalog-cover span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.catalog-cover strong {
  font-size: 2rem;
  line-height: 1;
}

.catalog-cover small {
  color: rgba(255, 255, 255, 0.76);
}

.catalog-actions {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.process-number {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(23, 105, 255, 0.34);
  font-size: 4.4rem;
  font-weight: 950;
  line-height: 0.9;
}

.testimonial-track {
  cursor: grab;
}

.testimonial-track:active {
  cursor: grabbing;
}

@media (max-width: 991.98px) {
  .home-banner-slider,
  .banner-content {
    min-height: 600px;
  }

  .banner-content h1,
  .banner-content h2 {
    max-width: 680px;
  }

  .product-mosaic,
  .specialty-stage,
  .compare-grid,
  .catalog-preview {
    grid-template-columns: 1fr;
  }

  .mosaic-card.large,
  .mosaic-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .motion-video {
    min-height: 360px;
  }

  .specialty-copy {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  .home-banner-slider,
  .banner-content {
    min-height: 560px;
  }

  .banner-content {
    padding-top: 3rem;
    padding-bottom: 7.25rem;
  }

  .banner-content h1,
  .banner-content h2 {
    font-size: 2.25rem;
  }

  .banner-content p {
    font-size: 0.98rem;
  }

  .banner-controls {
    width: calc(100% - 2rem);
    justify-content: space-between;
  }

  .banner-dots button {
    width: 20px;
  }

  .banner-dots button.active {
    width: 32px;
  }

  .ticker-track span {
    min-height: 48px;
    padding: 0 1rem;
    font-size: 0.86rem;
  }

}
