/* ========================================
   VFX HERO SECTION STYLES
   ======================================== */

/* Root Variables */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
}


/* VFX HERO – iOS-safe height + header-safe spacing */
.vfx-hero-section{
  /* Set this to your real fixed header height (mobile) */
  --vfx-header-h: 76px; /* adjust if your navbar is taller */
  --vfx-safe-top: env(safe-area-inset-top, 0px);

  /* iOS-safe viewport height */
  min-height: 100svh; /* stable viewport */
  height: auto;

  position: relative;
  overflow: hidden;
  background: var(--ink);

  /* ✅ This is the real fix: push content below header + notch */
  padding-top: calc(var(--vfx-header-h) + var(--vfx-safe-top) + 14px);
  padding-bottom: 70px;

  box-sizing: border-box;

  /* ✅ IMPORTANT: don’t vertically center on mobile */
  display: block;
}


/* Background */
.vfx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vfx-hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f0f 0%, var(--ink) 50%, #1a1a1a 100%);
  position: relative;
}

/* Animated diagonal lines overlay */
.vfx-hero-bg-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(45deg, transparent 45%, rgba(229, 9, 20, 0.03) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(229, 9, 20, 0.02) 50%, transparent 55%);
  background-size: 100px 100px;
  animation: vfx-hero-diagonal-move 20s linear infinite;
}

@keyframes vfx-hero-diagonal-move {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 100px 100px, -100px -100px;
  }
}

.vfx-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--ink) 100%);
  z-index: 2;
}

/* Floating Particles */
.vfx-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.vfx-hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--glow);
  opacity: 0.6;
}

.vfx-hero-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation: vfx-hero-float 8s ease-in-out infinite;
}

.vfx-hero-particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation: vfx-hero-float 10s ease-in-out infinite 2s;
}

.vfx-hero-particle:nth-child(3) {
  top: 40%;
  left: 30%;
  animation: vfx-hero-float 12s ease-in-out infinite 4s;
}

.vfx-hero-particle:nth-child(4) {
  top: 70%;
  left: 60%;
  animation: vfx-hero-float 9s ease-in-out infinite 1s;
}

.vfx-hero-particle:nth-child(5) {
  top: 30%;
  left: 90%;
  animation: vfx-hero-float 11s ease-in-out infinite 3s;
}

@keyframes vfx-hero-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(50px, -50px) scale(1.5);
    opacity: 1;
  }
}

/* Container */
.vfx-hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  height: auto;
}

/* Breadcrumb */
.vfx-hero-breadcrumb {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: vfx-hero-fade-down 0.8s ease forwards 0.2s;
}

@keyframes vfx-hero-fade-down {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vfx-hero-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.vfx-hero-breadcrumb-item {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.vfx-hero-breadcrumb-link {
  color: rgba(245, 245, 241, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.vfx-hero-breadcrumb-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.vfx-hero-breadcrumb-link:hover {
  color: var(--red);
}

.vfx-hero-breadcrumb-link:hover::after {
  transform: scaleX(1);
}

.vfx-hero-breadcrumb-separator {
  color: rgba(245, 245, 241, 0.3);
}

.vfx-hero-breadcrumb-current span {
  color: var(--ice);
}

/* Content */
.vfx-hero-content {
  margin-bottom: 4rem;
}

/* Badge */
.vfx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 3rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: vfx-hero-badge-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}

@keyframes vfx-hero-badge-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vfx-hero-badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vfx-hero-badge-float 3s ease-in-out infinite;
}

@keyframes vfx-hero-badge-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

.vfx-hero-badge-icon svg {
  width: 100%;
  height: 100%;
  color: var(--red);
  filter: drop-shadow(0 0 8px var(--glow));
}

.vfx-hero-badge-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
}

/* Title */
.vfx-hero-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ice);
  margin: 0 0 1.5rem 0;
  line-height: 1;
  opacity: 0;
  animation: vfx-hero-title-in 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.4s;
}

@keyframes vfx-hero-title-in {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.vfx-hero-title-line {
  display: inline-block;
  background: linear-gradient(135deg, var(--ice) 0%, rgba(245, 245, 241, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.vfx-hero-title-line::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
}

/* Subtitle */
.vfx-hero-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(245, 245, 241, 0.8);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 0 2.5rem 0;
  opacity: 0;
  animation: vfx-hero-fade-down 0.8s ease forwards 0.6s;
}

/* CTAs */
.vfx-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: vfx-hero-fade-down 0.8s ease forwards 0.8s;
}

.vfx-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vfx-hero-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.vfx-hero-cta-primary {
  background: var(--red);
  color: var(--ice);
  box-shadow: 0 4px 20px var(--glow);
}

.vfx-hero-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vfx-hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--glow);
}

.vfx-hero-cta-primary:hover::before {
  opacity: 1;
}

.vfx-hero-cta-primary:hover svg {
  transform: translateX(4px);
}

.vfx-hero-cta-secondary {
  background: transparent;
  color: var(--ice);
  border: 2px solid rgba(245, 245, 241, 0.2);
  backdrop-filter: blur(10px);
}

.vfx-hero-cta-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.2);
}

.vfx-hero-cta-secondary:hover svg {
  transform: translateX(4px);
}

.vfx-hero-cta span {
  position: relative;
  z-index: 1;
}

/* Stats Bar */
.vfx-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(245, 245, 241, 0.03) 0%, rgba(245, 245, 241, 0.01) 100%);
  border: 1px solid rgba(245, 245, 241, 0.08);
  border-radius: 1.25rem;
  backdrop-filter: blur(20px);
  opacity: 0;
  animation: vfx-hero-fade-down 0.8s ease forwards 1s;
}

.vfx-hero-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 150px;
}

.vfx-hero-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(229, 9, 20, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vfx-hero-stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.vfx-hero-stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vfx-hero-stat-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  line-height: 1;
}

.vfx-hero-stat-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245, 245, 241, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vfx-hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(245, 245, 241, 0.1);
  flex-shrink: 0;
}

/* Scroll Indicator */
.vfx-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: vfx-hero-fade-down 0.8s ease forwards 1.2s;
}

.vfx-hero-scroll-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 241, 0.5);
}

.vfx-hero-scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(245, 245, 241, 0.3);
  border-radius: 12px;
  position: relative;
}

.vfx-hero-scroll-line {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: var(--red);
  border-radius: 1px;
  animation: vfx-hero-scroll-anim 2s ease-in-out infinite;
}

