.tk-flow-section{
  margin-bottom:56px;
}

.tk-flow-header{
  margin-bottom:20px;
}

.tk-flow-header h2{
  font-size:18px;
  font-weight:900;
  letter-spacing:-1px;
  color:#0f172a;
  margin-bottom:8px;
}

.tk-flow-header p{
  font-size:13px;
  color:#64748b;
}

.tk-flow-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}

.tk-flow-grid-5{
  grid-template-columns:repeat(5,minmax(0,1fr));
}

.tk-flow-arrow{
  display:none;
}

.tk-flow-card{
  position:relative;
  min-width:0;
  min-height:150px;
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,0.5);
  box-shadow:0 14px 32px rgba(15,23,42,0.05);
  transition:.25s ease;
}

.tk-flow-card:hover{
  transform:translateY(-4px);
}

.tk-flow-card::after{
  content:'→';
  position:absolute;
  top:50%;
  right:-18px;
  transform:translateY(-50%);
  color:#cbd5e1;
  font-size:22px;
  font-weight:800;
  z-index:2;
}

.tk-flow-card:last-child::after{
  display:none;
}

.tk-flow-icon{
  width:44px;
  height:44px;
  border-radius:16px;
  background:linear-gradient(135deg,#2563eb,#06b6d4);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  margin-bottom:16px;
  box-shadow:0 10px 22px rgba(37,99,235,0.16);
}

.tk-flow-card h3{
  font-size:14px;
  font-weight:800;
  letter-spacing:-0.4px;
  color:#0f172a;
  margin-bottom:10px;
  word-break:keep-all;
}

.tk-flow-card p{
  font-size:12px;
  line-height:1.55;
  color:#64748b;
  word-break:keep-all;
}

@media (max-width:1400px){
  .tk-flow-grid,
  .tk-flow-grid-5{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .tk-flow-card::after{
    display:none;
  }
}

@media (max-width:900px){
  .tk-flow-grid,
  .tk-flow-grid-5{
    grid-template-columns:1fr;
  }
}
