.cta-base {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 56px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #d6dde8;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  overflow: hidden;
}

.cta-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.15)),
    linear-gradient(to bottom, #0b1f3a, #102a4d);
  border: 3px solid rgba(180, 200, 220, 0.35);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 100%);
  border-radius: 10px 10px 0 0;
  pointer-events: none;
  opacity: 0.7;
}

.cta-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg,
      transparent 20%,
      rgba(255, 255, 255, 0.08) 45%,
      rgba(255, 255, 255, 0.04) 50%,
      transparent 80%);
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.cta-primary:hover {
  border-color: rgba(200, 220, 240, 0.45);
}

.cta-primary:hover::after {
  opacity: 0.6;
  transform: translateX(100%);
}

.cta-primary:active {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 3px rgba(0, 0, 0, 0.25);
}

.cta-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18)),
    linear-gradient(to bottom, #081c33, #0e233c);
  border: 2px solid rgba(160, 180, 200, 0.3);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

.cta-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg,
      transparent 20%,
      rgba(255, 255, 255, 0.06) 45%,
      rgba(255, 255, 255, 0.03) 50%,
      transparent 80%);
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.cta-secondary:hover {
  border-color: rgba(180, 200, 220, 0.4);
}

.cta-secondary:hover::after {
  opacity: 0.4;
  transform: translateX(100%);
}

.cta-secondary:active {
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}