@keyframes vfx-hero-scroll-anim {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vfx-hero-section {
    --vfx-hero-min-height: 550px;
  }

  .vfx-hero-stats {
    gap: 1.5rem;
  }

  .vfx-hero-stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .vfx-hero-section {
    --vfx-hero-min-height: 500px;
  }

  .vfx-hero-container {
    padding: 0 1.5rem;
  }

  .vfx-hero-content {
    margin-bottom: 3rem;
  }

  .vfx-hero-badge {
    padding: 0.625rem 1.25rem;
  }

  .vfx-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .vfx-hero-cta {
    width: 100%;
    justify-content: center;
  }

  .vfx-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .vfx-hero-stat {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vfx-hero-container {
    padding: 0 1rem;
  }

  .vfx-hero-breadcrumb {
    margin-bottom: 1.5rem;
  }

  .vfx-hero-stats {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .vfx-hero-section{
    --vfx-header-h: 82px; /* mobile header usually taller */
    padding-top: calc(var(--vfx-header-h) + env(safe-area-inset-top, 0px) + 18px);
  }
}

@media (max-width: 480px) {
  .vfx-hero-section{
    --vfx-header-h: 86px;
  }
}
/* ========================================
   VFX SERVICE DESCRIPTION STYLES
   ======================================== */

/* Root Variables */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
}

/* Section-Specific Variables */
.vfx-desc-section {
  --vfx-desc-spacing: clamp(4rem, 8vw, 8rem);
  --vfx-desc-gap: clamp(3rem, 6vw, 6rem);
}

/* Main Section */
.vfx-desc-section {
  background: var(--ink);
  padding: var(--vfx-desc-spacing) 0;
  position: relative;
  overflow: hidden;
}

.vfx-desc-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.05) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.vfx-desc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Two Column Grid */
.vfx-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vfx-desc-gap);
  align-items: center;
}

/* Left Column: Content */
.vfx-desc-content {
  opacity: 0;
  transform: translateX(-40px);
  animation: vfx-desc-slide-in 0.8s ease forwards 0.2s;
}

@keyframes vfx-desc-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Label */
.vfx-desc-label {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229, 9, 20, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

/* Heading */
.vfx-desc-heading {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

.vfx-desc-gradient {
  background: linear-gradient(135deg, var(--red) 0%, #ff4d6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.vfx-desc-gradient::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

/* Text Content */
.vfx-desc-text {
  margin-bottom: 3rem;
}

.vfx-desc-text p {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.8);
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.vfx-desc-text p:last-child {
  margin-bottom: 0;
}

.vfx-desc-highlight {
  color: var(--ice);
  font-weight: 600;
  position: relative;
  display: inline;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, rgba(229, 9, 20, 0.05) 100%);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

/* Benefits Grid */
.vfx-desc-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.vfx-desc-benefit-card {
  background: linear-gradient(135deg, rgba(245, 245, 241, 0.03) 0%, rgba(245, 245, 241, 0.01) 100%);
  border: 1px solid rgba(245, 245, 241, 0.08);
  border-radius: 1rem;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: vfx-desc-card-in 0.6s ease forwards;
}

.vfx-desc-benefit-card:nth-child(1) { animation-delay: 0.4s; }
.vfx-desc-benefit-card:nth-child(2) { animation-delay: 0.5s; }
.vfx-desc-benefit-card:nth-child(3) { animation-delay: 0.6s; }
.vfx-desc-benefit-card:nth-child(4) { animation-delay: 0.7s; }

@keyframes vfx-desc-card-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vfx-desc-benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, rgba(229, 9, 20, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vfx-desc-benefit-card:hover {
  border-color: rgba(229, 9, 20, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.15);
}

.vfx-desc-benefit-card:hover::before {
  opacity: 1;
}

/* Benefit Icon */
.vfx-desc-benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(229, 9, 20, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vfx-desc-benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--red);
  transition: transform 0.4s ease;
}

.vfx-desc-benefit-card:hover .vfx-desc-benefit-icon {
  background: var(--red);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px var(--glow);
}

.vfx-desc-benefit-card:hover .vfx-desc-benefit-icon svg {
  color: var(--ice);
  transform: scale(1.15);
}

/* Benefit Title */
.vfx-desc-benefit-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ice);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.vfx-desc-benefit-card:hover .vfx-desc-benefit-title {
  color: var(--red);
}

/* Benefit Text */
.vfx-desc-benefit-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.7);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Right Column: Visual */
.vfx-desc-visual {
  opacity: 0;
  transform: translateX(40px);
  animation: vfx-desc-slide-in-right 0.8s ease forwards 0.3s;
}

@keyframes vfx-desc-slide-in-right {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.vfx-desc-visual-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

/* Visual Placeholder */
.vfx-desc-visual-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(245, 245, 241, 0.08);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: hidden;
}

.vfx-desc-visual-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(229, 9, 20, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(229, 9, 20, 0.1) 0%, transparent 40%);
  animation: vfx-desc-glow-pulse 4s ease-in-out infinite;
}

@keyframes vfx-desc-glow-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.vfx-desc-visual-placeholder:hover {
  border-color: rgba(229, 9, 20, 0.3);
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(229, 9, 20, 0.2);
}

.vfx-desc-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
  z-index: 1;
}

.vfx-desc-visual-icon {
  width: 80px;
  height: 80px;
  background: rgba(229, 9, 20, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vfx-desc-visual-icon svg {
  width: 36px;
  height: 36px;
  color: var(--red);
  margin-left: 4px;
  transition: transform 0.4s ease;
}

.vfx-desc-visual-placeholder:hover .vfx-desc-visual-icon {
  background: var(--red);
  transform: scale(1.15);
  box-shadow: 0 8px 32px var(--glow);
}

.vfx-desc-visual-placeholder:hover .vfx-desc-visual-icon svg {
  color: var(--ice);
  transform: scale(1.1);
}

.vfx-desc-visual-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ice);
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.vfx-desc-visual-placeholder:hover .vfx-desc-visual-label {
  color: var(--red);
}

/* Floating Stats */
.vfx-desc-floating-stat {
  position: absolute;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 3;
  animation: vfx-desc-float 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(229, 9, 20, 0.2);
}

.vfx-desc-floating-stat-1 {
  top: 10%;
  right: -1.5rem;
  animation-delay: 0s;
}

.vfx-desc-floating-stat-2 {
  bottom: 30%;
  left: -1.5rem;
  animation-delay: 2s;
}

.vfx-desc-floating-stat-3 {
  bottom: 10%;
  right: -1rem;
  animation-delay: 4s;
}

@keyframes vfx-desc-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.vfx-desc-floating-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.vfx-desc-floating-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(245, 245, 241, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vfx-desc-grid {
    gap: 4rem;
  }

  .vfx-desc-benefits {
    grid-template-columns: 1fr;
  }

  .vfx-desc-floating-stat {
    padding: 0.875rem 1.25rem;
  }

  .vfx-desc-floating-stat-1 {
    right: -1rem;
  }

  .vfx-desc-floating-stat-2 {
    left: -1rem;
  }
}

@media (max-width: 768px) {
  .vfx-desc-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vfx-desc-content {
    transform: translateX(0);
  }

  .vfx-desc-visual {
    transform: translateX(0);
  }

  .vfx-desc-text p {
    font-size: 1rem;
  }

  .vfx-desc-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vfx-desc-benefit-card {
    padding: 1.5rem;
  }

  .vfx-desc-floating-stat {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    display: inline-flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 1rem;
    animation: none;
  }

  .vfx-desc-visual-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .vfx-desc-container {
    padding: 0 1rem;
  }

  .vfx-desc-benefit-icon {
    width: 48px;
    height: 48px;
  }

  .vfx-desc-benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .vfx-desc-visual-icon {
    width: 64px;
    height: 64px;
  }

  .vfx-desc-visual-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* ========================================
   VFX SUB-SERVICES LIST STYLES
   ======================================== */

/* Root Variables */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
}

/* Section-Specific Variables */
.vfx-sublist-section {
  --vfx-sublist-spacing: clamp(4rem, 8vw, 8rem);
}

/* Main Section */
.vfx-sublist-section {
  background: linear-gradient(180deg, var(--ink) 0%, #0f0f0f 100%);
  padding: var(--vfx-sublist-spacing) 0;
  position: relative;
  overflow: hidden;
}

.vfx-sublist-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.04) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

.vfx-sublist-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header */
.vfx-sublist-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  opacity: 0;
  transform: translateY(30px);
  animation: vfx-sublist-fade-in 0.8s ease forwards;
}

