/* Creative layer — sliders, video hero, graphs, nested services, 5-step process */

.hero-cinema {
  position: relative;
  min-height: min(88vh, 820px);
  overflow: hidden;
  background: #0c0c0d;
  color: #fff;
  margin-bottom: 0;
}

.hero-cinema .slides {
  position: absolute;
  inset: 0;
}

.hero-cinema .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-cinema .slide.is-active {
  opacity: 1;
}

.hero-cinema video,
.hero-cinema .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-cinema .scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.88) 8%, rgba(8, 8, 10, 0.35) 58%, rgba(8, 8, 10, 0.2)),
    linear-gradient(180deg, rgba(8, 8, 10, 0.25), rgba(8, 8, 10, 0.55));
}

.hero-cinema .hero-copy {
  position: relative;
  z-index: 2;
  padding: 88px 0 72px;
  max-width: 720px;
}

.hero-cinema h1 {
  color: #fff;
}

.hero-cinema p {
  color: #d7d8de;
}

.hero-cinema .eyebrow {
  background: rgba(254, 154, 15, 0.18);
  color: #ffd089;
}

.hero-video-slider {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
}

.hero-video-slider .slides,
.hero-video-slider .slide {
  position: absolute;
  inset: 0;
}

.hero-video-slider .slide {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-video-slider .slide.is-active {
  opacity: 1;
}

.hero-video-slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-slider .hero-dots {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.hero-slide-btn {
  left: 12px;
}

.hero-slide-btn.next {
  left: auto;
  right: 12px;
}

.slide-cap {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 3;
  background: rgba(12, 12, 13, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
}

.slide-label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vz-orange);
  margin-bottom: 14px;
}

.hero-controls {
  position: absolute;
  right: max(20px, calc((100% - var(--vz-max)) / 2));
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-controls button,
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(12, 12, 13, 0.45);
  color: #fff;
  cursor: pointer;
}

.hero-dots,
.slider-dots {
  display: flex;
  gap: 6px;
}

.hero-dots button,
.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active,
.slider-dots button.is-active {
  width: 22px;
  background: var(--vz-orange);
}

.trust-plus {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.trust-plus .stats {
  grid-template-columns: 1fr 1fr;
}

.chart-card {
  background: #fff;
  border: 1px solid var(--vz-line);
  border-radius: 24px;
  padding: 22px;
}

.chart-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
  height: 160px;
  margin-top: 18px;
}

.bars > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bar {
  background: linear-gradient(180deg, var(--vz-orange), #ffc36a);
  border-radius: 10px 10px 4px 4px;
  height: 0;
  width: 100%;
  transition: height 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.bar span {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.bar-label {
  text-align: center;
  font-size: 12px;
  color: var(--vz-muted);
  margin-top: 8px;
  font-weight: 700;
}

.line-chart {
  width: 100%;
  height: 170px;
}

.line-chart path.line {
  fill: none;
  stroke: var(--vz-orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}

.chart-card.is-in .line-chart path.line {
  animation: draw 1.4s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.service-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-main {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.service-main video,
.service-main img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 13, 0.1), rgba(12, 12, 13, 0.82));
}

.service-main > * {
  position: relative;
  z-index: 1;
}

.nested {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.nested span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.why-slider {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 420px;
  background: #111;
  color: #fff;
}

.why-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 420px;
}

.why-slide .copy {
  padding: 48px 40px;
}

.why-slide .num {
  font-size: 64px;
  font-weight: 800;
  color: var(--vz-orange);
  letter-spacing: -0.06em;
  line-height: 1;
}

.why-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-progress {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 18px;
  height: 3px;
  background: rgba(255, 255, 255, 0.16);
  z-index: 2;
}

.why-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--vz-orange);
}

.why-nav {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.process-flow {
  position: relative;
  margin-top: 36px;
}

.process-rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 3px;
  background: #2a2b31;
  border-radius: 99px;
}

.process-rail i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--vz-orange);
  border-radius: 99px;
  transition: width 0.6s ease;
}

.steps-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}

.step {
  text-align: center;
  background: #17181c;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.step.is-on {
  transform: translateY(-8px);
  border-color: var(--vz-orange);
  background: #1f160c;
}

.step .orb-n {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0c0c0d;
  border: 2px solid #3a3b42;
  color: var(--vz-orange);
  font-weight: 800;
}

.step.is-on .orb-n {
  border-color: var(--vz-orange);
  box-shadow: 0 0 0 6px rgba(254, 154, 15, 0.18);
  animation: pulse 1.4s ease infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(254, 154, 15, 0.05);
  }
}

.work-slider {
  overflow: hidden;
}

.work-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s ease;
}

.work-slide {
  min-width: calc(62% - 9px);
}

.work-slide.work-card {
  min-height: 420px;
}

.work-card img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.quote-slider {
  overflow: hidden;
}

.quote-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.quote-track .quote {
  flex: 0 0 100%;
  min-width: 100%;
}

.media-frame {
  border-radius: 28px;
  overflow: hidden;
  min-height: 340px;
  position: relative;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.play-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--vz-orange);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
}

.blog-card img.cover {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.svc-card {
  background: #fff;
  border: 1px solid var(--vz-line);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.svc-card .idx {
  color: var(--vz-orange);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.svc-card h3 {
  margin: 0;
}

.svc-card p {
  color: var(--vz-muted);
  margin: 0;
  flex: 1;
}

.svc-card .nested span {
  background: var(--vz-soft);
  border: 1px solid var(--vz-line);
  color: #222;
}

.svc-long {
  display: grid;
  gap: 22px;
}

.svc-long article {
  background: #fff;
  border: 1px solid var(--vz-line);
  border-radius: 28px;
  padding: 32px;
}

.svc-long h2 {
  font-size: 32px;
}

.svc-long ul {
  margin: 12px 0 20px;
  padding-left: 18px;
  color: var(--vz-muted);
}

.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--vz-line);
  border-bottom: 1px solid var(--vz-line);
  background: #fff;
  padding: 22px 0;
}

.marquee-band.dark {
  background: var(--vz-black);
  border-color: #222;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-band.slow .marquee-track {
  animation-duration: 40s;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.tech-item,
.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 72px;
  padding: 8px 14px;
  border-radius: 16px;
  background: var(--vz-soft);
  border: 1px solid var(--vz-line);
}

.tech-item img,
.client-item img {
  height: 36px;
  width: auto;
}

.client-name {
  min-width: max-content;
  padding: 0 22px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.contact-hero {
  background: var(--vz-black);
  color: #fff;
  padding: 72px 0 48px;
}

.contact-hero p {
  color: #c8cad1;
  max-width: 640px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: -32px;
  padding-bottom: 80px;
}

.contact-side {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--vz-line);
  box-shadow: var(--vz-shadow);
}

.contact-side .row {
  padding: 14px 0;
  border-bottom: 1px solid var(--vz-line);
}

.contact-side .row:last-child {
  border-bottom: 0;
}

.contact-side a {
  color: var(--vz-orange-dark);
  font-weight: 700;
}

.contact-form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--vz-line);
  box-shadow: var(--vz-shadow);
}

.map-embed {
  margin-top: 16px;
  border: 0;
  width: 100%;
  height: 180px;
  border-radius: 16px;
}

@media (max-width: 980px) {
  .trust-plus,
  .service-stage,
  .why-slide,
  .steps-5,
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    min-height: 0;
    width: 100%;
    padding: 22px 20px;
  }

  .process-rail {
    display: none;
  }

  .work-slide {
    min-width: 88%;
  }

  .hero-cinema {
    min-height: 640px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}
