/* About section (competencies grid) */
/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   ABOUT
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
.about-section {
  background: var(--bg-deep);
  background-image: url('../../img/project_yula.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,.18), transparent 70%);
  filter: blur(50px);
  z-index: 1;
}
.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 8, 26, 1) 0%,
    rgba(3, 8, 26, .92) 6%,
    rgba(3, 8, 26, .66) 22%,
    rgba(3, 8, 26, .58) 50%,
    rgba(3, 8, 26, .82) 88%,
    rgba(3, 8, 26, .98) 100%
  );
  z-index: 0;
}
.about-section .container { position: relative; z-index: 2; }
.about-text { font-size: 16.5px; line-height: 1.78; color: rgba(255,255,255,.65); }

.competency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.competency-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  transition: all var(--tr);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.competency-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--tr);
  z-index: -1;
  border-radius: inherit;
  filter: blur(20px);
}
.competency-item:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  background: var(--glass-strong);
}
.competency-item:hover::after { opacity: .25; }
.competency-icon {
  width: 46px; height: 46px;
  background: var(--grad-brand);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,102,255,.4);
}
.competency-title {
  font-size: 14px; font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.competency-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.55; }