@keyframes vfx-sublist-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vfx-sublist-label {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229, 9, 20, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.vfx-sublist-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0 0 1rem 0;
  line-height: 1.1;
}

.vfx-sublist-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: rgba(245, 245, 241, 0.7);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Services List Wrapper */
.vfx-sublist-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* List Item */
.vfx-sublist-item {
  display: grid;
  grid-template-columns: 80px 80px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(90deg, rgba(245, 245, 241, 0.02) 0%, transparent 100%);
  border-bottom: 1px solid rgba(245, 245, 241, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-30px);
  animation: vfx-sublist-item-in 0.6s ease forwards;
}

.vfx-sublist-item:nth-child(1) { animation-delay: 0.1s; }
.vfx-sublist-item:nth-child(2) { animation-delay: 0.15s; }
.vfx-sublist-item:nth-child(3) { animation-delay: 0.2s; }
.vfx-sublist-item:nth-child(4) { animation-delay: 0.25s; }
.vfx-sublist-item:nth-child(5) { animation-delay: 0.3s; }
.vfx-sublist-item:nth-child(6) { animation-delay: 0.35s; }
.vfx-sublist-item:nth-child(7) { animation-delay: 0.4s; }
.vfx-sublist-item:nth-child(8) { animation-delay: 0.45s; }
.vfx-sublist-item:nth-child(9) { animation-delay: 0.5s; }
.vfx-sublist-item:nth-child(10) { animation-delay: 0.55s; }
.vfx-sublist-item:nth-child(11) { animation-delay: 0.6s; }
.vfx-sublist-item:nth-child(12) { animation-delay: 0.65s; }

@keyframes vfx-sublist-item-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.vfx-sublist-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-sublist-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vfx-sublist-item:hover {
  background: linear-gradient(90deg, rgba(245, 245, 241, 0.04) 0%, transparent 100%);
  border-color: rgba(229, 9, 20, 0.2);
  transform: translateX(8px);
}

.vfx-sublist-item:hover::before {
  transform: scaleY(1);
}

.vfx-sublist-item:hover::after {
  opacity: 1;
}

/* Item Number */
.vfx-sublist-item-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(229, 9, 20, 0.3);
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.vfx-sublist-item:hover .vfx-sublist-item-number {
  color: var(--red);
  transform: scale(1.1);
}

/* Item Icon */
.vfx-sublist-item-icon {
  width: 56px;
  height: 56px;
  background: rgba(229, 9, 20, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vfx-sublist-item-icon svg {
  width: 28px;
  height: 28px;
  color: var(--red);
  transition: all 0.4s ease;
}

.vfx-sublist-item:hover .vfx-sublist-item-icon {
  background: var(--red);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px var(--glow);
}

.vfx-sublist-item:hover .vfx-sublist-item-icon svg {
  color: var(--ice);
  transform: scale(1.1);
}

/* Item Content */
.vfx-sublist-item-content {
  position: relative;
  z-index: 1;
}

.vfx-sublist-item-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ice);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.vfx-sublist-item:hover .vfx-sublist-item-title {
  color: var(--red);
}

.vfx-sublist-item-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.7);
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vfx-sublist-item {
    grid-template-columns: 70px 70px 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .vfx-sublist-item-number {
    font-size: 2rem;
  }

  .vfx-sublist-item-icon {
    width: 52px;
    height: 52px;
  }

  .vfx-sublist-item-icon svg {
    width: 26px;
    height: 26px;
  }

  .vfx-sublist-item-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .vfx-sublist-item {
    grid-template-columns: 60px 60px 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .vfx-sublist-item-number {
    font-size: 1.75rem;
  }

  .vfx-sublist-item-icon {
    width: 48px;
    height: 48px;
  }

  .vfx-sublist-item-icon svg {
    width: 24px;
    height: 24px;
  }

  .vfx-sublist-item-title {
    font-size: 1.125rem;
  }

  .vfx-sublist-item-desc {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .vfx-sublist-container {
    padding: 0 1rem;
  }

  .vfx-sublist-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }

  .vfx-sublist-item-number {
    font-size: 1.5rem;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    opacity: 0.3;
  }

  .vfx-sublist-item-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.75rem;
  }

  .vfx-sublist-item-icon svg {
    width: 28px;
    height: 28px;
  }

  .vfx-sublist-item-content {
    grid-column: 1;
  }

  .vfx-sublist-item-title {
    font-size: 1.125rem;
  }
}

/* ========================================
   VFX PORTFOLIO SHOWCASE STYLES
   ======================================== */

/* Root Variables */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
}

/* Section-Specific Variables */
.vfx-portfolio-section {
  --vfx-portfolio-spacing: clamp(4rem, 8vw, 8rem);
  --vfx-portfolio-gap: clamp(1.25rem, 2vw, 1.5rem);
}

/* Main Section */
.vfx-portfolio-section {
  background: var(--ink);
  padding: var(--vfx-portfolio-spacing) 0;
  position: relative;
  overflow: hidden;
}

.vfx-portfolio-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header */
.vfx-portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: vfx-portfolio-fade-in 0.8s ease forwards;
}

@keyframes vfx-portfolio-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vfx-portfolio-label {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229, 9, 20, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.vfx-portfolio-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0 0 1rem 0;
  line-height: 1.1;
}

.vfx-portfolio-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: rgba(245, 245, 241, 0.7);
  line-height: 1.6;
}

/* Filter Tabs */
.vfx-portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: vfx-portfolio-fade-in 0.8s ease forwards 0.2s;
}

.vfx-portfolio-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(245, 245, 241, 0.03);
  border: 1px solid rgba(245, 245, 241, 0.08);
  border-radius: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(245, 245, 241, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vfx-portfolio-filter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, rgba(229, 9, 20, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vfx-portfolio-filter:hover {
  border-color: rgba(229, 9, 20, 0.3);
  color: var(--ice);
  transform: translateY(-2px);
}

.vfx-portfolio-filter:hover::before {
  opacity: 1;
}

.vfx-portfolio-filter-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--ice);
  box-shadow: 0 4px 20px var(--glow);
}

.vfx-portfolio-filter-active::before {
  display: none;
}

