/* Sekcja O nas */
.section--about {
  margin-top: 0;
  min-height: calc(100vh - var(--header-h)); /* pełna wysokość ekranu minus header */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px var(--pad-x);

  color: #f5f5f5;
  text-align: center;
  position: relative;
  z-index: 1;

  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    radial-gradient(1200px 600px at 70% 30%, rgba(255,140,0,0.25), transparent 60%),
    url("../Images/QubitBG.png") center / cover no-repeat;
}


.about {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-title {
  background: linear-gradient(270deg, #b35400, #ff8800, #ffcc33, #b35400);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(179, 84, 0, 0.6);
  animation: gradientMove 6s ease-in-out infinite;
}


.about-subtitle {
  margin: 18px auto 40px;
  max-width: 780px;
  font-size: clamp(16px, 2vw, 20px);
  color: #e8e8e8;
  opacity: .95;
}

.about-content {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.about-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.about-step i {
  font-size: 36px;
  color: #ffcc66;
}

.about-step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Desktop – trzy kolumny */
@media (min-width: 900px) {
  .about-content {
    grid-template-columns: repeat(3, 1fr);
  }
}


.about-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.about-cta {
  margin-top: 32px;
  text-align: center;
}

.about-cta .btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff8800, #ffcc33);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.about-cta .btn:hover {
  background: linear-gradient(135deg, #ffcc33, #ff8800);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}


