.profil-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 92px;
}

.profil-hero {
  background: linear-gradient(160deg, #1A1A1A 0%, #0A0A0A 60%, #000 100%);
  padding: 56px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

.profil-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.profil-hero-orb-1 {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -60px;
  background: rgba(236,72,153,0.08);
}

.profil-hero-orb-2 {
  width: 140px;
  height: 140px;
  bottom: -40px;
  left: -30px;
  background: rgba(236,72,153,0.05);
}

.profil-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 0 0 3px rgba(236,72,153,0.25), 0 8px 24px rgba(236,72,153,0.3);
  position: relative;
  z-index: 1;
}

.profil-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.profil-phone-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  position: relative;
  z-index: 1;
}

.profil-phone-row svg {
  width: 13px;
  height: 13px;
  color: var(--primary);
}

.profil-phone-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

.profil-body {
  padding: 20px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profil-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  padding: 8px 4px 4px;
}

.profil-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.profil-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  width: 100%;
  font-family: inherit;
  text-align: left;
  transition: background 120ms ease;
}

.profil-item:last-child {
  border-bottom: none;
}

.profil-item:active {
  background: rgba(0,0,0,0.04);
}

.profil-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profil-item-icon svg {
  width: 16px;
  height: 16px;
}

.profil-item-icon.pink   { background: var(--primary-light); color: var(--primary); }
.profil-item-icon.dark   { background: rgba(0,0,0,0.06); color: var(--text-secondary); }
.profil-item-icon.red    { background: rgba(220,38,38,0.09); color: var(--red); }

.profil-item-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.profil-item-label.red { color: var(--red); }

.profil-item-chevron { color: var(--text-muted); }
.profil-item-chevron svg { width: 15px; height: 15px; }

.profil-version {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 18px 0 6px;
}