.vfx-portfolio-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Portfolio Grid */
.vfx-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: var(--vfx-portfolio-gap);
  grid-auto-flow: dense;
}

/* Portfolio Item */
.vfx-portfolio-item {
  opacity: 0;
  transform: scale(0.9);
  animation: vfx-portfolio-item-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vfx-portfolio-item.vfx-portfolio-item-hidden {
  display: none;
}

.vfx-portfolio-item.vfx-portfolio-item-large {
  grid-column: span 2;
  grid-row: span 1;
}

.vfx-portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.vfx-portfolio-item:nth-child(2) { animation-delay: 0.15s; }
.vfx-portfolio-item:nth-child(3) { animation-delay: 0.2s; }
.vfx-portfolio-item:nth-child(4) { animation-delay: 0.25s; }
.vfx-portfolio-item:nth-child(5) { animation-delay: 0.3s; }
.vfx-portfolio-item:nth-child(6) { animation-delay: 0.35s; }
.vfx-portfolio-item:nth-child(7) { animation-delay: 0.4s; }
.vfx-portfolio-item:nth-child(8) { animation-delay: 0.45s; }
.vfx-portfolio-item:nth-child(9) { animation-delay: 0.5s; }
.vfx-portfolio-item:nth-child(10) { animation-delay: 0.55s; }
.vfx-portfolio-item:nth-child(11) { animation-delay: 0.6s; }
.vfx-portfolio-item:nth-child(12) { animation-delay: 0.65s; }

@keyframes vfx-portfolio-item-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.vfx-portfolio-item-inner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

/* Thumbnail */
.vfx-portfolio-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f0f0f;
}

.vfx-portfolio-item-large .vfx-portfolio-thumbnail {
  aspect-ratio: 21 / 9;
}

.vfx-portfolio-image {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-portfolio-item:hover .vfx-portfolio-image {
  transform: scale(1.1);
}

/* Overlay */
.vfx-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vfx-portfolio-item:hover .vfx-portfolio-overlay {
  opacity: 1;
}

/* Play Button */
.vfx-portfolio-play {
  width: 72px;
  height: 72px;
  background: rgba(229, 9, 20, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice);
  box-shadow: 0 8px 32px var(--glow);
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vfx-portfolio-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.vfx-portfolio-item:hover .vfx-portfolio-play {
  transform: scale(1);
}

/* Info */
.vfx-portfolio-info {
  text-align: center;
  padding: 0 2rem;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.vfx-portfolio-item:hover .vfx-portfolio-info {
  transform: translateY(0);
}

.vfx-portfolio-tag {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229, 9, 20, 0.15);
  padding: 0.375rem 0.875rem;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}

.vfx-portfolio-project-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ice);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.vfx-portfolio-project-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Badge */
.vfx-portfolio-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(229, 9, 20, 0.9);
  backdrop-filter: blur(10px);
  color: var(--ice);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  z-index: 2;
  box-shadow: 0 4px 12px var(--glow);
}

/* Lightbox */
.vfx-portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vfx-portfolio-lightbox.vfx-portfolio-lightbox-active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.vfx-portfolio-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
}

.vfx-portfolio-lightbox-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  max-height: 90vh;
  background: linear-gradient(135deg, rgba(245, 245, 241, 0.05) 0%, rgba(245, 245, 241, 0.02) 100%);
  border: 1px solid rgba(245, 245, 241, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  overflow-y: auto;
  animation: vfx-portfolio-lightbox-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes vfx-portfolio-lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.vfx-portfolio-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 11;
}

.vfx-portfolio-lightbox-close svg {
  width: 24px;
  height: 24px;
}

.vfx-portfolio-lightbox-close:hover {
  background: var(--red);
  color: var(--ice);
  transform: rotate(90deg);
}

/* Comparison Slider */
.vfx-portfolio-comparison {
  border-radius: 1rem;
  overflow: hidden;
}

.vfx-portfolio-comparison-container {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f0f0f;
}

.vfx-portfolio-comparison-after,
.vfx-portfolio-comparison-before {
  position: absolute;
  inset: 0;
}

.vfx-portfolio-comparison-before {
  width: 50%;
  overflow: hidden;
}

.vfx-portfolio-comparison-image {
  width: 100%;
  height: 100%;
}

.vfx-portfolio-comparison-before .vfx-portfolio-comparison-image {
  width: 200%;
}

.vfx-portfolio-comparison-label {
  position: absolute;
  top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  color: var(--ice);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 1.5rem;
  z-index: 2;
}

.vfx-portfolio-comparison-label-before {
  left: 1rem;
}

.vfx-portfolio-comparison-label-after {
  right: 1rem;
}

.vfx-portfolio-comparison-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--red);
  cursor: ew-resize;
  z-index: 3;
  transform: translateX(-50%);
}

.vfx-portfolio-comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--red);
  border: 3px solid var(--ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 20px var(--glow);
}

.vfx-portfolio-comparison-handle svg {
  width: 16px;
  height: 16px;
  color: var(--ice);
}

/* Lightbox Details */
.vfx-portfolio-lightbox-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vfx-portfolio-lightbox-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229, 9, 20, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
}

.vfx-portfolio-lightbox-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0;
  line-height: 1.2;
}

.vfx-portfolio-lightbox-description {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.8);
  line-height: 1.7;
  margin: 0;
}

.vfx-portfolio-lightbox-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(245, 245, 241, 0.03);
  border: 1px solid rgba(245, 245, 241, 0.08);
  border-radius: 1rem;
}

.vfx-portfolio-lightbox-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vfx-portfolio-lightbox-meta-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(245, 245, 241, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vfx-portfolio-lightbox-meta-value {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ice);
}

/* Navigation */
.vfx-portfolio-lightbox-nav {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 11;
}

.vfx-portfolio-lightbox-prev,
.vfx-portfolio-lightbox-next {
  width: 48px;
  height: 48px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  cursor: pointer;
  transition: all 0.3s ease;
}

.vfx-portfolio-lightbox-prev svg,
.vfx-portfolio-lightbox-next svg {
  width: 20px;
  height: 20px;
}

.vfx-portfolio-lightbox-prev:hover,
.vfx-portfolio-lightbox-next:hover {
  background: var(--red);
  color: var(--ice);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
  .vfx-portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  .vfx-portfolio-item-large {
    grid-column: span 1;
  }

  .vfx-portfolio-lightbox-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .vfx-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .vfx-portfolio-filters {
    gap: 0.5rem;
  }

  .vfx-portfolio-filter {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .vfx-portfolio-lightbox-content {
    width: 95%;
    padding: 1.5rem;
  }

  .vfx-portfolio-lightbox-nav {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}

@media (max-width: 480px) {
  .vfx-portfolio-container {
    padding: 0 1rem;
  }

  .vfx-portfolio-play {
    width: 56px;
    height: 56px;
  }

  .vfx-portfolio-play svg {
    width: 24px;
    height: 24px;
  }
}

/* Paging hide */
.vfx-portfolio-item.vfx-portfolio-paged-hidden{
  display: none !important;
}

/* Show more/less */
.vfx-portfolio-controls{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top: 28px;
}

.vfx-show-more, .vfx-show-less{
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245,245,241,0.12);
  background: rgba(245,245,241,0.06);
  color: var(--ice);
  cursor:pointer;
  transition: all .25s ease;
}

.vfx-show-more:hover, .vfx-show-less:hover{
  background: rgba(245,245,241,0.10);
  transform: translateY(-1px);
}

/* Grid */
.vfx-portfolio-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.vfx-portfolio-item{
  position:relative;
  border:none;
  padding:0;
  border-radius: 16px;
  overflow:hidden;
  cursor:pointer;
  background: rgba(255,255,255,0.02);
  outline: none;
}

.vfx-portfolio-img{
  width:100%;
  height:100%;
  display:block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s ease;
}

.vfx-portfolio-item:hover .vfx-portfolio-img{
  transform: scale(1.06);
}

.vfx-portfolio-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.90) 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:6px;
  padding: 16px;
  opacity:0;
  transition: opacity .25s ease;
}

