﻿.proc-my {
  background: linear-gradient(135deg, var(--dark) 0%, #2d0a0a 46%, var(--red-dark) 100%);
  position: relative;
  overflow: hidden;
}

.proc-my::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -120px;
  width: 560px;
  height: 560px;
  border: 90px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header.light p {
  color: rgba(255, 255, 255, 0.7);
}

.light-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.proc-item {
  display: flex;
  gap: 20px;
  padding: 38px 32px;
  background: rgba(255, 255, 255, 0.04);
  transition: var(--trans);
}

.proc-item:hover {
  background: rgba(255, 255, 255, 0.09);
}

.proc-num {
  width: 44px;
  flex-shrink: 0;
  font-size: 2.35rem;
  line-height: 1;
  color: var(--red-bright);
  opacity: 0.6;
}

.proc-content h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.proc-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}


@media (max-width: 1024px) {
  .proc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-item {
    padding: 30px 22px;
  }
}

@media (max-width: 768px) {
  .proc-grid {
    grid-template-columns: 1fr;
  }

  .proc-my::before {
    width: 360px;
    height: 360px;
    right: -140px;
    top: -90px;
    border-width: 58px;
  }

  .proc-item {
    gap: 14px;
    padding: 24px 16px;
  }

  .proc-num {
    width: 32px;
    font-size: 1.85rem;
  }

  .proc-content h3 {
    font-size: 0.95rem;
  }

  .proc-content p {
    font-size: 0.86rem;
  }
}

@media (max-width: 480px) {
  .proc-item {
    padding: 28px 20px;
  }
}
