/* ===== Specialist Profile Page ===== */
.profile-header {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: #fff;
  padding: 48px 0 32px;
}
.profile-header__inner {
  display: flex; gap: 32px; align-items: start;
}
.profile-header__avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
}
.profile-header__avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,.3);
}
.profile-header__info { flex: 1; }
.profile-header__name { font-size: 1.75rem; font-weight: 700; margin-bottom: 4px; }
.profile-header__spec { font-size: 1rem; opacity: .9; margin-bottom: 12px; }
.profile-header__meta { display: flex; gap: 20px; flex-wrap: wrap; }
.profile-header__meta span { display: flex; align-items: center; gap: 6px; font-size: .9375rem; opacity: .9; }
.profile-header__price {
  font-size: 1.5rem; font-weight: 700;
  background: rgba(255,255,255,.15);
  padding: 12px 24px; border-radius: var(--radius-lg);
  text-align: center;
}
.profile-header__price small { display: block; font-size: .75rem; font-weight: 400; opacity: .7; }

.profile-body { padding: 32px 0; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .profile-grid { grid-template-columns: 1fr; } }

.profile-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 24px;
}
.profile-card h3 {
  font-size: 1.125rem; font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.profile-card p, .profile-card li { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; }
.profile-card ul { list-style: none; padding: 0; }
.profile-card ul li { padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.profile-card ul li:last-child { border-bottom: none; }

/* Reviews */
.review-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.review-item:last-child { border-bottom: none; }
.review-item__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.review-item__author { font-weight: 600; font-size: .9375rem; }
.review-item__rating { color: #f59e0b; }
.review-item__text { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }
.review-item__date { font-size: .75rem; color: var(--gray-400); }

/* Contact bar */
.contact-bar {
  position: sticky; bottom: 0;
  background: #fff; border-top: 1px solid var(--gray-200);
  padding: 12px 0;
  box-shadow: 0 -4px 12px rgba(0,0,0,.08);
}
.contact-bar__inner {
  display: flex; justify-content: space-between; align-items: center;
}
.contact-bar__price { font-size: 1.25rem; font-weight: 700; color: var(--accent); }
.contact-bar__actions { display: flex; gap: 12px; }