.vfx-portfolio-item:hover .vfx-portfolio-overlay{
  opacity:1;
}

.vfx-portfolio-project-title{
  margin:0;
  color: var(--ice);
  font-size: 1.05rem;
  font-weight: 700;
}

.vfx-portfolio-project-desc{
  margin:0;
  color: rgba(245,245,241,.75);
  font-size: .9rem;
  line-height:1.3;
}

.vfx-portfolio-view{
  margin-top: 10px;
  display:inline-flex;
  align-self:flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(229, 9, 20, .9);
  color: var(--ice);
  font-size: .85rem;
  font-weight: 600;
}

/* Paging */
.vfx-paged-hidden{ display:none !important; }

.vfx-portfolio-controls{
  display:flex;
  justify-content:center;
  gap: 12px;
  margin-top: 28px;
}

.vfx-show-more, .vfx-show-less{
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245,245,241,0.12);
  background: rgba(245,245,241,0.06);
  color: var(--ice);
  cursor:pointer;
  transition: all .25s ease;
}

.vfx-show-more:hover, .vfx-show-less:hover{
  background: rgba(245,245,241,0.10);
  transform: translateY(-1px);
}

/* Lightbox */
.vfx-lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.vfx-lightbox.vfx-active{ display:flex; }

.vfx-lightbox-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
}

.vfx-lightbox-content{
  position:relative;
  width:min(1100px, 92vw);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,245,241,0.10);
  border-radius: 18px;
  padding: 18px;
  z-index:2;
}

.vfx-lightbox-close{
  position:absolute;
  top: 14px;
  right: 14px;
  width:44px;
  height:44px;
  border-radius:50%;
  border: 1px solid rgba(229,9,20,.35);
  background: rgba(229,9,20,.12);
  color: var(--red);
  cursor:pointer;
}

.vfx-lightbox-media img{
  width:100%;
  height:auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 14px;
  background: #0f0f0f;
}

.vfx-lightbox-details{
  margin-top: 14px;
}

.vfx-lightbox-title{
  margin: 0 0 6px 0;
  color: var(--ice);
  font-size: 1.35rem;
}

.vfx-lightbox-desc{
  margin:0;
  color: rgba(245,245,241,.75);
}

.vfx-lightbox-nav{
  position:absolute;
  left: 16px;
  bottom: 16px;
  display:flex;
  gap: 10px;
}

.vfx-lightbox-prev, .vfx-lightbox-next{
  width:44px;
  height:44px;
  border-radius:50%;
  border: 1px solid rgba(229,9,20,.35);
  background: rgba(229,9,20,.12);
  color: var(--red);
  cursor:pointer;
}


/* ========================================
   VFX PROCESS TIMELINE STYLES
   ======================================== */

/* Root Variables */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
}

/* Section-Specific Variables */
.vfx-process-section {
  --vfx-process-spacing: clamp(4rem, 8vw, 8rem);
}

/* Main Section */
.vfx-process-section {
  background: linear-gradient(180deg, #0f0f0f 0%, var(--ink) 100%);
  padding: var(--vfx-process-spacing) 0;
  position: relative;
  overflow: hidden;
}

.vfx-process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.vfx-process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header */
.vfx-process-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  opacity: 0;
  transform: translateY(30px);
  animation: vfx-process-fade-in 0.8s ease forwards;
}

@keyframes vfx-process-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vfx-process-label {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229, 9, 20, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.vfx-process-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0 0 1rem 0;
  line-height: 1.1;
}

.vfx-process-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: rgba(245, 245, 241, 0.7);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Timeline */
.vfx-process-timeline {
  position: relative;
  padding: 4rem 0;
}

/* Progress Line */
.vfx-process-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(229, 9, 20, 0.15);
  z-index: 1;
}

.vfx-process-line-progress {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 0 20px var(--glow);
  animation: vfx-process-line-grow 2s ease forwards 0.5s;
}

@keyframes vfx-process-line-grow {
  to {
    height: 100%;
  }
}

/* Step */
.vfx-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: vfx-process-step-in 0.8s ease forwards;
}

.vfx-process-step:nth-child(2) { animation-delay: 0.2s; }
.vfx-process-step:nth-child(3) { animation-delay: 0.4s; }
.vfx-process-step:nth-child(4) { animation-delay: 0.6s; }
.vfx-process-step:nth-child(5) { animation-delay: 0.8s; }
.vfx-process-step:nth-child(6) { animation-delay: 1s; }

@keyframes vfx-process-step-in {
  to {
    opacity: 1;
  }
}

/* Zigzag Pattern */
.vfx-process-step-left .vfx-process-step-content {
  grid-column: 1;
}

.vfx-process-step-left .vfx-process-step-marker {
  grid-column: 2;
}

.vfx-process-step-right .vfx-process-step-marker {
  grid-column: 2;
}

.vfx-process-step-right .vfx-process-step-content {
  grid-column: 3;
}

/* Marker */
.vfx-process-step-marker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
}

.vfx-process-step-dot {
  width: 24px;
  height: 24px;
  background: var(--ink);
  border: 4px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--glow), inset 0 0 10px rgba(229, 9, 20, 0.3);
  position: relative;
  animation: vfx-process-pulse 2s ease-in-out infinite;
}

@keyframes vfx-process-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px var(--glow), inset 0 0 10px rgba(229, 9, 20, 0.3);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 30px var(--glow), inset 0 0 15px rgba(229, 9, 20, 0.5);
  }
}

