/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about {
  background: #f5f9fc;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ── Фото ── */
.about-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Бейджи сверху */
.about-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.about-badge {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ── Текстовая часть ── */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── Тёмная карточка ── */
.about-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
}

.about-card__tag {
  display: inline-block;
  background: #FF6B35;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.about-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.about-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

/* Иконка-галочка */
.about-card__list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #FF6B35;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23FF6B35' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
              center / 11px no-repeat;
}

/* ── Адаптив ── */
@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo-wrap {
    max-width: 460px;
    margin: 0 auto;
  }
  .about-photo-wrap img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 500px) {
  .about-photo-wrap img {
    aspect-ratio: 3 / 2;
  }
  .about-card {
    padding: 22px 20px;
  }
  .about-card__title {
    font-size: 1.1rem;
  }
}