/* Technologies cards + payment flow */
/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   TECHNOLOGIES
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
.tech-section { background: var(--bg-light); position: relative; overflow: hidden; }
/* When technologies follow competencies, tighten the vertical gap */
.services-section + .tech-section { padding-top: 64px; }
.tech-section::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,255,.10), transparent 70%);
  filter: blur(40px);
}
.tech-section .container { position: relative; z-index: 1; }

.tech-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--tr);
}
.tech-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,.04), rgba(0,229,255,.04));
  opacity: 0;
  transition: opacity var(--tr);
}
.tech-card:hover::before { opacity: 1; }
.tech-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0,102,255,.15);
}
.tech-icon {
  width: 60px; height: 60px;
  background: var(--grad-brand);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(0,102,255,.4);
  position: relative;
  z-index: 1;
}
.tech-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad-brand);
  filter: blur(15px);
  opacity: .5;
  z-index: -1;
}
.tech-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; position: relative; }
.tech-desc  { font-size: 14px; color: var(--text-dim); line-height: 1.65; position: relative; }

/* payment flow */
.payment-flow {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
}
.payment-flow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-brand);
}
.payment-flow-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-flow-title::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.payment-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
}
.payment-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan), var(--purple), var(--cyan));
  background-size: 200% 100%;
  z-index: 0;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 0%; }
  50%     { background-position: 100% 0%; }
}
.payment-step { text-align: center; position: relative; z-index: 1; }
.payment-step-num {
  width: 50px; height: 50px;
  background: var(--grad-brand);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 22px rgba(0,102,255,.45);
  position: relative;
}
.payment-step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--grad-brand);
  filter: blur(10px);
  opacity: .5;
  z-index: -1;
}
.payment-step-title { font-size: 13.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.payment-step-desc  { font-size: 12px; color: var(--text-dim); line-height: 1.5; }
