.fg-report-section {
  margin: 30px 0 0;
}

.fg-report__title {
  text-align: center;
  font-size: 1.4rem;
  color: #fe6ea3;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}

.fg-report {
  border: 2px solid #f4b6ce;
  background: #fff;
  padding: 20px;
}

.fg-report__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fg-report__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.fg-report__score {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe6ea3, #ffd1e1);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 16px rgba(254, 110, 163, 0.35);
}

.fg-score__label {
  font-size: 0.9rem;
  font-weight: 600;
}

.fg-score__value {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  margin: 4px 0;
}

.fg-score__max {
  font-size: 0.75rem;
  opacity: 0.8;
}

.fg-report__chart {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.fg-radar {
  width: 300px;
  height: 300px;
}

.fg-radar__grid-line {
  fill: none;
  stroke: #ffd1e1;
  stroke-width: 1;
}

.fg-radar__axis {
  stroke: #f4b6ce;
  stroke-width: 1;
  opacity: 0.6;
}

.fg-radar__label {
  fill: #d94b7f;
  font-size: 12px;
  font-weight: 700;
}

.fg-radar__zone {
  fill: rgba(254, 110, 163, 0.15);
  stroke: rgba(254, 110, 163, 0.4);
  stroke-width: 2;
}

.fg-radar__current {
  fill: rgba(254, 110, 163, 0.35);
  stroke: #fe6ea3;
  stroke-width: 3;
}

.fg-radar__point {
  fill: #fe6ea3;
  stroke: #fff;
  stroke-width: 2;
}

.fg-report__legend {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: #d94b7f;
}

.fg-report__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fg-report__legend-color {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: rgba(254, 110, 163, 0.3);
}

.fg-report__legend-color.is-current {
  background: #fe6ea3;
  border-radius: 50%;
}

.fg-report__details {
  border-top: 1px solid #f4b6ce;
  padding-top: 15px;
}

.fg-report__details-title {
  text-align: center;
  color: #fe6ea3;
  font-weight: 700;
  margin-bottom: 12px;
}

.fg-report__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fg-report__entry {
  background: #fff4f8;
  border-left: 4px solid #fe6ea3;
  padding: 10px 12px;
  border-radius: 6px;
}

.fg-report__points {
  font-weight: 700;
  color: #d94b7f;
  margin-bottom: 4px;
}

.fg-report__comment {
  color: #6a3a4a;
  line-height: 1.5;
}

.fg-report__cta {
  margin-top: 18px;
  text-align: center;
}

.fg-report__btn {
  border: 1px solid #fe6ea3;
  background: #fe6ea3;
  color: #fff;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 999px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fg-report__btn:hover,
.fg-report__btn:focus {
  background: #e74f86;
  border-color: #e74f86;
}

.fg-report.is-empty .fg-report__summary,
.fg-report.is-empty .fg-report__list,
.fg-report.is-empty .fg-report__details-title {
  display: none;
}

@media (max-width: 992px) {
  .fg-report__body {
    gap: 14px;
  }

  .fg-report__score {
    width: 120px;
    height: 120px;
  }

  .fg-score__value {
    font-size: 1.7rem;
  }

  .fg-radar {
    width: 240px;
    height: 240px;
  }
}
