.about {
  padding: 100px 8%;
  background-color: var(--bg-section);
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.about-text { max-width: 720px; }
.about-text h2 { font-size: clamp(30px, 4vw, 38px); margin-bottom: 26px; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }

.about-card {
  min-width: 310px;
  background: var(--bg-deep);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-accent);
}

.about-card h3 { color: var(--accent); margin-bottom: 22px; font-size: 24px; }
.about-card ul { list-style: none; }
.about-card li { color: var(--text-muted); line-height: 1.8; padding-left: 22px; position: relative; }
.about-card li::before { content: ">"; position: absolute; left: 0; color: var(--success); font-weight: 800; }
