/* ============================================
   Landing Page — matches landing page.jpeg
   ============================================ */

/* ---- Hero ---- */
.page-home .hero {
  position: relative;
}

.hero__side-text {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.hero__tagline:hover { color: var(--purple); }

.hero__tagline-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-home .hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.05;
}

.page-home .hero__desc {
  max-width: 440px;
  font-size: clamp(0.95rem, 1.1vw, 1.5rem);
}

.page-home .hero__actions {
  gap: clamp(24px, 4vw, 48px);
}

/* Purple primary CTA — global (also in styles.css) */

/* Play showreel — black outline per design */
.page-home .play-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  background: transparent;
  box-shadow: none;
  animation: none;
}

.page-home .btn--showreel:hover {
  color: var(--black);
}

.page-home .btn--showreel:hover .play-icon {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: none;
  box-shadow: none;
}

/* Hero badge */
.hero__visual {
  position: relative;
}

.hero__badge {
  position: absolute;
  bottom: -1%;
  right: 67px;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hero__badge-ring {
  position: absolute;
  inset: 0;
  animation: badgeSpin 20s linear infinite;
}

.hero__badge-logo {
  width: 150px;
  height: auto;
  border-radius: 4px;
}

@keyframes badgeSpin {
  to { transform: rotate(360deg); }
}

/* ---- Services Dark ---- */
.services--dark {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 10vw, 120px) 0;
}

.services-dark__header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.services-dark__header .section-title {
  color: var(--white);
}

.services-dark__aside {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 28px;
}

.services-dark__aside p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 350px;
  text-align: left;
  margin: 0;
}

.btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 5px 5px 5px 24px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.btn--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(98, 0, 238, 0.15);
}

.btn--outline-light .btn__arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  transition: transform var(--transition), border-color var(--transition);
}

.btn--outline-light:hover .btn__arrow {
  transform: translateX(3px);
  border-color: rgba(255, 255, 255, 0.5);
}

.services-dark__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.service-dark {
  padding: clamp(0px, 3vw, 0px) clamp(22px, 2.5vw, 11px);
  border-right: 5px solid rgba(98, 0, 238, 0.22);
}

.service-dark:last-child {
  border-right: none;
}

.service-dark__icon {
  color: var(--purple);
  margin-bottom: 24px;
  filter: drop-shadow(0 0 8px rgba(98, 0, 238, 0.45));
}

.service-dark h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 12px;
  color: var(--white);
}

.service-dark p {
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: left;
}

/* ---- Work Landing ---- */
.work--landing {
  background: var(--white);
  padding: clamp(80px, 10vw, 120px) 0;
}

.work--landing .work__header {
  align-items: flex-start;
}

.work-view-all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  flex-shrink: 0;
  transition: color var(--transition);
}

.work-view-all:hover {
  color: var(--purple);
}

.work-view-all__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: border-color var(--transition), color var(--transition);
}

.work-view-all:hover .work-view-all__icon {
  border-color: var(--purple);
  color: var(--purple);
}

.work-slider {
  position: relative;
  overflow: hidden;
  margin-top: clamp(32px, 4vw, 48px);
  width: 100%;
  --work-gap: clamp(16px, 2vw, 24px);
  --work-visible: 4;
}

.work-slider__track {
  display: flex;
  gap: var(--work-gap);
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

.work__nav {
  position: absolute;
  right: -15px;
  top: 71%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.work-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}

.work-nav-btn--prev {
  border: 1px solid var(--gray-300);
}

.work-nav-btn--next {
  border: none;
}

.work-nav-btn:hover:not(:disabled):not(.is-disabled) {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.work-nav-btn:disabled,
.work-nav-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.work-card {
  flex: 0 0 auto;
  min-width: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 5/4;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--white);
}

.work-card__info span {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 4px;
}

.work-card__info h3 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 2px;
}

/* ---- Stats Landing ---- */
.stats--landing {
  background: var(--black);
  padding: clamp(64px, 8vw, 96px) 0;
}

.stats-landing__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.stats--landing .stats__grid {
  flex: 1;
  min-width: 0;
}

.stats-trusted {
  max-width: 280px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.stats-trusted__arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
  /* position: absolute;
  right: 4%; */
}

.stats-trusted:hover .stats-trusted__arrow {
  background: var(--purple);
  border-color: var(--purple);
}

/* ---- Process Landing ---- */
.process--landing {
  padding: clamp(80px, 10vw, 80px) 0;
  background: var(--white);
}

