.ai-workflow {
  max-width: 1200px;
  margin: 150px auto;
}

.title {
  text-align: center;
  margin-bottom: 70px;
}

.title h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.title p {
  color: #777;
  line-height: 1.8;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.step:hover {
  transform: translateY(-10px);
}

.step span {
  font-size: 40px;
  color: #6c63ff;
  font-weight: bold;
}

.step h3 {
  margin: 20px 0;
  font-size: 26px;
}

.step p {
  color: #666;
  line-height: 1.8;
}

.tools {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.tools img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f5f5;
  padding: 10px;
}

.ai-section {
  max-width: 1200px;
  margin: 120px auto;
}

.title {
  text-align: center;
  margin-bottom: 60px;
}

.title span {
  color: #6b63ff;
  font-weight: 700;
  letter-spacing: 2px;
}

.title h2 {
  margin: 15px 0;
  font-size: 42px;
}

.title p {
  color: #777;
  line-height: 1.7;
}

.card-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-12px);
}

.card-img {
  height: 250px;
  overflow: hidden;
}

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

.card:hover img {
  transform: scale(1.1);
}

.card-text {
  padding: 30px;
}

.card-text h3 {
  font-size: 28px;
}

.card-text h4 {
  color: #6b63ff;
  margin: 10px 0 20px;
}

.card-text ul {
  list-style: none;
}

.card-text li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.ai-desc{
  margin-top: 30px;
}