/* Step Content */
.vfx-process-step-content {
  background: linear-gradient(135deg, rgba(245, 245, 241, 0.04) 0%, rgba(245, 245, 241, 0.01) 100%);
  border: 1px solid rgba(245, 245, 241, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-process-step-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, rgba(229, 9, 20, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vfx-process-step:hover .vfx-process-step-content {
  border-color: rgba(229, 9, 20, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(229, 9, 20, 0.2);
}

.vfx-process-step:hover .vfx-process-step-content::before {
  opacity: 1;
}

/* Icon */
.vfx-process-step-icon {
  width: 64px;
  height: 64px;
  background: rgba(229, 9, 20, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vfx-process-step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--red);
  transition: all 0.4s ease;
}

.vfx-process-step:hover .vfx-process-step-icon {
  background: var(--red);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 32px var(--glow);
}

.vfx-process-step:hover .vfx-process-step-icon svg {
  color: var(--ice);
  transform: scale(1.15);
}

/* Step Info */
.vfx-process-step-info {
  position: relative;
  z-index: 1;
}

.vfx-process-step-number {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229, 9, 20, 0.15);
  padding: 0.375rem 0.875rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.vfx-process-step-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ice);
  margin: 0 0 1rem 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.vfx-process-step:hover .vfx-process-step-title {
  color: var(--red);
}

.vfx-process-step-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.75);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

/* Meta Info */
.vfx-process-step-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vfx-process-duration,
.vfx-process-deliverable {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.vfx-process-duration {
  color: var(--red);
}

.vfx-process-deliverable {
  color: rgba(245, 245, 241, 0.7);
}

.vfx-process-duration svg,
.vfx-process-deliverable svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Footer */
.vfx-process-footer {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, rgba(229, 9, 20, 0.02) 100%);
  border: 1px solid rgba(229, 9, 20, 0.2);
  border-radius: 1.25rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: vfx-process-fade-in 0.8s ease forwards 1.2s;
}

.vfx-process-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.vfx-process-footer-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 241, 0.6);
}

.vfx-process-footer-duration {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--red);
  line-height: 1;
}

.vfx-process-footer-note {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.6);
  margin: 0;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vfx-process-step {
    gap: 2rem;
  }

  .vfx-process-step-content {
    padding: 1.75rem;
  }
}

@media (max-width: 768px) {
  /* Switch to vertical timeline */
  .vfx-process-timeline {
    padding: 2rem 0;
  }

  .vfx-process-line {
    left: 2rem;
  }

  .vfx-process-step {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .vfx-process-step-left,
  .vfx-process-step-right {
    grid-template-columns: auto 1fr;
  }

  .vfx-process-step-left .vfx-process-step-content,
  .vfx-process-step-right .vfx-process-step-content {
    grid-column: 2;
  }

  .vfx-process-step-left .vfx-process-step-marker,
  .vfx-process-step-right .vfx-process-step-marker {
    grid-column: 1;
  }

  .vfx-process-step-marker {
    padding-top: 0;
    align-items: center;
  }

  .vfx-process-step-content {
    padding: 1.5rem;
  }

  .vfx-process-step-icon {
    width: 56px;
    height: 56px;
  }

  .vfx-process-step-icon svg {
    width: 28px;
    height: 28px;
  }

  .vfx-process-step-title {
    font-size: 1.5rem;
  }

  .vfx-process-step-desc {
    font-size: 0.9375rem;
  }

  .vfx-process-footer {
    padding: 2rem;
  }

  .vfx-process-footer-duration {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .vfx-process-container {
    padding: 0 1rem;
  }

  .vfx-process-line {
    left: 1.5rem;
  }

  .vfx-process-step {
    gap: 1rem;
  }

  .vfx-process-step-content {
    padding: 1.25rem;
  }

  .vfx-process-step-icon {
    width: 48px;
    height: 48px;
  }

  .vfx-process-step-icon svg {
    width: 24px;
    height: 24px;
  }

  .vfx-process-step-title {
    font-size: 1.25rem;
  }

  .vfx-process-footer-duration {
    font-size: 2rem;
  }
}


/* ========================================
   VFX TOOLS & TECHNOLOGY STYLES
   ======================================== */

/* Root Variables */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
}

/* Section-Specific Variables */
.vfx-tools-section {
  --vfx-tools-spacing: clamp(3rem, 6vw, 5rem);
}

/* Main Section */
.vfx-tools-section {
  background: var(--ink);
  padding: var(--vfx-tools-spacing) 0;
  position: relative;
}

.vfx-tools-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.vfx-tools-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: vfx-tools-fade-in 0.8s ease forwards;
}

@keyframes vfx-tools-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vfx-tools-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.vfx-tools-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.6);
  margin: 0;
  line-height: 1.6;
}

/* Tools Grid */
.vfx-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* Tool Item */
.vfx-tools-item {
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: vfx-tools-item-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.vfx-tools-item:nth-child(1) { animation-delay: 0.1s; }
.vfx-tools-item:nth-child(2) { animation-delay: 0.2s; }
.vfx-tools-item:nth-child(3) { animation-delay: 0.3s; }
.vfx-tools-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes vfx-tools-item-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Logo Container */
.vfx-tools-logo {
  aspect-ratio: 1;
  background: rgba(245, 245, 241, 0.02);
  border: 1px solid rgba(245, 245, 241, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vfx-tools-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.05) 0%, rgba(229, 9, 20, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vfx-tools-logo svg {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.vfx-tools-item:hover .vfx-tools-logo {
  border-color: rgba(229, 9, 20, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(229, 9, 20, 0.2);
}

.vfx-tools-item:hover .vfx-tools-logo::before {
  opacity: 1;
}

.vfx-tools-item:hover .vfx-tools-logo svg {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Tooltip */
.vfx-tools-tooltip {
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  min-width: 200px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.vfx-tools-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(10, 10, 10, 0.95);
}

.vfx-tools-item:hover .vfx-tools-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vfx-tools-tooltip-title {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.375rem;
  line-height: 1.2;
}

.vfx-tools-tooltip-desc {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.8);
  line-height: 1.5;
}

/* Bottom Note */
.vfx-tools-note {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 245, 241, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: vfx-tools-fade-in 0.8s ease forwards 0.5s;
}

.vfx-tools-note p {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(245, 245, 241, 0.5);
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vfx-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .vfx-tools-logo {
    padding: 1.25rem;
  }

  .vfx-tools-tooltip {
    min-width: 180px;
    padding: 0.875rem 1rem;
  }

  .vfx-tools-tooltip-title {
    font-size: 0.875rem;
  }

  .vfx-tools-tooltip-desc {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .vfx-tools-container {
    padding: 0 1rem;
  }

  .vfx-tools-grid {
    gap: 1.25rem;
  }

  .vfx-tools-logo {
    padding: 1rem;
  }

  .vfx-tools-note p {
    font-size: 0.875rem;
  }
}

/* Accessibility: Focus states */
.vfx-tools-item:focus-within .vfx-tools-logo {
  border-color: rgba(229, 9, 20, 0.5);
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.vfx-tools-item:focus-within .vfx-tools-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========================================
   VFX FAQ Section Styles
   Ultra-modern 2026 design with Netflix vibes
   ======================================== */

/* Root Variables */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
}

/* Section-Specific Variables */
:root {
  --vfx-faq-spacing: clamp(80px, 10vw, 140px);
  --vfx-faq-container-width: min(1000px, 90%);
  --vfx-faq-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --vfx-faq-border: 1px solid rgba(245, 245, 241, 0.1);
}

/* Main Section */
.vfx-faq-section {
  background: var(--ink);
  padding: var(--vfx-faq-spacing) 0;
  position: relative;
  overflow: hidden;
}

.vfx-faq-container {
  width: var(--vfx-faq-container-width);
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.vfx-faq-header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 80px);
}

.vfx-faq-label {
  display: inline-block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0;
  animation: vfx-faq-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.vfx-faq-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0 0 20px 0;
  opacity: 0;
  animation: vfx-faq-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.vfx-faq-subtitle {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 245, 241, 0.6);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: vfx-faq-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* Accordion Container */
.vfx-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: var(--vfx-faq-border);
}

/* FAQ Item */
.vfx-faq-item {
  border-bottom: var(--vfx-faq-border);
  opacity: 0;
  animation: vfx-faq-fade-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.vfx-faq-item:nth-child(1) { animation-delay: 0.4s; }
.vfx-faq-item:nth-child(2) { animation-delay: 0.45s; }
.vfx-faq-item:nth-child(3) { animation-delay: 0.5s; }
.vfx-faq-item:nth-child(4) { animation-delay: 0.55s; }
.vfx-faq-item:nth-child(5) { animation-delay: 0.6s; }
.vfx-faq-item:nth-child(6) { animation-delay: 0.65s; }
.vfx-faq-item:nth-child(7) { animation-delay: 0.7s; }
.vfx-faq-item:nth-child(8) { animation-delay: 0.75s; }

/* Question Button */
.vfx-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 32px) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--vfx-faq-transition);
  position: relative;
}

.vfx-faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-faq-question:hover::before {
  width: 40px;
}

.vfx-faq-question:hover {
  padding-left: 56px;
}

.vfx-faq-question-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ice);
  transition: var(--vfx-faq-transition);
}

.vfx-faq-question:hover .vfx-faq-question-text {
  color: var(--red);
}

/* Icon */
.vfx-faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 245, 241, 0.05);
  border-radius: 50%;
  transition: var(--vfx-faq-transition);
}

