/* HERO */

.works-hero{
  padding:90px 0 80px;
  text-align:center;
}

.tag{
  display:inline-block;
  padding:12px 22px;
  border-radius:30px;
  background:#eef3ff;
  color:#1638ff;
  font-size:14px;
  font-weight:600;
  margin-bottom:25px;
}

.hero-content h1{
  font-size:78px;
  line-height:1.05;
  color:#07123f;
  margin-bottom:25px;
  letter-spacing:-2px;
  max-width:950px;
  margin-inline:auto;
}

.hero-content p{
  max-width:850px;
  margin:auto;
  font-size:19px;
  line-height:1.9;
  color:#5d6481;
}

/* STEPS */

.steps-wrapper{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px;
  margin-bottom:100px;
}

.step-card{
  position:relative;

  padding:45px;

  border-radius:32px;

  background:white;

  border:1px solid #edf0ff;

  transition:0.35s;

  overflow:hidden;
}

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

  box-shadow:
    0 20px 40px rgba(0,0,0,0.06);
}

.step-number{
  position:absolute;
  top:25px;
  right:25px;

  width:55px;
  height:55px;

  border-radius:50%;

  background:#1638ff;

  color:white;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:700;
  font-size:20px;
}

.step-icon{
  width:100px;
  height:100px;

  border-radius:28px;

  background:
    linear-gradient(
      135deg,
      rgba(24,186,94,0.10),
      rgba(22,56,255,0.06)
    );

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:42px;

  margin-bottom:30px;
}

.step-card h3{
  font-size:34px;
  margin-bottom:18px;
  color:#08134d;
}

.step-card p{
  color:#666;
  line-height:1.9;
  font-size:17px;
}

/* BENEFITS */

.process-benefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;

  margin-bottom:110px;
}

.benefit-box{
  padding:40px;

  border-radius:30px;

  background:
    linear-gradient(
      135deg,
      rgba(24,186,94,0.10),
      rgba(22,56,255,0.06)
    );

  border:1px solid rgba(255,255,255,0.4);

  backdrop-filter:blur(16px);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.05);
}

.benefit-box h3{
  font-size:30px;
  color:#08134d;
  margin-bottom:15px;
}

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

/* RESPONSIVE */

@media(max-width:1000px){

  .steps-wrapper{
    grid-template-columns:1fr;
  }

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

  .hero-content h1{
    font-size:58px;
  }

}

@media(max-width:700px){

  .hero-content h1{
    font-size:42px;
  }

  .step-card{
    padding:35px;
  }

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

}