.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  text-decoration: none;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 6px 0 rgba(63, 63, 63, 0.8),
    0 12px 24px rgba(0, 0, 0, 0.3);
  transform: skewX(-15deg);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  border-radius: 8px;
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.cta:hover::before {
  left: 100%;
}

.cta:focus {
  outline: none;
  box-shadow: 
    0 6px 0 rgba(63, 63, 63, 0.8),
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(251, 198, 56, 0.5);
}

.cta:hover {
  transform: skewX(-15deg) translateY(-2px);
  box-shadow: 
    0 8px 0 #fbc638,
    0 16px 32px rgba(251, 198, 56, 0.3);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.cta:active {
  transform: skewX(-15deg) translateY(0);
  box-shadow: 
    0 4px 0 #fbc638,
    0 8px 16px rgba(251, 198, 56, 0.2);
}

.cta .second {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 0px;
  display: flex;
  align-items: center;
}

.cta:hover .second {
  margin-right: 45px;
}

.span {
  transform: skewX(15deg);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.second {
  width: clamp(15px, 3vw, 20px);
  margin-left: clamp(15px, 3vw, 30px);
  position: relative;
  top: 12%;
}

.one {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-60%);
}

.two {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-30%);
}

.cta:hover .three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover .one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover .two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    min-width: 180px;
  }
  
  .cta:hover .second {
    margin-right: 30px;
  }
  
  .second {
    width: 15px;
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-width: 160px;
    transform: skewX(-10deg);
  }
  
  .cta:hover {
    transform: skewX(-10deg) translateY(-2px);
  }
  
  .cta:active {
    transform: skewX(-10deg) translateY(0);
  }
  
  .span {
    transform: skewX(10deg);
  }
  
  .cta:hover .second {
    margin-right: 25px;
  }
  
  .second {
    width: 12px;
    margin-left: 15px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
  
  .cta:hover {
    transform: skewX(-15deg);
  }
  
  .cta:hover .second {
    margin-right: 0px;
  }
  
  .cta:hover .one,
  .cta:hover .two,
  .cta:hover .three {
    animation: none;
  }
}

@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: #fbc638;
  }
  100% {
    fill: white;
  }
}
