.about-page {
  width: 100%;
  padding: 28px 16px 20px;
}

.about-page__hero {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.about-page__eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about-page__title {
  margin: 0 0 24px;
  font-size: clamp(30px, 5.2vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #757575;
}

.about-page__section-title {
  margin: 30px 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #757575;
}

.about-page__section-title:first-of-type {
  margin-top: 0;
}

.about-page__text {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
  max-width: 66ch;
}

.about-page__text:last-child {
  margin-bottom: 0;
}

.about-page__visual {
  position: sticky;
  top: 92px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-circles {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 420px;
}

.about-circles::before,
.about-circles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.about-circles::before {
  width: 300px;
  height: 300px;
  right: 10px;
  top: 20px;
  background: var(--blue-weak);
}

.about-circles::after {
  width: 190px;
  height: 190px;
  left: 10px;
  bottom: 20px;
  background: var(--blue-weak);
}

.about-circles__item {
  position: absolute;
  z-index: 1;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 14px 30px var(--blue-weak), var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}

.about-circles__item--klicka {
  right: 16px;
  top: 24px;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  color: #1565C0;
}

.about-circles__item--matcha {
  left: 12px;
  top: 52px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  color: #2E7D32;
}

.about-circles__item--vax {
  right: 68px;
  bottom: 34px;
  background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
  color: #7B1FA2;
}

@media (max-width: 840px) {
  .about-page {
    padding: 14px 10px 10px;
  }

  .about-page__hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-page__visual {
    position: static;
    min-height: 0;
  }

  .about-circles {
    max-width: 340px;
    height: 340px;
  }

  .about-circles__item {
    width: 136px;
    height: 136px;
    font-size: 22px;
  }

  .about-circles__item--klicka {
    right: 4px;
    top: 18px;
  }

  .about-circles__item--matcha {
    left: 0;
    top: 44px;
  }

  .about-circles__item--vax {
    right: 52px;
    bottom: 22px;
  }

  .about-page__text {
    font-size: 17px;
  }
}