.process-landing__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.process-landing__left .section-title {
  margin-bottom: 32px;
}

.btn--outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 5px 5px 5px 24px;
  border: 1.5px solid var(--black);
  border-radius: var(--radius);
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.btn--outline-dark:hover {
  background: var(--purple);
  color: var(--white);
  border: var(--white);
}

.btn--outline-dark .btn__arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgb(5, 5, 5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  transition: transform var(--transition), border-color var(--transition);
}

.btn--outline-dark:hover .btn__arrow {
  transform: translateX(3px);
  border-color: rgba(255, 255, 255, 0.5);
}

.process-landing__timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-timeline__step {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.process-timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  background: var(--white);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.process-timeline__step.is-visible .process-timeline__num {
  animation: processStepPulse 4s ease-in-out infinite;
}

.process-timeline__step:nth-child(1).is-visible .process-timeline__num { animation-delay: 0s; }
.process-timeline__step:nth-child(3).is-visible .process-timeline__num { animation-delay: 1s; }
.process-timeline__step:nth-child(5).is-visible .process-timeline__num { animation-delay: 2s; }
.process-timeline__step:nth-child(7).is-visible .process-timeline__num { animation-delay: 3s; }

@keyframes processStepPulse {
  0%, 18%, 100% {
    transform: scale(1);
    border-color: var(--gray-300);
    box-shadow: 0 0 0 0 rgba(98, 0, 238, 0);
    color: var(--black);
  }
  8%, 14% {
    transform: scale(1.08);
    border-color: var(--purple);
    box-shadow: 0 0 0 8px rgba(98, 0, 238, 0.1);
    color: var(--purple);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-timeline__step.is-visible .process-timeline__num {
    animation: none;
  }
}

.process-timeline__link {
  flex: 1;
  align-self: flex-start;
  position: relative;
  min-width: 20px;
  height: 56px;
}

.process-timeline__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-300);
  transform: translateY(-50%);
}

.process-timeline__link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--purple);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.process-timeline__step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.process-timeline__step p {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* ---- Brands Landing ---- */
.brands--landing {
  padding: clamp(48px, 6vw, 72px) 0;
  border: none;
  background: var(--white);
  border-top: 2px solid var(--gray-300);
}

.brands--landing .brands__logos {
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.brands--landing .brand-logo {
  height: clamp(32px, 4vw, 48px);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .services-dark__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-dark:nth-child(3n) {
    border-right: none;
  }

  .service-dark:nth-child(-n+3) {
    border-bottom: 1px solid rgba(98, 0, 238, 0.22);
  }

  .work--landing .work-slider {
    --work-visible: 3;
  }
}

@media (max-width: 1024px) {
  .services-dark__header {
    grid-template-columns: 1fr;
  }

  .process-landing__inner {
    grid-template-columns: 1fr;
  }

  .process-landing__timeline {
    flex-wrap: wrap;
    row-gap: 32px;
  }

  .process-timeline__link {
    display: none;
  }

  .process-timeline__step {
    flex: 0 0 50%;
  }

  .hero__side-text { display: none; }
}

@media (max-width: 768px) {
  .services-dark__aside {
    align-items: flex-start;
  }

  .services-dark__aside p {
    text-align: left;
    max-width: 100%;
  }

  .services-dark__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-dark {
    border-right: 1px solid rgba(98, 0, 238, 0.22);
    border-bottom: 1px solid rgba(98, 0, 238, 0.22);
  }

  .service-dark:nth-child(2n) {
    border-right: none;
  }

  .service-dark:nth-child(3n) {
    border-right: 1px solid rgba(98, 0, 238, 0.22);
  }

  .service-dark:nth-child(-n+3) {
    border-bottom: 1px solid rgba(98, 0, 238, 0.22);
  }

  .stats-landing__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .work--landing .work-slider {
    --work-visible: 1;
  }

  .work__nav {
    right: 8px;
  }

  .process-landing__timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-timeline__step {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
  }

  .hero__badge {
    width: 80px;
    height: 80px;
    right: 0;
  }
}

@media (max-width: 480px) {
  .services-dark__grid {
    grid-template-columns: 1fr;
  }

  .service-dark {
    border-right: none !important;
  }

  .service-dark:not(:last-child) {
    border-bottom: 1px solid rgba(98, 0, 238, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge-ring { animation: none; }
}