.vfx-faq-icon svg {
  width: 20px;
  height: 20px;
  color: var(--ice);
  transition: var(--vfx-faq-transition);
}

.vfx-faq-question:hover .vfx-faq-icon {
  background: var(--red);
  transform: rotate(90deg);
}

.vfx-faq-question:hover .vfx-faq-icon svg {
  color: var(--ice);
}

/* Active/Expanded State */
.vfx-faq-question[aria-expanded="true"] .vfx-faq-icon {
  background: var(--red);
  transform: rotate(135deg);
}

.vfx-faq-question[aria-expanded="true"] .vfx-faq-icon svg {
  color: var(--ice);
}

.vfx-faq-question[aria-expanded="true"]::before {
  width: 40px;
}

.vfx-faq-question[aria-expanded="true"] {
  padding-left: 56px;
}

/* Answer Container */
.vfx-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.vfx-faq-answer.vfx-faq-active {
  opacity: 1;
}

.vfx-faq-answer-content {
  padding: 0 0 clamp(24px, 3vw, 36px) 0;
  padding-left: 56px;
}

.vfx-faq-answer-content p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(245, 245, 241, 0.7);
  margin: 0;
}

/* CTA Section */
.vfx-faq-cta {
  margin-top: clamp(60px, 8vw, 100px);
  text-align: center;
  opacity: 0;
  animation: vfx-faq-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.vfx-faq-cta-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  color: var(--ice);
  margin: 0 0 24px 0;
}

.vfx-faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--red);
  color: var(--ice);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--vfx-faq-transition);
  position: relative;
  overflow: hidden;
}

.vfx-faq-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-faq-cta-button:hover::before {
  transform: translateX(100%);
}

.vfx-faq-cta-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow);
}

.vfx-faq-cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-faq-cta-button:hover svg {
  transform: translateX(4px);
}

/* Animations */
@keyframes vfx-faq-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus States for Accessibility */
.vfx-faq-question:focus {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.vfx-faq-cta-button:focus {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
  :root {
    --vfx-faq-spacing: clamp(60px, 8vw, 80px);
  }

  .vfx-faq-question::before {
    display: none;
  }

  .vfx-faq-question:hover,
  .vfx-faq-question[aria-expanded="true"] {
    padding-left: 0;
  }

  .vfx-faq-answer-content {
    padding-left: 0;
  }

  .vfx-faq-icon {
    width: 36px;
    height: 36px;
  }

  .vfx-faq-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
  .vfx-faq-question {
    gap: 16px;
    padding: 20px 0;
  }

  .vfx-faq-cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   VFX Related Services Section Styles
   Ultra-modern 2026 design with Netflix vibes
   ======================================== */

/* Root Variables */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
}

/* Section-Specific Variables */
:root {
  --vfx-related-spacing: clamp(80px, 10vw, 140px);
  --vfx-related-container-width: min(1400px, 92%);
  --vfx-related-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --vfx-related-card-bg: rgba(245, 245, 241, 0.03);
  --vfx-related-border: 1px solid rgba(245, 245, 241, 0.08);
}

/* Main Section */
.vfx-related-section {
  background: var(--ink);
  padding: var(--vfx-related-spacing) 0;
  position: relative;
  overflow: hidden;
}

.vfx-related-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.vfx-related-container {
  width: var(--vfx-related-container-width);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.vfx-related-header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 70px);
}

.vfx-related-label {
  display: inline-block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0;
  animation: vfx-related-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.vfx-related-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0 0 20px 0;
  opacity: 0;
  animation: vfx-related-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.vfx-related-subtitle {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 245, 241, 0.6);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: vfx-related-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* Scroll Wrapper */
.vfx-related-scroll-wrapper {
  overflow: visible;
  position: relative;
}

/* Grid */
.vfx-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

/* Service Card */
.vfx-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--vfx-related-card-bg);
  border: var(--vfx-related-border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: var(--vfx-related-transition);
  opacity: 0;
  animation: vfx-related-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.vfx-related-card:nth-child(1) { animation-delay: 0.4s; }
.vfx-related-card:nth-child(2) { animation-delay: 0.5s; }
.vfx-related-card:nth-child(3) { animation-delay: 0.6s; }

.vfx-related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--red) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.vfx-related-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(229, 9, 20, 0.2);
}

.vfx-related-card:hover::before {
  opacity: 0.03;
}

/* Card Icon */
.vfx-related-card-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border: var(--vfx-related-border);
  border-radius: 12px;
  z-index: 3;
  transition: var(--vfx-related-transition);
}

.vfx-related-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--ice);
  transition: var(--vfx-related-transition);
}

.vfx-related-card:hover .vfx-related-card-icon {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1) rotate(5deg);
}

.vfx-related-card:hover .vfx-related-card-icon svg {
  color: var(--ice);
  transform: scale(1.1);
}

/* Card Thumbnail */
.vfx-related-card-thumbnail {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.vfx-related-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 2;
  transition: var(--vfx-related-transition);
}

.vfx-related-card:hover .vfx-related-card-overlay {
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
}

.vfx-related-card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-related-card:hover .vfx-related-card-bg {
  transform: scale(1.08);
}

