/* Продающий слой: доверие, лицо, отзывы, ритм */

.logo__text em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
}

.hero__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 14px 10px 10px;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__person-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  border: 2px solid rgba(0, 212, 170, 0.45);
  flex-shrink: 0;
}

.hero__person strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
}

.hero__person span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero__checks {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  max-width: 520px;
}

.hero__checks li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.hero__checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.18);
  box-shadow: inset 0 0 0 3.5px var(--accent);
}

.hero__risk {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

.intro__legal {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.intro__legal li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.intro__legal li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.intro__photo-wrap {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.testimonial {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.testimonial p {
  font-style: normal;
  flex: 1;
  color: var(--text);
}

.testimonial__stars {
  color: #f5c518;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.95rem;
  color: #0a0a0f;
  background: var(--gradient);
}

.testimonial__author {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.value-card,
.trust-card,
.situation-card,
.audience-card,
.guarantee-card {
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}

.value-card:hover,
.trust-card:hover,
.situation-card:hover,
.audience-card:hover,
.guarantee-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 170, 0.28);
  background: rgba(0, 212, 170, 0.06);
}

.price-card--featured {
  box-shadow: 0 18px 50px rgba(0, 212, 170, 0.12);
}

.price-card__risk {
  margin-top: 16px;
  color: var(--text-muted);
}

.final-cta__inner {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0, 212, 170, 0.16), transparent 60%),
    linear-gradient(160deg, rgba(18, 18, 26, 0.9), rgba(12, 12, 18, 0.95));
  border: 1px solid rgba(0, 212, 170, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.contact__card {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.hero-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section__title {
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .hero__person {
    width: 100%;
  }

  .hero__checks {
    margin-bottom: 8px;
  }
}
