/* ================================
   ABOUT — TEHNOLOGIJE
   ================================ */
.about-tech {
  background-color: #f8faff;
  padding: 100px 0;
  position: relative;
}

.about-tech__container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-tech__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.about-tech__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.07);
  border: 1px solid rgba(0, 102, 255, 0.15);
  color: #0066ff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  width: fit-content;
  letter-spacing: 0.04em;
}

.about-tech__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0066ff;
  box-shadow: 0 0 8px rgba(0, 102, 255, 0.6);
  animation: tech-pulse 2s ease-in-out infinite;
}

@keyframes tech-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.about-tech__title {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
  margin: 0;
}

.about-tech__title span {
  background: linear-gradient(90deg, #00aaff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-tech__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00aaff, #0066ff);
  border-radius: 2px;
}

.about-tech__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.about-tech__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  cursor: default;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-tech__item:hover {
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.08),
              0 0 0 1px rgba(0, 102, 255, 0.08);
}

.about-tech__item-logo {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-tech__item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.about-tech__item:hover .about-tech__item-img {
  filter: grayscale(0%);
}

.about-tech__item-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4a5568;
  text-align: center;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.about-tech__item:hover .about-tech__item-name {
  color: #0066ff;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .about-tech__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .about-tech {
    padding: 70px 0;
  }

  .about-tech__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .about-tech__item {
    padding: 22px 14px;
  }
}

@media (max-width: 480px) {
  .about-tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}