/* Background Images */
.vfx-related-bg-3d {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image: 
    linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vfx-related-bg-editing {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  background-image: 
    linear-gradient(135deg, rgba(240, 147, 251, 0.9) 0%, rgba(245, 87, 108, 0.9) 100%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.vfx-related-bg-graphic {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  background-image: 
    linear-gradient(135deg, rgba(79, 172, 254, 0.9) 0%, rgba(0, 242, 254, 0.9) 100%),
    url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Card Content */
.vfx-related-card-content {
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.vfx-related-card-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ice);
  margin: 0 0 12px 0;
  transition: var(--vfx-related-transition);
}

.vfx-related-card:hover .vfx-related-card-title {
  color: var(--red);
}

.vfx-related-card-description {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 245, 241, 0.65);
  margin: 0 0 24px 0;
  flex: 1;
}

.vfx-related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ice);
  transition: var(--vfx-related-transition);
}

.vfx-related-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-related-card:hover .vfx-related-card-link {
  color: var(--red);
}

.vfx-related-card:hover .vfx-related-card-link svg {
  transform: translateX(4px);
}

/* Scroll Hint (Mobile Only) */
.vfx-related-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 245, 241, 0.5);
  animation: vfx-related-pulse 2s ease-in-out infinite;
}

.vfx-related-scroll-hint svg {
  width: 20px;
  height: 20px;
}

/* Animations */
@keyframes vfx-related-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vfx-related-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Focus States */
.vfx-related-card:focus {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
  .vfx-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vfx-related-card:nth-child(3) {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Tablet Small Breakpoint */
@media (max-width: 768px) {
  :root {
    --vfx-related-spacing: clamp(60px, 8vw, 80px);
  }

  .vfx-related-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -5vw;
    padding: 0 5vw;
  }

  .vfx-related-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .vfx-related-grid {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-bottom: 20px;
  }

  .vfx-related-card {
    flex: 0 0 280px;
    width: 280px;
  }

  .vfx-related-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .vfx-related-scroll-hint {
    display: flex;
  }

  .vfx-related-card-thumbnail {
    height: 180px;
  }

  .vfx-related-card-icon {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .vfx-related-card-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
  .vfx-related-card {
    flex: 0 0 260px;
    width: 260px;
  }

  .vfx-related-card-thumbnail {
    height: 160px;
  }
}

/* ========================================
   VFX CTA Section Styles
   Ultra-modern 2026 design with Netflix vibes
   ======================================== */

/* Root Variables */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
}

/* Section-Specific Variables */
:root {
  --vfx-cta-spacing: clamp(100px, 12vw, 160px);
  --vfx-cta-container-width: min(1200px, 90%);
  --vfx-cta-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Section */
.vfx-cta-section {
  background: var(--ink);
  padding: var(--vfx-cta-spacing) 0;
  position: relative;
  overflow: hidden;
}

.vfx-cta-container {
  width: var(--vfx-cta-container-width);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Background Elements */
.vfx-cta-bg-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 60%);
  opacity: 0.25;
  pointer-events: none;
  animation: vfx-cta-pulse 4s ease-in-out infinite;
}

.vfx-cta-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(229, 9, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 9, 20, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}

/* Content Container */
.vfx-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Badge */
.vfx-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 50px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  opacity: 0;
  animation: vfx-cta-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.vfx-cta-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
  stroke: none;
}

/* Headline */
.vfx-cta-headline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ice);
  margin: 0 0 24px 0;
  opacity: 0;
  animation: vfx-cta-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  background: linear-gradient(135deg, var(--ice) 0%, rgba(245, 245, 241, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtext */
.vfx-cta-subtext {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 245, 241, 0.7);
  margin: 0 auto 48px;
  max-width: 700px;
  opacity: 0;
  animation: vfx-cta-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* Button Container */
.vfx-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  opacity: 0;
  animation: vfx-cta-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

/* Base Button Styles */
.vfx-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: var(--vfx-cta-transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.vfx-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-cta-button:hover::before {
  transform: translateX(100%);
}

.vfx-cta-button-text {
  position: relative;
  z-index: 1;
}

.vfx-cta-button-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vfx-cta-button-icon svg {
  width: 20px;
  height: 20px;
}

/* Primary Button */
.vfx-cta-primary {
  background: var(--red);
  color: var(--ice);
  border: 2px solid var(--red);
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.3);
}

.vfx-cta-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--glow);
}

.vfx-cta-primary:hover .vfx-cta-button-icon {
  transform: translateX(4px);
}

.vfx-cta-primary:active {
  transform: translateY(-1px);
}

/* Secondary Button */
.vfx-cta-secondary {
  background: transparent;
  color: var(--ice);
  border: 2px solid rgba(245, 245, 241, 0.2);
}

.vfx-cta-secondary:hover {
  background: rgba(245, 245, 241, 0.05);
  border-color: var(--ice);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 245, 241, 0.1);
}

.vfx-cta-secondary:hover .vfx-cta-button-icon {
  transform: scale(1.1);
}

.vfx-cta-secondary:active {
  transform: translateY(-1px);
}

/* Trust Indicators */
.vfx-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  opacity: 0;
  animation: vfx-cta-fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.vfx-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  color: rgba(245, 245, 241, 0.6);
}

.vfx-cta-trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  flex-shrink: 0;
}

/* Floating Elements */
.vfx-cta-float {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.vfx-cta-float svg {
  stroke: var(--ice);
}

.vfx-cta-float-1 {
  top: 10%;
  left: 5%;
  animation: vfx-cta-float-anim-1 20s ease-in-out infinite;
}

.vfx-cta-float-2 {
  top: 60%;
  right: 8%;
  animation: vfx-cta-float-anim-2 25s ease-in-out infinite;
}

.vfx-cta-float-3 {
  bottom: 15%;
  left: 10%;
  animation: vfx-cta-float-anim-3 22s ease-in-out infinite;
}

/* Animations */
@keyframes vfx-cta-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vfx-cta-pulse {
  0%, 100% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes vfx-cta-float-anim-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, -40px) rotate(-3deg);
  }
  75% {
    transform: translate(-30px, -20px) rotate(4deg);
  }
}

@keyframes vfx-cta-float-anim-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-25px, 15px) rotate(-4deg);
  }
  66% {
    transform: translate(15px, 30px) rotate(5deg);
  }
}

@keyframes vfx-cta-float-anim-3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  40% {
    transform: translate(30px, -25px) rotate(6deg);
  }
  80% {
    transform: translate(-20px, 10px) rotate(-5deg);
  }
}

/* Focus States */
.vfx-cta-button:focus {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
  :root {
    --vfx-cta-spacing: clamp(70px, 10vw, 100px);
  }

  .vfx-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .vfx-cta-button {
    justify-content: center;
    width: 100%;
  }

  .vfx-cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .vfx-cta-float {
    display: none;
  }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
  .vfx-cta-badge {
    font-size: 11px;
    padding: 8px 16px;
  }

  .vfx-cta-button {
    padding: 16px 28px;
  }

  .vfx-cta-bg-grid {
    background-size: 30px 30px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .vfx-cta-bg-gradient,
  .vfx-cta-float,
  .vfx-cta-button::before {
    animation: none;
  }
}