.btn-cta.btn-generate {
    background: 
      linear-gradient(135deg, 
        #4f46e5 0%, 
        #6366f1 50%, 
        #818cf8 100%
      );
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
      0 4px 16px rgba(99, 102, 241, 0.3),
      inset 0 0 12px rgba(255, 255, 255, 0.1);
  }

  .btn-cta.btn-generate::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.6s ease;
  }

  .btn-cta.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow:
      0 6px 24px rgba(99, 102, 241, 0.5),
      inset 0 0 16px rgba(255, 255, 255, 0.2);
  }

  .btn-cta.btn-generate:hover::after {
    left: 100%;
  }

  .btn-cta.btn-generate i {
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
  }

  .btn-cta.btn-generate:hover i {
    transform: rotate(-15deg) scale(1.1);
  }

  .btn-outline-secondary.btn-data {
    background: transparent;
    color: #4f46e5;
    border: 2px solid #e0e7ff;
    border-radius: 10px;
    padding: 0.875rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .btn-outline-secondary.btn-data::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
  }

  .btn-outline-secondary.btn-data:hover {
    border-color: #818cf8;
    color: #6366f1;
  }

  .btn-outline-secondary.btn-data:hover::before {
    width: 150%;
    height: 150%;
  }

  .d-grid.gap-2 {
    gap: 1.25rem !important;
  }

  @media (max-width: 768px) {
    .btn-cta.btn-generate,
    .btn-outline-secondary.btn-data {
      padding: 0.875rem 1.25rem;
      font-size: 0.9rem;
    }

    .btn-cta.btn-generate i {
      margin-right: 0.5rem;
    }
  }